/* ==========================================
   MOBILE STYLESHEET
   Ported from the Reference_UI mobile layer and
   adapted to the Brand_Theme
   (primary #008a68 / hover #006b50 / accent #10b981,
    #f8fafc background, "Outfit" font).
   Loaded after style.css and pages.css, so the
   mobile-viewport rules below take precedence.

   Covers: mobile navigation drawer, condensed
   header, full-screen search overlay, sticky
   offer bar, sticky checkout bar, fixed bottom
   nav, single-column reflows, trust-chip
   wrap/scroll, and reduced-motion marquee.
   ========================================== */

/* Prevent accidental horizontal page scrolling.
   Intentionally horizontally scrollable elements
   (e.g. the brand marquee) manage their own
   overflow inside masked/animated containers. */
html,
body {
  max-width: 100%;
  overflow-x: hidden;
}

/* ==========================================
   MOBILE NAVIGATION DRAWER
   ========================================== */
/* ------------------------------------------
   HAMBURGER
   Three staggered rounded bars that morph
   into a clean X when the drawer opens.
   ------------------------------------------ */
.hamburger {
  display: none;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: transparent;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  padding: 0 8px;
  z-index: 1001;
  transition: background 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}
.hamburger:active { background: #f1f5f9; }

.hamburger span {
  display: block;
  height: 2.5px;
  border-radius: 10px;
  background: linear-gradient(90deg, #0b1f27, #14453a);
  transition: width 0.28s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.32s cubic-bezier(0.4, 0, 0.2, 1),
              opacity 0.2s ease;
}
/* Staggered widths give it a designed look instead of a plain "≡" */
.hamburger span:nth-child(1) { width: 22px; }
.hamburger span:nth-child(2) { width: 15px; }
.hamburger span:nth-child(3) { width: 19px; }

.hamburger:hover span:nth-child(2) { width: 22px; }
.hamburger:hover span:nth-child(3) { width: 22px; }

/* Morph into an X */
.hamburger.open span { width: 22px; background: linear-gradient(90deg, #008a68, #0b1f27); }
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ------------------------------------------
   DRAWER (slides in from the LEFT, matching
   the hamburger's position)
   ------------------------------------------ */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: min(86vw, 340px);
  height: 100vh;
  background: #fff;
  z-index: 1000;
  transform: translateX(-102%);
  transition: transform 0.32s cubic-bezier(0.32, 0.72, 0, 1);
  box-shadow: 6px 0 34px rgba(11, 31, 39, 0.16);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  display: flex;
  flex-direction: column;
}

.mobile-nav.open {
  transform: translateX(0);
}

.mobile-nav-head {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 16px 18px;
  border-bottom: 1px solid #eef1f4;
  position: sticky;
  top: 0;
  background: #fff;
  z-index: 2;
}

.mobile-nav-close {
  margin-left: auto;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f4f6f8;
  color: #40515e;
  border: none;
  border-radius: 50%;
  cursor: pointer;
}
.mobile-nav-close:active { background: #e6eaee; }

.mobile-nav-inner {
  padding: 6px 18px 28px;
}

.mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  font-family: inherit;
  font-size: 0.98rem;
  font-weight: 600;
  color: #0b1f27;
  text-align: left;
  padding: 15px 2px;
  border: none;
  border-bottom: 1px solid #f1f4f6;
  background: transparent;
  cursor: pointer;
  text-decoration: none;
}
.mobile-nav-link:active { color: #008a68; }

/* Accordion sections */
.mobile-nav-acc.open { color: #008a68; }
.acc-chevron { transition: transform 0.28s ease; flex-shrink: 0; }
.mobile-nav-acc.open .acc-chevron { transform: rotate(180deg); }

.mobile-nav-sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}
.mobile-nav-sub a {
  display: block;
  padding: 11px 2px 11px 14px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #4a5a67;
  border-bottom: 1px solid #f6f8f9;
  text-decoration: none;
}
.mobile-nav-sub a:active { color: #008a68; }

/* Pill account button */
.mobile-nav-account {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  padding: 14px;
  background: linear-gradient(100deg, #10b981, #008a68);
  color: #fff;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 138, 104, 0.26);
}

.mobile-nav-ctas {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.mobile-nav-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* ==========================================
   MOBILE SEARCH OVERLAY
   Header magnifier -> centered search sheet
   floating over a blurred page.
   ========================================== */
/* The trigger button only exists on mobile */
.search-trigger {
  display: none;
  background: transparent;
  border: none;
  padding: 6px;
  color: #16232e;
  cursor: pointer;
  border-radius: 10px;
}
.search-trigger:active { background: #f1f5f9; }

.search-overlay { position: fixed; inset: 0; z-index: 1200; display: none; }
.search-overlay.open { display: block; }

.search-overlay-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(232, 234, 231, 0.55);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  animation: searchFadeIn 0.18s ease;
}

.search-overlay-panel {
  position: relative;
  margin: 84px 16px 0;
  background: #fdfdfb;
  border-radius: 22px;
  box-shadow: 0 24px 60px rgba(11, 31, 39, 0.18);
  overflow: hidden;
  animation: searchSheetIn 0.22s cubic-bezier(0.22, 1, 0.36, 1);
}

.search-overlay-field { display: flex; align-items: center; gap: 10px; padding: 16px 16px 14px; color: #94a3b8; }
.search-overlay-field svg { flex-shrink: 0; }
.search-overlay-field input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  /* 16px keeps iOS Safari from zooming the page on focus */
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  color: #0b1f27;
}
.search-overlay-field input::placeholder { color: #9aa5b1; font-weight: 400; }

.search-overlay-clear {
  display: none;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border: none;
  border-radius: 50%;
  background: #e2e8ee;
  color: #5b6b7a;
  cursor: pointer;
  flex-shrink: 0;
}

.search-overlay-cancel {
  width: 100%;
  padding: 13px;
  border: none;
  border-top: 1px solid #eef1ee;
  background: #f4f6f2;
  color: #008a68;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
}
.search-overlay-cancel:active { background: #eaeee6; }

/* Results list sits under the sheet */
.search-overlay-results {
  position: relative;
  margin: 10px 16px 0;
  max-height: calc(100vh - 200px);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.search-overlay-results:not(:empty) {
  background: #fff;
  border-radius: 18px;
  padding: 6px 0;
  box-shadow: 0 18px 44px rgba(11, 31, 39, 0.14);
  animation: searchSheetIn 0.24s cubic-bezier(0.22, 1, 0.36, 1);
}

.search-res-head { padding: 10px 16px 8px; font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.06em; color: #8b98a5; }
.search-res-item { display: flex; align-items: center; gap: 12px; padding: 10px 16px; text-decoration: none; }
.search-res-item:active { background: #f6f8fa; }
.search-res-item img { width: 46px; height: 46px; border-radius: 10px; object-fit: cover; background: #eef2f5; flex-shrink: 0; }
.search-res-info { flex: 1; min-width: 0; }
.search-res-title { font-size: 0.88rem; font-weight: 700; color: #0b1f27; line-height: 1.3; display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.search-res-cat { font-size: 0.72rem; color: #8b98a5; margin-top: 2px; }
.search-res-price { font-size: 0.92rem; font-weight: 800; color: #008a68; white-space: nowrap; text-align: right; }
.search-res-price span { display: block; font-size: 0.72rem; font-weight: 500; color: #b0bac4; text-decoration: line-through; }

.search-res-tags { display: flex; flex-wrap: wrap; gap: 8px; padding: 2px 16px 14px; }
.search-res-tag { background: #f2f5f7; color: #40515e; padding: 7px 13px; border-radius: 50px; font-size: 0.78rem; font-weight: 600; text-decoration: none; }
.search-res-tag:active { background: #e3f2ec; color: #006b50; }

.search-res-all { display: block; padding: 13px; text-align: center; font-size: 0.85rem; font-weight: 700; color: #008a68; border-top: 1px solid #f1f4f6; text-decoration: none; }

.search-res-empty { padding: 26px 20px 30px; text-align: center; font-size: 0.9rem; font-weight: 600; color: #40515e; }
.search-res-empty-icon { font-size: 1.7rem; margin-bottom: 8px; }
.search-res-empty p { font-size: 0.78rem; font-weight: 400; color: #9aa5b1; margin-top: 6px; }

/* Lock the page behind the overlay */
body.search-open { overflow: hidden; }

@keyframes searchFadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes searchSheetIn {
  from { opacity: 0; transform: translateY(-12px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

/* ==========================================
   STICKY MOBILE OFFER BAR
   Fixed promo prompt with a "View Deals" link.
   Hidden on desktop; sits above the bottom nav.
   ========================================== */
.sticky-mobile-offer { display: none; }

/* ==========================================
   STICKY MOBILE CHECKOUT BAR
   (total + primary action) — base styling.
   Shown on mobile via the media query below.
   ========================================== */
.sticky-checkout {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: calc(62px + env(safe-area-inset-bottom, 0px));
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid #e8ecf1;
  border-top-left-radius: 18px;
  border-top-right-radius: 18px;
  box-shadow: 0 -6px 24px rgba(11, 31, 39, 0.12);
  padding: 10px 14px;
  z-index: 890;
  align-items: center;
  gap: 12px;
}
.sticky-checkout-total { flex-shrink: 0; line-height: 1.2; }
.sticky-checkout-total small { display: block; font-size: 0.66rem; color: #7a8896; font-weight: 600; text-transform: uppercase; letter-spacing: 0.04em; }
.sticky-checkout-total strong { font-size: 1.15rem; font-weight: 800; color: #0b1f27; }
.sticky-checkout-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 18px;
  background: linear-gradient(100deg, #10b981, #008a68);
  color: #fff;
  border: none;
  border-radius: 50px;
  font-family: inherit;
  font-size: 0.98rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(0, 138, 104, 0.34);
}
.sticky-checkout-btn:active { transform: translateY(1px); }

/* ==========================================
   MOBILE BOTTOM TAB BAR
   Hidden on desktop, shown under 768px
   ========================================== */
.bottom-nav { display: none; }

/* ==========================================
   PHONE-SIZED REFLOWS (<= 600px)
   ========================================== */
@media (max-width: 600px) {
  /* Product grid — 2 up on phones */
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .product-card {
    border-radius: 14px;
  }
  .product-img {
    aspect-ratio: 1 / 1;
  }
  .product-body {
    padding: 10px;
  }
  .product-category {
    font-size: 0.62rem;
    margin-bottom: 4px;
  }
  .product-title {
    font-size: 0.8rem;
    min-height: 2.2rem;
    margin-bottom: 8px;
  }
  .trust-points {
    display: none;
  }
  /* Variant selectors stay on phones (that's the whole point) — just tighter
     so two dropdowns fit the 2-up grid without stretching the card. */
  .card-variants {
    gap: 6px;
    margin: 8px 0 10px;
  }
  .cv-label {
    font-size: 0.58rem;
    letter-spacing: 0.04em;
  }
  .cv-select {
    padding: 7px 26px 7px 9px;
    font-size: 0.72rem;
    border-radius: 9px;
    background-position: right 8px center;
    background-size: 10px;
  }
  .current-price {
    font-size: 1.1rem;
  }
  /* Stack the card actions into a single column */
  .action-row {
    grid-template-columns: 1fr;
    gap: 8px;
    display: flex;
    flex-direction: column;
  }
  .buy-now-btn {
    padding: 10px 0;
    font-size: 0.9rem;
    font-weight: 800;
    width: 100%;
    order: 1;
  }
  .add-to-cart-btn {
    padding: 9px 0;
    font-size: 0.8rem;
    background: #f1f5f9;
    color: #008a68;
    width: 100%;
    order: 2;
  }
  .cart-drawer.open {
    width: 100%;
  }
  .section-title {
    font-size: 1.5rem;
  }
  .section-subtitle {
    font-size: 0.82rem;
    margin-bottom: 22px;
  }
  .brand-chip {
    font-size: 0.8rem;
    padding: 6px 15px 6px 6px;
    gap: 8px;
  }
  .brand-chip-img,
  .brand-chip-logo {
    width: 26px;
    height: 26px;
  }
  .live-sales-popup {
    /* Sits above the WhatsApp circle, which sits above the tab bar */
    bottom: calc(134px + env(safe-area-inset-bottom, 0px));
    left: -400px;
  }
  .live-sales-popup.show {
    left: 12px;
    right: 12px;
    max-width: none;
  }
}

/* ==========================================
   MOBILE VIEWPORT (<= 768px)
   Condensed header, bottom nav, sticky bars,
   single-column reflows, trust-chip scroll.
   ========================================== */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
    justify-self: start;
    margin-left: -8px;
  }
  .icon-link:not([href="cart.html"]) {
    display: none !important;
  }
  #mainNav {
    display: none;
  }
  .help-block {
    display: none;
  }

  /* ------------------------------------------
     MOBILE HEADER + SEARCH
     The inline desktop search is hidden and
     replaced with a magnifier button that opens
     the full-screen search sheet.
     ------------------------------------------ */
  .main-header {
    padding: 10px 0;
  }
  /* 3-column layout: hamburger | centred logo | actions.
     The outer columns are locked to the same width so the
     logo lands in the true centre of the header. */
  .header-inner {
    display: grid;
    grid-template-columns: 82px 1fr 82px;
    align-items: center;
    gap: 0;
  }
  .logo {
    justify-self: center;
    margin: 0;
    gap: 8px;
  }
  /* Inline desktop search is replaced by the trigger + overlay */
  .search-wrapper {
    display: none;
  }
  .header-right {
    justify-self: end;
    gap: 2px;
    margin-left: 0;
  }
  .search-trigger {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 38px;
    height: 38px;
  }
  /* Cart drops the rupee total on mobile — the badge is enough */
  #cartTotal {
    display: none;
  }
  .header-right .icon-link {
    width: 38px;
    height: 38px;
    justify-content: center;
  }
  .logo-mark {
    width: 36px;
    height: 36px;
    border-radius: 11px;
  }
  .logo-word {
    font-size: 1.06rem;
  }

  /* ------------------------------------------
     TRUST CHIPS — wrap, and horizontally scroll
     if they overflow, so each pill stays readable.
     ------------------------------------------ */
  .trust-chips {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 2px;
  }
  .trust-chips::-webkit-scrollbar { display: none; }
  .trust-chip {
    flex-shrink: 0;
  }

  /* ------------------------------------------
     FIXED BOTTOM NAV — Home / Shop / Cart / Account
     ------------------------------------------ */
  .bottom-nav {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid #e8ecf1;
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
    box-shadow: 0 -6px 24px rgba(15, 35, 45, 0.1);
    z-index: 900;
    padding-bottom: env(safe-area-inset-bottom, 0px);
    animation: stickySlideUp 0.4s ease both;
  }
  .bottom-nav-item { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; padding: 9px 0 7px; min-height: 44px; font-size: 0.68rem; font-weight: 600; color: #7a8896; text-decoration: none; transition: color 0.2s; }
  .bottom-nav-item svg { width: 22px; height: 22px; }
  .bottom-nav-item.active { color: #008a68; }
  .bottom-nav-icon-wrap { position: relative; display: flex; }
  .bottom-nav-badge { position: absolute; top: -5px; right: -8px; min-width: 17px; height: 17px; padding: 0 4px; background: #ef4444; color: #fff; border-radius: 50px; font-size: 0.62rem; font-weight: 800; display: none; align-items: center; justify-content: center; }

  /* Keep page content clear of the fixed bar */
  body {
    padding-bottom: calc(62px + env(safe-area-inset-bottom, 0px));
  }

  /* ------------------------------------------
     Stack the floating elements so they can't
     overlap each other or the tab bar:
       tab bar  -> 0
       WhatsApp -> 72px  (compact circle)
       sales popup -> 134px
     ------------------------------------------ */
  .whatsapp-float {
    bottom: calc(72px + env(safe-area-inset-bottom, 0px)) !important;
    right: 14px;
    width: 52px;
    height: 52px;
    padding: 0;
    border-radius: 50%;
    justify-content: center;
  }
  /* The label doesn't fit on a phone; the icon is understood */
  .whatsapp-float .wa-text { display: none; }

  /* ------------------------------------------
     STICKY MOBILE OFFER BAR — shown on mobile,
     sits just above the bottom nav.
     ------------------------------------------ */
  .sticky-mobile-offer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    position: fixed;
    left: 0;
    right: 0;
    bottom: calc(62px + env(safe-area-inset-bottom, 0px));
    padding: 10px 14px;
    background: linear-gradient(100deg, #008a68, #006b50);
    color: #fff;
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
    box-shadow: 0 -6px 24px rgba(11, 31, 39, 0.16);
    z-index: 880;
    animation: stickySlideUp 0.4s ease both;
  }
  .sticky-mobile-offer-text {
    font-size: 0.86rem;
    font-weight: 700;
    line-height: 1.2;
  }
  .sticky-mobile-offer-btn {
    flex-shrink: 0;
    padding: 9px 18px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    background: #fff;
    color: #008a68;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 800;
    text-decoration: none;
    white-space: nowrap;
  }
  .sticky-mobile-offer-btn:active { background: #eef7f3; }

  /* ------------------------------------------
     STICKY CHECKOUT BAR — carries the primary
     action on cart/checkout; hide the inline btn.
     ------------------------------------------ */
  .sticky-checkout { display: flex; }
  .cart-summary .checkout-btn { display: none; }
  /* Keep content clear of the sticky bar + tab bar */
  body.has-sticky-checkout {
    padding-bottom: calc(138px + env(safe-area-inset-bottom, 0px));
  }

  /* ------------------------------------------
     SINGLE-COLUMN REFLOWS
     ------------------------------------------ */
  /* Hero: stack the CTA buttons vertically */
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-btn,
  .hero-btn-ghost {
    max-width: 100%;
    width: 100%;
    font-size: 0.96rem;
  }

  /* Category grid: fewer columns so cards stay readable */
  .categories-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* Footer: collapse the columns into a single stack */
  .footer-columns,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  /* Checkout: single column */
  .checkout-form-card { padding: 18px 16px; border-radius: 14px; }
  .checkout-section-title { font-size: 1rem; }
}

/* ==========================================
   MOBILE HERO
   ========================================== */
@media (max-width: 768px) {
  .hero {
    padding: 44px 20px 48px;
  }
  .hero-badge {
    font-size: 0.75rem;
    margin-bottom: 20px;
    gap: 7px;
    padding: 4px 13px 4px 4px;
  }
  .hero-badge-pill {
    font-size: 0.65rem;
    padding: 3px 9px;
  }
  .hero-title {
    font-size: 2.05rem;
    margin-bottom: 14px;
  }
  .hero-subtitle {
    font-size: 0.94rem;
    margin-bottom: 26px;
  }
  .brand-section {
    padding: 18px 0 26px;
  }
}

/* ==========================================
   SMALL PHONES (<= 400px)
   ========================================== */
@media (max-width: 400px) {
  .header-inner {
    grid-template-columns: 74px 1fr 74px;
  }
  .logo-word {
    font-size: 0.97rem;
  }
  .hero-title {
    font-size: 1.82rem;
  }
}

/* ==========================================
   WORD ON THE STREET — mobile horizontal rail
   Reviews become a swipeable, snap-scrolling row.
   ========================================== */
@media (max-width: 768px) {
  /* Narrower review cards so ~1.2 show at a time while the marquee auto-scrolls. */
  .review-card { flex-basis: 82vw; width: 82vw; max-width: 300px; margin-right: 12px; }
  .reviews-section .section-title { font-size: 1.5rem; }
  .shop-cat-divider { margin: 20px 0 2px; }
  .shop-cat-divider h3 { font-size: 1.05rem; }
}

/* ==========================================
   REDUCED MOTION
   Stop the marquee and let it wrap; disable
   overlay/drawer transitions.
   ========================================== */
@media (prefers-reduced-motion: reduce) {
  .brand-marquee {
    animation: none;
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
  }
  .brand-strip {
    -webkit-mask-image: none;
    mask-image: none;
  }
  .brand-strip-reverse {
    display: none;
  }
  .search-overlay-backdrop,
  .search-overlay-panel,
  .search-overlay-results:not(:empty) {
    animation: none;
  }
  .mobile-nav,
  .mobile-nav-overlay {
    transition: none;
  }
  .sticky-checkout,
  .sticky-mobile-offer,
  .bottom-nav {
    animation: none;
  }
}

/* Gentle slide-up entrance for the mobile sticky bars. */
@keyframes stickySlideUp {
  from { opacity: 0; transform: translateY(100%); }
  to   { opacity: 1; transform: translateY(0); }
}
