/*
 * Reborn sitewide mobile redesign.
 * This file is loaded after mobile.css and is intentionally inactive at 920px and above.
 */

@media (max-width: 919px) {
  body.mobile-redesign-site {
    --rm-ink: #17242b;
    --rm-muted: #607078;
    --rm-navy: #173f59;
    --rm-navy-dark: #102e40;
    --rm-line: #d8e0e4;
    --rm-surface: #ffffff;
    --rm-surface-soft: #f1f3f3;
    --rm-page: #f7f8f7;
    --rm-gutter: 16px;
    --rm-content: 620px;
    padding-bottom: calc(96px + env(safe-area-inset-bottom));
    overflow-x: hidden;
    background: var(--rm-page);
    color: var(--rm-ink);
    font-family: Arial, Helvetica, sans-serif;
  }

  body.mobile-redesign-site.menu-open {
    overflow: hidden;
  }

  body.mobile-redesign-site :where(a, button, summary) {
    touch-action: manipulation;
    -webkit-tap-highlight-color: rgba(23, 63, 89, 0.12);
  }

  body.mobile-redesign-site :where(a, button, summary):focus-visible {
    outline: 2px solid #56788c;
    outline-offset: 3px;
  }

  /* Header: solid, compact, and consistent with an industrial manufacturer. */
  body.mobile-redesign-site > .site-header {
    position: sticky;
    top: 0;
    z-index: 120;
    display: grid;
    width: 100%;
    min-height: calc(64px + env(safe-area-inset-top));
    margin: 0;
    padding: env(safe-area-inset-top) var(--rm-gutter) 0;
    grid-template-columns: minmax(0, 1fr) 44px;
    align-items: center;
    column-gap: 8px;
    border: 0;
    border-bottom: 1px solid var(--rm-line);
    border-radius: 0;
    background: var(--rm-surface);
    box-shadow: none;
    backdrop-filter: none;
    transition: box-shadow 180ms ease;
  }

  body.mobile-redesign-site > .site-header.is-scrolled {
    border-bottom-color: var(--rm-line);
    box-shadow: 0 4px 14px rgba(16, 46, 64, 0.07);
  }

  body.mobile-redesign-site .site-header .logo {
    display: inline-flex;
    min-width: 0;
    max-width: 230px;
    grid-column: 1;
    align-items: center;
    justify-self: start;
    gap: 9px;
    margin: 0;
    color: var(--rm-ink);
    font-size: 15px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.01em;
    white-space: nowrap;
  }

  body.mobile-redesign-site .site-header .logo img {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    object-fit: contain;
  }

  body.mobile-redesign-site .desktop-header-brand {
    display: none;
  }

  body.mobile-redesign-site .mobile-redesign-header-brand {
    display: inline;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  body.mobile-redesign-site .site-header .mobile-menu-toggle {
    display: inline-grid;
    width: 44px;
    min-width: 44px;
    height: 44px;
    min-height: 44px;
    grid-column: 2;
    place-items: center;
    justify-self: end;
    padding: 0;
    border: 0;
    border-radius: 8px;
    background: transparent;
    color: #173544;
    box-shadow: none;
    transition: background-color 180ms ease, transform 180ms ease;
  }

  body.mobile-redesign-site .site-header .mobile-menu-toggle:active {
    background: #f2f5f6;
    transform: scale(.96);
  }

  body.mobile-redesign-site .mobile-menu-toggle-icon {
    position: relative;
    display: block;
    width: 24px;
    height: 18px;
    order: 0;
  }

  body.mobile-redesign-site .mobile-menu-toggle-icon span {
    position: absolute;
    left: 0;
    top: 8px;
    width: 24px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  body.mobile-redesign-site .mobile-menu-toggle-icon span:nth-child(1) { transform: translateY(-8px); }
  body.mobile-redesign-site .mobile-menu-toggle-icon span:nth-child(3) { transform: translateY(8px); }
  body.mobile-redesign-site .mobile-menu-toggle[aria-expanded="true"] .mobile-menu-toggle-icon span:nth-child(1) { transform: rotate(45deg); }
  body.mobile-redesign-site .mobile-menu-toggle[aria-expanded="true"] .mobile-menu-toggle-icon span:nth-child(2) { opacity: 0; }
  body.mobile-redesign-site .mobile-menu-toggle[aria-expanded="true"] .mobile-menu-toggle-icon span:nth-child(3) { transform: rotate(-45deg); }

  body.mobile-redesign-site .mobile-menu-toggle:focus-visible {
    outline: 2px solid #56788c;
    outline-offset: 3px;
  }

  body.mobile-redesign-site .mobile-menu-toggle-label {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    clip-path: inset(50%);
    white-space: nowrap;
  }

  /* Solid full-screen navigation with a clear product hierarchy. */
  body.mobile-redesign-site .mobile-editorial-nav {
    position: fixed;
    z-index: 105;
    top: calc(64px + env(safe-area-inset-top));
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    width: 100%;
    max-height: none;
    padding: 16px var(--rm-gutter) calc(22px + env(safe-area-inset-bottom));
    overflow-x: hidden;
    overflow-y: auto;
    flex-direction: column;
    border: 0;
    border-radius: 0;
    background: var(--rm-page);
    box-shadow: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 200ms ease, transform 240ms ease, visibility 200ms ease;
    overscroll-behavior: contain;
  }

  body.mobile-redesign-site .mobile-editorial-nav.is-open {
    display: flex;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  body.mobile-redesign-site .mobile-editorial-menu-brand {
    display: none !important;
  }

  body.mobile-redesign-site .mobile-editorial-menu-brand img {
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    object-fit: contain;
  }

  body.mobile-redesign-site .mobile-editorial-nav-close {
    display: none !important;
  }

  body.mobile-redesign-site .mobile-editorial-nav-list {
    display: block;
    width: 100%;
    margin: 16px 0 28px;
    padding: 0;
    background: transparent;
  }

  body.mobile-redesign-site .mobile-editorial-nav-list > li {
    width: 100%;
    border-bottom: 1px solid var(--rm-line);
  }

  body.mobile-redesign-site .mobile-editorial-nav-list > li:first-child {
    border-top: 1px solid var(--rm-line);
  }

  body.mobile-redesign-site .mobile-editorial-nav-list > li > a,
  body.mobile-redesign-site .mobile-editorial-products-primary > a {
    display: flex;
    min-height: 54px;
    align-items: center;
    padding: 8px 0;
    border: 0;
    border-radius: 0;
    color: var(--rm-ink);
    font-size: clamp(23px, 6.6vw, 28px);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -0.025em;
  }

  body.mobile-redesign-site .mobile-editorial-products-primary {
    display: grid;
    min-height: 54px;
    grid-template-columns: minmax(0, 1fr) 48px;
    align-items: center;
  }

  body.mobile-redesign-site .mobile-editorial-products-toggle,
  body.mobile-redesign-site .mobile-redesign-lotion-toggle {
    display: grid;
    width: 48px;
    height: 48px;
    min-height: 48px;
    margin: 0;
    place-items: center;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--rm-navy);
  }

  body.mobile-redesign-site .mobile-editorial-products-toggle .dropdown-chevron {
    width: 19px;
    height: 19px;
  }

  body.mobile-redesign-site .mobile-editorial-products-list {
    position: static;
    width: 100%;
    max-height: 0;
    margin: 0;
    padding: 0 0 0 20px;
    overflow: hidden;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: max-height 240ms ease, padding-bottom 240ms ease, opacity 180ms ease;
  }

  body.mobile-redesign-site .mobile-editorial-products-item.is-open .mobile-editorial-products-list {
    max-height: 520px;
    padding-bottom: 13px;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  body.mobile-redesign-site .mobile-editorial-products-list > li {
    margin: 0;
    border-top: 1px solid rgba(23, 36, 43, 0.08);
  }

  body.mobile-redesign-site .mobile-editorial-products-list > li:first-child {
    border-top: 0;
  }

  body.mobile-redesign-site .mobile-editorial-products-list > li > a,
  body.mobile-redesign-site .mobile-redesign-product-primary > a,
  body.mobile-redesign-site .mobile-redesign-lotion-list a {
    display: flex;
    min-height: 48px;
    align-items: center;
    padding: 8px 0;
    color: #344951;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.3;
  }

  body.mobile-redesign-site .mobile-redesign-product-primary {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 48px;
    align-items: center;
  }

  body.mobile-redesign-site .mobile-redesign-lotion-toggle span {
    font-size: 21px;
    font-weight: 300;
    transition: transform 180ms ease;
  }

  body.mobile-redesign-site .mobile-redesign-lotion-group.is-open .mobile-redesign-lotion-toggle span {
    transform: rotate(45deg);
  }

  body.mobile-redesign-site .mobile-redesign-lotion-list {
    max-height: 0;
    margin: 0;
    padding: 0 0 0 18px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: max-height 200ms ease, opacity 180ms ease;
  }

  body.mobile-redesign-site .mobile-redesign-lotion-group.is-open .mobile-redesign-lotion-list {
    max-height: 120px;
    padding-bottom: 7px;
    opacity: 1;
    visibility: visible;
  }

  body.mobile-redesign-site .mobile-redesign-lotion-list a {
    min-height: 44px;
    color: var(--rm-muted);
    font-size: 14px;
    font-weight: 400;
  }

  body.mobile-redesign-site .mobile-editorial-menu-contact {
    display: flex;
    width: 100%;
    max-width: none;
    gap: 24px;
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid var(--rm-line);
  }

  body.mobile-redesign-site .mobile-editorial-menu-contact a {
    min-height: 48px;
    color: var(--rm-navy);
    font-size: 14px;
    font-weight: 700;
  }

  /* Hero: manufacturer position, inquiry action, and product range fit one phone viewport. */
  body.mobile-redesign-site .home-hero {
    display: grid;
    width: 100%;
    height: auto;
    min-height: 0;
    max-height: none;
    grid-template-columns: 1fr;
    gap: 0;
    align-items: start;
    padding: 23px var(--rm-gutter) 12px;
    overflow: hidden;
    background: linear-gradient(180deg, #f7f8f7 0%, #eef1f1 100%);
  }

  body.mobile-redesign-site .home-hero .hero-text {
    position: relative;
    z-index: 3;
    width: min(100%, var(--rm-content));
    max-width: var(--rm-content);
    margin: 0 auto;
    padding: 0;
    transform: none;
  }

  body.mobile-redesign-site .home-hero .eyebrow {
    margin: 0 0 7px;
    color: #60727b;
    font-size: 0;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.14em;
  }

  body.mobile-redesign-site .home-hero .eyebrow::after {
    content: "GUANGZHOU REBORN · FACTORY DIRECT";
    font-size: 9.5px;
  }

  body.mobile-redesign-site .home-hero h1 {
    max-width: 330px;
    margin: 0 0 9px;
    color: var(--rm-ink);
    font-size: clamp(34px, 9.3vw, 38px);
    font-weight: 700;
    line-height: 0.99;
    letter-spacing: -0.04em;
    overflow-wrap: normal;
    text-wrap: balance;
  }

  body.mobile-redesign-site .home-hero .hero-title-line:first-child {
    display: block;
  }

  body.mobile-redesign-site .home-hero .hero-title-line:last-child {
    display: none;
  }

  body.mobile-redesign-site .home-hero .hero-description {
    display: -webkit-box;
    max-width: 350px;
    margin: 0;
    overflow: hidden;
    color: #526771;
    font-size: 15.5px;
    font-weight: 600;
    line-height: 1.35;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  body.mobile-redesign-site .home-hero .button-row {
    display: flex;
    width: 100%;
    max-width: 360px;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 16px;
    margin-top: 14px;
  }

  body.mobile-redesign-site .home-hero .button-row .btn {
    display: inline-flex;
    width: auto;
    min-width: 0;
    min-height: 48px;
    flex: 0 0 auto;
    align-items: center;
    justify-content: center;
    padding: 0 12px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.015em;
    white-space: nowrap;
  }

  body.mobile-redesign-site .home-hero .button-row .btn.primary {
    order: 0;
    min-width: 164px;
    border: 1px solid var(--rm-navy);
    background: var(--rm-navy);
    color: #fff;
  }

  body.mobile-redesign-site .home-hero .button-row .btn.secondary {
    order: 0;
    min-height: 48px;
    padding: 0 3px;
    border: 0;
    background: transparent;
    color: var(--rm-navy);
    font-size: 12px;
    font-weight: 600;
  }

  body.mobile-redesign-site .home-hero .btn.primary::after,
  body.mobile-redesign-site .home-hero .btn.secondary::after {
    content: none;
  }

  body.mobile-redesign-site .home-hero .btn.secondary::after {
    content: "→";
    margin-left: 6px;
  }

  body.mobile-redesign-site .home-hero .hero-media {
    position: relative;
    z-index: 2;
    width: min(100%, 430px);
    min-width: 0;
    height: auto;
    min-height: 0;
    margin: 7px auto 0;
    padding: 0;
    transform: none;
  }

  body.mobile-redesign-site .home-hero .hero-product-stage {
    position: relative;
    display: block;
    width: 100%;
    max-width: 430px;
    height: clamp(304px, 81vw, 326px);
    margin: 0;
    isolation: isolate;
    transform: none;
  }

  body.mobile-redesign-site .home-hero .hero-product-stage::before {
    display: none;
  }

  body.mobile-redesign-site .home-hero .hero-product-stage::after {
    content: "";
    position: absolute;
    right: 5%;
    bottom: 2px;
    left: 5%;
    z-index: 0;
    width: auto;
    height: 16px;
    border-radius: 50%;
    background: rgba(23, 36, 43, 0.12);
    filter: blur(12px);
    transform: scaleY(0.38);
  }

  body.mobile-redesign-site .home-hero .hero-product {
    position: absolute;
    inset: auto;
    display: block;
    margin: 0;
    opacity: 1;
    aspect-ratio: auto;
    transform: translateY(0);
    animation: none;
  }

  body.mobile-redesign-site .home-hero .hero-product::after {
    display: none;
  }

  body.mobile-redesign-site .home-hero .hero-product img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: none;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    object-fit: contain;
    object-position: center bottom;
    filter: drop-shadow(0 9px 10px rgba(23, 36, 43, 0.09));
  }

  body.mobile-redesign-site .home-hero .hero-product--pump-a {
    left: 0;
    bottom: 2px;
    z-index: 6;
    width: clamp(103px, 29vw, 120px);
    height: clamp(168px, 47vw, 196px);
    animation-delay: 40ms;
  }

  body.mobile-redesign-site .home-hero .hero-product--green {
    left: 21%;
    bottom: 1px;
    z-index: 7;
    width: clamp(148px, 41vw, 168px);
    height: clamp(148px, 41vw, 168px);
    animation-delay: 100ms;
  }

  body.mobile-redesign-site .home-hero .hero-product--spray {
    left: 46%;
    bottom: 48px;
    z-index: 3;
    width: clamp(142px, 40vw, 166px);
    height: clamp(142px, 40vw, 166px);
    animation-delay: 160ms;
  }

  body.mobile-redesign-site .home-hero .hero-product--anchor {
    right: 0;
    bottom: 3px;
    z-index: 2;
    width: clamp(118px, 32vw, 132px);
    height: clamp(182px, 48vw, 204px);
    animation-delay: 220ms;
  }

  @keyframes rm-product-reveal {
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes rm-slide-up {
    from {
      opacity: 0;
      transform: translateY(8px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  /* Compact manufacturing facts immediately after the first viewport. */
  body.mobile-redesign-site .home-trust-strip {
    width: 100%;
    padding: 17px var(--rm-gutter) 19px;
    border: 0;
    border-top: 1px solid var(--rm-line);
    background: var(--rm-surface);
  }

  body.mobile-redesign-site .home-trust-inner {
    width: min(100%, var(--rm-content));
    margin: 0 auto;
  }

  body.mobile-redesign-site .home-trust-inner > p {
    margin: 0 0 10px;
    color: var(--rm-muted);
    font-size: 10.5px;
    font-weight: 700;
    line-height: 1.45;
    letter-spacing: 0.025em;
    text-align: center;
  }

  body.mobile-redesign-site .home-trust-inner .hero-stats {
    display: grid;
    margin: 0;
    padding: 0;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    border: 0;
  }

  body.mobile-redesign-site .home-trust-inner .hero-stats div {
    min-height: 54px;
    padding: 6px 5px;
    border: 0;
    border-right: 1px solid var(--rm-line);
    border-radius: 0;
    background: transparent;
    text-align: center;
  }

  body.mobile-redesign-site .home-trust-inner .hero-stats div:last-child {
    border-right: 0;
  }

  body.mobile-redesign-site .home-trust-inner .hero-stats strong {
    display: block;
    margin: 0 0 5px;
    color: var(--rm-ink);
    font-size: clamp(16px, 4.6vw, 19px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.025em;
    white-space: nowrap;
  }

  body.mobile-redesign-site .home-trust-inner .hero-stats span {
    color: var(--rm-muted);
    font-size: 10px;
    line-height: 1.25;
  }

  /* Shared homepage rhythm. */
  body.mobile-redesign-site main > .section {
    width: 100%;
    padding: 54px var(--rm-gutter);
  }

  body.mobile-redesign-site main > .section .section-heading,
  body.mobile-redesign-site .manufacturing-heading {
    width: min(100%, var(--rm-content));
    max-width: none;
    margin: 0 auto 22px;
    text-align: left;
  }

  body.mobile-redesign-site main > .section .section-heading .eyebrow,
  body.mobile-redesign-site .manufacturing-heading .eyebrow,
  body.mobile-redesign-site .home-inquiry-band .eyebrow {
    margin: 0 0 9px;
    color: #63747c;
    font-size: 10px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.14em;
  }

  body.mobile-redesign-site main > .section .section-heading h2,
  body.mobile-redesign-site .manufacturing-heading h2,
  body.mobile-redesign-site .home-inquiry-band h2 {
    margin: 0 0 10px;
    color: var(--rm-ink);
    font-size: clamp(28px, 7.7vw, 33px);
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.035em;
  }

  body.mobile-redesign-site main > .section .section-heading > p:last-child,
  body.mobile-redesign-site .manufacturing-heading > p:last-child {
    max-width: 390px;
    margin: 0;
    color: var(--rm-muted);
    font-size: 15px;
    line-height: 1.5;
  }

  /* Product range: editorial objects, not ecommerce cards. */
  body.mobile-redesign-site .home-products-section {
    padding-right: 0;
    padding-left: 0;
    overflow: hidden;
    background: var(--rm-page);
  }

  body.mobile-redesign-site .home-inspection-section {
    overflow: hidden;
    background: var(--rm-surface);
  }

  body.mobile-redesign-site .home-inspection-grid {
    display: flex;
    width: calc(100vw - var(--rm-gutter));
    max-width: none;
    margin-right: calc(-1 * var(--rm-gutter));
    padding: 0 var(--rm-gutter) 3px 0;
    gap: 14px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-padding-inline: 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    overscroll-behavior-x: contain;
  }

  body.mobile-redesign-site .home-inspection-grid::-webkit-scrollbar {
    display: none;
  }

  body.mobile-redesign-site .home-inspection-grid .inspection-card {
    width: min(82vw, 342px);
    min-width: min(82vw, 342px);
    flex: 0 0 min(82vw, 342px);
    margin: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    scroll-snap-align: start;
  }

  body.mobile-redesign-site .home-inspection-grid .inspection-card:nth-child(n + 3) {
    display: none;
  }

  body.mobile-redesign-site .home-inspection-grid .inspection-card > img {
    width: 100%;
    height: clamp(220px, 61vw, 246px);
    border-radius: 2px;
    object-fit: cover;
  }

  body.mobile-redesign-site .inspection-card-content {
    padding: 12px 0 0;
  }

  body.mobile-redesign-site .home-inspection-section + .faq-section {
    padding: 54px var(--rm-gutter);
    background: var(--rm-page);
  }

  body.mobile-redesign-site .home-products-section .section-heading {
    width: min(calc(100% - (2 * var(--rm-gutter))), var(--rm-content));
  }

  body.mobile-redesign-site .home-product-grid {
    display: flex;
    width: 100%;
    max-width: none;
    margin: 0;
    padding: 0 var(--rm-gutter) 4px;
    gap: 15px;
    overflow-x: auto;
    overflow-y: hidden;
    align-items: stretch;
    scroll-padding-inline: var(--rm-gutter);
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    overscroll-behavior-x: contain;
  }

  body.mobile-redesign-site .home-product-grid::-webkit-scrollbar {
    display: none;
  }

  body.mobile-redesign-site .home-product-grid .product-card {
    display: flex;
    width: min(84vw, 350px);
    min-width: min(84vw, 350px);
    min-height: 0;
    height: auto;
    flex: 0 0 min(84vw, 350px);
    flex-direction: column;
    padding: 0;
    overflow: visible;
    border: 0;
    border-top: 1px solid var(--rm-line);
    border-bottom: 1px solid var(--rm-line);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  body.mobile-redesign-site .home-product-grid .product-card:nth-child(1) { order: 1; }
  body.mobile-redesign-site .home-product-grid .product-card:nth-child(2) { order: 4; }
  body.mobile-redesign-site .home-product-grid .product-card:nth-child(3) { order: 2; }
  body.mobile-redesign-site .home-product-grid .product-card:nth-child(4) { order: 3; }

  body.mobile-redesign-site .home-product-grid .product-image-link {
    display: flex;
    width: 100%;
    min-height: clamp(246px, 68vw, 270px);
    aspect-ratio: auto;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 8px;
    overflow: hidden;
    border: 0;
    border-radius: 0;
    background: #edf0f1;
  }

  body.mobile-redesign-site .home-product-grid .product-image-link img {
    width: 100%;
    height: 100%;
    max-height: 270px;
    margin: 0;
    padding: 0;
    object-fit: contain;
    object-position: center;
    background: transparent;
    transform: none;
  }

  body.mobile-redesign-site .home-product-grid .product-card-content {
    display: flex;
    min-height: 140px;
    flex: 1;
    flex-direction: column;
    padding: 14px 2px 12px;
  }

  body.mobile-redesign-site .home-product-grid .product-card h3 {
    margin: 0 0 7px;
    color: var(--rm-ink);
    font-size: 19px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
  }

  body.mobile-redesign-site .home-product-grid .product-card > .product-card-content > p {
    display: -webkit-box;
    min-height: 0;
    margin: 0 0 7px;
    overflow: hidden;
    color: var(--rm-muted);
    font-size: 13.5px;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  body.mobile-redesign-site .home-product-grid .product-category-tags {
    display: flex;
    min-height: 0;
    flex-wrap: wrap;
    gap: 4px 12px;
    margin: 0 0 5px;
  }

  body.mobile-redesign-site .home-product-grid .product-category-tags a {
    min-height: 0;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: #6b7a81;
    font-size: 11.5px;
    line-height: 1.4;
  }

  body.mobile-redesign-site .home-product-grid .product-category-tags a + a::before {
    content: "/";
    margin-right: 12px;
    color: #aeb9be;
  }

  body.mobile-redesign-site .home-product-grid .product-card-actions {
    margin-top: auto;
    padding: 0;
  }

  body.mobile-redesign-site .home-product-grid .product-card-actions .btn {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--rm-navy);
    font-size: 13px;
    font-weight: 700;
  }

  body.mobile-redesign-site .mobile-swipe-indicator {
    display: flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 2px;
    margin: 3px auto 0;
  }

  body.mobile-redesign-site .mobile-swipe-dot {
    position: relative;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
  }

  body.mobile-redesign-site .mobile-swipe-dot::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #aab5ba;
    transform: translate(-50%, -50%);
    transition: width 180ms ease, background-color 180ms ease;
  }

  body.mobile-redesign-site .mobile-swipe-dot.is-active::before {
    width: 22px;
    border-radius: 2px;
    background: var(--rm-navy);
  }

  body.mobile-redesign-site .mobile-swipe-dot:nth-child(1) { order: 1; }
  body.mobile-redesign-site .mobile-swipe-dot:nth-child(2) { order: 4; }
  body.mobile-redesign-site .mobile-swipe-dot:nth-child(3) { order: 2; }
  body.mobile-redesign-site .mobile-swipe-dot:nth-child(4) { order: 3; }

  /* Factory: three large real-photo views plus explanatory capability content. */
  body.mobile-redesign-site .manufacturing-strength-section {
    padding: 54px var(--rm-gutter);
    background: var(--rm-surface);
  }

  body.mobile-redesign-site .manufacturing-strength-inner {
    display: grid;
    width: min(100%, var(--rm-content));
    max-width: var(--rm-content);
    margin: 0 auto;
    grid-template-columns: 1fr;
    grid-template-areas: "heading" "visual" "details";
    gap: 0;
  }

  body.mobile-redesign-site .manufacturing-heading {
    grid-area: heading;
  }

  body.mobile-redesign-site .manufacturing-heading h2 {
    max-width: 340px;
  }

  body.mobile-redesign-site .manufacturing-visual {
    grid-area: visual;
    margin-top: 2px;
    overflow: visible;
  }

  body.mobile-redesign-site .manufacturing-collage {
    display: flex;
    width: calc(100vw - var(--rm-gutter));
    height: auto;
    margin-right: calc(-1 * var(--rm-gutter));
    padding: 0 var(--rm-gutter) 4px 0;
    gap: 10px;
    overflow-x: auto;
    overflow-y: hidden;
    border-radius: 0;
    scroll-padding-inline: 0;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    overscroll-behavior-x: contain;
  }

  body.mobile-redesign-site .manufacturing-collage::-webkit-scrollbar {
    display: none;
  }

  body.mobile-redesign-site .manufacturing-collage img {
    display: block;
    width: calc(100vw - 54px);
    height: clamp(214px, 59vw, 238px);
    min-width: 0;
    min-height: 0;
    flex: 0 0 calc(100vw - 54px);
    aspect-ratio: auto;
    border-radius: 2px;
    background: #edf0f1;
    object-fit: cover;
    object-position: center;
    filter: none;
    scroll-snap-align: start;
  }

  body.mobile-redesign-site .manufacturing-collage img:nth-child(2) {
    display: none;
  }

  body.mobile-redesign-site .manufacturing-collage .factory-building-image {
    height: clamp(214px, 59vw, 238px);
    aspect-ratio: auto;
    border-radius: 2px;
    object-position: center 64%;
  }

  body.mobile-redesign-site .manufacturing-visual::after {
    content: "Factory Building   /   Automated Assembly   /   Inspection Standards";
    display: block;
    margin-top: 8px;
    color: var(--rm-muted);
    font-size: 10.5px;
    font-weight: 700;
    line-height: 1.45;
    letter-spacing: 0.035em;
  }

  body.mobile-redesign-site .manufacturing-details {
    grid-area: details;
  }

  body.mobile-redesign-site .manufacturing-feature-grid {
    display: block;
    margin-top: 18px;
    border-top: 1px solid var(--rm-line);
    border-bottom: 0;
  }

  body.mobile-redesign-site .manufacturing-feature-grid article {
    display: grid;
    min-height: 0;
    padding: 14px 0;
    grid-template-columns: 32px minmax(0, 1fr);
    column-gap: 10px;
    border: 0;
    border-bottom: 1px solid var(--rm-line);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  body.mobile-redesign-site .manufacturing-feature-grid article > .feature-number,
  body.mobile-redesign-site .manufacturing-feature-grid article > h3,
  body.mobile-redesign-site .manufacturing-feature-grid article > .mobile-manufacturing-stat {
    display: block;
  }

  body.mobile-redesign-site .manufacturing-feature-grid article > p,
  body.mobile-redesign-site .manufacturing-feature-grid article:nth-child(4) {
    display: none;
  }

  body.mobile-redesign-site .manufacturing-feature-grid .feature-number {
    grid-column: 1;
    grid-row: 1 / 4;
    margin: 3px 0 0;
    color: #73828a;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
  }

  body.mobile-redesign-site .manufacturing-feature-grid h3 {
    grid-column: 2;
    margin: 0 0 3px;
    color: var(--rm-ink);
    font-size: 17px;
    font-weight: 700;
    line-height: 1.25;
  }

  body.mobile-redesign-site .manufacturing-feature-grid p {
    grid-column: 2;
    margin: 0;
    color: var(--rm-muted);
    font-size: 13.5px;
    line-height: 1.52;
  }

  body.mobile-redesign-site .manufacturing-feature-grid .mobile-manufacturing-stat {
    grid-column: 2;
    margin-top: 3px;
  }

  body.mobile-redesign-site .mobile-manufacturing-stat strong,
  body.mobile-redesign-site .mobile-manufacturing-stat small {
    display: inline;
  }

  body.mobile-redesign-site .mobile-manufacturing-stat strong {
    margin: 0 6px 0 0;
    color: var(--rm-navy);
    font-size: 14px;
    font-weight: 700;
  }

  body.mobile-redesign-site .mobile-manufacturing-stat small {
    color: var(--rm-muted);
    font-size: 12px;
  }

  body.mobile-redesign-site .manufacturing-actions {
    display: flex;
    margin-top: 14px;
    align-items: center;
    flex-direction: row;
    gap: 18px;
  }

  body.mobile-redesign-site .manufacturing-actions .btn.primary {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--rm-navy);
    font-size: 13px;
    font-weight: 700;
  }

  body.mobile-redesign-site .manufacturing-actions .btn.primary::after {
    content: "→";
    margin-left: 8px;
  }

  /* Keep the remaining homepage sections restrained and editorial. */
  body.mobile-redesign-site .home-oem-section {
    background: var(--rm-page);
  }

  body.mobile-redesign-site .home-oem-section .mini-card {
    padding-top: 18px;
    padding-bottom: 18px;
    border-radius: 0;
    box-shadow: none;
  }








  /* Conversion section. */
  body.mobile-redesign-site .home-inquiry-band {
    display: block;
    width: 100%;
    margin: 0;
    padding: 56px var(--rm-gutter);
    background: var(--rm-navy-dark);
    color: #fff;
  }

  body.mobile-redesign-site .home-inquiry-band > div,
  body.mobile-redesign-site .home-inquiry-band > .contact-qr-section {
    width: min(100%, var(--rm-content));
    margin-right: auto;
    margin-left: auto;
  }

  body.mobile-redesign-site .home-inquiry-band .eyebrow {
    color: #b9c9d1;
  }

  body.mobile-redesign-site .home-inquiry-band h2 {
    max-width: 420px;
    color: #fff;
  }

  body.mobile-redesign-site .home-inquiry-band > div > p:last-of-type {
    max-width: 360px;
    color: #d3dee3;
    font-size: 15px;
    line-height: 1.58;
  }

  body.mobile-redesign-site .mobile-contact-actions {
    display: flex;
    max-width: 380px;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
  }

  body.mobile-redesign-site .mobile-contact-actions > :where(a, button) {
    min-height: 48px;
    padding: 0 14px;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 3px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
  }

  body.mobile-redesign-site .mobile-whatsapp-cta {
    min-height: 48px;
    padding: 0 17px;
    border-radius: 3px;
  }

  body.mobile-redesign-site .home-inquiry-band .contact-qr-section {
    border-top-color: rgba(255, 255, 255, 0.18);
  }

  body.mobile-redesign-site .home-inquiry-band .contact-qr-heading h3,
  body.mobile-redesign-site .home-inquiry-band .contact-qr-heading p {
    color: #fff;
  }

  body.mobile-redesign-site .home-inquiry-band .contact-qr-card {
    border-radius: 3px;
  }

  /* Shared inner-page design system. Desktop navigation remains a separate tree. */
  body.mobile-redesign-site .site-header > .nav-toggle,
  body.mobile-redesign-site .desktop-nav,
  body.mobile-redesign-site .header-cta {
    display: none;
  }

  body.mobile-redesign-site main {
    background: var(--rm-page);
  }

  body.mobile-redesign-site main :where(.btn, .factory-inquiry-button, .copy-contact-id) {
    min-height: 48px;
    border-radius: 3px;
  }

  body.mobile-redesign-site main > .section > h2,
  body.mobile-redesign-site main > .section > .section-heading > h2,
  body.mobile-redesign-site main > .section :where(.about-section-intro, .factory-process-heading) > h2 {
    color: var(--rm-ink);
    font-size: clamp(27px, 7.6vw, 33px);
    line-height: 1.08;
    letter-spacing: -0.035em;
  }

  body.mobile-redesign-site main > .section :where(p, li, td) {
    color: var(--rm-muted);
    line-height: 1.52;
  }

  /* Product-page heroes: concise copy first, then a large factual product view. */
  body.mobile-redesign-site :is(.lotion-hero, .foam-hero, .plastic-hero, .cs-hero) {
    display: block;
    min-height: 0;
    padding: 23px var(--rm-gutter) 10px;
    overflow: hidden;
    background: linear-gradient(180deg, #f7f8f7 0%, #e9eeef 100%);
  }

  body.mobile-redesign-site .cs-hero .cs-container {
    width: 100%;
    max-width: none;
    padding: 0;
  }

  body.mobile-redesign-site :is(.lotion-hero-inner, .foam-hero__inner, .plastic-hero-shell, .cs-hero-layout) {
    display: grid;
    width: min(100%, var(--rm-content));
    min-height: 0;
    margin: 0 auto;
    grid-template-columns: 1fr;
    gap: 4px;
    align-items: start;
  }

  body.mobile-redesign-site :is(.lotion-hero-copy, .foam-hero__content, .plastic-hero-copy, .cs-hero-copy) {
    width: 100%;
    max-width: none;
    color: var(--rm-ink);
    animation: rm-slide-up 420ms cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  body.mobile-redesign-site :is(.lotion-hero-copy, .foam-hero__content, .plastic-hero-copy, .cs-hero-copy) .eyebrow {
    margin: 0 0 7px;
    color: #60727b;
    font-size: 9.5px;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.14em;
  }

  body.mobile-redesign-site :is(.lotion-hero-copy, .foam-hero__content, .plastic-hero-copy, .cs-hero-copy) h1 {
    max-width: 350px;
    margin: 0 0 9px;
    color: var(--rm-ink);
    font-size: clamp(34px, 9.4vw, 39px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.04em;
    text-wrap: balance;
    text-shadow: none;
    white-space: normal;
  }

  body.mobile-redesign-site :is(.lotion-hero-description, .foam-hero__description, .plastic-hero-description, .cs-hero-description) {
    display: -webkit-box;
    max-width: 350px;
    margin: 0;
    overflow: hidden;
    color: #526771;
    font-size: 14.5px;
    font-weight: 500;
    line-height: 1.42;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
  }

  body.mobile-redesign-site .cs-hero-copy .cs-hero-subtitle {
    margin: 0 0 5px;
    color: #526771;
    font-size: 15px;
    font-weight: 700;
    line-height: 1.35;
  }

  body.mobile-redesign-site :is(.lotion-hero-copy, .foam-hero__content, .plastic-hero-copy, .cs-hero-copy) .button-row {
    display: flex;
    margin-top: 14px;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 16px;
  }

  body.mobile-redesign-site :is(.lotion-hero-copy, .foam-hero__content, .plastic-hero-copy, .cs-hero-copy) .btn {
    width: auto;
    min-height: 48px;
    flex: 0 0 auto;
    padding: 0 17px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 700;
  }

  body.mobile-redesign-site :is(.lotion-hero-copy, .foam-hero__content, .plastic-hero-copy, .cs-hero-copy) .btn.primary {
    min-width: 154px;
    border: 1px solid var(--rm-navy);
    background: var(--rm-navy);
    color: #fff;
    box-shadow: none;
  }

  body.mobile-redesign-site :is(.lotion-hero-copy, .foam-hero__content, .plastic-hero-copy, .cs-hero-copy) .btn.secondary {
    min-width: 0;
    padding: 0 3px;
    border: 0;
    background: transparent;
    color: var(--rm-navy);
    font-weight: 600;
  }

  body.mobile-redesign-site :is(.lotion-hero-copy, .foam-hero__content, .plastic-hero-copy, .cs-hero-copy) .btn.secondary::after {
    content: "→";
    margin-left: 6px;
  }

  body.mobile-redesign-site :is(.lotion-hero-visual, .foam-hero__visual, .plastic-hero-visual, .cs-hero-visual) {
    position: relative;
    width: 100%;
    min-width: 0;
    margin: 3px auto 0;
  }

  body.mobile-redesign-site :is(.lotion-hero-stage, .foam-hero__products, .plastic-hero-stage, .cs-product-stage) {
    position: relative;
    width: 100%;
    height: clamp(282px, 75vw, 310px);
    margin: 0;
    overflow: visible;
    transform: none;
  }

  body.mobile-redesign-site :is(.lotion-hero-product, .foam-hero__product, .plastic-hero-product, .cs-hero-product) {
    opacity: 1;
    animation: none;
  }

  body.mobile-redesign-site .lotion-hero-product {
    top: auto;
    bottom: 0;
    width: 29%;
    height: clamp(205px, 54vw, 226px);
    aspect-ratio: 1086 / 1448;
    transform: none;
  }

  body.mobile-redesign-site .lotion-hero-product--01 { left: 0; z-index: 2; }
  body.mobile-redesign-site .lotion-hero-product--02 { left: 23%; bottom: -2px; z-index: 3; }
  body.mobile-redesign-site .lotion-hero-product--03 { left: 47%; bottom: -1px; z-index: 4; }
  body.mobile-redesign-site .lotion-hero-product--04 { right: 0; left: auto; z-index: 5; }

  body.mobile-redesign-site .foam-hero__products {
    --foam-product-height: clamp(190px, 50vw, 218px);
    inset: auto;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 5px;
    transform: none;
  }

  body.mobile-redesign-site .foam-hero__product {
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    width: calc(var(--foam-product-height) * var(--foam-visible-ratio));
    height: var(--foam-product-height);
    flex: 0 0 auto;
    transform: none;
  }

  body.mobile-redesign-site .plastic-hero-product-row {
    bottom: 5%;
    width: 100%;
    gap: 7px;
  }

  body.mobile-redesign-site .plastic-hero-product {
    top: auto;
    bottom: auto;
    width: auto;
    height: auto;
    transform: none;
  }

  body.mobile-redesign-site :is(.lotion-hero-product, .cs-hero-product) img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center bottom;
    filter: drop-shadow(0 10px 11px rgba(23, 36, 43, 0.1));
  }

  body.mobile-redesign-site .cs-hero-product {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    margin: 0;
    transform: none;
  }

  /* Product catalog: two-column industrial directory with larger factual imagery. */
  body.mobile-redesign-site :is(.catalog-section, .foam-catalog-section, .bottle-catalog-section, .cs-product-section, .cs-applications) {
    padding: 54px var(--rm-gutter);
  }

  body.mobile-redesign-site :is(.lotion-product-grid, .catalog-grid, .foam-catalog-grid, .bottle-catalog-grid) {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 10px;
  }

  body.mobile-redesign-site .lotion-product-grid .series-block,
  body.mobile-redesign-site .lotion-product-grid .catalog-grid {
    display: contents;
  }

  body.mobile-redesign-site :is(.catalog-card, .foam-catalog-card, .bottle-catalog-card) {
    min-width: 0;
    height: auto;
    min-height: 0;
    overflow: hidden;
    border: 0;
    border-top: 1px solid var(--rm-line);
    border-bottom: 1px solid var(--rm-line);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  body.mobile-redesign-site :is(.catalog-card, .foam-catalog-card, .bottle-catalog-card) .product-image-box {
    height: clamp(158px, 43vw, 176px);
    flex: 0 0 clamp(158px, 43vw, 176px);
    padding: 6px;
    background: #edf0f1;
  }

  body.mobile-redesign-site :is(.catalog-card, .foam-catalog-card, .bottle-catalog-card) .product-image-box img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }

  body.mobile-redesign-site :is(.catalog-card, .foam-catalog-card, .bottle-catalog-card) .catalog-card-body {
    min-height: 140px;
    padding: 10px 2px 12px;
    border-top: 0;
  }

  body.mobile-redesign-site :is(.catalog-card, .foam-catalog-card, .bottle-catalog-card) h4 {
    margin: 0 0 4px;
    color: var(--rm-ink);
    font-size: 12.5px;
    line-height: 1.25;
  }

  body.mobile-redesign-site :is(.catalog-card, .foam-catalog-card, .bottle-catalog-card) p,
  body.mobile-redesign-site .bottle-card-specs :where(dt, dd) {
    font-size: 11px;
    line-height: 1.35;
  }

  body.mobile-redesign-site :is(.catalog-card, .foam-catalog-card, .bottle-catalog-card) .btn {
    width: 100%;
    min-height: 48px;
    margin-top: auto;
    padding: 0 7px;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--rm-navy);
    font-size: 11.5px;
  }

  body.mobile-redesign-site .mobile-redesign-catalog-truncated {
    display: none;
  }

  body.mobile-redesign-site :is(.mobile-redesign-catalog-more, .mobile-incremental-load-more) {
    display: inline-flex;
    width: 100%;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    margin-top: 18px;
    padding: 0 16px;
    border: 1px solid var(--rm-navy);
    border-radius: 3px;
    background: transparent;
    color: var(--rm-navy);
    font: inherit;
    font-size: 13px;
    font-weight: 700;
  }

  body.mobile-redesign-site :is(.mobile-redesign-catalog-more, .mobile-incremental-load-more)[hidden] {
    display: none;
  }

  body.mobile-redesign-site .mobile-incremental-load-more {
    margin-top: 20px;
  }

  body.mobile-redesign-site .mobile-technical-accordion {
    padding-top: 18px;
    padding-bottom: 18px;
  }

  body.mobile-redesign-site .mobile-technical-accordion-toggle {
    display: flex;
    width: 100%;
    min-height: 52px;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    border: 0;
    background: transparent;
    color: #152d3f;
    padding: 0;
    text-align: left;
    font: inherit;
    font-size: 17px;
    font-weight: 700;
  }

  body.mobile-redesign-site .mobile-technical-accordion-toggle::after {
    content: "+";
    flex: 0 0 auto;
    color: #6f8798;
    font-size: 24px;
    font-weight: 400;
    line-height: 1;
  }

  body.mobile-redesign-site .mobile-technical-accordion-toggle[aria-expanded="true"]::after {
    content: "−";
  }

  body.mobile-redesign-site .mobile-technical-accordion-content {
    padding-top: 18px;
  }

  body.mobile-redesign-site .mobile-technical-accordion-content[hidden] {
    display: none !important;
  }

  body.mobile-redesign-site .lotion-filter-toggle,
  body.mobile-redesign-site .lotion-filter-close,
  body.mobile-redesign-site .foam-series-tab {
    min-height: 48px;
    border-radius: 3px;
  }

  /* Lotion product discovery: an isolated bottom sheet that never reflows results. */
  body.mobile-redesign-site.lotion-filter-open {
    overflow: hidden;
  }

  body.mobile-redesign-site .lotion-filter-backdrop {
    position: fixed;
    inset: 0;
    z-index: 130;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: rgba(12, 27, 37, 0.58);
  }

  body.mobile-redesign-site .lotion-filter-backdrop[hidden] {
    display: none;
  }

  body.mobile-redesign-site .lotion-filter-sidebar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 131;
    display: grid;
    width: 100%;
    max-width: 620px;
    max-height: min(88dvh, 760px);
    margin: 0 auto;
    padding: 0 18px;
    grid-template-rows: auto minmax(0, 1fr) auto;
    overflow: hidden;
    border: 0;
    border-radius: 6px 6px 0 0;
    background: var(--rm-surface);
    box-shadow: 0 -18px 44px rgba(12, 27, 37, 0.24);
    visibility: hidden;
    transform: translateY(102%);
    transition: transform 220ms ease, visibility 220ms ease;
  }

  body.mobile-redesign-site .lotion-filter-sidebar.is-open {
    display: grid;
    visibility: visible;
    transform: translateY(0);
  }

  body.mobile-redesign-site .lotion-filter-header {
    position: sticky;
    top: 0;
    z-index: 2;
    min-height: 62px;
    margin: 0;
    padding: 0;
    border-bottom: 1px solid var(--rm-line);
    background: var(--rm-surface);
  }

  body.mobile-redesign-site .lotion-filter-header h2 {
    font-size: 20px;
  }

  body.mobile-redesign-site .lotion-filter-header > .lotion-clear-filters {
    display: none;
  }

  body.mobile-redesign-site .lotion-filter-sheet-close {
    display: inline-grid;
    width: 44px;
    height: 44px;
    place-items: center;
    padding: 0;
    border: 1px solid var(--rm-line);
    border-radius: 3px;
    background: #fff;
    color: var(--rm-navy-dark);
    font: inherit;
    font-size: 24px;
    line-height: 1;
  }

  body.mobile-redesign-site .lotion-filter-sheet-content {
    min-height: 0;
    padding: 20px 0 24px;
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  body.mobile-redesign-site .lotion-filter-sheet-content .lotion-filter-group + .lotion-filter-group {
    margin-top: 18px;
    padding-top: 17px;
  }

  body.mobile-redesign-site .lotion-filter-group[data-filter-group] > label {
    min-height: 44px;
  }

  body.mobile-redesign-site .lotion-filter-sheet-footer {
    position: sticky;
    bottom: 0;
    z-index: 2;
    display: grid;
    min-height: calc(68px + env(safe-area-inset-bottom));
    padding: 10px 0 calc(10px + env(safe-area-inset-bottom));
    grid-template-columns: minmax(96px, 0.7fr) minmax(0, 1.5fr);
    gap: 10px;
    border-top: 1px solid var(--rm-line);
    background: var(--rm-surface);
  }

  body.mobile-redesign-site .lotion-filter-sheet-clear,
  body.mobile-redesign-site .lotion-filter-sheet-footer .lotion-filter-close {
    display: inline-flex;
    width: 100%;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 0 12px;
    border-radius: 3px;
    font: inherit;
    font-size: 13px;
    font-weight: 700;
  }

  body.mobile-redesign-site .lotion-filter-sheet-clear {
    border: 1px solid var(--rm-line);
    background: #fff;
    color: var(--rm-navy-dark);
  }

  body.mobile-redesign-site .lotion-filter-sheet-footer .lotion-filter-close {
    border-color: var(--rm-navy);
    background: var(--rm-navy);
    color: #fff;
  }

  body.mobile-redesign-site .lotion-active-filter-chips {
    display: flex;
    margin: -10px 0 20px;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  body.mobile-redesign-site .lotion-active-filter-chips[hidden] {
    display: none;
  }

  body.mobile-redesign-site .lotion-active-filter-chips::-webkit-scrollbar {
    display: none;
  }

  body.mobile-redesign-site .lotion-active-filter-chip {
    display: inline-flex;
    min-height: 44px;
    flex: 0 0 auto;
    align-items: center;
    gap: 7px;
    padding: 0 12px;
    border: 1px solid #c7d3d9;
    border-radius: 3px;
    background: #fff;
    color: var(--rm-navy-dark);
    font: inherit;
    font-size: 12px;
    font-weight: 700;
  }

  body.mobile-redesign-site .foam-series-tabs {
    display: flex;
    margin-bottom: 22px;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  body.mobile-redesign-site .foam-series-tabs::-webkit-scrollbar {
    display: none;
  }

  body.mobile-redesign-site .foam-series-tab {
    flex: 0 0 auto;
    padding: 0 16px;
  }

  body.mobile-redesign-site .spec-table {
    display: block;
    width: 100%;
    overflow-x: auto;
    border-radius: 0;
    scrollbar-width: thin;
  }

  body.mobile-redesign-site .spec-table :where(th, td) {
    min-width: 128px;
    padding: 12px 10px;
    font-size: 12.5px;
  }

  body.mobile-redesign-site:is(.foam-pump-page, .plastic-bottle-page) main > .section > .card-grid.four {
    display: block;
    border-top: 1px solid var(--rm-line);
  }

  body.mobile-redesign-site:is(.foam-pump-page, .plastic-bottle-page) main > .section > .card-grid.four .mini-card {
    min-height: 0;
    padding: 16px 0;
    border: 0;
    border-bottom: 1px solid var(--rm-line);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  body.mobile-redesign-site main > .section.split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
  }

  body.mobile-redesign-site main > .section.split img {
    width: 100%;
    max-height: 300px;
    border-radius: 2px;
    object-fit: contain;
  }

  body.mobile-redesign-site .cs-product-grid,
  body.mobile-redesign-site .cs-application-grid {
    display: flex;
    width: calc(100vw - var(--rm-gutter));
    margin-right: calc(-1 * var(--rm-gutter));
    padding: 0 var(--rm-gutter) 3px 0;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  body.mobile-redesign-site :is(.cs-product-grid, .cs-application-grid)::-webkit-scrollbar {
    display: none;
  }

  body.mobile-redesign-site :is(.cs-product-card, .cs-application-card) {
    width: min(82vw, 342px);
    min-width: min(82vw, 342px);
    flex: 0 0 min(82vw, 342px);
    overflow: hidden;
    border: 0;
    border-top: 1px solid var(--rm-line);
    border-bottom: 1px solid var(--rm-line);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    scroll-snap-align: start;
  }

  body.mobile-redesign-site :is(.cs-product-media, .cs-application-media) {
    height: clamp(226px, 63vw, 252px);
    background: #edf0f1;
  }

  body.mobile-redesign-site :is(.cs-product-media, .cs-application-media) img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  body.mobile-redesign-site .cs-application-media img {
    object-fit: cover;
  }

  body.mobile-redesign-site :is(.cs-product-info, .cs-application-info) {
    min-height: 126px;
    padding: 14px 2px;
  }

  body.mobile-redesign-site .cs-cta-section {
    padding: 54px var(--rm-gutter);
    background: var(--rm-navy-dark);
  }

  body.mobile-redesign-site .cs-cta {
    display: grid;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  body.mobile-redesign-site .cs-cta :where(h2, p, a) {
    color: #fff;
  }

  /* Factory: automated assembly, injection molding, then inspection process. */
  body.mobile-redesign-site.factory-page main {
    display: flex;
    flex-direction: column;
  }

  body.mobile-redesign-site.factory-page .factory-manufacturing-hero { order: 0; }
  body.mobile-redesign-site.factory-page .automatic-assembly-section { order: 1; }
  body.mobile-redesign-site.factory-page .injection-capability-section { order: 2; }
  body.mobile-redesign-site.factory-page main > .factory-capability-section:not(.automatic-assembly-section):not(.injection-capability-section) { order: 3; }
  body.mobile-redesign-site.factory-page .factory-process-section { order: 4; }
  body.mobile-redesign-site.factory-page .factory-faq-section { order: 5; }
  body.mobile-redesign-site.factory-page .factory-inquiry-band { order: 6; }

  body.mobile-redesign-site.factory-page main > .factory-capability-section:not(.automatic-assembly-section):not(.injection-capability-section) {
    display: block;
    margin: 0 var(--rm-gutter) 12px;
    padding: 18px;
    border: 1px solid var(--rm-line);
    background: var(--rm-surface);
  }

  body.mobile-redesign-site.factory-page main > .factory-capability-section:not(.automatic-assembly-section):not(.injection-capability-section):not(.final-inspection-section)::before {
    display: block;
    margin-bottom: 16px;
    color: var(--rm-muted);
    content: "More Manufacturing Capabilities";
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  body.mobile-redesign-site.factory-page main > .factory-capability-section:not(.automatic-assembly-section):not(.injection-capability-section) .factory-capability-inner {
    display: block;
  }

  body.mobile-redesign-site.factory-page main > .factory-capability-section:not(.automatic-assembly-section):not(.injection-capability-section) :is(.factory-media-collage, .final-inspection-media) {
    display: none;
  }

  body.mobile-redesign-site.factory-page main > .factory-capability-section:not(.automatic-assembly-section):not(.injection-capability-section) .factory-capability-copy h2 {
    margin-bottom: 8px;
    font-size: 20px;
    line-height: 1.2;
  }

  body.mobile-redesign-site.factory-page main > .factory-capability-section:not(.automatic-assembly-section):not(.injection-capability-section) .factory-capability-copy p {
    margin: 0;
    font-size: 13.5px;
    line-height: 1.5;
  }

  body.mobile-redesign-site .factory-manufacturing-hero {
    min-height: 0;
    padding: 46px var(--rm-gutter) 42px;
  }

  body.mobile-redesign-site .factory-manufacturing-hero::after {
    background: linear-gradient(90deg, rgba(8, 29, 44, 0.86), rgba(8, 29, 44, 0.64));
  }

  body.mobile-redesign-site .factory-manufacturing-hero-copy .eyebrow {
    margin-bottom: 10px;
    font-size: 10px;
  }

  body.mobile-redesign-site .factory-manufacturing-hero-copy h1 {
    max-width: 340px;
    margin-bottom: 14px;
    font-size: clamp(34px, 9.5vw, 40px);
    line-height: 1.02;
    text-shadow: none;
  }

  body.mobile-redesign-site .factory-manufacturing-hero-copy > p {
    font-size: 13.5px;
    line-height: 1.45;
  }

  body.mobile-redesign-site .factory-hero-stats {
    margin-top: 22px;
    border-color: rgba(255, 255, 255, 0.28);
  }

  body.mobile-redesign-site .factory-hero-stats > div {
    min-height: 64px;
    padding: 10px 6px;
  }

  body.mobile-redesign-site .factory-manufacturing-hero-copy .btn {
    min-width: 190px;
    min-height: 48px;
    margin-top: 19px;
    padding: 0 15px;
    border-radius: 3px;
    box-shadow: none;
  }

  body.mobile-redesign-site :is(.factory-capability-section, .factory-process-section, .factory-faq-section) {
    padding: 54px var(--rm-gutter);
  }

  body.mobile-redesign-site .factory-capability-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
  }

  body.mobile-redesign-site .factory-capability-copy h2,
  body.mobile-redesign-site .factory-process-heading h2,
  body.mobile-redesign-site .factory-faq-heading h2 {
    margin-bottom: 12px;
    font-size: clamp(28px, 7.8vw, 34px);
    line-height: 1.08;
    letter-spacing: -0.035em;
  }

  body.mobile-redesign-site .factory-capability-copy p,
  body.mobile-redesign-site .factory-process-heading p {
    font-size: 14px;
    line-height: 1.5;
  }

  body.mobile-redesign-site .factory-capability-copy p + p {
    display: none;
  }

  body.mobile-redesign-site .automatic-assembly-grid {
    display: flex;
    width: calc(100vw - var(--rm-gutter));
    max-width: none;
    height: auto;
    margin-right: calc(-1 * var(--rm-gutter));
    padding: 0 var(--rm-gutter) 3px 0;
    gap: 12px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  body.mobile-redesign-site .automatic-assembly-grid::-webkit-scrollbar {
    display: none;
  }

  body.mobile-redesign-site .automatic-assembly-grid .automatic-assembly-card,
  body.mobile-redesign-site .automatic-assembly-grid .automatic-assembly-main {
    width: min(76vw, 310px);
    height: clamp(270px, 74vw, 300px);
    flex: 0 0 min(76vw, 310px);
    border-radius: 2px;
    background: #edf0f1;
    box-shadow: none;
    scroll-snap-align: start;
  }

  body.mobile-redesign-site .factory-single-media img {
    width: 100%;
    max-height: 280px;
    border-radius: 2px;
    object-fit: cover;
  }

  body.mobile-redesign-site .factory-capability-data {
    margin-top: 17px;
  }

  body.mobile-redesign-site .factory-capability-data li {
    padding: 10px 0;
  }

  body.mobile-redesign-site .factory-process-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin-top: 22px;
    border-top: 1px solid var(--rm-line);
  }

  body.mobile-redesign-site .factory-process-grid .process-card {
    min-height: 0;
    padding: 15px 0;
    border: 0;
    border-bottom: 1px solid var(--rm-line);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  body.mobile-redesign-site .factory-process-grid .process-card:nth-child(4) { order: -1; }

  body.mobile-redesign-site .factory-faq-intro br,
  body.mobile-redesign-site .factory-faq-cta p br {
    display: none;
  }

  body.mobile-redesign-site .factory-faq-list details:nth-child(n + 5) {
    display: none;
  }

  body.mobile-redesign-site .factory-inquiry-band {
    padding: 52px var(--rm-gutter);
  }

  body.mobile-redesign-site .factory-inquiry-inner {
    display: grid;
    gap: 18px;
  }

  body.mobile-redesign-site .factory-inquiry-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  /* About: company profile, manufacturing experience, and partnership value. */
  body.mobile-redesign-site.about-page .about-hero {
    display: grid;
    min-height: 0;
    padding: 28px var(--rm-gutter) 44px;
    grid-template-columns: 1fr;
    gap: 24px;
    background: var(--rm-page);
  }

  body.mobile-redesign-site.about-page .about-hero-copy h1.eyebrow {
    max-width: 340px;
    margin: 0 0 13px;
    color: var(--rm-ink);
    font-size: clamp(34px, 9.4vw, 39px);
    line-height: 1.02;
    letter-spacing: -0.04em;
  }

  body.mobile-redesign-site .about-hero-intro {
    padding: 0;
    border: 0;
  }

  body.mobile-redesign-site .about-hero-intro p {
    margin: 0;
    color: var(--rm-muted);
    font-size: 14.5px;
    line-height: 1.5;
  }

  body.mobile-redesign-site .about-hero-intro p:nth-child(n + 2) {
    display: none;
  }

  body.mobile-redesign-site .about-hero-actions {
    margin-top: 18px;
  }

  body.mobile-redesign-site .about-hero-actions .btn {
    width: auto;
    min-height: 48px;
    padding: 0 18px;
    border-radius: 3px;
  }

  body.mobile-redesign-site .about-hero-media {
    width: 100%;
    max-width: none;
    padding: 0;
  }

  body.mobile-redesign-site .about-hero-media::before,
  body.mobile-redesign-site .about-audience-media::after {
    display: none;
  }

  body.mobile-redesign-site.about-page .about-hero-media img,
  body.mobile-redesign-site.about-page .about-audience-media img {
    width: 100%;
    aspect-ratio: 4 / 3;
    border-radius: 2px;
    object-fit: cover;
    box-shadow: none;
    filter: none;
  }

  body.mobile-redesign-site.about-page .about-audience-media img {
    height: auto;
    aspect-ratio: auto;
    object-fit: contain;
  }

  body.mobile-redesign-site :is(.about-snapshot-section, .about-products-section, .about-audience-section, .about-advantages-section) {
    display: grid;
    padding: 54px var(--rm-gutter);
    grid-template-columns: 1fr;
    gap: 24px;
  }

  body.mobile-redesign-site .about-snapshot-section .about-section-intro > p:last-child {
    display: none;
  }

  body.mobile-redesign-site .about-snapshot-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border: 0;
    border-top: 1px solid var(--rm-line);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  body.mobile-redesign-site .about-snapshot-grid article,
  body.mobile-redesign-site .about-snapshot-grid article:first-child,
  body.mobile-redesign-site .about-snapshot-grid article:nth-child(2),
  body.mobile-redesign-site .about-snapshot-grid article:nth-child(3) {
    min-height: 0;
    padding: 17px 10px 17px 0;
    border-right: 1px solid var(--rm-line);
    border-bottom: 1px solid var(--rm-line);
  }

  body.mobile-redesign-site .about-snapshot-grid article:nth-child(even) {
    padding-right: 0;
    padding-left: 12px;
    border-right: 0;
  }

  body.mobile-redesign-site .about-product-grid,
  body.mobile-redesign-site .about-advantages-grid {
    display: block;
    border: 0;
    border-top: 1px solid var(--rm-line);
    border-radius: 0;
    background: transparent;
  }

  body.mobile-redesign-site .about-product-grid article,
  body.mobile-redesign-site .about-product-grid article:first-child,
  body.mobile-redesign-site .about-product-grid article:nth-child(2),
  body.mobile-redesign-site .about-product-grid article:last-child {
    min-height: 0;
    padding: 17px 0;
    border: 0;
    border-bottom: 1px solid var(--rm-line);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  body.mobile-redesign-site .about-product-grid span,
  body.mobile-redesign-site .about-product-grid article:first-child span {
    margin-bottom: 8px;
    color: #71838c;
  }

  body.mobile-redesign-site .about-product-grid h3,
  body.mobile-redesign-site .about-product-grid article:first-child h3 {
    color: var(--rm-ink);
    font-size: 19px;
  }

  body.mobile-redesign-site .about-product-grid p,
  body.mobile-redesign-site .about-product-grid article:first-child p {
    max-width: 38ch;
    color: var(--rm-muted);
    font-size: 13.5px;
    line-height: 1.5;
  }

  body.mobile-redesign-site .about-audience-section {
    gap: 24px;
  }

  body.mobile-redesign-site .about-audience-copy h2 {
    margin-bottom: 18px;
  }

  body.mobile-redesign-site .about-audience-list {
    display: grid;
    margin-bottom: 18px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    border-top: 1px solid var(--rm-line);
  }

  body.mobile-redesign-site .about-audience-list span {
    width: auto;
    min-height: 48px;
    padding: 10px 6px 10px 14px;
    border: 0;
    border-bottom: 1px solid var(--rm-line);
    border-radius: 0;
    background: transparent;
    font-size: 12.5px;
  }

  body.mobile-redesign-site .about-audience-list span::before {
    left: 0;
  }

  body.mobile-redesign-site .about-audience-cta {
    display: inline-flex;
    width: auto;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
    padding: 0 18px;
    border-radius: 3px;
  }

  body.mobile-redesign-site .about-advantages-grid article {
    min-height: 0;
    padding: 16px 0;
  }

  body.mobile-redesign-site .about-final-cta {
    display: grid;
    padding: 54px var(--rm-gutter);
    grid-template-columns: 1fr;
    gap: 24px;
  }

  /* Contact: direct mobile conversion before secondary information. */
  body.mobile-redesign-site.contact-page .compact-hero {
    min-height: 0;
    padding: 30px var(--rm-gutter) 46px;
    background: linear-gradient(180deg, #f7f8f7 0%, #e9eeef 100%);
  }

  body.mobile-redesign-site.contact-page .compact-hero > div {
    width: min(100%, var(--rm-content));
    margin: 0 auto;
  }

  body.mobile-redesign-site.contact-page .compact-hero h1 {
    max-width: 350px;
    margin-bottom: 12px;
    color: var(--rm-ink);
    font-size: clamp(34px, 9.4vw, 39px);
    line-height: 1.02;
    letter-spacing: -0.04em;
  }

  body.mobile-redesign-site.contact-page .compact-hero > div > p:not(.eyebrow) {
    display: -webkit-box;
    max-width: 350px;
    overflow: hidden;
    color: var(--rm-muted);
    font-size: 14.5px;
    line-height: 1.5;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }

  body.mobile-redesign-site.contact-page .compact-hero .button-row {
    display: grid;
    margin-top: 20px;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  body.mobile-redesign-site.contact-page .compact-hero .btn {
    width: 100%;
    min-height: 48px;
    border-radius: 3px;
  }

  body.mobile-redesign-site.contact-page .contact-layout {
    display: grid;
    padding: 48px var(--rm-gutter);
    grid-template-columns: 1fr;
    gap: 28px;
  }

  body.mobile-redesign-site.contact-page .contact-box,
  body.mobile-redesign-site.contact-page .contact-qr-section {
    padding: 20px 0;
    border: 0;
    border-top: 1px solid var(--rm-line);
    border-bottom: 1px solid var(--rm-line);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  body.mobile-redesign-site.contact-page .contact-box :where(a, button) {
    min-height: 48px;
  }

  body.mobile-redesign-site.contact-page .contact-box a {
    display: inline-flex;
    align-items: center;
  }

  body.mobile-redesign-site.contact-page .contact-qr-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  body.mobile-redesign-site.contact-page .contact-qr-card {
    padding: 10px;
    border-radius: 2px;
  }

  body.mobile-redesign-site.contact-page .contact-qr-card img {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  body.mobile-redesign-site.contact-page .tag-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
    border-top: 1px solid var(--rm-line);
  }

  body.mobile-redesign-site.contact-page .tag-list span {
    min-height: 48px;
    padding: 10px 8px;
    border: 0;
    border-bottom: 1px solid var(--rm-line);
    border-radius: 0;
    background: transparent;
    font-size: 12px;
  }

  body.mobile-redesign-site .faq-list details {
    border-radius: 0;
    box-shadow: none;
  }

  body.mobile-redesign-site .faq-list summary {
    min-height: 48px;
  }

  body.mobile-redesign-site .site-footer.corporate-footer {
    border-radius: 0;
    background: var(--rm-navy-dark);
  }

  /* Replace legacy floating controls with one compact two-action conversion bar. */
  body.mobile-redesign-site > .floating-contact {
    display: none;
  }

  body.mobile-redesign-site .mobile-redesign-contact-dock {
    position: fixed;
    right: 12px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    left: 12px;
    z-index: 96;
    display: grid;
    width: auto;
    max-width: 460px;
    min-height: 58px;
    margin: 0 auto;
    padding: 4px;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
    gap: 5px;
    border: 1px solid #cbd6db;
    border-radius: 7px;
    background: #fff;
    box-shadow: 0 9px 25px rgba(16, 46, 64, 0.16);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  }

  body.mobile-redesign-site .mobile-redesign-contact-dock.is-over-footer {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
  }

  body.mobile-redesign-site:is(.menu-open, .lotion-filter-open, .is-form-focused) .mobile-redesign-contact-dock,
  body.mobile-redesign-site:has(dialog[open]) .mobile-redesign-contact-dock,
  body.mobile-redesign-site:has([role="dialog"][aria-modal="true"]) .mobile-redesign-contact-dock {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(8px);
  }

  body.mobile-redesign-site .mobile-redesign-contact-action {
    display: inline-flex;
    min-width: 0;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 0 7px;
    border: 1px solid var(--rm-line);
    border-radius: 3px;
    background: #fff;
    color: var(--rm-navy-dark);
    font: inherit;
    font-size: 12px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    white-space: nowrap;
  }

  body.mobile-redesign-site .mobile-redesign-contact-action svg {
    width: 19px;
    height: 19px;
    flex: 0 0 19px;
    fill: currentColor;
  }

  body.mobile-redesign-site .mobile-redesign-contact-action--whatsapp {
    border-color: #237a4b;
    background: #237a4b;
    color: #fff;
  }

  body.mobile-redesign-site .mobile-redesign-contact-action--quote {
    border-color: var(--rm-navy);
    background: var(--rm-navy);
    color: #fff;
  }

  body.mobile-redesign-site.contact-page {
    padding-bottom: calc(96px + env(safe-area-inset-bottom));
  }

  /* Catalog mobile migration: fluid content with the same header and spacing system. */
  body.mobile-redesign-site.catalog-download-page .page-hero {
    display: grid;
    min-width: 0;
    min-height: 0;
    padding: 38px var(--rm-gutter) 50px;
    grid-template-columns: minmax(0, 1fr);
    gap: 28px;
    background: linear-gradient(180deg, #f7f8f7 0%, #e9eeef 100%);
  }

  body.mobile-redesign-site.catalog-download-page .page-hero > div,
  body.mobile-redesign-site.catalog-download-page .page-hero > picture,
  body.mobile-redesign-site.catalog-download-page .page-hero > img,
  body.mobile-redesign-site.catalog-download-page .catalog-intro-section,
  body.mobile-redesign-site.catalog-download-page .catalog-quote-band {
    width: 100%;
    min-width: 0;
    max-width: var(--rm-content);
    margin-right: auto;
    margin-left: auto;
  }

  body.mobile-redesign-site.catalog-download-page .page-hero h1 {
    margin-bottom: 14px;
    font-size: clamp(34px, 9.5vw, 40px);
    line-height: 1.05;
    letter-spacing: -0.035em;
    overflow-wrap: anywhere;
  }

  body.mobile-redesign-site.catalog-download-page .page-hero p {
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.55;
  }

  body.mobile-redesign-site.catalog-download-page .page-hero small {
    display: block;
    color: var(--rm-muted);
    font-size: 12px;
    line-height: 1.5;
  }

  body.mobile-redesign-site.catalog-download-page .page-hero .button-row {
    display: grid;
    margin-top: 22px;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  body.mobile-redesign-site.catalog-download-page .page-hero .btn {
    width: 100%;
    min-width: 0;
    min-height: 50px;
    padding: 0 14px;
    border-radius: 3px;
  }

  body.mobile-redesign-site.catalog-download-page .page-hero > picture {
    display: block;
    width: 100%;
    min-width: 0;
    max-width: var(--rm-content);
    margin-right: auto;
    margin-left: auto;
  }

  body.mobile-redesign-site.catalog-download-page .page-hero > img,
  body.mobile-redesign-site.catalog-download-page .page-hero > picture > img {
    display: block;
    width: 100%;
    height: auto;
    max-width: 100%;
    border-radius: 2px;
    object-fit: contain;
  }

  body.mobile-redesign-site.catalog-download-page .catalog-intro-section {
    padding: 52px var(--rm-gutter);
  }

  body.mobile-redesign-site.catalog-download-page .catalog-intro-section .card-grid {
    display: grid;
    margin: 20px 0;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    border-top: 1px solid var(--rm-line);
  }

  body.mobile-redesign-site.catalog-download-page .catalog-intro-section .mini-card {
    min-width: 0;
    padding: 17px 0;
    border: 0;
    border-bottom: 1px solid var(--rm-line);
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  body.mobile-redesign-site.catalog-download-page .catalog-quote-band {
    display: none;
  }

  body.mobile-redesign-site .site-footer.corporate-footer {
    padding-bottom: calc(28px + env(safe-area-inset-bottom));
  }
}

@media (max-width: 919px) and (max-width: 380px) {
  body.mobile-redesign-site {
    --rm-gutter: 16px;
  }

  body.mobile-redesign-site .site-header .logo {
    max-width: 210px;
    font-size: 14px;
  }

  body.mobile-redesign-site .home-hero {
    padding-top: 24px;
  }

  body.mobile-redesign-site .home-hero .button-row .btn {
    padding-right: 9px;
    padding-left: 9px;
    font-size: 11.5px;
  }

  body.mobile-redesign-site .home-trust-inner .hero-stats strong {
    font-size: 15.5px;
  }

  body.mobile-redesign-site .mobile-redesign-contact-action {
    gap: 4px;
    padding-right: 5px;
    padding-left: 5px;
    font-size: 11.5px;
  }

  body.mobile-redesign-site .mobile-redesign-contact-action svg {
    width: 17px;
    height: 17px;
    flex-basis: 17px;
  }
}

@media (max-width: 919px) and (prefers-reduced-motion: reduce) {
  body.mobile-redesign-site *,
  body.mobile-redesign-site *::before,
  body.mobile-redesign-site *::after {
    scroll-behavior: auto;
    animation-duration: 0.01ms;
    animation-iteration-count: 1;
    transition-duration: 0.01ms;
  }

  body.mobile-redesign-site .home-hero .hero-product {
    opacity: 1;
    transform: none;
  }
}

/* Hero first-paint stability: mobile redesign pages must not hide product images. */
@media (max-width: 919px) {
  body.mobile-redesign-site .home-hero .hero-product,
  body.mobile-redesign-site :is(.lotion-hero-product, .foam-hero__product, .plastic-hero-product, .cs-hero-product) {
    opacity: 1;
    transform: none;
    animation: none;
    animation-delay: 0s;
  }
}
