﻿

.storefront {
  --ug-primary: var(--primary-green);
  --ug-primary-mid: #00875a;
  --ug-primary-light: var(--accent-green);
  --ug-primary-soft: var(--secondary-green);
  --ug-accent: #f4a261;
  --ug-accent-2: #e76f51;
  --ug-warm: #fefae0;
  --ug-bg: #ffffff;
  --ug-surface: #ffffff;
  --ug-surface-alt: #f6faf8;
  --ug-text: var(--text-color);
  --ug-text-muted: var(--text-muted);
  --ug-radius: var(--radius-lg);
  --ug-radius-lg: 16px;
  --ug-shadow: var(--shadow-soft);
  --ug-shadow-hover: var(--shadow-medium);
  --ug-font: var(--font-sans);
  
  --ug-max-w: 1280px;
  --ug-gutter: 20px;
  /* Horizontal inset from viewport (gutter + safe area) — use for full-width bands */
  --store-pad-left: max(var(--ug-gutter, 20px), env(safe-area-inset-left, 0px));
  --store-pad-right: max(var(--ug-gutter, 20px), env(safe-area-inset-right, 0px));
  font-family: var(--ug-font);
  color: var(--ug-text);
  background: var(--ug-bg);
}

.storefront .section-container {
  max-width: var(--ug-max-w);
  margin: 0 auto;
  padding-left: var(--store-pad-left);
  padding-right: var(--store-pad-right);
}

/* Much tighter side margins on tablet / laptop / desktop (mobile keeps 20px gutter) */
@media (min-width: 768px) {
  .storefront {
    --ug-gutter: 12px;
  }
}

@media (min-width: 992px) {
  .storefront {
    --ug-gutter: 6px;
  }
}

/* Header + promo strip + desktop nav row: match storefront gutters */
@media (min-width: 768px) {
  body.storefront .site-header__inner {
    padding-left: max(12px, env(safe-area-inset-left, 0px));
    padding-right: max(12px, env(safe-area-inset-right, 0px));
  }
  body.storefront .site-top-strip {
    padding-left: max(12px, env(safe-area-inset-left, 0px));
    padding-right: max(12px, env(safe-area-inset-right, 0px));
  }
  body.storefront .site-nav-row {
    padding-left: max(12px, env(safe-area-inset-left, 0px));
    padding-right: max(12px, env(safe-area-inset-right, 0px));
  }
}

@media (min-width: 992px) {
  body.storefront .site-header__inner {
    padding-left: max(6px, env(safe-area-inset-left, 0px));
    padding-right: max(6px, env(safe-area-inset-right, 0px));
  }
  body.storefront .site-top-strip {
    padding-left: max(6px, env(safe-area-inset-left, 0px));
    padding-right: max(6px, env(safe-area-inset-right, 0px));
  }
  body.storefront .site-nav-row {
    padding-left: max(6px, env(safe-area-inset-left, 0px));
    padding-right: max(6px, env(safe-area-inset-right, 0px));
  }
}

body.storefront footer.footer .container {
  padding-left: var(--store-pad-left);
  padding-right: var(--store-pad-right);
}

body.storefront .shop-breadcrumb {
  padding-left: var(--store-pad-left);
  padding-right: var(--store-pad-right);
}


.promo-marquee {
  background: linear-gradient(90deg, var(--ug-primary-mid), var(--ug-primary-light));
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  overflow: hidden;
  padding-left: var(--store-pad-left);
  padding-right: var(--store-pad-right);
  box-sizing: border-box;
}

.promo-marquee-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 2rem;
  padding: 10px 0;
  width: max-content;
  animation: promo-marquee 28s linear infinite;
}

@keyframes promo-marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.promo-marquee span {
  white-space: nowrap;
  opacity: 0.95;
}

.promo-marquee a {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 3px;
}


.storefront .hero-wrap {
  background: transparent;
  padding-left: var(--store-pad-left);
  padding-right: var(--store-pad-right);
  box-sizing: border-box;
}

.storefront .hero-section {
  background: transparent;
  padding: 0;           
  max-width: 100%;      
  margin: 0;            
}

@media (min-width: 768px) {
  .storefront .hero-section {
    padding: 0;         
  }
}

.storefront .hero-carousel-item {
  border-radius: 0;     
  overflow: visible;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.18);
}

/* Framed banner surface: image + decorative overlay (vignette / sheen) */
.hero-carousel-item__surface {
  position: relative;
  overflow: hidden;
  border-radius: inherit;
  isolation: isolate;
}

.hero-carousel-item__link {
  position: relative;
  z-index: 0;
}

.hero-media-cover {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07) 0%, transparent 22%),
    linear-gradient(205deg, transparent 35%, rgba(0, 40, 28, 0.18) 100%),
    radial-gradient(ellipse 95% 80% at 50% 42%, transparent 25%, rgba(0, 0, 0, 0.28) 100%);
  box-shadow: inset 0 0 80px rgba(0, 0, 0, 0.12);
  transition: opacity 0.45s ease, box-shadow 0.45s ease;
}

.hero-carousel-item__surface:hover .hero-media-cover {
  opacity: 0.88;
  box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.08);
}

/* Taller, more cinematic image */
.storefront .hero-full-img {
  border-radius: 0;    
  width: 100%;
  min-height: 260px;
  max-height: min(62vh, 620px);   
  object-fit: cover;
  display: block;
}

@media (min-width: 768px) {
  .storefront .hero-full-img {
    min-height: 400px;             
    max-height: min(68vh, 680px); 
  }
}

@media (min-width: 1200px) {
  .storefront .hero-full-img {
    min-height: 520px;            
    max-height: min(72vh, 720px);
  }
}

/* Phone: show full hero image when shorter than the desktop slot (no min-height crop) */
@media (max-width: 767px) {
  .storefront .hero-carousel-item__surface {
    background: var(--ios-bg, #fff);
  }
  .storefront .hero-full-img {
    min-height: 0;
    max-height: min(75vh, 540px);
    height: auto;
    object-fit: contain;
    object-position: center top;
  }
}

.storefront .header-carousel.owl-carousel .owl-nav .owl-prev,
.storefront .header-carousel.owl-carousel .owl-nav .owl-next {
  background: rgba(255, 255, 255, 0.92);
  color: var(--ug-primary);
  border: none;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.storefront .header-carousel.owl-carousel .owl-nav .owl-prev:hover,
.storefront .header-carousel.owl-carousel .owl-nav .owl-next:hover {
  background: var(--ug-primary-soft);
  color: var(--ug-primary);
}

.storefront .header-carousel.owl-carousel .owl-dots .owl-dot span {
  background: rgba(255, 255, 255, 0.45);
}

.storefront .header-carousel.owl-carousel .owl-dots .owl-dot.active span {
  background: var(--ug-accent);
  width: 22px;
}


.hero-fallback {
  position: relative;
  border-radius: var(--ug-radius-lg);
  overflow: hidden;
  min-height: 280px;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, var(--ug-primary) 0%, var(--ug-primary-mid) 55%, var(--ug-primary-light) 100%);
  padding: 3rem 2.5rem;
  box-shadow: var(--ug-shadow);
}

.hero-fallback__inner {
  max-width: 440px;
  color: #fff;
}

.hero-fallback__kicker {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.88;
  margin-bottom: 0.75rem;
}

.hero-fallback__title {
  font-family: var(--font-display, "DM Serif Display", Georgia, serif);
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 700;
  font-style: italic;
  line-height: 1.1;
  margin: 0 0 1rem;
  color: var(--hero-yellow, #f2e041);
}

.hero-fallback__lead {
  font-size: 1rem;
  line-height: 1.55;
  opacity: 0.92;
  margin: 0 0 1.5rem;
}

.btn-store {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.75rem;
  font-family: var(--ug-font);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.btn-store--light {
  background: #fff;
  color: var(--ug-primary);
}

.btn-store--light:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.15);
  color: var(--ug-primary-mid);
}

.btn-store--accent {
  background: linear-gradient(135deg, var(--ug-accent), #f6b088);
  color: #1a1a1a;
}

.btn-store--accent:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(244, 162, 97, 0.45);
}


.product-section {
  padding: 3.5rem 0;
}

.product-section--tight {
  padding: 2.25rem 0;
}

.product-section--muted {
  background: var(--ug-surface-alt, #f6faf8);
}

.product-section-banner-link {
  display: block;
  width: 100%;
  margin: 0 0 1.25rem;
  padding: 0;
  line-height: 0;
  font-size: 0;
}

.product-section-banner-link:focus-visible {
  outline: 2px solid var(--ug-primary-mid);
  outline-offset: 2px;
}

.product-section-banner-img {
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  display: block;
  vertical-align: bottom;
}

@media (min-width: 992px) {
  .product-section--banner-top .product-section-banner-link,
  .p99-reels-section--banner-top .product-section-banner-link,
  .p99-reels-section--banner-top .p99-reels-section__banner-link {
    width: 100%;
    max-width: min(520px, 46vw);
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 1200px) {
  .product-section--banner-top .product-section-banner-link,
  .p99-reels-section--banner-top .product-section-banner-link,
  .p99-reels-section--banner-top .p99-reels-section__banner-link {
    max-width: min(560px, 42vw);
  }
}

.product-section--banner-top .product-grid-layout {
  margin-top: 0;
}

.product-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}

.product-section-head--banner-only {
  margin-bottom: 0.65rem;
}

.product-section-head--banner-only .product-section-head__fill {
  flex: 1;
  min-width: 0;
}

/* View all row above banner (rent, best sellers, featured, deal rails) */
.storefront-section-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0 0.45rem 0.4rem;
  margin: 0;
  box-sizing: border-box;
  width: 100%;
}

.storefront-section-actions--rent {
  padding: 0;
  margin: 0 0 0.45rem;
}

/* Mobile: move "View all" to section bottom (same idea as combo hub shop footer) */
@media (max-width: 767px) {
  .best-sellers__shell,
  .featured-pick-rail__shell,
  .deal-of-the-day__shell,
  .p99-rent-focus__wrap {
    display: flex;
    flex-direction: column;
  }

  .best-sellers__shell .best-sellers__banner-link,
  .featured-pick-rail__shell .featured-pick-rail__banner-link,
  .deal-of-the-day__shell .deal-of-the-day__banner-link,
  .p99-rent-focus__wrap .p99-rent-focus__banner-link {
    order: 1;
  }

  .best-sellers__shell .best-sellers__rail,
  .featured-pick-rail__shell .featured-pick-rail__rail,
  .deal-of-the-day__shell .deal-of-the-day__rail,
  .p99-rent-focus__wrap .p99-rent-focus__rail {
    order: 2;
  }

  .deal-of-the-day__shell .deal-of-the-day__timer {
    order: 3;
  }

  .best-sellers__shell .storefront-section-actions,
  .featured-pick-rail__shell .storefront-section-actions,
  .deal-of-the-day__shell .storefront-section-actions,
  .p99-rent-focus__wrap .storefront-section-actions {
    order: 4;
    justify-content: center;
    padding: 0.65rem 0.45rem 0.35rem;
    margin-top: 0.25rem;
  }

  .best-sellers__shell .storefront-section-actions .link-view-all,
  .featured-pick-rail__shell .storefront-section-actions .link-view-all,
  .deal-of-the-day__shell .storefront-section-actions .link-view-all,
  .p99-rent-focus__wrap .storefront-section-actions .link-view-all {
    width: 100%;
    max-width: 100%;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    text-align: center;
    white-space: normal;
  }

  .product-section--banner-top > .container.section-container {
    display: flex;
    flex-direction: column;
  }

  .product-section--banner-top .product-section-banner-link {
    order: 1;
  }

  .product-section--banner-top .product-grid-layout {
    order: 2;
  }

  .product-section--banner-top .product-section-head--banner-only {
    order: 3;
    margin-top: 0.75rem;
    margin-bottom: 0;
    width: 100%;
    justify-content: center;
  }

  .product-section--banner-top .product-section-head--banner-only .product-section-head__fill {
    display: none;
  }

  .product-section--banner-top .product-section-head--banner-only .link-view-all {
    width: 100%;
    max-width: 100%;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    text-align: center;
    white-space: normal;
  }
}

.section-kicker {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ug-primary-light);
  margin: 0 0 0.4rem;
}

.product-section-title {
  font-size: clamp(1.4rem, 2.5vw, 1.875rem);
  font-weight: 800;
  color: var(--ug-text);
  margin: 0;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.link-view-all {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--ug-primary-mid);
  text-decoration: none;
  white-space: nowrap;
  padding: 0.45rem 1.1rem;
  border: 1.5px solid var(--ug-primary-mid);
  border-radius: 999px;
  transition: all 0.22s ease;
  letter-spacing: 0.03em;
}

.link-view-all:hover {
  color: #fff;
  background: var(--ug-primary-mid);
  border-color: var(--ug-primary-mid);
  box-shadow: 0 4px 16px rgba(0, 135, 90, 0.25);
}


.product-grid-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.375rem;
  align-items: stretch;
}

body.storefront .product-grid-layout > .p99-product-card {
  height: 100%;
  min-height: 0;
}

@media (max-width: 1199px) {
  .product-grid-layout {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

@media (max-width: 767px) {
  .product-grid-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.875rem;
  }
}


.storefront .storefront-product-card {
  background: var(--ug-surface);
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 106, 77, 0.08);
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.storefront .storefront-product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 52px rgba(0, 106, 77, 0.18);
}

.storefront .tpc-gallery {
  position: relative;
  border-radius: var(--ug-radius) var(--ug-radius) 0 0;
}

.storefront .tpc-img {
  border-radius: 0;
}

.storefront .tpc-body {
  padding: 1rem 1rem 1.125rem;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.storefront .tpc-name {
  font-family: var(--ug-font);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ug-text);
  line-height: 1.35;
  min-height: var(--store-pc-title-minh, 2.75em);
}

.storefront .tpc-price {
  font-family: var(--ug-font);
  font-weight: 700;
  font-size: 1rem;
  color: var(--ug-primary-mid);
}

.storefront .tpc-add-btn {
  font-family: var(--ug-font);
  border-radius: 999px;
  background: linear-gradient(135deg, #00875a 0%, #00b067 100%);
  border: none;
  color: #fff;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  padding: 0.7rem 1.25rem;
  box-shadow: 0 4px 16px rgba(0, 176, 103, 0.3);
  transition: filter 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
}

.storefront .tpc-add-btn:hover {
  filter: brightness(1.08);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0, 176, 103, 0.4);
}

.storefront .tpc-actions-bleed,
.storefront form.product-add-form.tpc-actions-bleed {
  margin-top: auto;
}

.storefront .tpc-wishlist {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
}

.storefront .tpc-wishlist:hover,
.storefront .tpc-wishlist.in-wishlist {
  color: var(--ug-accent-2);
}


.offer-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .offer-cards {
    grid-template-columns: 1fr 1fr;
  }
}

.offer-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.25rem 2rem;
  border-radius: 20px;
  text-decoration: none;
  color: inherit;
  min-height: 200px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.offer-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}
.offer-card > * {
  position: relative;
  z-index: 2;
}

.offer-card:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.14);
  color: inherit;
}

.offer-card--yellow {
  background: linear-gradient(135deg, #fffbe6 0%, #fde68a 60%, #fbbf24 100%);
}

.offer-card--green {
  background: linear-gradient(135deg, #e8f5e9 0%, #a5d6a7 55%, #4caf50 100%);
}

.offer-card__tag {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ug-primary-mid);
  margin-bottom: 0.5rem;
}

.offer-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 0 0 0.75rem;
  color: var(--ug-text);
  max-width: 280px;
  line-height: 1.25;
}

.offer-card__cta {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--ug-primary-mid);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.offer-card:hover .offer-card__cta {
  color: var(--ug-primary);
}

/* Combo hub: white band, tight mobile rhythm, iOS grouped accordions (mobile) / cards (768+) */
.combo-hub-section__banner-link {
  margin: 0 0 0.5rem;
}

.combo-hub-section__shop-footer {
  margin-top: 0.75rem;
  padding-top: 0.125rem;
  display: flex;
  justify-content: center;
  width: 100%;
}

.combo-hub-section__shop-footer .combo-hub-section__shop-link {
  margin-top: 0;
  width: 100%;
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  text-align: center;
  white-space: normal;
  min-height: 48px;
}

.featured-pick-rail--hub {
  padding-left: 0;
  padding-right: 0;
  margin: 0 0 0.5rem;
  max-width: 100%;
}

.combo-hub-section__rail-wrap {
  width: 100%;
  min-width: 0;
}

/* Combo hub uses same horizontal inset as rest of storefront */
.storefront .combo-hub-section .section-container {
  padding-left: var(--store-pad-left);
  padding-right: var(--store-pad-right);
}

.featured-pick-rail--hub .featured-pick-rail__rail {
  padding: 0.32rem 0.2rem 0.5rem;
}

@media (min-width: 768px) {
  .featured-pick-rail--hub .featured-pick-rail__rail {
    padding: 0.35rem 0.28rem 0.55rem;
  }
}

.combo-hub-section__lower {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 0.125rem;
}

.combo-hub-acc {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.combo-hub-acc__summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 11px 14px;
  min-height: 48px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  transition: background 0.18s var(--ios-tap, ease);
}

.combo-hub-acc__summary::-webkit-details-marker,
.combo-hub-acc__summary::marker {
  display: none;
}

.combo-hub-acc__summary:focus {
  outline: none;
}

.combo-hub-acc__summary:focus-visible {
  box-shadow: inset 0 0 0 2px var(--ug-primary-mid, #2e7d32);
  border-radius: 4px;
}

.combo-hub-acc__summary:active {
  background: rgba(0, 106, 77, 0.05);
}

.combo-hub-acc__main {
  flex: 1;
  min-width: 0;
  text-align: left;
}

.combo-hub-acc__tag {
  display: block;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ug-primary-mid, #2e7d32);
  margin: 0 0 3px;
  line-height: 1.2;
}

.combo-hub-acc__tag--why {
  letter-spacing: 0.14em;
}

.combo-hub-acc__headline {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--ug-text, #1a1a1a);
  letter-spacing: -0.02em;
  margin: 0;
}

.combo-hub-acc__headline--why {
  font-size: 0.95rem;
  font-weight: 700;
  -webkit-line-clamp: 3;
  line-clamp: 3;
}

.combo-hub-acc__chev {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ug-text-muted, #8e8e93);
  transition: transform 0.28s var(--ios-spring, cubic-bezier(0.34, 1.2, 0.64, 1));
}

.combo-hub-acc__chev::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
  margin-top: -3px;
  opacity: 0.85;
}

.combo-hub-acc[open] .combo-hub-acc__chev {
  transform: rotate(90deg);
}

.combo-hub-acc__body {
  padding: 0 14px 11px;
}

.combo-hub-acc__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--ug-primary-mid, #2e7d32);
  text-decoration: none;
}

.combo-hub-acc__link:hover {
  color: var(--ug-primary, #006a4d);
}

.combo-hub-acc__excerpt {
  margin: 0 0 10px;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--ug-text-muted, #5c6d62);
}

.combo-hub-acc__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--ug-primary-mid);
  color: #fff !important;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.68rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.combo-hub-acc__cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0, 106, 77, 0.2);
  color: #fff !important;
}

@media (max-width: 767px) {
  .combo-hub-section.product-section--tight {
    padding-top: 0.65rem;
    padding-bottom: 0.75rem;
  }

  .combo-hub-section__shop-footer {
    margin-top: 0.65rem;
  }

  .combo-hub-section__shop-footer .combo-hub-section__shop-link {
    padding: 0.55rem 1rem;
    font-size: 0.8125rem;
  }

  .combo-hub-section__lower {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid var(--ios-separator, rgba(60, 60, 67, 0.12));
    background: var(--ios-bg-elevated, #fff);
    box-shadow: var(--ios-shadow-sm, 0 1px 2px rgba(0, 0, 0, 0.04));
  }

  .combo-hub-acc:not(:last-child) {
    border-bottom: 1px solid var(--ios-separator, rgba(60, 60, 67, 0.12));
  }

  .combo-hub-acc__summary {
    padding: 10px 12px;
    min-height: 46px;
    background: var(--ios-bg-elevated, #fff);
  }

  .combo-hub-acc__body {
    padding: 0 12px 10px;
    background: var(--ios-bg-elevated, #fff);
  }

  .combo-hub-acc--why .combo-hub-acc__body {
    padding-bottom: 12px;
  }
}

@media (min-width: 768px) {
  .combo-hub-section__banner-link {
    margin-bottom: 0.65rem;
  }

  .combo-hub-section__shop-footer {
    margin-top: 1rem;
    justify-content: center;
  }

  .combo-hub-section__shop-footer .combo-hub-section__shop-link {
    width: auto;
    min-width: 200px;
    min-height: 0;
    white-space: nowrap;
  }

  .featured-pick-rail--hub {
    margin-bottom: clamp(1rem, 2.5vw, 1.35rem);
  }

  .combo-hub-section__lower {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 0.25rem;
    align-items: stretch;
  }

  .combo-hub-acc--why {
    grid-column: 1 / -1;
  }

  .combo-hub-acc--offer {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    min-height: 200px;
    display: flex;
    flex-direction: column;
  }

  .combo-hub-acc--green.combo-hub-acc--offer {
    background: linear-gradient(135deg, #e8f5e9 0%, #a5d6a7 55%, #4caf50 100%);
  }

  .combo-hub-acc--yellow.combo-hub-acc--offer {
    background: linear-gradient(135deg, #fffbe6 0%, #fde68a 60%, #fbbf24 100%);
  }

  .combo-hub-acc--offer .combo-hub-acc__summary {
    display: block;
    padding: 2rem 1.75rem 0.4rem;
    min-height: 0;
    cursor: default;
    pointer-events: none;
    background: transparent;
  }

  .combo-hub-acc--offer .combo-hub-acc__summary:active {
    background: transparent;
  }

  .combo-hub-acc--offer .combo-hub-acc__headline {
    display: block;
    -webkit-line-clamp: unset;
    line-clamp: unset;
    font-size: 1.2rem;
    font-weight: 700;
    max-width: 280px;
    margin-top: 0.5rem;
    line-height: 1.25;
  }

  .combo-hub-acc--offer .combo-hub-acc__chev {
    display: none;
  }

  .combo-hub-acc--offer .combo-hub-acc__body {
    padding: 0 1.75rem 2rem;
    margin-top: auto;
  }

  .combo-hub-acc--why {
    border-radius: 18px;
    padding: clamp(1.2rem, 2.5vw, 1.6rem) clamp(1.25rem, 2.5vw, 1.5rem);
    background: linear-gradient(135deg, rgba(0, 135, 90, 0.1), rgba(0, 176, 103, 0.06));
    border: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 2px 14px rgba(0, 0, 0, 0.05);
  }

  .combo-hub-acc--why .combo-hub-acc__summary {
    display: block;
    padding: 0;
    min-height: 0;
    cursor: default;
    pointer-events: none;
    background: transparent;
  }

  .combo-hub-acc--why .combo-hub-acc__summary:active {
    background: transparent;
  }

  .combo-hub-acc--why .combo-hub-acc__headline--why {
    font-size: clamp(1.15rem, 2.4vw, 1.45rem);
    -webkit-line-clamp: unset;
    line-clamp: unset;
    margin-top: 0.35rem;
  }

  .combo-hub-acc--why .combo-hub-acc__chev {
    display: none;
  }

  .combo-hub-acc--why .combo-hub-acc__body {
    padding: 0;
    margin-top: 0.65rem;
  }

  .combo-hub-acc--why .combo-hub-acc__excerpt {
    font-size: 0.9375rem;
    max-width: 42rem;
    margin-bottom: 12px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .combo-hub-acc__chev,
  .combo-hub-acc__summary,
  .combo-hub-acc__cta {
    transition: none;
  }
}


.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

@media (min-width: 768px) {
  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.trust-card {
  margin: 0;
  background: var(--ug-surface);
  border-radius: 16px;
  padding: 0;
  text-align: left;
  box-shadow: 0 4px 20px rgba(0, 106, 77, 0.07);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.trust-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(0, 106, 77, 0.14);
}

.trust-card__summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 1rem 1.15rem;
  min-height: 56px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  transition: background 0.2s var(--ios-tap, ease);
}

.trust-card__summary::-webkit-details-marker,
.trust-card__summary::marker {
  display: none;
}

.trust-card__summary:active {
  background: rgba(0, 106, 77, 0.06);
}

.trust-card__summary:focus {
  outline: none;
}

.trust-card__summary:focus-visible {
  box-shadow: inset 0 0 0 2px var(--ug-primary-mid, #2e7d32);
  border-radius: 4px;
}

.trust-card__summary-inner {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  min-width: 0;
}

.trust-card__chev {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ug-text-muted, #8e8e93);
  transition: transform 0.28s var(--ios-spring, cubic-bezier(0.34, 1.2, 0.64, 1));
}

.trust-card__chev::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
  margin-top: -3px;
  opacity: 0.85;
}

.trust-card[open] .trust-card__chev {
  transform: rotate(90deg);
}

.trust-card__body {
  padding: 0 1.15rem 1.15rem;
}

.trust-card__icon {
  width: 44px;
  height: 44px;
  margin: 0;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ug-primary-soft) 0%, #c8f5e0 100%);
  color: var(--ug-primary-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.15rem;
  box-shadow: 0 4px 14px rgba(0, 135, 90, 0.18);
  transition: transform 0.25s ease;
}

.trust-card:hover .trust-card__icon {
  transform: scale(1.08) rotate(-5deg);
}

.trust-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  margin: 0;
  color: var(--ug-text);
  text-align: left;
  line-height: 1.3;
}

.trust-card__body p {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.55;
  color: var(--ug-text-muted);
}

@media (prefers-reduced-motion: reduce) {
  .trust-card__chev,
  .trust-card__summary {
    transition: none;
  }
}

@media (min-width: 768px) {
  .trust-card {
    padding: 2rem 1.75rem;
    text-align: center;
    overflow: visible;
  }

  .trust-card__summary {
    display: block;
    padding: 0;
    min-height: 0;
    cursor: default;
    pointer-events: none;
  }

  .trust-card__summary:active {
    background: transparent;
  }

  .trust-card__summary-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
  }

  .trust-card__chev {
    display: none;
  }

  .trust-card__icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.1rem;
    font-size: 1.4rem;
  }

  .trust-card:hover .trust-card__icon {
    transform: scale(1.1) rotate(-5deg);
  }

  .trust-card h3 {
    margin: 0 0 0.5rem;
    text-align: center;
  }

  .trust-card__body {
    padding: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .promo-marquee-track {
    animation: none;
  }
  .storefront .storefront-product-card:hover,
  .offer-card:hover {
    transform: none;
  }
}


.p99-badges {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 6px;
  pointer-events: none;
}
.p99-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 6px;
  background: #fff;
  color: var(--ug-primary-mid, #2e7d32);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.p99-badge--bestseller {
  background: linear-gradient(135deg, #ffe082, #ffca28);
  color: #5d4037;
}
.p99-badge--new {
  background: linear-gradient(135deg, #81c784, #43a047);
  color: #fff;
}


/* --- Blog teaser: iOS-style inset grouped accordion (mobile); card grid (768+) --- */
.blog-teaser-stack {
  display: flex;
  flex-direction: column;
  gap: 0;
  border-radius: var(--ios-radius-lg, 14px);
  overflow: hidden;
  background: var(--ios-bg-elevated, #fff);
  box-shadow: var(--ios-shadow-sm, 0 1px 3px rgba(0, 0, 0, 0.06), 0 4px 14px rgba(0, 106, 77, 0.06));
  border: 1px solid var(--ios-separator, rgba(0, 106, 77, 0.1));
}

.blog-teaser-acc {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.blog-teaser-acc:not(:last-child) {
  border-bottom: 1px solid var(--ios-separator, rgba(60, 60, 67, 0.12));
}

.blog-teaser-acc__summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 16px;
  min-height: 52px;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  transition: background 0.2s var(--ios-tap, ease);
}

.blog-teaser-acc__summary::-webkit-details-marker,
.blog-teaser-acc__summary::marker {
  display: none;
}

.blog-teaser-acc__summary:active {
  background: rgba(0, 106, 77, 0.06);
}

.blog-teaser-acc__summary:focus {
  outline: none;
}

.blog-teaser-acc__summary:focus-visible {
  box-shadow: inset 0 0 0 2px var(--ug-primary-mid, #2e7d32);
  border-radius: 4px;
}

.blog-teaser-acc__main {
  flex: 1;
  min-width: 0;
  text-align: left;
}

.blog-teaser-acc__title {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  margin: 0.35rem 0 0;
  line-height: 1.35;
  color: var(--ug-text, #1a1a1a);
  letter-spacing: -0.02em;
}

.blog-teaser-acc__chev {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ug-text-muted, #8e8e93);
  transition: transform 0.28s var(--ios-spring, cubic-bezier(0.34, 1.2, 0.64, 1));
}

.blog-teaser-acc__chev::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(-45deg);
  margin-top: -3px;
  opacity: 0.85;
}

.blog-teaser-acc[open] .blog-teaser-acc__chev {
  transform: rotate(90deg);
}

.blog-teaser-acc__body {
  padding: 0 16px 16px;
}

.blog-teaser-acc__body .blog-teaser-card__excerpt {
  margin: 0 0 12px;
}

.blog-teaser-acc__link {
  display: inline-flex;
  align-items: center;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--ug-primary-mid, #2e7d32);
  text-decoration: none;
}

.blog-teaser-acc__link:hover {
  text-decoration: underline;
}

.blog-teaser-card__tag {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ug-primary-mid, #2e7d32);
  display: block;
}

.blog-teaser-card__excerpt {
  font-size: 0.8125rem;
  color: var(--ug-text-muted, #5c6d62);
  margin: 0;
  line-height: 1.5;
}

@media (prefers-reduced-motion: reduce) {
  .blog-teaser-acc__chev,
  .blog-teaser-acc__summary {
    transition: none;
  }
}

@media (min-width: 768px) {
  .blog-teaser-stack {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    background: transparent;
    box-shadow: none;
    border: none;
    border-radius: 0;
    overflow: visible;
  }

  .blog-teaser-acc:not(:last-child) {
    border-bottom: none;
  }

  .blog-teaser-acc {
    border-radius: 16px;
    background: var(--ug-surface, #fff);
    box-shadow: 0 4px 20px rgba(0, 106, 77, 0.07);
    border: 1px solid rgba(0, 106, 77, 0.08);
    height: 100%;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .blog-teaser-acc:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 44px rgba(0, 106, 77, 0.14);
    border-color: rgba(0, 106, 77, 0.15);
  }

  .blog-teaser-acc__summary {
    display: block;
    padding: 1.75rem 1.75rem 0.5rem;
    min-height: 0;
    cursor: default;
    pointer-events: none;
  }

  .blog-teaser-acc__summary:active {
    background: transparent;
  }

  .blog-teaser-acc__chev {
    display: none;
  }

  .blog-teaser-acc__title {
    font-size: 1rem;
    font-weight: 700;
    margin: 0.5rem 0 0;
  }

  .blog-teaser-acc__body {
    padding: 0 1.75rem 1.75rem;
  }

  .blog-teaser-acc__body .blog-teaser-card__excerpt {
    margin: 0 0 14px;
  }
}




.hero-section-main {
  position: relative;
}

.hero-brand-badge {
  pointer-events: none;
  position: absolute;
  left: 50%;
  bottom: 16px;
  transform: translateX(-50%);
  z-index: 4;
  width: calc(100% - 28px);
  max-width: 400px;
}

.hero-brand-badge__pill {
  text-align: center;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1a3d2e;
  background: rgba(255, 255, 255, 0.93);
  padding: 9px 14px;
  border-radius: 999px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.14);
}


.category-strip-section {
  padding: 20px 0 24px;
  background: #fff;
  border-bottom: 1px solid #eef2ef;
}

.category-strip-page-width {
  max-width: var(--ug-max-w, 1280px);
  margin: 0 auto;
  padding-left: var(--store-pad-left);
  padding-right: var(--store-pad-right);
}

.category-strip-scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 2px 2px 10px;
  scrollbar-width: thin;
}

/* Marquee wrapper (items live in __segment; JS duplicates segment for infinite scroll) */
.category-strip-scroll[data-category-marquee] {
  display: block;
  padding-left: 0;
  padding-right: 0;
}

.category-strip-scroll[data-category-marquee] .category-strip-scroll__marquee {
  display: flex;
  width: 100%;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 2px 2px 10px;
  scrollbar-width: thin;
  gap: 0;
  box-sizing: border-box;
}

.category-strip-scroll[data-category-marquee] .category-strip-scroll__segment {
  display: flex;
  flex-shrink: 0;
  gap: 12px;
  align-items: stretch;
}

.category-strip-scroll--marquee-active {
  overflow: visible;
  scroll-snap-type: none;
}

/* JS drives seamless loop via scrollLeft; user can drag / trackpad / wheel horizontally */
.category-strip-scroll--marquee-active .category-strip-scroll__marquee {
  overflow-x: auto;
  overflow-y: hidden;
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 12px;
  padding-bottom: 10px;
  scroll-snap-type: none;
  scroll-behavior: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
}

.category-strip-scroll--marquee-active .category-strip-scroll__segment {
  scroll-snap-type: none;
  flex-shrink: 0;
}

.category-strip-scroll--marquee-active .category-strip-scroll__segment .category-strip-item {
  scroll-snap-align: none;
}

@media (min-width: 1024px) {
  .category-strip-scroll:not([data-category-marquee]) {
    justify-content: center;
    flex-wrap: nowrap;
    overflow-x: visible;
    gap: 14px;
  }

  .category-strip-scroll[data-category-marquee]:not(.category-strip-scroll--marquee-active) .category-strip-scroll__marquee {
    justify-content: center;
    overflow-x: visible;
    gap: 0;
  }

  .category-strip-scroll--marquee-active {
    overflow-x: visible;
  }

  .category-strip-scroll--marquee-active .category-strip-scroll__marquee {
    justify-content: center;
    overflow-x: visible;
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .category-strip-scroll--marquee-active .category-strip-scroll__segment + .category-strip-scroll__segment {
    display: none !important;
  }
}

.category-strip-scroll::-webkit-scrollbar { height: 3px; }
.category-strip-scroll::-webkit-scrollbar-thumb {
  background: rgba(0, 135, 90, 0.3);
  border-radius: 3px;
}

.category-strip-scroll[data-category-marquee] .category-strip-scroll__marquee::-webkit-scrollbar {
  height: 3px;
}
.category-strip-scroll[data-category-marquee] .category-strip-scroll__marquee::-webkit-scrollbar-thumb {
  background: rgba(0, 135, 90, 0.3);
  border-radius: 3px;
}

.category-strip-item {
  flex: 0 0 auto;
  scroll-snap-align: start;
  width: clamp(124px, 19vw, 152px);
  height: 188px;
  display: block;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  box-sizing: border-box;
}

.category-strip-item:hover {
  transform: translateY(-4px);
}

.category-strip-item--wide {
  /* Same footprint as siblings; "wide" is legacy — uniform strip reads cleaner */
  width: clamp(124px, 19vw, 152px);
  height: 188px;
}

.category-strip-item > .category-strip-img-wrap:first-child {
  margin-top: 0;
}

.category-strip-img-wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  border-radius: 0;
  overflow: hidden;
  background: #f3f7f4;
}

.category-strip-item:hover .category-strip-img-wrap {
  transform: translateY(-1px);
}

.category-strip-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.category-strip-item:hover .category-strip-img {
  transform: scale(1.08);
}

.category-strip-img-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 30, 15, 0.72) 0%,
    rgba(10, 30, 15, 0.1) 55%,
    transparent 100%
  );
  pointer-events: none;
}

.category-strip-label {
  position: absolute;
  bottom: 12px;
  left: 0;
  right: 0;
  padding: 0 10px;
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.3;
  color: #ffffff;
  text-align: center;
  z-index: 2;
  text-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.category-strip-badge {
  position: absolute;
  top: 5px;
  right: 5px;
  z-index: 2;
  font-size: 0.5rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 3px 5px;
  border-radius: 5px;
  background: var(--ug-accent);
  color: #1a1a1a;
  opacity: 0;
  transition: opacity 0.2s ease;
}

.category-strip-item:hover .category-strip-badge {
  opacity: 1;
}

/* --- Home category hero: inset from viewport edges (matches storefront gutter + safe area) --- */
.hc-hero {
  width: 100%;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: clamp(2.5rem, 5.5vw, 4rem);
  padding-left: var(--store-pad-left);
  padding-right: var(--store-pad-right);
  box-sizing: border-box;
}

.hc-hero + .hc-hero {
  margin-top: 0;
}

.storefront .hero-wrap + .hc-hero {
  margin-top: clamp(0.6rem, 1.8vw, 1.25rem);
}

.hc-hero__media {
  position: relative;
  overflow: hidden;
  min-height: clamp(380px, 78vh, 720px);
  background: #1a2f28;
}

/* Image + overlays (desktop: fills hero; mobile: own aspect block, rail stacks below) */
.hc-hero__banner-stack {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}

.hc-hero__media-link {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
}

.hc-hero__img {
  width: 100%;
  height: 100%;
  min-height: clamp(380px, 78vh, 720px);
  object-fit: cover;
  object-position: center 28%;
  display: block;
  transform: scale(1.001);
  transition: transform 0.75s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.hc-hero__media:hover .hc-hero__img {
  transform: scale(1.045);
}

.hc-hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    118deg,
    rgba(10, 35, 28, 0.26) 0%,
    rgba(10, 35, 28, 0.42) 45%,
    rgba(10, 35, 28, 0.62) 100%
  );
  pointer-events: none;
  transition: opacity 0.5s ease;
}

.hc-hero__media:hover .hc-hero__scrim {
  opacity: 0.94;
}

/* Second overlay: vignette + warm edge, works with scrim for readable copy */
.hc-hero__veil {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(245, 230, 163, 0.04) 0%, transparent 18%),
    linear-gradient(17deg, transparent 52%, rgba(0, 0, 0, 0.2) 100%),
    radial-gradient(ellipse 90% 75% at 50% 40%, transparent 20%, rgba(6, 20, 16, 0.45) 100%);
  box-shadow: inset 0 -120px 100px -60px rgba(0, 0, 0, 0.35);
  transition: opacity 0.55s ease;
}

.hc-hero__media:hover .hc-hero__veil {
  opacity: 0.9;
}

.hc-hero__layout {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr;
  gap: clamp(0.85rem, 2.5vw, 1.5rem);
  padding: clamp(1rem, 3vw, 2.25rem) clamp(1rem, 4vw, 2.75rem) clamp(1.1rem, 3vw, 2rem);
  align-items: end;
  align-content: end;
  box-sizing: border-box;
  pointer-events: none;
}

.hc-hero__copy {
  pointer-events: none;
  max-width: 36rem;
}

.hc-hero__title {
  margin: 0 0 0.35rem;
  font-family: 'DM Serif Display', Georgia, 'Times New Roman', serif;
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.65rem, 4.2vw, 2.75rem);
  line-height: 1.1;
  color: #f5e6a3;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.35);
}

.hc-hero__subtitle {
  margin: 0;
  font-size: clamp(0.88rem, 1.85vw, 1.1rem);
  font-weight: 500;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.96);
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.4);
}

/* --- Storefront Owl: prev/next disabled in JS; hide nav if present (cache / other init) --- */
.storefront .owl-carousel .owl-nav {
  display: none !important;
}

/* --- Storefront Owl carousel: perfectly centered chevrons, consistent hit areas --- */
.storefront .owl-carousel .owl-nav.disabled {
  display: none;
}

.storefront .owl-carousel .owl-nav button.owl-prev,
.storefront .owl-carousel .owl-nav button.owl-next {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
  line-height: 1 !important;
  text-align: center !important;
}

.storefront .owl-carousel .owl-nav button.owl-prev i,
.storefront .owl-carousel .owl-nav button.owl-next i {
  pointer-events: none;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 1.15em;
  height: 1.15em;
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1 !important;
}

.storefront .owl-carousel .owl-nav button.owl-prev i::before,
.storefront .owl-carousel .owl-nav button.owl-next i::before {
  display: block;
  line-height: 1;
}

/* Product rail fills the grid cell (70% of banner); Owl scrolls inside */
.hc-hero__carousel {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  pointer-events: auto;
}

.hc-hero__carousel-scroll {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  overflow: hidden;
  padding: 10px 12px 20px;
  margin: 0;
  position: relative;
  -webkit-overflow-scrolling: touch;
}

.hc-hero-carousel.owl-carousel .owl-stage-outer {
  overflow: hidden;
}

.hc-hero-carousel.owl-carousel .owl-nav {
  position: absolute;
  top: 38%;
  bottom: auto;
  left: auto;
  right: 12px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  gap: 10px;
  margin: 0;
  align-items: center;
  justify-content: flex-end;
  width: auto;
  max-width: calc(100% - 16px);
  pointer-events: none;
}

/* Home category hero: show rail controls (global storefront rule hides .owl-nav) */
.storefront .hc-hero-carousel.owl-carousel .owl-nav {
  display: flex !important;
}

.hc-hero-carousel.owl-carousel .owl-nav button.owl-prev,
.hc-hero-carousel.owl-carousel .owl-nav button.owl-next {
  position: relative;
  transform: none !important;
  left: auto !important;
  right: auto !important;
  top: auto !important;
  bottom: auto !important;
  margin: 0 !important;
  pointer-events: auto;
}

.hc-hero-carousel.owl-carousel .owl-nav .owl-prev,
.hc-hero-carousel.owl-carousel .owl-nav .owl-next {
  background: rgba(255, 255, 255, 0.96) !important;
  color: #1b4332 !important;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.2);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 0.8rem;
}

.hc-hero__slide {
  height: 100%;
}

.hc-pcard {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: left;
  background: #f7f3ec;
  border-radius: 16px;
  padding: 12px 12px 14px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
  text-decoration: none;
  color: inherit;
  height: 100%;
  min-height: 260px;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hc-pcard:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.22);
  color: inherit;
}

.hc-pcard__badge {
  align-self: flex-start;
  margin-bottom: 8px;
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: #1b4332;
  color: #fff;
}

.hc-pcard__img-wrap {
  display: block;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 1;
  background: #fff;
  margin-bottom: 10px;
}

.hc-pcard__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hc-pcard__title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1b4332;
  line-height: 1.3;
  margin-bottom: 6px;
  min-height: var(--store-pc-title-minh, 2.75em);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hc-pcard__rating-slot {
  min-height: 26px;
  margin: -2px 0 8px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
}

.hc-pcard .p99-rating-pill,
.hc-pcard__rating-slot .p99-rating-pill {
  position: static;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin: 0;
  padding: 3px 8px;
  font-size: 0.62rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 999px;
  color: #333;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.08);
}
.hc-pcard__rating-slot .p99-rating-pill .p99-star,
.hc-pcard .p99-rating-pill .p99-star {
  color: #f5b301;
}
.hc-pcard__rating-slot .p99-rating-pill .p99-divider,
.hc-pcard .p99-rating-pill .p99-divider {
  width: 1px;
  height: 10px;
  background: #ccc;
}

.hc-pcard__meta {
  font-size: 0.72rem;
  color: #6b7a72;
  margin-bottom: 12px;
  min-height: 1.35em;
  flex-shrink: 0;
}

.hc-pcard__cta {
  margin-top: auto;
  display: block;
  text-align: center;
  padding: 11px 16px;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 700;
  background: #2d6a4f;
  color: #fff !important;
}

.hc-pcard:hover .hc-pcard__cta {
  background: #1b5e40;
}

/* Tablet/desktop: headline 30% + product rail 70%. Column *order* matches placement for each variant. */
@media (min-width: 768px) {
  .hc-hero__layout {
    grid-template-rows: 1fr;
    align-items: stretch;
    column-gap: clamp(0.75rem, 2vw, 1.5rem);
  }

  .hc-hero--carousel-left .hc-hero__layout {
    grid-template-columns: minmax(0, 70%) minmax(0, 30%);
  }

  /* Right rail: was using same 70|30 grid so carousel sat in the 30% track — fix to 30|70 */
  .hc-hero--carousel-right .hc-hero__layout {
    grid-template-columns: minmax(0, 30%) minmax(0, 70%);
  }

  .hc-hero__copy {
    align-self: start;
  }

  .hc-hero__carousel {
    align-self: end;
  }

  .hc-hero--carousel-left .hc-hero__carousel {
    grid-column: 1;
    grid-row: 1;
  }

  .hc-hero--carousel-left .hc-hero__copy {
    grid-column: 2;
    grid-row: 1;
    justify-self: end;
    text-align: right;
    max-width: 100%;
  }

  .hc-hero--carousel-right .hc-hero__copy {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
    text-align: left;
    max-width: 100%;
  }

  .hc-hero--carousel-right .hc-hero__carousel {
    grid-column: 2;
    grid-row: 1;
  }
}

/* Phone: full-width banner block, then product rail directly below (no overlap) */
@media (max-width: 767px) {
  .hc-hero {
    margin-bottom: clamp(2rem, 8vw, 2.75rem);
  }

  .hc-hero__media {
    display: flex;
    flex-direction: column;
    min-height: 0;
    overflow: visible;
    gap: 0;
  }

  .hc-hero__banner-stack {
    position: relative;
    flex: 0 0 auto;
    width: 100%;
    aspect-ratio: unset;
    min-height: 0;
    max-height: none;
    height: auto;
    z-index: 0;
    border-radius: 0;
    overflow: hidden;
  }

  .hc-hero__media-link {
    position: relative;
    display: block;
    width: 100%;
    inset: auto;
    min-height: 0;
  }

  .hc-hero__img {
    position: relative;
    display: block;
    inset: auto;
    width: 100%;
    height: auto;
    max-height: min(75vh, 420px);
    min-height: 0;
    object-fit: contain;
    object-position: center top;
  }

  .hc-hero__scrim,
  .hc-hero__veil {
    position: absolute;
    inset: 0;
  }

  /* Flatten layout so copy + carousel participate in column flex under .hc-hero__media */
  .hc-hero__layout {
    display: contents;
    position: static;
    inset: auto;
    padding: 0;
    gap: 0;
    align-items: unset;
    align-content: unset;
    pointer-events: none;
  }

  .hc-hero__copy {
    position: absolute;
    top: clamp(0.85rem, 3.5vw, 1.25rem);
    left: clamp(0.85rem, 3.5vw, 1.25rem);
    right: clamp(0.85rem, 3.5vw, 1.25rem);
    z-index: 4;
    max-width: none;
    padding-right: 0.25rem;
    text-align: left !important;
    justify-self: stretch !important;
    pointer-events: none;
  }

  .hc-hero__carousel {
    position: relative;
    z-index: 1;
    flex: 0 0 auto;
    width: 100%;
    margin-top: 0;
    padding-top: 0.75rem;
    padding-bottom: max(0.5rem, env(safe-area-inset-bottom, 0px));
    background: var(--ios-bg-elevated, #fff);
    box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.06);
  }

  .hc-hero__carousel-scroll {
    max-width: 100%;
    width: 100%;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding: 8px 12px 18px;
  }

  /* Arrows centered on the product rail */
  .hc-hero-carousel.owl-carousel .owl-nav {
    top: 50%;
    bottom: auto;
    left: auto;
    right: 10px;
    transform: translateY(-50%);
    justify-content: flex-end;
    gap: 10px;
    max-width: none;
  }

  .hc-hero__title {
    font-size: clamp(1.4rem, 5.5vw, 1.85rem);
  }

  .hc-pcard {
    min-height: 230px;
    padding: 10px 10px 12px;
    border-radius: 14px;
  }

  .hc-pcard__badge {
    font-size: 0.58rem;
    padding: 4px 8px;
  }

  .hc-pcard__title {
    font-size: 0.85rem;
  }

  .hc-pcard__cta {
    padding: 9px 12px;
    font-size: 0.78rem;
  }

  .hc-hero-carousel.owl-carousel .owl-nav .owl-prev,
  .hc-hero-carousel.owl-carousel .owl-nav .owl-next {
    width: 32px;
    height: 32px;
    font-size: 0.72rem;
  }
}


.p99-jsbanner {
  position: relative;
  width: 100%;
  padding-left: var(--store-pad-left);
  padding-right: var(--store-pad-right);
  margin: 0;
  overflow: hidden;
  box-sizing: border-box;
}

.p99-jsbanner__bg {
  position: relative;
  width: 100%;
  min-height: 210px;
  max-height: min(40vh, 400px);
  overflow: hidden;
  display: block;
}

.p99-jsbanner__bg--gradient {
  min-height: 240px;
  background: linear-gradient(135deg, #1b5e40 0%, var(--ug-primary-mid) 45%, var(--ug-primary-light, #00b067) 100%);
}

.p99-jsbanner--muted .p99-jsbanner__bg--gradient {
  background: linear-gradient(135deg, #0d3d2a 0%, #006a4d 50%, #1b7a52 100%);
}

.p99-jsbanner--deal .p99-jsbanner__bg--gradient {
  background: linear-gradient(135deg, #7c2d12 0%, #c2410c 45%, var(--ug-accent, #f4a261) 100%);
}

.p99-jsbanner--deal .p99-jsbanner__row-title {
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.35);
}

.p99-jsbanner--deal .p99-jsbanner__row-head .link-view-all {
  color: rgba(255, 255, 255, 0.95);
  border-color: rgba(255, 255, 255, 0.5);
}

.p99-jsbanner__bglink {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.p99-jsbanner__bgimg {
  width: 100%;
  height: 100%;
  min-height: 210px;
  max-height: min(40vh, 400px);
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 0;
}

@media (max-width: 767px) {
  .p99-jsbanner__bg {
    min-height: 0;
    max-height: none;
    height: auto;
  }
  .p99-jsbanner__bglink {
    height: auto;
    min-height: 0;
  }
  .p99-jsbanner__bgimg {
    height: auto;
    min-height: 0 !important;
    max-height: min(70vh, 480px) !important;
    object-fit: contain;
    object-position: center top;
  }
  .p99-jsbanner__bg--gradient {
    min-height: 200px;
  }
}

.p99-jsbanner__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.09) 0%, transparent 30%),
    linear-gradient(200deg, transparent 40%, rgba(0, 50, 35, 0.25) 100%),
    radial-gradient(ellipse 100% 70% at 50% 50%, transparent 15%, rgba(0, 0, 0, 0.22) 100%);
  box-shadow: inset 0 0 60px rgba(0, 0, 0, 0.1);
  transition: opacity 0.4s ease;
}

.p99-jsbanner:hover .p99-jsbanner__veil {
  opacity: 0.85;
}

@media (prefers-reduced-motion: reduce) {
  .hc-hero__img,
  .hc-hero__scrim,
  .hc-hero__veil,
  .hero-full-img,
  .hero-media-cover,
  .p99-jsbanner__bgimg,
  .p99-jsbanner__veil {
    transition: none !important;
  }

  .hc-hero__media:hover .hc-hero__img,
  .storefront .hero-carousel-item:hover .hero-full-img,
  .storefront .hero-carousel-item__surface:hover .hero-full-img,
  .p99-jsbanner:hover .p99-jsbanner__bgimg {
    transform: none !important;
  }

  .hc-hero__media:hover .hc-hero__scrim,
  .hc-hero__media:hover .hc-hero__veil,
  .hero-carousel-item__surface:hover .hero-media-cover,
  .p99-jsbanner:hover .p99-jsbanner__veil {
    opacity: 1 !important;
  }
}


.p99-jsbanner__overlay {
  max-width: var(--ug-max-w, 1280px);
  margin: -96px auto 0;
  padding: 0 0 2.5rem;
  position: relative;
  z-index: 2;
}

@media (min-width: 768px) {
  .p99-jsbanner__overlay {
    margin-top: -110px;
  }
}

@media (max-width: 575px) {
  .p99-jsbanner__overlay {
    margin-top: -72px;
  }
}

.p99-jsbanner__row-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.875rem;
}

.p99-jsbanner__row-title {
  margin: 0;
  font-size: clamp(1.05rem, 2.2vw, 1.4rem);
  font-weight: 700;
  color: var(--ug-text);
  text-shadow: 0 1px 3px rgba(255, 255, 255, 0.9);
}

.p99-jsbanner--muted .p99-jsbanner__row-title {
  color: #fff;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.p99-jsbanner--muted .p99-jsbanner__row-head .link-view-all {
  color: rgba(255, 255, 255, 0.92);
  border-color: rgba(255, 255, 255, 0.45);
}

.p99-jsbanner--muted .p99-jsbanner__row-head .link-view-all:hover {
  color: #fff;
  border-color: var(--ug-warm);
}

.p99-jsbanner-carousel.owl-carousel {
  position: relative;
}

.p99-jsbanner-carousel.owl-carousel .owl-stage-outer {
  overflow: visible;
}

/* Side-by-side controls, vertically centered on the row (avoids stacked circles on narrow layouts) */
.p99-jsbanner-carousel.owl-carousel .owl-nav {
  position: absolute;
  top: 50%;
  left: auto;
  right: max(2px, env(safe-area-inset-right, 0px));
  transform: translateY(-50%);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  margin: 0;
  width: auto;
  pointer-events: none;
}

.p99-jsbanner-carousel.owl-carousel .owl-nav button.owl-prev,
.p99-jsbanner-carousel.owl-carousel .owl-nav button.owl-next {
  pointer-events: auto;
}

.p99-jsbanner-carousel.owl-carousel .owl-nav .owl-prev,
.p99-jsbanner-carousel.owl-carousel .owl-nav .owl-next {
  background: #fff !important;
  color: var(--ug-primary-mid) !important;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.14);
  font-size: 0.78rem;
}

.p99-jsbanner-slide {
  height: 100%;
}

/* Owl carousels: equal-height slides so product cards align in a row */
body.storefront .p99-jsbanner-carousel.owl-carousel .owl-stage,
body.storefront .hc-hero-carousel.owl-carousel .owl-stage,
body.storefront .productList-carousel.owl-carousel .owl-stage {
  display: flex;
}
body.storefront .p99-jsbanner-carousel.owl-carousel .owl-item,
body.storefront .hc-hero-carousel.owl-carousel .owl-item,
body.storefront .productList-carousel.owl-carousel .owl-item {
  display: flex;
  height: auto;
}
body.storefront .p99-jsbanner-slide {
  display: flex;
  width: 100%;
  align-items: stretch;
}
body.storefront .p99-jsbanner-slide > .p99-compact-card {
  flex: 1;
  width: 100%;
  align-self: stretch;
}
body.storefront .hc-hero__slide {
  display: flex;
  width: 100%;
  height: auto;
  align-items: stretch;
}
body.storefront .hc-hero__slide > .hc-pcard {
  flex: 1;
  width: 100%;
  align-self: stretch;
}


.p99-compact-card {
  background: #fff;
  border-radius: 14px;
  padding: 10px 10px 12px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.07);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.p99-compact-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.p99-compact-card__img-wrap {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  aspect-ratio: 1;
  background: #f3f7f4;
  margin-bottom: 8px;
}

.p99-compact-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.p99-compact-card:hover .p99-compact-card__img-wrap img {
  transform: scale(1.06);
}

.p99-compact-card__name {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--ug-text);
  text-decoration: none;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: var(--store-pc-title-minh, 2.75em);
  margin-bottom: 4px;
  flex: 0 0 auto;
}

.p99-compact-card__name:hover { color: var(--ug-primary-mid); }

.p99-compact-card__price {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--ug-primary-mid);
  margin-top: auto;
}

.p99-compact-card__was {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--ug-text-muted, #888);
  text-decoration: line-through;
  margin-left: 5px;
  white-space: nowrap;
}

.p99-compact-card__rating-slot {
  min-height: 26px;
  margin: 0 auto 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 100%;
}

.p99-compact-card .p99-rating-pill {
  position: static;
  align-self: center;
  margin: 0 auto 6px;
  font-size: 0.62rem;
  font-weight: 700;
  padding: 3px 8px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  min-height: 26px;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.p99-compact-card .p99-rating-pill .p99-star {
  color: #f5b301;
}
.p99-compact-card .p99-rating-pill .p99-divider {
  width: 1px;
  height: 10px;
  background: #ccc;
}

/* Home banner + compact rail: deal of the day, best sellers, featured pick (shared layout) */
.deal-of-the-day,
.best-sellers,
.featured-pick-rail {
  width: 100%;
  max-width: 100%;
  padding-left: var(--store-pad-left);
  padding-right: var(--store-pad-right);
  box-sizing: border-box;
}

.deal-of-the-day__shell,
.best-sellers__shell,
.featured-pick-rail__shell {
  max-width: none;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 0;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  box-sizing: border-box;
}

.deal-of-the-day__banner-link,
.best-sellers__banner-link,
.featured-pick-rail__banner-link {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  line-height: 0;
  font-size: 0;
  overflow: hidden;
  transition: opacity 0.2s ease;
}

.deal-of-the-day__banner-link:hover,
.best-sellers__banner-link:hover,
.featured-pick-rail__banner-link:hover {
  opacity: 0.96;
}

.deal-of-the-day__banner-link:focus-visible,
.best-sellers__banner-link:focus-visible,
.featured-pick-rail__banner-link:focus-visible {
  outline: 2px solid var(--ug-primary-mid);
  outline-offset: -2px;
}

.deal-of-the-day__banner-img,
.best-sellers__banner-img,
.featured-pick-rail__banner-img {
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  display: block;
  vertical-align: bottom;
}

@media (min-width: 992px) {
  .deal-of-the-day__banner-link,
  .best-sellers__banner-link,
  .featured-pick-rail__banner-link {
    width: 100%;
    max-width: min(520px, 46vw);
    margin-left: auto;
    margin-right: auto;
  }
}

@media (min-width: 1200px) {
  .deal-of-the-day__banner-link,
  .best-sellers__banner-link,
  .featured-pick-rail__banner-link {
    max-width: min(560px, 42vw);
  }
}

.deal-of-the-day__rail,
.best-sellers__rail,
.featured-pick-rail__rail {
  margin: 0;
  padding: 0.4rem 0.45rem 0.55rem;
  overflow: hidden;
  min-width: 0;
  width: 100%;
  box-sizing: border-box;
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

/* Deal of the day — countdown to local midnight (deal-day-countdown.js); plain bar, no border fill */
.deal-of-the-day__timer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.35rem 0.75rem;
  padding: 0.35rem 0.65rem 0.55rem;
  margin: 0;
  border: none;
  background: transparent;
  box-sizing: border-box;
}

.deal-of-the-day__timer-label {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ug-text-muted, #5c5c5c);
}

.deal-of-the-day__timer-clock {
  display: flex;
  flex-direction: row;
  align-items: baseline;
  gap: 0.12rem;
  font-variant-numeric: tabular-nums;
}

.deal-of-the-day__timer-seg {
  display: inline-flex;
  align-items: baseline;
  gap: 0.1rem;
}

.deal-of-the-day__timer-num {
  font-size: 1.0625rem;
  font-weight: 800;
  font-family: var(--ug-font, var(--font-sans, system-ui));
  color: var(--ug-primary-mid, #00875a);
  min-width: 1.4em;
  text-align: center;
  line-height: 1.1;
}

.deal-of-the-day__timer-unit {
  font-size: 0.625rem;
  font-weight: 600;
  text-transform: lowercase;
  color: var(--ug-text-muted, #666);
}

.deal-of-the-day__timer-sep {
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(0, 0, 0, 0.18);
  margin: 0 0.04rem;
  user-select: none;
  line-height: 1;
}

/* Best sellers mobile: first half / second half in two separate horizontal scroll rows */
.best-sellers__mobile-rows {
  display: none;
}

.best-sellers__carousel-wrap {
  width: 100%;
  min-width: 0;
}

@media (max-width: 767px) {
  .best-sellers__carousel-wrap {
    display: none !important;
  }

  .best-sellers__mobile-rows {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
    min-width: 0;
  }

  .best-sellers__mobile-row {
    min-width: 0;
  }

  .best-sellers__mobile-scroll {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0.45rem;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    scroll-padding-inline: 2px;
    padding-bottom: 6px;
    margin-inline: -2px;
    padding-inline: 2px;
    scrollbar-width: thin;
  }

  .storefront.storefront--ios-home .best-sellers__mobile-scroll {
    justify-content: center;
    justify-content: safe center;
  }

  .best-sellers__mobile-scroll::-webkit-scrollbar {
    height: 3px;
  }

  .best-sellers__mobile-scroll::-webkit-scrollbar-thumb {
    background: rgba(0, 135, 90, 0.35);
    border-radius: 3px;
  }

  .best-sellers__mobile-card {
    flex: 0 0 auto;
    width: min(42vw, 168px);
    min-width: 132px;
    max-width: 180px;
    scroll-snap-align: start;
  }

  .best-sellers__mobile-card > .p99-compact-card {
    width: 100%;
  }
}

.deal-of-the-day__carousel.owl-carousel,
.best-sellers__carousel.owl-carousel,
.featured-pick-rail__carousel.owl-carousel {
  position: relative;
  width: 100%;
  max-width: 100%;
}

.deal-of-the-day__carousel.owl-carousel .owl-stage-outer,
.best-sellers__carousel.owl-carousel .owl-stage-outer,
.featured-pick-rail__carousel.owl-carousel .owl-stage-outer {
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}

.deal-of-the-day .p99-compact-card,
.best-sellers .p99-compact-card,
.featured-pick-rail .p99-compact-card {
  padding: 5px 5px 7px;
  border-radius: 11px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.deal-of-the-day .p99-compact-card:hover,
.best-sellers .p99-compact-card:hover,
.featured-pick-rail .p99-compact-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.09);
}

.deal-of-the-day .p99-compact-card__img-wrap,
.best-sellers .p99-compact-card__img-wrap,
.featured-pick-rail .p99-compact-card__img-wrap {
  border-radius: 8px;
  margin-bottom: 4px;
}

.deal-of-the-day .p99-compact-card__name,
.best-sellers .p99-compact-card__name,
.featured-pick-rail .p99-compact-card__name {
  font-size: 0.68rem;
  line-height: 1.28;
  min-height: 2.35em;
  margin-bottom: 2px;
}

.deal-of-the-day .p99-compact-card__price,
.best-sellers .p99-compact-card__price,
.featured-pick-rail .p99-compact-card__price {
  font-size: 0.75rem;
}

.deal-of-the-day .p99-compact-card__rating-slot,
.best-sellers .p99-compact-card__rating-slot,
.featured-pick-rail .p99-compact-card__rating-slot {
  min-height: 20px;
  margin-bottom: 3px;
}

.deal-of-the-day .p99-compact-card .p99-rating-pill,
.best-sellers .p99-compact-card .p99-rating-pill,
.featured-pick-rail .p99-compact-card .p99-rating-pill {
  font-size: 0.52rem;
  padding: 2px 5px;
  min-height: 20px;
}

.deal-of-the-day .p99-compact-card .p99-rating-pill .p99-divider,
.best-sellers .p99-compact-card .p99-rating-pill .p99-divider,
.featured-pick-rail .p99-compact-card .p99-rating-pill .p99-divider {
  height: 8px;
}

body.storefront .deal-of-the-day__carousel.owl-carousel .owl-stage,
body.storefront .best-sellers__carousel.owl-carousel .owl-stage,
body.storefront .featured-pick-rail__carousel.owl-carousel .owl-stage {
  display: flex;
}

body.storefront .deal-of-the-day__carousel.owl-carousel .owl-item,
body.storefront .best-sellers__carousel.owl-carousel .owl-item,
body.storefront .featured-pick-rail__carousel.owl-carousel .owl-item {
  display: flex;
  height: auto;
}

body.storefront .deal-of-the-day__slide,
body.storefront .best-sellers__slide,
body.storefront .featured-pick-rail__slide {
  display: flex;
  width: 100%;
  align-items: stretch;
}

body.storefront .deal-of-the-day__slide > .p99-compact-card,
body.storefront .best-sellers__slide > .p99-compact-card,
body.storefront .featured-pick-rail__slide > .p99-compact-card {
  flex: 1;
  width: 100%;
  align-self: stretch;
}

/* Desktop: 5 columns, wrap to next row (Owl disabled ≥992px — see main.js) */
@media (min-width: 992px) {
  .deal-of-the-day__carousel:not(.owl-loaded),
  .best-sellers__carousel:not(.owl-loaded),
  .featured-pick-rail__carousel:not(.owl-loaded) {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: clamp(10px, 1.1vw, 14px);
    width: 100%;
    max-width: 100%;
  }

  /* Home: center short last rows */
  .storefront.storefront--ios-home .deal-of-the-day__carousel:not(.owl-loaded),
  .storefront.storefront--ios-home .best-sellers__carousel:not(.owl-loaded),
  .storefront.storefront--ios-home .featured-pick-rail__carousel:not(.owl-loaded) {
    --rail-grid-gap: clamp(10px, 1.1vw, 14px);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--rail-grid-gap);
  }

  .storefront.storefront--ios-home .deal-of-the-day__slide,
  .storefront.storefront--ios-home .best-sellers__slide,
  .storefront.storefront--ios-home .featured-pick-rail__slide {
    flex: 1 1 calc((100% - 4 * var(--rail-grid-gap)) / 5);
    max-width: calc((100% - 4 * var(--rail-grid-gap)) / 5);
  }
}

@media (max-width: 380px) {
  .deal-of-the-day .p99-compact-card__name,
  .best-sellers .p99-compact-card__name,
  .featured-pick-rail .p99-compact-card__name {
    font-size: 0.64rem;
  }

  .deal-of-the-day .p99-compact-card__price,
  .best-sellers .p99-compact-card__price,
  .featured-pick-rail .p99-compact-card__price {
    font-size: 0.7rem;
  }
}


.p99-rich-band {
  padding: 3.5rem var(--ug-gutter, 20px);
  text-align: center;
  width: 100%;
}

.p99-rich-band__inner {
  max-width: 660px;
  margin: 0 auto;
}

.p99-rich-band__kicker {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ug-primary-mid);
  margin: 0 0 0.5rem;
}

.p99-rich-band__title {
  font-family: var(--font-display, "DM Serif Display", Georgia, serif);
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  font-weight: 700;
  font-style: italic;
  line-height: 1.1;
  margin: 0 0 0.9rem;
  color: var(--ug-text);
}

.p99-rich-band__sub {
  margin: 0 0 1.6rem;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ug-text-muted);
}

.p99-rich-band__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.9rem 2rem;
  font-size: 0.9375rem;
  font-weight: 700;
  border-radius: 999px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.p99-rich-band__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
}


.p99-rich-band--foliage {
  background: linear-gradient(180deg, #e6f4ea 0%, #f3faf5 60%, #fff 100%);
}
.p99-rich-band--foliage .p99-rich-band__kicker { color: var(--ug-primary); }
.p99-rich-band--foliage .p99-rich-band__cta {
  background: var(--ug-primary-mid);
  color: #fff;
}


.p99-rich-band--soft {
  background: #ffffff;
}
.p99-rich-band--soft .p99-rich-band__cta {
  background: var(--ug-primary-mid);
  color: #fff;
}


.p99-rich-band--footer {
  background: linear-gradient(135deg, #006a4d 0%, #004d40 100%);
  color: #fff;
}
.p99-rich-band--footer .p99-rich-band__title { color: var(--ug-warm, #fefae0); }
.p99-rich-band--footer .p99-rich-band__sub { color: rgba(255, 255, 255, 0.85); }
.p99-rich-band--footer .p99-rich-band__kicker { color: rgba(255, 255, 255, 0.7); }
.p99-rich-band--footer .p99-rich-band__cta {
  background: #fff;
  color: var(--ug-primary-mid);
}


.p99-reels-section {
  padding: 2.5rem 0;
  background: #fff;
}

.p99-reels-section .section-container {
  max-width: none;
}

.p99-reels-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.125rem;
}

.p99-reels-section.p99-rich-band--soft {
  background: #ffffff;
}

.p99-reels-section__banner-link {
  margin-bottom: 1rem;
}

.p99-reels-section--banner-top .p99-reels-scroll {
  margin-top: 0;
}

/* New arrivals–style: badge + single “View all” (top-right ≥768px, below rail on mobile) */
.p99-reels-section--badge-nav .section-container {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: center;
  column-gap: 1rem;
  row-gap: 0.65rem;
}

@media (min-width: 768px) {
  .p99-reels-section--badge-nav:has(.p99-reels-section__view-all-nav) .section-container {
    grid-template-columns: minmax(0, 1fr) auto;
  }
}

.p99-reels-section__badge {
  grid-column: 1;
  grid-row: 1;
  justify-self: start;
  display: inline-flex;
  align-items: center;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ug-primary-mid, #2e7d32);
  padding: 0.38rem 0.75rem;
  border-radius: 999px;
  border: 1.5px solid var(--ug-primary-mid, #2e7d32);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 2px 10px rgba(0, 106, 77, 0.08);
  line-height: 1.2;
}

.p99-reels-section--badge-nav .p99-reels-section__view-all-nav {
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
  align-self: center;
  margin: 0;
  flex-shrink: 0;
}

.p99-reels-section--badge-nav .p99-reels-section__banner-link {
  grid-column: 1 / -1;
  grid-row: 2;
  margin-bottom: 0.35rem;
}

.p99-reels-section--badge-nav .p99-reels-scroll {
  grid-column: 1 / -1;
  grid-row: 3;
  margin-top: 0;
}

@media (max-width: 767px) {
  .p99-reels-section--badge-nav .section-container {
    grid-template-columns: 1fr;
    row-gap: 0.5rem;
  }

  .p99-reels-section--badge-nav .p99-reels-section__badge {
    grid-column: 1;
    grid-row: 1;
  }

  .p99-reels-section--badge-nav .p99-reels-section__view-all-nav {
    grid-column: 1;
    grid-row: 4;
    justify-self: stretch;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    margin-top: 0.15rem;
  }

  .p99-reels-section--badge-nav .p99-reels-section__banner-link {
    grid-row: 2;
    margin-bottom: 0.25rem;
  }

  .p99-reels-section--badge-nav .p99-reels-scroll {
    grid-row: 3;
  }
}

.p99-reels-intro {
  text-align: center;
  padding-bottom: 0.35rem;
  margin-bottom: 0.35rem;
}

.p99-reels-intro .p99-rich-band__sub {
  margin-bottom: 1.25rem;
}

.p99-reels-intro__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1.25rem;
}

.p99-reels-title {
  margin: 0;
  font-size: clamp(1.2rem, 2.2vw, 1.5rem);
  font-weight: 700;
  color: var(--ug-text);
}

.p99-reels-scroll {
  display: flex;
  gap: 12px;
  align-items: stretch;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 6px 2px 18px;
  margin: 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.p99-reels-scroll::-webkit-scrollbar { height: 3px; }
.p99-reels-scroll::-webkit-scrollbar-thumb {
  background: rgba(0, 106, 77, 0.25);
  border-radius: 3px;
}

.p99-reels-card {
  flex: 0 0 auto;
  scroll-snap-align: start;
  width: 148px;
  display: flex;
  align-items: stretch;
}
body.storefront .p99-reels-card > .p99-compact-card {
  flex: 1;
  width: 100%;
  min-height: 100%;
}

@media (min-width: 576px) { .p99-reels-card { width: 168px; } }
@media (min-width: 992px) { .p99-reels-card { width: 180px; } }

@media (min-width: 992px) {
  .p99-reels-section--banner-top .p99-reels-scroll {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: clamp(10px, 1.1vw, 14px);
    overflow-x: visible;
    scroll-snap-type: none;
    padding: 6px 2px 12px;
  }

  .p99-reels-section--banner-top .p99-reels-card {
    width: 100%;
    max-width: none;
    scroll-snap-align: unset;
  }
}

.p99-reel-tile {
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 26px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 0, 0, 0.06);
}

.p99-reel-media {
  position: relative;
  display: block;
  aspect-ratio: 9 / 16;
  background: #f3f7f4;
}

.p99-reel-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.p99-reel-play {
  position: absolute;
  inset: auto 10px 10px auto;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: #0f3c2e;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.16);
}

.p99-reel-meta {
  padding: 10px 10px 12px;
}

.p99-reel-name {
  font-weight: 700;
  font-size: 0.8rem;
  line-height: 1.25;
  color: var(--ug-text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.4em;
}

.p99-reel-meta .p99-rating-pill {
  position: static;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin: 6px 0 0;
  padding: 2px 7px;
  font-size: 0.58rem;
  font-weight: 700;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 999px;
  color: #444;
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.p99-reel-meta .p99-rating-pill .p99-star {
  color: #f5b301;
}
.p99-reel-meta .p99-rating-pill .p99-divider {
  width: 1px;
  height: 9px;
  background: #ccc;
}

.p99-reel-row {
  margin-top: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.p99-reel-price {
  font-weight: 800;
  color: var(--ug-primary-mid);
  font-size: 0.86rem;
  white-space: nowrap;
}

.p99-reel-form {
  margin: 0;
}

.p99-reel-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  text-decoration: none;
  background: var(--ug-primary-mid);
  color: #fff;
  font-weight: 800;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 9px 12px;
  border-radius: 999px;
  min-width: 64px;
}

.p99-reel-btn:hover {
  filter: brightness(1.06);
  color: #fff;
}

.p99-subscribe {
  padding: 2.75rem 0;
  background: linear-gradient(180deg, #f6faf8 0%, #ffffff 100%);
}
.p99-subscribe-card {
  border-radius: 20px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.08);
  padding: 22px;
  display: grid;
  gap: 14px;
}
@media (min-width: 768px) {
  .p99-subscribe-card {
    grid-template-columns: 1.3fr 1fr;
    align-items: center;
    padding: 28px;
  }
}
.p99-subscribe-kicker {
  margin: 0 0 6px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ug-primary-mid);
}
.p99-subscribe-title {
  margin: 0 0 8px;
  font-size: clamp(1.25rem, 2.6vw, 1.6rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.p99-subscribe-sub {
  margin: 0;
  color: var(--ug-text-muted);
  line-height: 1.6;
}
.p99-subscribe-form {
  display: flex;
  gap: 10px;
  align-items: center;
}
.p99-subscribe-form input {
  flex: 1;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 999px;
  padding: 12px 14px;
  outline: none;
}
.p99-subscribe-form button {
  border: none;
  border-radius: 999px;
  padding: 12px 16px;
  background: var(--ug-primary-mid);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.72rem;
  cursor: pointer;
}

.p99-rewards {
  padding: 2.75rem 0;
  background: #fff;
}
.p99-rewards-head {
  margin-bottom: 16px;
}
.p99-rewards-title {
  margin: 0 0 6px;
  font-size: clamp(1.25rem, 2.4vw, 1.6rem);
  font-weight: 800;
}
.p99-rewards-sub {
  margin: 0;
  color: var(--ug-text-muted);
}
.p99-rewards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}
@media (min-width: 768px) {
  .p99-rewards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.p99-reward {
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 18px;
  padding: 18px;
  background: #fff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}
.p99-reward-icon {
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background: rgba(0, 135, 90, 0.12);
  color: var(--ug-primary-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  margin-bottom: 10px;
}
.p99-reward h3 {
  margin: 0 0 6px;
  font-size: 1rem;
  font-weight: 800;
}
.p99-reward p {
  margin: 0;
  color: var(--ug-text-muted);
  line-height: 1.55;
}

.p99-about {
  padding: 2.75rem 0;
  background: #fff;
}
.p99-about-card {
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(0, 135, 90, 0.12), rgba(0, 176, 103, 0.08));
  border: 1px solid rgba(0, 0, 0, 0.06);
  display: grid;
}
@media (min-width: 768px) {
  .p99-about-card {
    grid-template-columns: 1.3fr 1fr;
    min-height: 260px;
  }
}
.p99-about-copy {
  padding: 22px;
}
.p99-about-kicker {
  margin: 0 0 6px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ug-primary-mid);
}
.p99-about-title {
  margin: 0 0 10px;
  font-size: clamp(1.25rem, 2.6vw, 1.7rem);
  font-weight: 900;
  letter-spacing: -0.02em;
}
.p99-about-sub {
  margin: 0 0 14px;
  color: var(--ug-text-muted);
  line-height: 1.65;
}
.p99-about-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 999px;
  background: var(--ug-primary-mid);
  color: #fff;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.72rem;
}
.p99-about-media {
  background: #f3f7f4;
}
.p99-about-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 200px;
}

.p99-brand-strip {
  padding: 1.5rem 0;
  background: var(--ug-surface-alt, #f6faf8);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.p99-brand-strip-inner {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 6px 2px;
}
.p99-brand-strip-inner::-webkit-scrollbar { display: none; }
.p99-brand-pill {
  flex: 0 0 auto;
  padding: 10px 14px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  font-weight: 800;
  font-size: 0.78rem;
  color: var(--ug-text);
  white-space: nowrap;
}

.p99-locations {
  padding: 2.25rem 0;
  background: #fff;
}
.p99-locations-title {
  margin: 0 0 6px;
  font-weight: 900;
  font-size: clamp(1.25rem, 2.4vw, 1.6rem);
}
.p99-locations-sub {
  margin: 0 0 12px;
  color: var(--ug-text-muted);
}
.p99-locations-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}
@media (min-width: 768px) {
  .p99-locations-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.p99-loc {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 12px;
  padding: 12px 12px;
  background: #fff;
  font-weight: 800;
  font-size: 0.85rem;
  color: var(--ug-text);
}

.p99-newsletter {
  padding: 2.5rem 0;
  background: var(--ug-surface-alt, #f6faf8);
}
.p99-newsletter-card {
  background: #fff;
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.08);
  padding: 22px;
  display: grid;
  gap: 14px;
}
@media (min-width: 768px) {
  .p99-newsletter-card {
    grid-template-columns: 1.3fr 1fr;
    align-items: center;
  }
}
.p99-newsletter-title {
  margin: 0 0 6px;
  font-weight: 900;
  font-size: clamp(1.25rem, 2.4vw, 1.6rem);
}
.p99-newsletter-sub {
  margin: 0;
  color: var(--ug-text-muted);
  line-height: 1.6;
}
.p99-newsletter-form {
  display: flex;
  gap: 10px;
  align-items: center;
}
.p99-newsletter-form input {
  flex: 1;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 999px;
  padding: 12px 14px;
  outline: none;
}
.p99-newsletter-form button {
  border: none;
  border-radius: 999px;
  padding: 12px 16px;
  background: var(--ug-primary-mid);
  color: #fff;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.72rem;
  cursor: pointer;
}


.p99-store-locator {
  padding: 3rem 0 3.5rem;
  background: var(--ug-surface-alt, #f6faf8);
}

.p99-store-locator .section-container {
  max-width: var(--ug-max-w, 1280px);
}

.p99-store-head {
  margin-bottom: 1.5rem;
}

.p99-store-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid rgba(0, 106, 77, 0.1);
  padding-bottom: 14px;
}

.p99-store-tab {
  border: 1.5px solid rgba(0, 106, 77, 0.22);
  background: #fff;
  color: var(--ug-text);
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 8px 16px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.p99-store-tab:hover {
  border-color: var(--ug-primary-mid);
  color: var(--ug-primary-mid);
  background: rgba(0, 135, 90, 0.05);
}

.p99-store-tab.is-active {
  background: var(--ug-primary-mid);
  color: #fff;
  border-color: var(--ug-primary-mid);
  box-shadow: 0 4px 14px rgba(0, 135, 90, 0.25);
}

.p99-store-panel[hidden] { display: none !important; }

.p99-stores-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}

.p99-store-card {
  border-radius: var(--ug-radius-lg);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.07);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.p99-store-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.p99-store-card__img {
  height: 150px;
  background: linear-gradient(135deg, #c8e6c9, #e8f5e9 70%);
}

.p99-store-card__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 13px;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--ug-primary-mid);
  text-decoration: none;
  border-top: 1px solid #eef5ef;
  transition: background 0.2s ease;
}

.p99-store-card__btn:hover {
  background: #f3faf5;
  color: var(--ug-primary);
}


.p99-dual-promo {
  padding: 2.5rem 0 3rem;
  background: #fff;
}

.p99-dual-promo .section-container {
  max-width: var(--ug-max-w, 1280px);
}

.p99-dual-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

@media (min-width: 768px) {
  .p99-dual-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }
}

.p99-dual-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 220px;
  padding: 2.25rem 2rem;
  border-radius: 20px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 6px 28px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.p99-dual-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.12) 0%, transparent 55%);
  pointer-events: none;
  z-index: 1;
}
.p99-dual-card > * {
  position: relative;
  z-index: 2;
}

.p99-dual-card:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.15);
  color: inherit;
}

.p99-dual-card--green {
  background: linear-gradient(135deg, #006a4d 0%, #00875a 55%, #00b067 100%);
  color: #fff;
}
.p99-dual-card--green .p99-dual-tag { color: rgba(255, 255, 230, 0.9); }
.p99-dual-card--green .p99-dual-title { color: #fff; }
.p99-dual-card--green .p99-dual-cta { color: var(--ug-warm, #fefae0); }

.p99-dual-card--cream {
  background: linear-gradient(135deg, #fffdf5 0%, #fce9c8 100%);
}
.p99-dual-card--cream .p99-dual-cta { color: var(--ug-primary-mid); }

.p99-dual-tag {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.6rem;
}

.p99-dual-title {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 700;
  margin: 0 0 0.85rem;
  line-height: 1.3;
  max-width: 300px;
}

.p99-dual-cta {
  font-size: 0.875rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}


.p99-hero-secondary-wrap {
  background: #fff;
  padding-left: var(--store-pad-left);
  padding-right: var(--store-pad-right);
  box-sizing: border-box;
}

.p99-hero-secondary-inner {
  padding-top: 8px !important;
  max-width: var(--ug-max-w, 1280px) !important;
  margin-left: auto !important;
  margin-right: auto !important;
}


.storefront .product-section {
  padding: 3rem 0;
}

.storefront .product-section--tight {
  padding: 2rem 0;
}

.storefront .product-section--muted {
  background: var(--ug-surface-alt, #f6faf8);
}

.storefront .product-section .container,
.storefront .product-section .section-container {
  max-width: var(--ug-max-w, 1280px);
}

/* Full width between viewport gutters (same as .hc-hero), not 1280px — combo hub + banner product grids */
.storefront .combo-hub-section .section-container,
.storefront .combo-hub-section .container,
.storefront .product-section--banner-top .section-container,
.storefront .product-section--banner-top .container {
  max-width: none;
}

@media (min-width: 992px) {
  .storefront .product-section--banner-top .product-grid-layout {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}


.storefront .product-grid-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.125rem;
}

@media (max-width: 1199px) {
  .storefront .product-grid-layout {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}

@media (max-width: 767px) {
  .storefront .product-grid-layout {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
}


@media (prefers-reduced-motion: reduce) {
  .category-strip-scroll,
  .p99-reels-scroll {
    scroll-snap-type: none;
  }
  .p99-compact-card:hover,
  .p99-dual-card:hover,
  .p99-store-card:hover,
  .category-strip-item:hover {
    transform: none;
  }
}




body.storefront .shop-page {
  background: var(--page-bg);
  font-family: var(--font-sans);
}

body.storefront .shop-page .section-pad {
  background: transparent;
}

body.storefront .shop-page #shopProductGrid {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 28px 22px !important;
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--store-pad-left);
  padding-right: var(--store-pad-right);
}

@media (max-width: 991px) {
  body.storefront .shop-page #shopProductGrid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 16px 12px !important;
  }
}

body.storefront .shop-page #shopProductGrid {
  align-items: stretch !important;
}

body.storefront .shop-page #shopProductGrid .product-card {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
  min-height: 0 !important;
  background: var(--surface) !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  box-shadow: 0 4px 20px rgba(0, 106, 77, 0.08) !important;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

body.storefront .shop-page #shopProductGrid .product-card:hover {
  transform: translateY(-6px) !important;
  box-shadow: 0 18px 52px rgba(0, 106, 77, 0.18) !important;
}

body.storefront .shop-page #shopProductGrid .product-card .product-img-wrap {
  position: relative !important;
  overflow: hidden !important;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0 !important;
  background: var(--secondary-green) !important;
}

body.storefront .shop-page #shopProductGrid .product-card .product-img-wrap img {
  transition: transform 0.35s ease !important;
}

body.storefront .shop-page #shopProductGrid .product-card:hover .product-img-wrap img {
  transform: scale(1.06) !important;
}

body.storefront .shop-page #shopProductGrid .product-card .product-badge.badge-sale {
  background: var(--discount-green) !important;
  color: #fff !important;
  font-weight: 800 !important;
  border-radius: var(--radius-sm) !important;
  padding: 4px 8px !important;
  font-size: 0.7rem !important;
  backdrop-filter: none !important;
}

body.storefront .shop-page #shopProductGrid .product-card .product-wishlist {
  color: var(--primary-green) !important;
}

body.storefront .shop-page #shopProductGrid .product-card .product-body {
  flex: 1 1 auto !important;
  display: flex !important;
  flex-direction: column !important;
  padding: 12px 12px 0 !important;
  font-family: var(--font-sans) !important;
}

body.storefront .shop-page #shopProductGrid .product-card .product-body > .product-add-form,
body.storefront .shop-page #shopProductGrid .product-card .product-body > a.product-cta {
  margin-top: auto !important;
}

body.storefront .shop-page #shopProductGrid .product-card .product-name {
  color: var(--text-color) !important;
  font-weight: 600 !important;
  font-family: var(--font-sans) !important;
  min-height: var(--store-pc-title-minh, 2.75em) !important;
}

body.storefront .shop-page #shopProductGrid .product-card .price-current {
  color: var(--primary-green) !important;
  font-weight: 800 !important;
  font-size: 1rem !important;
  font-family: var(--font-sans) !important;
}

body.storefront .shop-page #shopProductGrid .product-card .product-body {
  padding-bottom: 0 !important;
}

body.storefront .shop-page #shopProductGrid .product-card .product-add-form,
body.storefront .shop-page #shopProductGrid .product-card > a.product-cta {
  margin: 0 -12px;
}

body.storefront .shop-page #shopProductGrid .product-card .product-add-form button.product-cta,
body.storefront .shop-page #shopProductGrid .product-card a.product-cta {
  width: calc(100% + 24px) !important;
}

body.storefront .shop-page #shopProductGrid .product-card .price-old {
  color: #888 !important;
}

body.storefront .shop-page #shopProductGrid .product-card a.product-cta,
body.storefront .shop-page #shopProductGrid .product-card .product-add-form button.product-cta {
  width: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-sizing: border-box !important;
  background: linear-gradient(135deg, #00875a 0%, #00b067 100%) !important;
  color: #fff !important;
  border: none !important;
  border-radius: 0 0 16px 16px !important;
  font-family: var(--font-sans) !important;
  font-size: 0.73rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  min-height: 44px !important;
  padding-top: 0.65rem !important;
  padding-bottom: 0.65rem !important;
  line-height: 1.2 !important;
  transition: filter 0.25s ease, box-shadow 0.25s ease !important;
}

body.storefront .shop-page #shopProductGrid .product-card a.product-cta:hover,
body.storefront .shop-page #shopProductGrid .product-card .product-add-form button.product-cta:hover {
  filter: brightness(1.08) !important;
  box-shadow: 0 4px 16px rgba(0, 176, 103, 0.35) !important;
}

body.storefront .shop-page .shop-head__title {
  font-family: var(--font-sans) !important;
}

body.storefront .shop-page .toolbar-right .results-count {
  font-family: var(--font-sans);
}

@media (prefers-reduced-motion: reduce) {
  body.storefront .shop-page #shopProductGrid .product-card,
  body.storefront .shop-page #shopProductGrid .product-card .product-img-wrap img {
    transition: none !important;
  }
  body.storefront .shop-page #shopProductGrid .product-card:hover {
    transform: none !important;
  }
  body.storefront .shop-page #shopProductGrid .product-card:hover .product-img-wrap img {
    transform: none !important;
  }
}




.grid-toggle {
    display: flex;
    align-items: center;
    gap: 6px;
}

.grid-toggle-btn {
    width: 34px;
    height: 34px;
    border: 1px solid var(--clr-grey-2);
    border-radius: 6px;
    background: #fff;
    color: var(--clr-grey-4, #999);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    padding: 0;
}
.grid-toggle-btn:hover {
    border-color: var(--clr-navy, #1a2235);
    color: var(--clr-navy, #1a2235);
}
.grid-toggle-btn.active {
    background: var(--clr-navy, #1a2235);
    border-color: var(--clr-navy, #1a2235);
    color: #fff;
}
.grid-toggle-btn svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

.toolbar-right {
    display: flex;
    align-items: center;
    gap: 16px;
}


#shopProductGrid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px 20px;
    transition: all 0.3s ease;
}
@media (max-width: 1199px) { #shopProductGrid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 991px)  { #shopProductGrid { grid-template-columns: repeat(3, 1fr); gap: 16px; } }
@media (max-width: 575px)  { #shopProductGrid { grid-template-columns: repeat(2, 1fr); gap: 10px; } }


#shopProductGrid.grid-compact {
    grid-template-columns: repeat(8, 1fr);
    gap: 10px;
}
@media (max-width: 1199px) { #shopProductGrid.grid-compact { grid-template-columns: repeat(6, 1fr); } }
@media (max-width: 991px)  { #shopProductGrid.grid-compact { grid-template-columns: repeat(5, 1fr); gap: 8px; } }
@media (max-width: 767px)  { #shopProductGrid.grid-compact { grid-template-columns: repeat(4, 1fr); gap: 6px; } }
@media (max-width: 575px)  { #shopProductGrid.grid-compact { grid-template-columns: repeat(3, 1fr); gap: 6px; } }


#shopProductGrid .product-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: none;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
    position: relative;
    height: auto;
}
#shopProductGrid .product-card:hover {
    transform: none;
    box-shadow: none;
}


#shopProductGrid .product-card .product-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 10px;
    overflow: hidden;
    background: var(--clr-grey-1, #f0ece6);
}
#shopProductGrid .product-card .product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: none;
}
#shopProductGrid .product-card:hover .product-img-wrap img {
    transform: none;
}


#shopProductGrid .product-card .product-badge {
    position: absolute;
    top: 10px; left: 10px;
    z-index: 2;
    font-size: 0.68rem;
    font-weight: 500;
    padding: 3px 8px;
    border-radius: 100px;
    backdrop-filter: blur(4px);
}
#shopProductGrid .product-card .badge-sale {
    background: rgba(0,0,0,0.13);
    color: #fff;
}
#shopProductGrid .product-card .badge-new {
    background: var(--clr-navy, #1a2235);
    color: var(--clr-cream, #f5efe6);
}


#shopProductGrid .product-card .product-wishlist {
    position: absolute !important;
    top: 10px !important;
    right: 10px !important;
    width: 32px !important;
    height: 32px !important;
    padding: 0 !important;
    gap: 0 !important;
    border-radius: 50% !important;
    border: none !important;
    background: rgba(255,255,255,0.85) !important;
    color: var(--clr-navy, #1a2235) !important;
    font-size: 0.8rem;
    display: flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    transition: var(--transition);
}
#shopProductGrid .product-card .product-wishlist:hover,
#shopProductGrid .product-card .product-wishlist.in-wishlist {
    background: #fff !important;
    color: #e05 !important;
}


#shopProductGrid .product-card .product-quick-add {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: var(--clr-navy, #1a2235);
    color: var(--clr-cream, #f5efe6);
    text-align: center;
    padding: 10px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    transform: translateY(100%);
    transition: transform 0.25s ease;
    text-decoration: none;
    display: block;
    z-index: 3;
    border-radius: 0 0 10px 10px;
}
#shopProductGrid .product-card:hover .product-quick-add {
    transform: translateY(0);
}


#shopProductGrid .product-card .product-body {
    padding: 10px 2px 0;
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: unset;
}


#shopProductGrid .product-card .product-category {
    font-size: 0.68rem;
    color: var(--clr-grey-5, #6e6860);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 2px;
    text-align: center;
}


#shopProductGrid .product-card .product-name {
    font-family: var(--font-body, 'Muli', sans-serif);
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--clr-navy, #1a2235);
    text-align: center;
    margin: 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


#shopProductGrid .product-card .product-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 6px;
    margin-top: 0;
    padding-top: 0;
}
#shopProductGrid .product-card .price-current {
    font-family: var(--font-body, 'Muli', sans-serif);
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--clr-navy, #1a2235);
}
#shopProductGrid .product-card .price-old {
    font-size: 0.75rem;
    color: var(--clr-grey-4, #9e9890);
    text-decoration: line-through;
}


#shopProductGrid .product-card .product-cta,
#shopProductGrid .product-card .product-add-form button.product-cta {
    margin-top: 8px;
    width: 100%;
    background: var(--clr-navy, #1a2235) !important;
    color: var(--clr-cream, #f5efe6) !important;
    border: none !important;
    border-radius: var(--radius-md, 6px);
    padding: 10px;
    font-family: var(--font-body, 'Muli', sans-serif);
    font-size: var(--text-sm, 0.8125rem);
    font-weight: 500;
    letter-spacing: 0.04em;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
}
#shopProductGrid .product-card .product-cta:hover,
#shopProductGrid .product-card .product-add-form button.product-cta:hover {
    background: var(--clr-navy-light, #2e3d56) !important;
}
#shopProductGrid .product-card .product-add-form {
    margin: 0; padding: 0;
}


#shopProductGrid.grid-compact .product-card .product-body { padding: 6px 2px 0; }
#shopProductGrid.grid-compact .product-card .product-name { font-size: 0.7rem; }
#shopProductGrid.grid-compact .product-card .price-current { font-size: 0.72rem; }
#shopProductGrid.grid-compact .product-card .product-cta,
#shopProductGrid.grid-compact .product-card .product-add-form button.product-cta {
    font-size: 0.62rem;
    padding: 6px 4px;
    min-height: 28px;
    border-radius: 4px;
    margin-top: 5px;
}
#shopProductGrid.grid-compact .product-card .product-category { display: none; }
#shopProductGrid.grid-compact .product-card .product-wishlist { display: none !important; }
#shopProductGrid.grid-compact .product-card .product-quick-add { display: none; }


#shopProductGrid .col-12.text-center { grid-column: 1 / -1; }



@import url('https://fonts.googleapis.com/css2?family=Instrument+Sans:wght@400;500;600&display=swap');


.product-detail-main {
    background: #ffffff;
    padding: 40px 0 72px;
}




.gallery-section .gallery-main {
    border: none !important;
    border-radius: 18px !important;
    background: #f5f5f5 !important;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    cursor: default;
    box-shadow: none;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.gallery-main-wrap .pdp-wishlist-btn {
    
}

.gallery-section .gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 18px;
    display: block;
}


.gallery-section .gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.75);
    border: none;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #0d1a3c;
    font-size: 1rem;
    transition: background 0.2s;
    z-index: 5;
    box-shadow: 0 1px 6px rgba(0,0,0,0.10);
}
.gallery-section .gallery-arrow:hover {
    background: #fff;
}
.gallery-section .gallery-arrow-prev { left: 14px; }
.gallery-section .gallery-arrow-next { right: 14px; }


.gallery-section .gallery-thumbs {
    display: flex !important;
    flex-direction: row;
    justify-content: flex-start !important;
    align-items: center;
    gap: 10px;
    margin-top: 16px !important;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
}
.gallery-section .gallery-thumbs::-webkit-scrollbar {
    display: none;
}

.gallery-section .gallery-thumb {
    width: 64px;
    height: 64px;
    border-radius: 10px;
    border: 2px solid transparent !important;
    overflow: hidden;
    cursor: pointer;
    background: #f5f5f5;
    flex-shrink: 0;
    transition: border-color 0.2s;
}
.gallery-section .gallery-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 9px;
}
.gallery-section .gallery-thumb.active,
.gallery-section .gallery-thumb:hover {
    border-color: #0d1a3c !important;
}


.product-detail-info {
    padding: 0;
    max-width: 100%;
}

.product-detail-main .row.g-5 {
    margin-left: 0;
    margin-right: 0;
}
.product-detail-main .row.g-5 > [class*="col-"] {
    padding-left: 0;
    padding-right: 0;
}

.product-detail-main .gallery-section {
    padding-right: 0;
}
.product-detail-main .product-detail-info {
    padding-left: 0;
}

@media (min-width: 992px) {
    .product-detail-main .row.g-5 {
        margin-left: calc(var(--bs-gutter-x) * -0.5);
        margin-right: calc(var(--bs-gutter-x) * -0.5);
    }
    .product-detail-main .row.g-5 > [class*="col-"] {
        padding-left: calc(var(--bs-gutter-x) * 0.5);
        padding-right: calc(var(--bs-gutter-x) * 0.5);
    }
    .product-detail-main .product-detail-info {
        padding: 0;
    }
}


.pdp-details-inner {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
}


.product-detail-info .product-category {
    font-family: 'Muli', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #9e9890;
    margin-bottom: 10px;
    display: block;
}


.product-detail-info .product-detail-title {
    font-family: 'Instrument Sans', sans-serif !important;
    font-size: 54px !important;
    font-weight: 400 !important;
    line-height: 1.05 !important;
    letter-spacing: normal !important;
    color: #0d1a3c !important;
    margin-bottom: 16px !important;
}


@media (max-width: 1199px) {
    .product-detail-info .product-detail-title {
        font-size: 42px !important;
    }
}

.product-detail-info .product-detail-rating {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.product-detail-info .product-detail-rating .stars {
    color: #c8976a;
    font-size: 0.9rem;
}
.product-detail-info .product-detail-rating .rating-count {
    font-size: 0.8125rem;
    color: #9e9890;
}


.product-detail-info .product-detail-price {
    display: flex !important;
    align-items: baseline !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    padding: 20px 0 20px !important;
    border-top: 1px solid #e8e4df !important;
    border-bottom: none !important;
    margin-bottom: 0 !important;
    min-width: 0 !important;
    overflow-x: visible !important;
}

.product-detail-info .product-detail-price .price-block {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: baseline !important;
    gap: 8px 12px !important;
    min-width: 0 !important;
    max-width: 100% !important;
}

.product-detail-info .product-detail-price .price-main {
    font-family: 'Muli', sans-serif !important;
    font-size: 18px !important;
    font-weight: 600 !important;
    line-height: 28px !important;
    color: #0d1a3c !important;
    letter-spacing: normal !important;
}


.product-detail-info .price-breakdown {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.product-detail-info .price-breakdown > div {
    font-family: 'Muli', sans-serif;
    font-size: 0.875rem;
    color: #0d1a3c;
}
.product-detail-info .price-breakdown .price-total-line {
    font-weight: 600;
    font-size: 1rem;
    margin-top: 4px;
}
.product-detail-info .price-breakdown .price-gst {
    color: #6e6860;
}

.product-detail-info .product-detail-price .price-was {
    font-size: 0.9rem;
    color: #c5bfb7;
    text-decoration: line-through;
}
.product-detail-info .product-detail-price .price-save {
    font-size: 0.72rem;
    background: #0d1a3c;
    color: #f5efe6;
    padding: 2px 9px;
    border-radius: 999px;
    letter-spacing: 0.05em;
    font-weight: 500;
    align-self: center;
}


.product-detail-info .pd-divider {
    width: 100%;
    height: 1px;
    background: #e8e4df;
    margin: 8px 0 20px;
}

@media (max-width: 767px) {
    .product-detail-info {
        max-width: 100% !important;
        padding: 20px 0 0 0 !important;
    }
    .pdp-details-inner {
        padding-top: 4px;
        padding-bottom: max(20px, env(safe-area-inset-bottom, 0px));
    }
    .product-detail-info .product-detail-title {
        margin-bottom: 1.25rem !important;
    }
    .product-detail-info .product-detail-rating {
        margin-bottom: 1.25rem !important;
    }
    .product-detail-info .product-detail-price {
        padding: 1.125rem 0 1.25rem !important;
        margin-bottom: 0.25rem !important;
    }
    #pdp-price-pending {
        margin: 0.125rem 0 0 !important;
        line-height: 1.45 !important;
        padding-right: 4px;
    }
    .pdp-details-inner #variantAttributeGroups {
        margin-top: 0.625rem !important;
        margin-bottom: 1.5rem !important;
    }
    .pdp-details-inner #variantAttributeGroups > .mb-2 > span {
        margin-bottom: 0.625rem !important;
    }
    .pdp-details-inner .mb-3:has(#variantOptions) {
        margin-top: 0.5rem !important;
        margin-bottom: 1.5rem !important;
    }
    #addToCartForm.product-add-form {
        margin-top: 0.375rem !important;
        margin-bottom: calc(0.75rem + env(safe-area-inset-bottom, 0px)) !important;
        padding-bottom: 4px !important;
    }
    .product-cta-row {
        gap: 10px !important;
        min-width: 0 !important;
        margin-top: 0.125rem !important;
        margin-bottom: 0.25rem !important;
    }
    .product-cta-row .btn-add-cart,
    .product-cta-row .btn-view-cart {
        min-width: 0 !important;
    }
    .qty-selector {
        width: 110px !important;
    }
    .btn-buy-now {
        width: 100% !important;
        margin-top: 14px !important;
        margin-bottom: max(12px, env(safe-area-inset-bottom, 0px)) !important;
    }
}


#variantAttributeGroups {
    margin-bottom: 20px;
}
#variantAttributeGroups > .mb-2 > span {
    font-family: 'Muli', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #0d1a3c;
    display: block;
    margin-bottom: 10px;
}


.attribute-value-btn {
    font-family: 'Muli', sans-serif !important;
    font-size: 0.875rem !important;
    font-weight: 400 !important;
    letter-spacing: 0.01em !important;
    text-transform: none !important;
    padding: 10px 22px !important;
    border-radius: 12px !important;
    border: 1.5px solid #d9cfc3 !important;
    background: #ffffff !important;
    color: #0d1a3c !important;
    min-height: 44px !important;
    transition: all 0.18s ease !important;
    cursor: pointer;
    line-height: 1.2 !important;
}
.attribute-value-btn:hover:not(.disabled-option) {
    border-color: #0d1a3c !important;
    background: #ffffff !important;
    color: #0d1a3c !important;
}

.attribute-value-btn.btn-dark {
    background: #0d1a3c !important;
    color: #ffffff !important;
    border-color: #0d1a3c !important;
}

.attribute-value-btn.disabled-option {
    opacity: 0.4 !important;
    cursor: not-allowed !important;
    text-decoration: line-through !important;
}


.attribute-value-btn.btn-outline-dark {
    background: #ffffff !important;
    color: #0d1a3c !important;
    border: 1.5px solid #d9cfc3 !important;
}
.attribute-value-btn.btn-outline-dark:hover:not(.disabled-option) {
    background: #ffffff !important;
    color: #0d1a3c !important;
    border-color: #0d1a3c !important;
}


#addToCartForm {
    margin-top: 4px;
}


#addToCartForm > .d-flex > label {
    font-family: 'Muli', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #0d1a3c;
    display: none; 
}


.product-cta-row {
    display: flex !important;
    flex-direction: row !important;
    align-items: stretch !important;
    gap: 10px !important;
    margin: 0 0 10px !important;
    width: 100%;
}


.qty-selector {
    width: 126px !important;
    height: 52px !important;
    border-radius: 15px !important;
    border: 1.5px solid #d9cfc3 !important;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
    background: #ffffff;
}
.qty-selector button {
    width: 40px !important;
    height: 52px !important;
    background: transparent !important;
    border: none !important;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem !important;
    color: #0d1a3c;
    transition: background 0.15s;
    border-radius: 0 !important;
}
.qty-selector button:hover {
    background: #f5f5f5 !important;
}
.qty-selector input {
    width: 46px !important;
    height: 52px !important;
    border: none !important;
    border-left: 1px solid #e8e4df !important;
    border-right: 1px solid #e8e4df !important;
    text-align: center;
    font-family: 'Muli', sans-serif !important;
    font-size: 0.9375rem !important;
    font-weight: 500 !important;
    color: #0d1a3c !important;
    background: transparent !important;
    outline: none !important;
    -moz-appearance: textfield;
    padding: 0 !important;
}
.qty-selector input::-webkit-outer-spin-button,
.qty-selector input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}


.btn-add-cart {
    flex: 1 !important;
    height: 52px !important;
    border-radius: 14px !important;
    background: #ffffff !important;
    color: #0d1a3c !important;
    border: 1.5px solid #0d1a3c !important;
    font-family: 'Muli', sans-serif !important;
    font-size: 0.875rem !important;
    font-weight: 500 !important;
    letter-spacing: 0.04em !important;
    text-transform: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    cursor: pointer;
    transition: all 0.2s ease !important;
    min-height: unset !important;
    padding: 0 20px !important;
}
.btn-add-cart:hover:not(:disabled),
.btn-add-cart:focus:not(:disabled) {
    background: #f5f5f5 !important;
    color: #0d1a3c !important;
    border-color: #0d1a3c !important;
    box-shadow: none !important;
}
.btn-add-cart:disabled {
    opacity: 0.45 !important;
    cursor: not-allowed !important;
}
.btn-add-cart i {
    font-size: 0.9rem;
}


.btn-buy-now {
    width: 100% !important;
    height: 52px !important;
    border-radius: 14px !important;
    background: #0d1a3c !important;
    color: #ffffff !important;
    border: none !important;
    font-family: 'Muli', sans-serif !important;
    font-size: 0.9375rem !important;
    font-weight: 500 !important;
    letter-spacing: 0.03em !important;
    text-transform: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer;
    transition: background 0.2s ease !important;
    min-height: unset !important;
    padding: 0 !important;
    flex: unset !important;
}
.btn-buy-now:hover:not(:disabled) {
    background: #1a2d5a !important;
    color: #ffffff !important;
}
.btn-buy-now:disabled {
    opacity: 0.45 !important;
    cursor: not-allowed !important;
}


.stock-indicator {
    font-family: 'Muli', sans-serif;
    font-size: 0.8125rem;
    color: #6e6860;
    display: flex;
    align-items: center;
}


#addToCartForm .d-flex.align-items-center.gap-3.mb-3 {
    margin-bottom: 14px !important;
    flex-wrap: nowrap !important;
    gap: 12px !important;
}


.trust-badge {
    font-family: 'Muli', sans-serif;
    font-size: 0.75rem;
    color: #6e6860;
    display: flex;
    align-items: center;
    gap: 5px;
    letter-spacing: 0.02em;
}
.trust-badge i {
    color: #a8956e;
    font-size: 0.85rem;
}


.product-wishlist {
    background: none;
    border: none;
    padding: 0;
    font-family: 'Muli', sans-serif;
    font-size: 0.8125rem;
    color: #9e9890;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
    margin-top: 6px;
}
.product-wishlist:hover,
.product-wishlist.in-wishlist {
    color: #e04;
}
.product-wishlist i {
    font-size: 1rem;
}




.gallery-main-wrap {
    position: relative;
}


.pdp-wishlist-btn {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 10;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.90);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.14);
    transition: background 0.2s ease, transform 0.18s ease, box-shadow 0.2s ease;
}
.pdp-wishlist-btn:hover {
    background: #ffffff;
    transform: scale(1.1);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
}
.pdp-wishlist-btn svg {
    width: 20px;
    height: 20px;
    stroke: #0d1a3c;
    fill: none;
    transition: stroke 0.2s ease, fill 0.2s ease;
    pointer-events: none;
    display: block;
}
.pdp-wishlist-btn:hover svg {
    stroke: #e03030;
}
.pdp-wishlist-btn.in-wishlist svg {
    fill: #e03030;
    stroke: #e03030;
}
.pdp-wishlist-btn:active {
    transform: scale(0.96);
}

@media (max-width: 575px) {
    .pdp-wishlist-btn {
        top: 10px;
        right: 10px;
        width: 38px;
        height: 38px;
    }
    .pdp-wishlist-btn svg {
        width: 17px;
        height: 17px;
    }
}


.row.mt-5.pt-4 h3,
.row.mt-5.pt-4 h3.mb-4 {
    font-family: 'Instrument Sans', sans-serif !important;
    font-size: 1.5rem !important;
    font-weight: 400 !important;
    color: #0d1a3c !important;
    letter-spacing: normal !important;
    margin-bottom: 28px !important;
}


.products-grid {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 20px !important;
}
@media (max-width: 991px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}
@media (max-width: 479px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
    }
}


.products-grid .product-card {
    display: flex;
    flex-direction: column;
    background: transparent;
    border: none !important;
    box-shadow: none !important;
    border-radius: 0;
    overflow: visible;
}


.products-grid .product-card .product-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 14px;
    overflow: hidden;
    background: #f0ece6;
    display: block;
    flex-shrink: 0;
}

.products-grid .product-card .product-img-wrap .p99-rating-pill {
    position: absolute;
    bottom: 10px;
    left: 10px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 4px 10px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(4px);
    border-radius: 999px;
    font-size: 0.68rem;
    font-weight: 600;
    color: #333;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.products-grid .product-card .product-img-wrap .p99-star {
    color: #f5b301;
}
.products-grid .product-card .product-img-wrap .p99-divider {
    width: 1px;
    height: 11px;
    background: #ccc;
}
.products-grid .product-card .product-img-wrap a {
    display: block;
    width: 100%;
    height: 100%;
}
.products-grid .product-card .product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border-radius: 14px;
    transition: transform 0.4s ease;
}
.products-grid .product-card:hover .product-img-wrap img {
    transform: scale(1.04);
}


.products-grid .product-card .product-body {
    padding: 10px 2px 0;
}

.products-grid .product-card .product-category {
    font-family: 'Muli', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #9e9890;
    margin-bottom: 4px;
}

.products-grid .product-card .product-name {
    font-family: 'Muli', sans-serif !important;
    font-size: 0.875rem !important;
    font-weight: 400 !important;
    color: #0d1a3c !important;
    line-height: 1.35 !important;
    margin: 0 0 5px !important;
}

.products-grid .product-card .product-price {
    margin-bottom: 8px;
}
.products-grid .product-card .product-price .price-current {
    font-family: 'Muli', sans-serif;
    font-size: 0.875rem;
    font-weight: 400;
    color: #0d1a3c;
}


.products-grid .product-card .product-cta {
    display: inline-block;
    font-family: 'Muli', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    color: #9e9890;
    letter-spacing: 0.06em;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: color 0.2s, border-color 0.2s;
    padding-bottom: 1px;
}
.products-grid .product-card .product-cta:hover {
    color: #0d1a3c;
    border-bottom-color: #0d1a3c;
}


.review-card {
    border: 1px solid #e8e4df !important;
    border-radius: 10px !important;
    background: #fafaf9;
}
.reviewer {
    font-family: 'Muli', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: #0d1a3c;
}
.review-date {
    color: #9e9890 !important;
    font-size: 0.75rem !important;
}
.review-stars {
    color: #c8976a;
    font-size: 1rem;
    margin: 4px 0;
}
.review-title {
    font-family: 'Muli', sans-serif;
    font-weight: 600;
    font-size: 0.875rem;
    color: #0d1a3c;
    margin-bottom: 4px;
}
.review-card p {
    font-family: 'Muli', sans-serif;
    font-size: 0.875rem;
    color: #6e6860;
    line-height: 1.65;
}


.row.mt-4 h4 {
    font-family: 'Instrument Sans', sans-serif;
    font-size: 1.25rem;
    font-weight: 500;
    color: #0d1a3c;
}
.row.mt-5.pt-4 h3:first-child {
    font-family: 'Instrument Sans', sans-serif !important;
    font-size: 1.5rem !important;
    font-weight: 400 !important;
    color: #0d1a3c !important;
}
.row#reviews h3 {
    font-family: 'Instrument Sans', sans-serif !important;
    font-size: 1.5rem !important;
    font-weight: 400 !important;
    color: #0d1a3c !important;
}


@media (max-width: 991px) {
    .product-detail-main {
        padding: 28px 0 44px;
    }
    .product-detail-main > .container {
        max-width: 100%;
    }
    .product-detail-main .row.g-5 > .col-lg-6 {
        min-width: 0;
    }
    
    .product-detail-main .gallery-section {
        padding-left: max(22px, min(5.5vw, 28px), env(safe-area-inset-left, 0px));
        padding-right: max(22px, min(5.5vw, 28px), env(safe-area-inset-right, 0px));
        box-sizing: border-box;
    }
    .product-detail-info {
        padding: 24px 0 0 0 !important;
        margin-top: 8px;
    }
    .pdp-details-inner {
        padding-left: max(22px, min(5.5vw, 28px), env(safe-area-inset-left, 0px));
        padding-right: max(22px, min(5.5vw, 28px), env(safe-area-inset-right, 0px));
    }
    .gallery-section .gallery-thumbs {
        margin-top: 18px !important;
        padding-left: 2px;
        padding-right: 2px;
    }
    .product-detail-info .product-detail-title {
        font-size: clamp(1.5rem, 3.5vw + 0.85rem, 2.125rem) !important;
        line-height: 1.18 !important;
    }
}


@media (max-width: 767px) {
    .product-detail-info .product-detail-title {
        font-size: clamp(1.375rem, 4.2vw + 0.75rem, 1.75rem) !important;
        line-height: 1.22 !important;
        letter-spacing: -0.01em !important;
        overflow-wrap: anywhere;
    }
}

@media (max-width: 575px) {
    .product-cta-row {
        gap: 8px !important;
    }
    .qty-selector {
        width: 110px !important;
    }
    .btn-add-cart {
        font-size: 0.8125rem !important;
        padding: 0 12px !important;
    }
    .btn-buy-now {
        font-size: 0.875rem !important;
    }
    .gallery-section .gallery-thumb {
        width: 52px;
        height: 52px;
    }
}


.btn-add-cart.btn-adding,
.product-add-form .btn-adding {
    pointer-events: none;
    opacity: 0.9;
}
.btn-add-cart.btn-added,
.product-add-form .btn-added {
    pointer-events: none;
    background: #198754 !important;
    border-color: #198754 !important;
    color: #fff !important;
}
.product-detail-main .btn-view-cart {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    white-space: nowrap;
}



.checkout-container {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(0, 1.3fr);
    gap: 32px;
    align-items: flex-start;
}

@media (max-width: 992px) {
    .checkout-container {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

.section-header-inline {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.section-header-inline h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 600;
    color: #212121;
}


.saved-addresses {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-bottom: 24px;
}

.address-card.selectable {
    position: relative;
    cursor: pointer;
    border: 2px solid #E0E0E0;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.address-card.selectable:hover {
    border-color: #BDBDBD;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.address-card.selectable.selected {
    border-color: var(--clr-black, #000);
    background: #FFFFFF;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.address-card.selectable input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.address-card-content {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.address-card .address-info {
    flex: 1;
}

.address-card .address-info strong {
    display: block;
    font-size: 16px;
    margin-bottom: 4px;
    color: #212121;
}

.address-card .address-info p {
    margin: 2px 0;
    font-size: 14px;
    color: #757575;
    line-height: 1.5;
}

.address-checkmark {
    width: 24px;
    height: 24px;
    border: 2px solid #E0E0E0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.address-checkmark svg {
    width: 14px;
    height: 14px;
    color: white;
    opacity: 0;
    transform: scale(0);
    transition: all 0.3s ease;
}

.address-card.selectable.selected .address-checkmark {
    background: var(--clr-black, #000);
    border-color: var(--clr-black, #000);
}

.address-card.selectable.selected .address-checkmark svg {
    opacity: 1;
    transform: scale(1);
}


.form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}


.form-section {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid #E0E0E0;
}

.form-section:last-of-type {
    border-bottom: none;
}

.form-section h3 {
    font-size: 18px;
    font-weight: 600;
    color: #212121;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 16px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: #212121;
    font-size: 14px;
}


.payment-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
}

.payment-option {
    position: relative;
    cursor: pointer;
    border: 2px solid #E0E0E0;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.payment-option:hover {
    border-color: #BDBDBD;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.payment-option.selected {
    border-color: var(--clr-black, #000);
    background: #FFFFFF;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
}

.payment-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.payment-option-content {
    display: flex;
    gap: 16px;
    align-items: center;
}

.payment-checkbox {
    width: 24px;
    height: 24px;
    border: 2px solid #E0E0E0;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.payment-checkbox .checkmark {
  width: 12px;
  height: 12px;
  opacity: 0;
  transform: scale(0);
  transition: all 0.3s ease;
}

.payment-option.selected .payment-checkbox {
    background: var(--clr-black, #000);
    border-color: var(--clr-black, #000);
}

.payment-option.selected .payment-checkbox .checkmark {
    opacity: 1;
    transform: scale(1);
}

.payment-details {
    flex: 1;
}

.payment-option strong {
    display: block;
    font-size: 16px;
    margin-bottom: 4px;
    color: #212121;
}

.payment-option p {
    font-size: 13px;
    color: #757575;
    margin: 0;
    line-height: 1.4;
}


.order-summary {
    position: sticky;
    top: 100px;
}

.order-summary h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #212121;
}

.order-items {
    max-height: 400px;
    overflow-y: auto;
    margin-bottom: 20px;
    padding-right: 8px;
}

.order-items::-webkit-scrollbar {
    width: 6px;
}

.order-items::-webkit-scrollbar-track {
    background: #F5F5F5;
    border-radius: 10px;
}

.order-items::-webkit-scrollbar-thumb {
    background: #BDBDBD;
    border-radius: 10px;
}

.order-items::-webkit-scrollbar-thumb:hover {
    background: #9E9E9E;
}

.order-item {
    display: flex;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid #F5F5F5;
}

.order-item:last-child {
    border-bottom: none;
}

.order-item-image {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}

.order-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.order-item-info {
    flex: 1;
    min-width: 0;
}

.order-item-name {
    font-weight: 600;
    color: #212121;
    margin-bottom: 4px;
    font-size: 14px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.order-item-meta {
    font-size: 13px;
    color: #757575;
    margin-bottom: 4px;
}

.order-item-price {
    font-weight: 600;
    color: var(--clr-black, #212121);
    font-size: 14px;
}

.order-item-remove {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.checkout-remove-form {
    margin: 0;
    padding: 0;
}

.btn-remove-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: transparent;
    color: #757575;
    cursor: pointer;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.btn-remove-item:hover {
    color: var(--clr-black, #212121);
    background: rgba(0, 0, 0, 0.06);
}

.btn-remove-item:focus {
    outline: none;
    color: var(--clr-black, #212121);
    background: rgba(0, 0, 0, 0.08);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    font-size: 15px;
    color: #212121;
}

.summary-row.total-row {
    border-top: 2px solid #E0E0E0;
    margin-top: 12px;
    padding-top: 16px;
    font-size: 18px;
    font-weight: 700;
    color: var(--clr-black, #212121);
}


.notification {
    padding: 16px 20px;
    border-radius: 8px;
    font-size: 14px;
}

.notification.error {
    background: #fff5f5;
    border: 1px solid #ffcdd2;
    color: #d32f2f;
}


.checkout-primary-actions {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.checkout-primary-actions .btn {
    width: 100%;
    border-radius: 999px !important;
    font-size: var(--text-sm);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    min-height: 50px;
}

.checkout-primary-actions .btn-outline-dark {
    background: #f5f5f7 !important;
    border-color: #d1d1d6 !important;
    color: #1c1c1e !important;
}

.checkout-primary-actions .btn-outline-dark:hover {
    background: #e5e5ea !important;
    border-color: #c7c7cc !important;
}

.checkout-primary-actions .btn-secondary {
    background: #000000 !important;
    border-color: #000000 !important;
    color: #ffffff !important;
}

.checkout-primary-actions .btn-secondary:hover {
    background: #111111 !important;
    border-color: #111111 !important;
}

@media (min-width: 576px) {
    .checkout-primary-actions {
        flex-direction: row;
    }
}


@media (max-width: 768px) {
    .checkout-container {
        grid-template-columns: 1fr !important;
        display: grid;
    }

    
    .checkout-container .order-summary {
        order: -1;
        position: static;
        margin-top: 0;
        margin-bottom: 32px;
    }

    .checkout-container .checkout-form {
        order: 1;
    }

    .saved-addresses {
        grid-template-columns: 1fr;
    }

    .payment-options {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}




.success-page {
    background: linear-gradient(180deg, var(--clr-grey-1), #ffffff);
}

@media (max-width: 575px) {
    .success-page {
        padding-top: 32px;
    }
}

.success-main-card {
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border-top: 4px solid var(--clr-black);
    animation: successCardIn 0.45s ease-out;
}

.success-main-card::before {
    content: "";
    position: absolute;
    inset: -40%;
    background: radial-gradient(circle at 0% 0%, rgba(0,0,0,0.06), transparent 60%);
    opacity: 0.7;
    pointer-events: none;
}

.success-main-card > * {
    position: relative;
    z-index: 1;
}

.success-header {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 20px;
}

@media (max-width: 575px) {
    .success-header {
        align-items: flex-start;
    }
}

.success-icon-badge {
    width: 60px;
    height: 60px;
    border-radius: 999px;
    background: radial-gradient(circle at 30% 0%, #ffffff, var(--clr-black));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    box-shadow: 0 14px 30px rgba(0,0,0,0.25);
    flex-shrink: 0;
    animation: successIconPop 0.45s ease-out, successIconPulse 1.6s ease-out 0.6s infinite;
}

.success-icon-check {
    font-size: 30px;
    font-weight: 800;
}

.success-header-text {
    flex: 1;
}

.success-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 10px;
    border-radius: 999px;
    font-size: var(--text-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    background: rgba(0,0,0,0.06);
    color: var(--clr-black-4);
    margin-bottom: 6px;
}

.success-title {
    font-family: var(--font-heading);
    font-size: clamp(22px, 3vw, 26px);
    font-weight: 800;
    margin: 0 0 4px;
    color: var(--clr-black);
}

.success-subtitle {
    margin: 0;
    font-size: var(--text-sm);
    color: var(--clr-black-4);
}

.success-meta-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: 20px 0 24px;
}

@media (max-width: 767.98px) {
    .success-meta-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 575px) {
    .success-meta-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

.success-meta-item {
    padding: 10px 12px;
    border-radius: var(--radius-md);
    border: 1px solid var(--clr-grey-2);
    background: rgba(255,255,255,0.95);
}

.success-meta-item .label {
    display: block;
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--clr-grey-5);
    margin-bottom: 4px;
}

.success-meta-item .value {
    display: block;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--clr-black);
}

.success-details-grid {
    margin-bottom: 20px;
}

.success-detail-card {
    border-radius: var(--radius-md);
    border: 1px solid var(--clr-grey-2);
    background: rgba(255,255,255,0.98);
    padding: 14px 16px;
}

.success-detail-card h3 {
    font-size: var(--text-sm);
    font-weight: 700;
    margin: 0 0 6px;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--clr-grey-6);
}

.success-detail-card .detail-line {
    margin: 0;
    font-size: var(--text-sm);
    color: var(--clr-black-3);
}

.success-detail-card .detail-line + .detail-line {
    margin-top: 2px;
}

.success-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: center;
    margin-top: 8px;
}

@media (max-width: 575px) {
    .success-actions {
        flex-direction: column;
        align-items: stretch;
    }
}

.success-actions .btn {
    min-height: 46px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border-radius: 999px;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, color 0.18s ease;
}

.success-actions .btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 24px rgba(0,0,0,0.10);
}

.btn-whatsapp {
    background: #25D366;
    color: #ffffff;
    border: none;
}

.btn-whatsapp:hover {
    background: #1ebe5a;
    color: #ffffff;
}

.btn-whatsapp svg {
    width: 18px;
    height: 18px;
}

.success-link {
    padding: 0;
    font-size: var(--text-sm);
    color: var(--clr-black-3) !important;
}

.success-link:hover {
    color: var(--clr-black) !important;
    text-decoration: underline !important;
}

.success-footer-note {
    margin-top: 14px;
    font-size: var(--text-xs);
    color: var(--clr-grey-5);
}

.success-summary-card {
    box-shadow: var(--shadow-sm);
    background: var(--clr-white);
    position: static;
}

.success-items-list {
    max-height: 260px;
    overflow-y: auto;
    margin-bottom: 10px;
}

.success-item-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    padding: 8px 0;
    border-bottom: 1px solid var(--clr-grey-2);
}

.success-item-row:last-child {
    border-bottom: none;
}

.success-item-row .item-main {
    flex: 1;
}

.success-item-row .item-title {
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--clr-black);
    margin-bottom: 2px;
}

.success-item-row .item-meta {
    font-size: var(--text-xs);
    color: var(--clr-grey-5);
}

.success-item-row .item-price {
    font-size: var(--text-sm);
    font-weight: 700;
    white-space: nowrap;
}


@keyframes successCardIn {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes successIconPop {
    0% {
        transform: scale(0.6);
        opacity: 0;
    }
    70% {
        transform: scale(1.05);
        opacity: 1;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes successIconPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(0,0,0,0.25);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(0,0,0,0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(0,0,0,0);
    }
}


.gallery-main {
    transition: opacity 0.15s ease;
}
.spec-table td,
.spec-table th {
    padding: 10px 14px;
    font-size: 0.875rem;
}
.spec-table th {
    font-weight: 700;
    background: #f5f5f5;
    width: 38%;
}
.attribute-value-btn.disabled-option {
    opacity: 0.45;
    cursor: not-allowed;
    text-decoration: line-through;
}





.wl-summary {
    background: var(--clr-cream);
    border-bottom: 1px solid var(--clr-cream-2);
    padding: 12px 0;
}
.wl-summary-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}
.wl-count-label {
    font-size: var(--text-sm);
    color: var(--clr-grey-5);
    letter-spacing: 0.04em;
}
.wl-count-label strong {
    color: var(--clr-navy);
    font-weight: 600;
}
.wl-clear-btn {
    background: none;
    border: none;
    font-size: var(--text-xs);
    color: var(--clr-grey-4);
    cursor: pointer;
    letter-spacing: 0.04em;
    padding: 4px 0;
    text-transform: uppercase;
    transition: color var(--transition);
}
.wl-clear-btn:hover { color: #c00; }


.wl-section {
    background: var(--clr-off-white);
    padding: 48px 0 72px;
}


.wl-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px 20px;
    align-items: stretch;
}
@media (max-width: 1199px) { .wl-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 767px)  { .wl-grid { grid-template-columns: repeat(2, 1fr); gap: 16px 12px; } }
@media (max-width: 359px)  { .wl-grid { grid-template-columns: 1fr; } }


.wl-card {
    background: var(--clr-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
    transition: box-shadow var(--transition-slow), transform var(--transition-slow);
}
.wl-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}


.wl-gallery {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--clr-grey-1);
}
.wl-gallery a.wl-img-link {
    position: absolute;
    inset: 0;
    display: block;
}
.wl-gallery img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.55s ease;
}
.wl-card:hover .wl-gallery img { transform: scale(1.04); }


.wl-badge-sale {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--clr-navy-deep);
    color: var(--clr-cream);
    font-size: 0.68rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    padding: 3px 9px;
    border-radius: var(--radius-pill);
    z-index: 2;
}


.wl-remove-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: none;
    background: rgba(255,255,255,0.9);
    color: #e00550;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 3;
    transition: var(--transition);
    box-shadow: 0 1px 6px rgba(0,0,0,0.12);
}
.wl-remove-btn:hover {
    background: #fff;
    color: #c0003a;
    transform: scale(1.12);
}
.wl-remove-btn .fas { line-height: 1; }


.wl-quick {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: var(--clr-navy);
    color: var(--clr-cream);
    font-size: var(--text-xs);
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-align: center;
    padding: 9px 8px;
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 2;
    text-decoration: none;
}
.wl-card:hover .wl-quick,
.wl-card:focus-within .wl-quick {
    opacity: 1;
    transform: translateY(0);
}


.wl-body {
    padding: 12px 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}
.wl-category {
    font-size: var(--text-xs);
    color: var(--clr-beige-dark);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}
.wl-name-link { text-decoration: none; }
.wl-name {
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--clr-navy);
    margin: 0;
    line-height: 1.4;
    min-height: var(--store-pc-title-minh, 2.75em);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.wl-name:hover { color: var(--clr-beige-dark); }
.wl-variant {
    font-size: var(--text-xs);
    color: var(--clr-grey-4);
    margin: 0;
}
.wl-price-row {
    display: flex;
    align-items: baseline;
    gap: 7px;
    margin-top: 2px;
}
.wl-price-current {
    font-size: var(--text-base);
    font-weight: 600;
    color: var(--clr-navy);
}
.wl-price-old {
    font-size: var(--text-xs);
    color: var(--clr-grey-4);
    text-decoration: line-through;
}

.wl-body .tpc-form { margin-top: auto; padding-top: 10px; }

.wl-body .tpc-add-btn {
    background: linear-gradient(135deg, var(--clr-navy-light), var(--clr-navy)); 
    border-radius: 16px;
}
.wl-body .tpc-add-btn:hover {
    background: linear-gradient(135deg, var(--clr-navy), var(--clr-navy-deep));
}


.wl-body .tpc-add-btn.wl-in-cart {
    background: transparent;
    color: var(--clr-navy);
    border: 1.5px solid var(--clr-navy);
    border-radius: 16px;
    text-decoration: none;
}
.wl-body .tpc-add-btn.wl-in-cart:hover {
    background: var(--clr-navy);
    color: var(--clr-cream);
}


.wl-empty {
    max-width: 440px;
    margin: 0 auto;
    padding: 56px 16px 72px;
    text-align: center;
}
.wl-empty-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: var(--clr-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}
.wl-empty-icon svg {
    width: 34px;
    height: 34px;
    stroke: var(--clr-beige-dark);
    fill: none;
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}
.wl-empty-title {
    font-family: 'Instrument Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--clr-navy);
    margin-bottom: 10px;
    letter-spacing: 0.01em;
}
.wl-empty-text {
    font-size: var(--text-sm);
    color: var(--clr-grey-5);
    line-height: 1.7;
    margin-bottom: 28px;
}
.wl-empty-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--clr-navy);
    color: var(--clr-cream);
    border: none;
    border-radius: var(--radius-md);
    padding: 13px 32px;
    font-size: var(--text-sm);
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    transition: background var(--transition), transform var(--transition);
}
.wl-empty-cta:hover {
    background: var(--clr-navy-light);
    color: var(--clr-cream);
    transform: translateY(-2px);
}



@media (max-width: 575px) {
    .wl-body { padding: 10px 8px 12px; gap: 3px; }
    .wl-body .tpc-add-btn { min-height: 38px; font-size: 0.75rem; padding: 9px 10px; }
    .wl-section { padding: 28px 0 56px; }
}

.p99-dual-promo__container {
    padding-left: var(--ug-gutter, 20px);
    padding-right: var(--ug-gutter, 20px);
}


/* ============================================================
   STOREFRONT PREMIUM ENHANCEMENTS
   ============================================================ */

/* --- Hero Carousel Premium --- */
.storefront .hero-full-img {
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.storefront .hero-carousel-item:hover .hero-full-img,
.storefront .hero-carousel-item__surface:hover .hero-full-img {
  transform: scale(1.035);
}

/* --- Section alternating backgrounds --- */
.storefront .product-section:nth-child(even) {
  background: var(--ug-surface-alt, #f6faf8);
}

.storefront .product-section.blog-teaser-section,
.storefront .product-section.combo-hub-section {
  background: #fff;
}

/* --- Promo marquee premium --- */
.promo-marquee {
  background: linear-gradient(90deg, #006a4d 0%, #00875a 40%, #00b067 80%, #006a4d 100%);
  background-size: 200% 100%;
  animation: marquee-bg 8s ease infinite;
}

@keyframes marquee-bg {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* --- Hero fallback enhanced --- */
.hero-fallback {
  border-radius: 20px;
  min-height: 320px;
  background: linear-gradient(135deg, #004d40 0%, #006a4d 40%, #00875a 70%, #00b067 100%);
  background-size: 200% 200%;
  animation: hero-gradient 8s ease infinite;
}

@keyframes hero-gradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* --- Storefront btn-store hover improvement --- */
.btn-store {
  position: relative;
  overflow: hidden;
}
.btn-store::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background 0.2s ease;
  border-radius: inherit;
}
.btn-store:hover::after {
  background: rgba(255,255,255,0.1);
}

/* --- Rich band CTA button hover --- */
.p99-rich-band__cta {
  position: relative;
  overflow: hidden;
}
.p99-rich-band__cta:hover {
  transform: translateY(-3px) !important;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.18) !important;
}

/* --- Section container scroll reveal support --- */
.storefront .product-section,
.storefront .category-strip-section,
.storefront .p99-rich-band,
.storefront .p99-dual-promo,
.storefront .p99-reels-section,
.storefront .p99-store-locator {
  position: relative;
}

/* --- Reels card hover --- */
.p99-reels-card {
  transition: transform 0.25s ease;
}
.p99-reels-card:hover {
  transform: translateY(-4px);
}

/* --- Store card improved hover --- */
.p99-store-card {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 20px;
}
.p99-store-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 14px 40px rgba(0, 0, 0, 0.13);
}

/* --- Compact card image ratio consistent --- */
.p99-compact-card__img-wrap {
  border-radius: 12px;
  background: linear-gradient(160deg, #d4eedd 0%, #f0f9f3 100%);
}

/* --- Banner Section smooth image --- */
.p99-jsbanner__bgimg {
  transition: transform 0.4s ease;
}
.p99-jsbanner:hover .p99-jsbanner__bgimg {
  transform: scale(1.02);
}

/* --- Storefront product grid improved --- */
.storefront .product-grid-layout {
  gap: 1.375rem;
}
@media (max-width: 767px) {
  .storefront .product-grid-layout {
    gap: 0.875rem;
  }
  .storefront .product-section {
    padding: 2.5rem 0;
  }
}

/* --- Active tab in store locator --- */
.p99-store-tab.is-active {
  box-shadow: 0 4px 16px rgba(0, 135, 90, 0.28) !important;
}

/* --- Footer services strip on mobile --- */
@media (max-width: 575px) {
  .storefront .service-item {
    padding: 16px 16px;
    gap: 10px;
  }
  .storefront .service-item i {
    font-size: 1.25rem;
    width: 28px;
  }
}

/* =============================================================================
   Home page — iOS-inspired spacing, depth, and motion (home template only)
   ============================================================================= */
/* Home: pure white canvas; horizontal inset = vertical section gap (unified rhythm) */
html:has(body.storefront .storefront--ios-home),
body.storefront:has(.storefront--ios-home) {
  background-color: #ffffff;
}

.storefront.storefront--ios-home {
  --ios-bg-elevated: #ffffff;
  --ios-bg-grouped: #ffffff;
  --ios-separator: rgba(60, 60, 67, 0.12);
  --ios-radius-lg: clamp(18px, 3.5vw, 24px);
  --ios-radius-xl: clamp(22px, 4vw, 28px);
  --ios-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.04), 0 4px 16px rgba(0, 0, 0, 0.06);
  --ios-shadow-md: 0 2px 8px rgba(0, 0, 0, 0.06), 0 12px 40px rgba(0, 0, 0, 0.08);
  --ios-shadow-float: 0 8px 32px rgba(0, 0, 0, 0.1);
  /* Elevated panels on white — no hairline borders */
  --ios-shadow-surface: 0 2px 14px rgba(0, 0, 0, 0.07), 0 8px 32px rgba(0, 0, 0, 0.05);
  --ios-tap: cubic-bezier(0.25, 0.1, 0.25, 1);
  --ios-spring: cubic-bezier(0.34, 1.2, 0.64, 1);
  background: var(--ios-bg-grouped);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding-bottom: max(1.5rem, env(safe-area-inset-bottom, 0px));
}

.storefront.storefront--ios-home .section-container,
.storefront.storefront--ios-home .category-strip-page-width,
.storefront.storefront--ios-home .container {
  max-width: var(--ug-max-w, 1280px);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--store-pad-left);
  padding-right: var(--store-pad-right);
}

/* Full width between viewport pads like .hc-hero (beats rule above — higher specificity) */
.storefront.storefront--ios-home .p99-reels-section .section-container,
.storefront.storefront--ios-home .combo-hub-section .section-container,
.storefront.storefront--ios-home .combo-hub-section .container,
.storefront.storefront--ios-home .product-section--banner-top .section-container,
.storefront.storefront--ios-home .product-section--banner-top .container {
  max-width: none;
}

/* One spacing system: vertical gap between sections = horizontal inset from screen edges */
.storefront.storefront--ios-home {
  --ios-gutter: max(var(--ug-gutter, 20px), env(safe-area-inset-left, 0px));
  --ios-row-gap: clamp(12px, 2.4vw, 18px);
  --ios-section-gap: clamp(1.75rem, 4.6vw, 3.25rem);
  --store-pad-left: max(var(--ios-section-gap), env(safe-area-inset-left, 0px));
  --store-pad-right: max(var(--ios-section-gap), env(safe-area-inset-right, 0px));
}

/* Phone: tight edge inset — a few px plus safe-area on notched devices */
@media (max-width: 767px) {
  .storefront {
    --store-pad-left: max(10px, env(safe-area-inset-left, 0px));
    --store-pad-right: max(10px, env(safe-area-inset-right, 0px));
  }
  .storefront.storefront--ios-home {
    --store-pad-left: max(10px, env(safe-area-inset-left, 0px));
    --store-pad-right: max(10px, env(safe-area-inset-right, 0px));
  }
}

/* Kill shop-wide alternating striping on home — use grouped grey + white elevated rows only */
.storefront.storefront--ios-home > .product-section:nth-child(even) {
  background: transparent;
}

.storefront.storefront--ios-home > .product-section.combo-hub-section,
.storefront.storefront--ios-home > .product-section.blog-teaser-section {
  background: transparent;
}

.storefront.storefront--ios-home > .product-section--muted {
  background: var(--ios-bg-elevated);
  border: none;
  border-radius: var(--ios-radius-lg);
  box-shadow: var(--ios-shadow-surface);
}

.storefront.storefront--ios-home > .product-section--banner-top {
  background: var(--ios-bg-elevated);
  border: none;
  border-radius: 0;
  box-shadow: var(--ios-shadow-surface);
}

.storefront.storefront--ios-home .trust-card {
  border: none;
  box-shadow: var(--ios-shadow-surface);
}

.storefront.storefront--ios-home .trust-card:hover {
  box-shadow: var(--ios-shadow-float);
}

.storefront.storefront--ios-home .hc-hero__carousel-scroll {
  padding-left: var(--store-pad-left);
  padding-right: var(--store-pad-right);
}

.storefront.storefront--ios-home .hc-hero-carousel.owl-carousel .owl-nav {
  right: max(10px, var(--store-pad-right));
  max-width: calc(100% - var(--store-pad-left) - var(--store-pad-right));
}

/* Prevent random section edge-to-edge mismatches */
.storefront.storefront--ios-home .container > .row {
  --bs-gutter-x: clamp(12px, 2.6vw, 20px);
}

/* Consistent vertical rhythm between sibling blocks inside the home wrapper */
.storefront.storefront--ios-home > :where(section, .hero-wrap, .promo-marquee, .hc-hero) {
  scroll-margin-top: 96px;
}

.storefront.storefront--ios-home > :where(section, .hero-wrap, .hc-hero, .p99-jsbanner, .p99-rich-band, .p99-dual-promo, .p99-reels-section, .product-section, .p99-store-locator, .p99-newsletter, .p99-about, .p99-subscribe, .p99-rewards) {
  margin-bottom: var(--ios-section-gap);
}

.storefront.storefront--ios-home > :where(section, .hero-wrap, .hc-hero):last-child {
  margin-bottom: 0;
}

.storefront.storefront--ios-home .promo-marquee {
  padding-top: env(safe-area-inset-top, 0px);
  background: linear-gradient(90deg, rgba(0, 120, 90, 0.95), rgba(0, 150, 110, 0.98));
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.12) inset;
}

.storefront.storefront--ios-home .promo-marquee-track {
  padding: 11px 0 12px;
}

.storefront.storefront--ios-home .hero-wrap {
  background: transparent;
  padding-bottom: 0.35rem;
}

.storefront.storefront--ios-home .hero-section {
  padding-top: max(10px, env(safe-area-inset-top, 0px));
  padding-bottom: 0.25rem;
}

.storefront.storefront--ios-home .hero-carousel-item {
  border-radius: 0;
  box-shadow: var(--ios-shadow-md);
  transition: box-shadow 0.35s var(--ios-tap), transform 0.35s var(--ios-tap);
}

/* Banner: square corners */
.storefront.storefront--ios-home .hero-carousel-item__surface {
  border-radius: 0;
  overflow: hidden;
}

.storefront.storefront--ios-home .header-carousel.owl-carousel .owl-dots .owl-dot span {
  transition: width 0.25s var(--ios-spring), background 0.2s ease;
}

.storefront.storefront--ios-home .hero-full-img {
  border-radius: 0;
}

.storefront.storefront--ios-home .hero-fallback {
  border-radius: 0;
  box-shadow: var(--ios-shadow-md);
}

/* Vertical rhythm between major bands */
.storefront.storefront--ios-home .hc-hero {
  margin-bottom: var(--ios-section-gap);
}

.storefront.storefront--ios-home .category-strip-section {
  margin-top: 0;
  margin-bottom: var(--ios-section-gap);
  padding: clamp(1.25rem, 3vw, 1.75rem) 0 clamp(1.35rem, 3vw, 1.85rem);
  background: var(--ios-bg-elevated);
  border: none;
  border-radius: var(--ios-radius-lg);
  box-shadow: var(--ios-shadow-surface);
}

.storefront.storefront--ios-home .category-strip-scroll {
  gap: clamp(12px, 2.5vw, 16px);
  padding: 4px 4px 12px;
  scroll-padding-inline: max(4px, env(safe-area-inset-left, 0px));
}

.storefront.storefront--ios-home .category-strip-scroll:not([data-category-marquee]) {
  justify-content: center;
  justify-content: safe center;
}

.storefront.storefront--ios-home .category-strip-scroll[data-category-marquee] {
  padding-left: 0;
  padding-right: 0;
}

.storefront.storefront--ios-home .category-strip-scroll[data-category-marquee] .category-strip-scroll__marquee {
  padding: 4px 4px 12px;
  scroll-padding-inline: max(4px, env(safe-area-inset-left, 0px));
}

.storefront.storefront--ios-home .category-strip-scroll--marquee-active .category-strip-scroll__marquee {
  gap: clamp(12px, 2.5vw, 16px);
}

.storefront.storefront--ios-home .category-strip-scroll[data-category-marquee] .category-strip-scroll__segment {
  gap: clamp(12px, 2.5vw, 16px);
}

.storefront.storefront--ios-home .category-strip-item {
  border-radius: var(--ios-radius-lg);
  border: none;
  box-shadow: var(--ios-shadow-sm);
  transition: transform 0.3s var(--ios-spring), box-shadow 0.3s var(--ios-tap);
}

.storefront.storefront--ios-home .category-strip-item:hover {
  transform: translateY(-3px) scale(1.01);
  box-shadow: var(--ios-shadow-md);
}

.storefront.storefront--ios-home .category-strip-item:active {
  transform: scale(0.97);
  transition-duration: 0.12s;
}

.storefront.storefront--ios-home .p99-jsbanner {
  margin-bottom: var(--ios-section-gap);
}

.storefront.storefront--ios-home .deal-of-the-day__shell,
.storefront.storefront--ios-home .best-sellers__shell,
.storefront.storefront--ios-home .featured-pick-rail__shell {
  border-radius: 0;
  background: var(--ios-bg-elevated);
  border: none;
  box-shadow: var(--ios-shadow-surface);
}

.storefront.storefront--ios-home .deal-of-the-day__banner-link,
.storefront.storefront--ios-home .best-sellers__banner-link,
.storefront.storefront--ios-home .featured-pick-rail__banner-link {
  border-radius: 0;
  box-shadow: none;
}

.storefront.storefront--ios-home .deal-of-the-day__rail,
.storefront.storefront--ios-home .best-sellers__rail,
.storefront.storefront--ios-home .featured-pick-rail__rail {
  padding: 0.35rem 0.45rem 0.5rem;
}

.storefront.storefront--ios-home .featured-pick-rail--hub .featured-pick-rail__rail {
  padding: 0.3rem 0.18rem 0.45rem;
}

@media (min-width: 768px) {
  .storefront.storefront--ios-home .featured-pick-rail--hub .featured-pick-rail__rail {
    padding: 0.32rem 0.24rem 0.5rem;
  }
}

.storefront.storefront--ios-home .deal-of-the-day__timer {
  border: none;
  background: transparent;
  padding: 0.35rem 0.55rem 0.5rem;
}

.storefront.storefront--ios-home .p99-rent-focus {
  margin-top: 0;
  margin-bottom: var(--ios-section-gap);
}

.storefront.storefront--ios-home .p99-rent-focus__wrap {
  border-radius: 0;
  border: none;
  box-shadow: var(--ios-shadow-surface);
  background: var(--ios-bg-elevated);
}

.storefront.storefront--ios-home .deal-of-the-day .p99-compact-card,
.storefront.storefront--ios-home .best-sellers .p99-compact-card,
.storefront.storefront--ios-home .featured-pick-rail .p99-compact-card {
  border-radius: var(--ios-radius-lg);
  box-shadow: var(--ios-shadow-sm);
  transition: transform 0.3s var(--ios-spring), box-shadow 0.3s var(--ios-tap);
}

.storefront.storefront--ios-home .deal-of-the-day .p99-compact-card:hover,
.storefront.storefront--ios-home .best-sellers .p99-compact-card:hover,
.storefront.storefront--ios-home .featured-pick-rail .p99-compact-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--ios-shadow-md);
}

.storefront.storefront--ios-home .deal-of-the-day .p99-compact-card:active,
.storefront.storefront--ios-home .best-sellers .p99-compact-card:active,
.storefront.storefront--ios-home .featured-pick-rail .p99-compact-card:active {
  transform: scale(0.98);
}

.storefront.storefront--ios-home .p99-jsbanner__bg {
  border-radius: 0;
  overflow: hidden;
}

.storefront.storefront--ios-home .p99-jsbanner__row-head {
  margin-bottom: 1rem;
}

.storefront.storefront--ios-home .p99-compact-card {
  border-radius: var(--ios-radius-lg);
  box-shadow: var(--ios-shadow-sm);
  transition: transform 0.3s var(--ios-spring), box-shadow 0.3s var(--ios-tap);
}

.storefront.storefront--ios-home .p99-compact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ios-shadow-md);
}

.storefront.storefront--ios-home .p99-compact-card:active {
  transform: scale(0.98);
}

.storefront.storefront--ios-home .p99-rich-band {
  margin: var(--ios-section-gap) 0;
  padding-top: clamp(2.75rem, 7vw, 4.25rem);
  padding-bottom: clamp(2.75rem, 7vw, 4.25rem);
  padding-left: var(--store-pad-left);
  padding-right: var(--store-pad-right);
}

.storefront.storefront--ios-home .p99-rich-band__title {
  letter-spacing: -0.03em;
}

.storefront.storefront--ios-home .p99-rich-band__cta {
  transition: transform 0.25s var(--ios-spring), box-shadow 0.25s var(--ios-tap);
}

.storefront.storefront--ios-home .p99-rich-band__cta:active {
  transform: scale(0.96);
}

.storefront.storefront--ios-home .p99-reels-section {
  margin-bottom: var(--ios-section-gap);
  padding-top: clamp(2.25rem, 5vw, 3rem);
  padding-bottom: clamp(2.25rem, 5vw, 3rem);
  padding-left: 0;
  padding-right: 0;
  background: var(--ios-bg-elevated);
  border-radius: var(--ios-radius-lg);
  border: none;
  box-shadow: var(--ios-shadow-surface);
}

.storefront.storefront--ios-home .p99-reels-section--banner-top {
  border-radius: 0;
}

.storefront.storefront--ios-home .p99-reels-section.p99-rich-band--soft {
  background: var(--ios-bg-elevated);
}

.storefront.storefront--ios-home .p99-reels-scroll,
.storefront.storefront--ios-home .p99-reels-head {
  margin-bottom: 0.25rem;
}

.storefront.storefront--ios-home .p99-reels-scroll {
  justify-content: center;
  justify-content: safe center;
}

@media (min-width: 992px) {
  .storefront.storefront--ios-home .p99-reels-section--banner-top .p99-reels-scroll {
    --reels-row-gap: clamp(10px, 1.1vw, 14px);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--reels-row-gap);
    overflow-x: visible;
    scroll-snap-type: none;
    padding: 6px 2px 12px;
  }

  .storefront.storefront--ios-home .p99-reels-section--banner-top .p99-reels-card {
    flex: 1 1 calc((100% - 4 * var(--reels-row-gap)) / 5);
    max-width: calc((100% - 4 * var(--reels-row-gap)) / 5);
    width: auto !important;
    scroll-snap-align: unset;
  }
}

.storefront.storefront--ios-home .p99-reel-tile {
  border-radius: var(--ios-radius-lg);
  box-shadow: var(--ios-shadow-sm);
  transition: transform 0.3s var(--ios-spring), box-shadow 0.3s var(--ios-tap);
}

.storefront.storefront--ios-home .p99-reel-tile:hover {
  transform: translateY(-3px);
  box-shadow: var(--ios-shadow-md);
}

.storefront.storefront--ios-home .product-section {
  padding: clamp(2.75rem, 6vw, 4rem) 0;
}

.storefront.storefront--ios-home .product-section--muted {
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.storefront.storefront--ios-home .product-section-head {
  margin-bottom: clamp(1.25rem, 3vw, 1.75rem);
}

.storefront.storefront--ios-home .product-section-banner-link {
  margin-bottom: clamp(1rem, 2.5vw, 1.35rem);
}

.storefront.storefront--ios-home .product-grid-layout {
  --pg-gap: clamp(1rem, 2.5vw, 1.5rem);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: var(--pg-gap);
}

.storefront.storefront--ios-home .product-grid-layout > * {
  box-sizing: border-box;
  min-width: 0;
}

@media (max-width: 767px) {
  .storefront.storefront--ios-home .product-grid-layout > * {
    flex: 1 1 calc((100% - var(--pg-gap)) / 2);
    max-width: calc((100% - var(--pg-gap)) / 2);
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .storefront.storefront--ios-home .product-grid-layout > * {
    flex: 1 1 calc((100% - 2 * var(--pg-gap)) / 3);
    max-width: calc((100% - 2 * var(--pg-gap)) / 3);
  }
}

@media (min-width: 992px) {
  .storefront.storefront--ios-home .product-section--banner-top .product-grid-layout > * {
    flex: 1 1 calc((100% - 4 * var(--pg-gap)) / 5);
    max-width: calc((100% - 4 * var(--pg-gap)) / 5);
  }

  .storefront.storefront--ios-home .product-section:not(.product-section--banner-top) .product-grid-layout > * {
    flex: 1 1 calc((100% - 3 * var(--pg-gap)) / 4);
    max-width: calc((100% - 3 * var(--pg-gap)) / 4);
  }
}

.storefront.storefront--ios-home .storefront-product-card {
  border-radius: var(--ios-radius-lg);
  box-shadow: var(--ios-shadow-sm);
  transition: transform 0.32s var(--ios-spring), box-shadow 0.32s var(--ios-tap);
}

.storefront.storefront--ios-home .storefront-product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--ios-shadow-float);
}

.storefront.storefront--ios-home .storefront-product-card:active {
  transform: scale(0.985);
  transition-duration: 0.12s;
}

.storefront.storefront--ios-home .link-view-all {
  transition: transform 0.22s var(--ios-tap), box-shadow 0.22s ease, background 0.22s ease, color 0.22s ease;
}

.storefront.storefront--ios-home .link-view-all:active {
  transform: scale(0.96);
}

.storefront.storefront--ios-home .btn-store {
  transition: transform 0.25s var(--ios-spring), box-shadow 0.25s var(--ios-tap), background 0.2s ease;
}

.storefront.storefront--ios-home .btn-store:active {
  transform: scale(0.97);
}

/* Scroller rows (product rails) */
.storefront.storefront--ios-home .p99-reels-section .section-container,
.storefront.storefront--ios-home .p99-jsbanner .p99-jsbanner__overlay {
  padding-bottom: 0.25rem;
}

.storefront.storefront--ios-home .hc-hero__media {
  border-radius: 0;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    0 20px 56px rgba(0, 0, 0, 0.14);
}

.storefront.storefront--ios-home .hc-pcard {
  border-radius: var(--ios-radius-lg);
  box-shadow: var(--ios-shadow-md);
  transition: transform 0.3s var(--ios-spring), box-shadow 0.3s var(--ios-tap);
}

.storefront.storefront--ios-home .hc-pcard:active {
  transform: scale(0.98);
}

.storefront.storefront--ios-home .hc-hero-carousel.owl-carousel .owl-nav .owl-prev,
.storefront.storefront--ios-home .hc-hero-carousel.owl-carousel .owl-nav .owl-next {
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  background: rgba(255, 255, 255, 0.82) !important;
}

.storefront.storefront--ios-home .p99-dual-promo {
  margin: var(--ios-section-gap) 0;
}

.storefront.storefront--ios-home .p99-newsletter {
  margin: var(--ios-section-gap) 0;
  background: transparent;
}

.storefront.storefront--ios-home .p99-newsletter-card {
  border-radius: var(--ios-radius-lg);
  border: none;
  box-shadow: var(--ios-shadow-surface);
}

.storefront.storefront--ios-home .p99-about,
.storefront.storefront--ios-home .p99-subscribe,
.storefront.storefront--ios-home .p99-rewards,
.storefront.storefront--ios-home .p99-store-locator {
  margin-top: var(--ios-section-gap);
  margin-bottom: var(--ios-section-gap);
}

.storefront.storefront--ios-home .p99-subscribe-card,
.storefront.storefront--ios-home .p99-about-card {
  border-radius: var(--ios-radius-lg);
  box-shadow: var(--ios-shadow-sm);
  transition: box-shadow 0.3s var(--ios-tap), transform 0.3s var(--ios-spring);
}

.storefront.storefront--ios-home .p99-reward {
  border-radius: var(--ios-radius-lg);
  transition: transform 0.25s var(--ios-spring), box-shadow 0.25s var(--ios-tap);
}

.storefront.storefront--ios-home .combo-hub-section {
  padding: clamp(0.85rem, 2.8vw, 1.35rem) 0;
  box-shadow: none;
  border: none;
}

.storefront.storefront--ios-home .combo-hub-section__lower {
  border: none;
}

.storefront.storefront--ios-home .combo-hub-acc--why {
  border-radius: var(--ios-radius-lg);
  box-shadow: var(--ios-shadow-sm);
}

.storefront.storefront--ios-home .combo-hub-acc__cta {
  transition: transform 0.25s var(--ios-spring), box-shadow 0.25s var(--ios-tap);
}

.storefront.storefront--ios-home .combo-hub-acc__cta:active {
  transform: scale(0.97);
}

.storefront.storefront--ios-home .featured-pick-rail--hub .featured-pick-rail__shell {
  border-radius: var(--ios-radius-lg);
}

@media (max-width: 767px) {
  .storefront.storefront--ios-home .combo-hub-section__lower {
    border: none !important;
    box-shadow: var(--ios-shadow-surface) !important;
  }

  .storefront.storefront--ios-home .combo-hub-acc:not(:last-child) {
    border-bottom: none !important;
  }
}

.storefront.storefront--ios-home .blog-teaser-stack {
  border: none;
  box-shadow: var(--ios-shadow-surface);
}

.storefront.storefront--ios-home .blog-teaser-acc:not(:last-child) {
  border-bottom: none;
}

@media (min-width: 768px) {
  .storefront.storefront--ios-home .blog-teaser-acc {
    border: none;
    box-shadow: var(--ios-shadow-surface);
  }

  .storefront.storefront--ios-home .blog-teaser-acc:hover {
    border-color: transparent;
    box-shadow: var(--ios-shadow-float);
  }

  .storefront.storefront--ios-home .combo-hub-acc--why {
    border: none;
    box-shadow: var(--ios-shadow-surface);
  }

  .storefront.storefront--ios-home .combo-hub-acc--offer {
    border: none;
    box-shadow: var(--ios-shadow-surface);
  }
}

@media (max-width: 767px) {
  .storefront.storefront--ios-home .hc-hero__carousel {
    box-shadow: 0 -10px 36px rgba(0, 0, 0, 0.08);
  }
}

@media (prefers-reduced-motion: reduce) {
  .storefront.storefront--ios-home .promo-marquee-track {
    animation: none;
  }
}

/* —— Cart / checkout: fixed product thumb size (table rows) —— */
body.storefront .cart-product-img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
  display: block;
  background: var(--secondary-green, #f3f9f5);
}

body.storefront .order-line {
  display: flex;
  align-items: center;
  gap: 12px;
}
body.storefront .order-line > img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
  background: var(--secondary-green, #f3f9f5);
}
body.storefront .order-line .line-info {
  flex: 1;
  min-width: 0;
}

/* —— PDP modular layout —— */
.pdp-sticky-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1030;
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.08);
  transform: translateY(110%);
  transition: transform 0.28s ease;
  border-top: 1px solid #e8ece9;
  pointer-events: none;
}
.pdp-sticky-bar.is-visible {
  transform: translateY(0);
  pointer-events: auto;
}
.product-detail-store .pdp-mini-card,
.product-detail-store .pdp-card {
  background: var(--ug-surface-alt, #f8faf9);
}
.product-detail-store .pdp-section .star-full {
  color: #f5a623;
}
.product-detail-store .pdp-section .star-empty {
  color: #ddd;
}
.letter-spaced {
  letter-spacing: 0.04em;
}
.product-detail-store .pdp-breadcrumb .breadcrumb {
  background: transparent;
  padding: 0;
}
.product-detail-store .w-35 {
  width: 35%;
}

/* ============================================================
   Storefront content pages — headers, contact, legal/static
   ============================================================ */

.storefront .section-pad {
  padding: var(--spacing-lg) 0 var(--spacing-xl);
}

@media (max-width: 767px) {
  .storefront .section-pad {
    padding: var(--spacing-md) 0 var(--spacing-lg);
  }
}

/* Hero strip: wishlist, orders, contact, auth address flows */
.storefront .page-header {
  background: linear-gradient(135deg, var(--primary-green) 0%, #00875a 52%, #004d33 100%);
  color: #fff;
  padding: clamp(2.75rem, 8vw, 4.25rem) 0;
  margin-bottom: 0;
  text-align: center;
}

.storefront .page-header--media {
  background-color: var(--primary-green);
  background-image: linear-gradient(rgba(0, 106, 77, 0.78), rgba(0, 77, 58, 0.9));
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.storefront .page-header-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 5vw, 2.35rem);
  font-weight: 400;
  letter-spacing: 0.02em;
  color: #fff;
  margin: 0 0 0.75rem;
  line-height: 1.2;
}

.storefront .page-header .breadcrumb {
  background: transparent;
  padding: 0;
  margin: 0;
  justify-content: center;
}

.storefront .page-header .breadcrumb-item,
.storefront .page-header .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.875rem;
  font-weight: 500;
}

.storefront .page-header .breadcrumb-item a:hover {
  color: #fff;
  text-decoration: underline;
}

.storefront .page-header .breadcrumb-item.active {
  color: #fff;
  opacity: 0.95;
}

.storefront .page-header .breadcrumb-item + .breadcrumb-item::before {
  color: rgba(255, 255, 255, 0.55);
}

/* Section titles (contact sidebar, etc.) */
.storefront .section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--primary-green);
  margin-bottom: 0.5rem;
}

.storefront .section-title {
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 4vw, 2.1rem);
  font-weight: 400;
  color: var(--text-color);
  line-height: 1.2;
  margin: 0 0 0.75rem;
}

.storefront .section-divider {
  width: 44px;
  height: 3px;
  background: linear-gradient(90deg, var(--cta-green), var(--accent-green));
  border-radius: 2px;
  margin-bottom: 1rem;
}

/* Contact page */
.storefront .contact-section {
  background: var(--page-bg);
}

.storefront .contact-info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.35rem;
}

.storefront .contact-info-item .icon-wrap {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  background: var(--secondary-green);
  color: var(--primary-green);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  box-shadow: var(--shadow-soft);
}

.storefront .contact-info-item .info h6 {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-color);
  margin: 0 0 0.25rem;
}

.storefront .contact-info-item .info p,
.storefront .contact-info-item .info a {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: var(--text-muted);
}

.storefront .contact-info-item .info a:hover {
  color: var(--primary-green);
}

.storefront .contact-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-medium);
  border: 1px solid var(--border-subtle);
  padding: clamp(1.5rem, 4vw, 2.25rem);
}

.storefront .contact-card > h2 {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 3vw, 1.65rem);
  font-weight: 400;
  color: var(--text-color);
  margin: 0 0 0.35rem;
}

.storefront .contact-card > p {
  color: var(--text-muted);
  font-size: 0.9375rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.storefront .contact-lead {
  color: var(--text-muted);
  font-size: 0.9375rem;
  line-height: 1.7;
  margin-top: 0.75rem;
}

.storefront .contact-link-muted {
  color: var(--text-muted);
  text-decoration: none;
}

.storefront .contact-link-muted:hover {
  color: var(--primary-green);
  text-decoration: underline;
}

.storefront .form-label-bw {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-color);
  margin-bottom: 0.35rem;
}

.storefront .form-control-bw {
  display: block;
  width: 100%;
  padding: 0.65rem 0.85rem;
  font-size: 0.9375rem;
  line-height: 1.5;
  color: var(--text-color);
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  transition: border-color var(--ease-out), box-shadow var(--ease-out);
}

.storefront .form-control-bw:focus {
  outline: none;
  border-color: var(--primary-green);
  box-shadow: 0 0 0 3px rgba(0, 106, 77, 0.15);
}

.storefront .contact-card .btn-contact-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  padding: 0.75rem 1.25rem;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: #fff;
  background: linear-gradient(135deg, #00875a 0%, var(--cta-green) 100%);
  border: none;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: filter var(--ease-out), box-shadow var(--ease-out);
  box-shadow: 0 4px 16px rgba(0, 176, 103, 0.28);
}

.storefront .contact-card .btn-contact-submit:hover {
  filter: brightness(1.06);
  color: #fff;
}

/* Legal / static (privacy, terms, about shell) */
.storefront .static-page {
  padding: var(--spacing-lg) 0 var(--spacing-xl);
  background: var(--page-bg);
}

.storefront .static-page .static-content {
  max-width: 820px;
  margin: 0 auto;
  background: var(--surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-soft);
  padding: clamp(1.75rem, 4vw, 2.75rem) clamp(1.25rem, 4vw, 2.5rem);
}

.storefront .static-page .static-content > h1 {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 400;
  color: var(--text-color);
  margin: 0 0 1rem;
  line-height: 1.2;
}

.storefront .static-page .static-content h2 {
  font-size: clamp(1.15rem, 2.5vw, 1.35rem);
  font-weight: 700;
  color: var(--text-color);
  margin: 2rem 0 0.75rem;
}

.storefront .static-page .static-content h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-muted);
  margin: 1.25rem 0 0.5rem;
}

.storefront .static-page .static-content p,
.storefront .static-page .static-content li {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--text-muted);
}

.storefront .static-page .static-content ul {
  padding-left: 1.25rem;
  margin: 0.5rem 0 1rem;
}

.storefront .static-page .static-content a {
  color: var(--primary-green);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.storefront .static-page .static-content a:hover {
  color: var(--primary-green-dark);
}

/* About uses .static-page without inner card — optional full-bleed */
.storefront section.static-page > .container > .static-content[style*='max-width'] {
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0 var(--spacing-md);
}

@media (max-width: 575px) {
  .storefront .contact-card {
    padding: 1.25rem;
  }
}

/* Account / auth pages: align legacy --color-* tokens with storefront green */
.storefront .account-page,
.storefront .addresses-page,
.storefront .auth-page,
.storefront .profile-page,
.storefront .address-form-page {
  --color-primary: var(--primary-green);
  --color-primary-dark: var(--primary-green-dark);
}

/* =========================
   Rent focus section (home)
   ========================= */
.p99-rent-focus {
  margin: clamp(1.25rem, 3vw, 2rem) 0;
}

/* Match home category heroes: full width between viewport gutters only (no 1280px cap). */
.storefront .p99-rent-focus .section-container {
  max-width: none;
}

.p99-rent-focus__wrap {
  border-radius: 0;
  border: 1px solid var(--border-subtle);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
  padding: clamp(1.1rem, 3vw, 1.6rem);
  overflow: hidden;
}

.p99-rent-focus__banner-link {
  display: block;
  width: 100%;
  margin: 0 0 0.85rem;
  padding: 0;
  line-height: 0;
  font-size: 0;
}

.p99-rent-focus__banner-img {
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
  display: block;
  vertical-align: bottom;
}

.p99-rent-focus__banner-link:focus-visible {
  outline: 2px solid var(--ug-primary-mid, var(--primary-green));
  outline-offset: 2px;
}

.p99-rent-focus__rail {
  display: flex;
  align-items: stretch;
  grid-auto-flow: column;
  grid-auto-columns: minmax(220px, 1fr);
  gap: 12px;
  overflow-x: auto;
  padding: 10px 4px 2px;
  margin-top: 0;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.storefront.storefront--ios-home .p99-rent-focus__rail {
  justify-content: center;
  justify-content: safe center;
}
.p99-rent-focus__rail::-webkit-scrollbar { height: 6px; }
.p99-rent-focus__rail::-webkit-scrollbar-thumb {
  background: rgba(0,0,0,0.12);
  border-radius: 999px;
}
.p99-rent-focus__card {
  scroll-snap-align: start;
  flex-shrink: 0;
  width: 260px;
  display: flex;
  flex-direction: column;
  min-height: 0;
  background: rgba(255,255,255,0.92);
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}
.p99-rent-focus__media {
  position: relative;
  display: block;
  flex-shrink: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: rgba(0,0,0,0.03);
}
.p99-rent-focus__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
  display: block;
}
.p99-rent-focus__card:hover .p99-rent-focus__media img {
  transform: scale(1.04);
}
.p99-rent-focus__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: .35rem .55rem;
  border-radius: 999px;
  background: rgba(16, 185, 129, 0.92);
  color: #fff;
  font-weight: 800;
  font-size: .72rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  box-shadow: 0 10px 22px rgba(16, 185, 129, 0.25);
}
.p99-rent-focus__body {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  align-items: stretch;
  padding: 12px 12px 14px;
  flex: 1 1 auto;
  min-height: 0;
  justify-content: flex-start;
}
.p99-rent-focus__name {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
  overflow-wrap: break-word;
  text-decoration: none;
  font-weight: 800;
  color: var(--text-color);
  line-height: 1.35;
  font-size: .95rem;
  margin: 0;
  min-height: calc(2 * 1.35em);
  max-height: calc(2 * 1.35em);
}
.p99-rent-focus__price {
  margin: 0;
  flex-shrink: 0;
  font-weight: 900;
  color: var(--text-color);
  font-size: 0.9375rem;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.p99-rent-focus__per {
  font-weight: 700;
  color: var(--text-muted);
  margin-left: 2px;
}
.p99-rent-focus__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  box-sizing: border-box;
  flex-shrink: 0;
  margin-top: 0.1rem;
  padding: 0.5rem 8px;
  min-height: 40px;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.08);
  background: #0f172a;
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  font-size: .78rem;
  line-height: 1.25;
  text-align: center;
  transition: transform .18s ease, background .18s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.p99-rent-focus__btn:hover {
  transform: translateY(-1px);
  background: #111c33;
}

@media (min-width: 992px) {
  .p99-rent-focus__rail {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: clamp(10px, 1.1vw, 14px);
    overflow-x: visible;
    scroll-snap-type: none;
    padding: 10px 2px 8px;
  }

  .p99-rent-focus__card {
    width: 100%;
    max-width: none;
    scroll-snap-align: unset;
  }

  .p99-rent-focus__banner-link {
    width: 100%;
    max-width: min(520px, 46vw);
    margin-left: auto;
    margin-right: auto;
  }

  .storefront.storefront--ios-home .p99-rent-focus__rail {
    --rent-rail-gap: clamp(10px, 1.1vw, 14px);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: var(--rent-rail-gap);
  }

  .storefront.storefront--ios-home .p99-rent-focus__card {
    flex: 1 1 calc((100% - 4 * var(--rent-rail-gap)) / 5);
    max-width: calc((100% - 4 * var(--rent-rail-gap)) / 5);
    width: auto;
  }
}

@media (min-width: 1200px) {
  .p99-rent-focus__banner-link {
    max-width: min(560px, 42vw);
  }
}

@media (max-width: 575px) {
  .p99-rent-focus__card { width: 220px; }
  .p99-rent-focus__rail { grid-auto-columns: minmax(220px, 1fr); }
}

/* ── Card shell ── */
.hc-pcard {
  background: #f7f3ec !important;
  border-radius: 20px !important;
  padding: 0 !important;
  box-shadow:
    0 2px 8px rgba(0,0,0,0.07),
    0 14px 36px rgba(0,0,0,0.13) !important;
  display: flex !important;
  flex-direction: column !important;
  min-height: 260px !important;
  height: 100%;
  overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease !important;
  text-decoration: none !important;
  color: inherit !important;
}
.hc-pcard:hover {
  transform: translateY(-4px) !important;
  box-shadow:
    0 6px 20px rgba(0,0,0,0.11),
    0 24px 56px rgba(0,0,0,0.17) !important;
  color: inherit !important;
}
 
/* ── Image wrap — square, flush top ── */
.hc-pcard__img-wrap {
  display: block !important;
  border-radius: 0 !important;
  overflow: hidden !important;
  aspect-ratio: 1 / 1 !important;
  background: #eeeae0 !important;
  margin-bottom: 0 !important;
  position: relative !important;
  width: 100% !important;
  flex-shrink: 0;
}
.hc-pcard__img-wrap img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  transition: transform 0.4s ease !important;
}
.hc-pcard:hover .hc-pcard__img-wrap img {
  transform: scale(1.05) !important;
}
 
/* ── Badge — top-left corner of the image, small, unobtrusive ── */
.hc-pcard__badge {
  position: absolute !important;
  top: 10px !important;
  left: 10px !important;
  right: auto !important;
  transform: none !important;
  align-self: unset !important;
  margin: 0 !important;
  z-index: 4;
 
  /* pill style — white with green text, compact */
  background: rgba(255, 255, 255, 0.90) !important;
  backdrop-filter: blur(6px) !important;
  -webkit-backdrop-filter: blur(6px) !important;
  color: #1a5c38 !important;
  font-size: 0.65rem !important;
  font-weight: 800 !important;
  letter-spacing: 0.04em !important;
  text-transform: uppercase !important;
  padding: 5px 10px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(30, 120, 70, 0.15) !important;
  box-shadow: 0 1px 6px rgba(0,0,0,0.10) !important;
  white-space: nowrap;
  max-width: calc(100% - 20px);
  overflow: hidden;
  text-overflow: ellipsis;
}
 
/* ── Body ── */
.hc-pcard__title {
  font-size: 0.95rem !important;
  font-weight: 800 !important;
  color: #1a2c1e !important;
  line-height: 1.3 !important;
  margin: 12px 12px 3px !important;
  min-height: unset !important;
  -webkit-line-clamp: 2 !important;
  display: -webkit-box !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}
 
.hc-pcard__rating-slot {
  min-height: unset !important;
  margin: 0 12px 2px !important;
}
 
.hc-pcard__meta {
  font-size: 0.78rem !important;
  color: #7a8c80 !important;
  font-weight: 500 !important;
  margin: 0 12px 12px !important;
  min-height: unset !important;
}
 
/* ── CTA — full-width green pill ── */
.hc-pcard__cta {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: calc(100% - 24px) !important;
  margin: auto 12px 12px !important;
  padding: 11px 14px !important;
  border-radius: 999px !important;
  background: #1db864 !important;
  color: #ffffff !important;
  font-size: 0.85rem !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em !important;
  text-align: center !important;
  text-decoration: none !important;
  border: none !important;
  transition: background 0.22s ease, transform 0.18s ease, box-shadow 0.22s ease !important;
  box-shadow: 0 4px 14px rgba(29, 184, 100, 0.36) !important;
}
.hc-pcard:hover .hc-pcard__cta {
  background: #18a456 !important;
}
 
/* ── Owl nav arrows — prev/next text style like reference ── */
.hc-hero-carousel.owl-carousel .owl-nav {
  display: flex !important;
  pointer-events: none;
  position: absolute !important;
  top: 38% !important;
  left: 0 !important;
  right: 0 !important;
  transform: translateY(-50%) !important;
  justify-content: space-between !important;
  gap: 0 !important;
  padding: 0 4px !important;
  width: 100% !important;
  max-width: 100% !important;
}
 
.hc-hero-carousel.owl-carousel .owl-nav .owl-prev,
.hc-hero-carousel.owl-carousel .owl-nav .owl-next {
  pointer-events: auto;
  width: 38px !important;
  height: 38px !important;
  border-radius: 50% !important;
  background: rgba(255, 255, 255, 0.92) !important;
  color: #1a3d2e !important;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18) !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
  font-size: 0 !important;        
  line-height: 1 !important;
}
.hc-hero-carousel.owl-carousel .owl-nav .owl-prev:hover,
.hc-hero-carousel.owl-carousel .owl-nav .owl-next:hover {
  background: #ffffff !important;
  box-shadow: 0 4px 18px rgba(0,0,0,0.20) !important;
}
 
/* Hide whatever Owl puts inside (span with «/») */
.hc-hero-carousel.owl-carousel .owl-nav .owl-prev span,
.hc-hero-carousel.owl-carousel .owl-nav .owl-next span {
  display: none !important;
}
 
/* Draw SVG chevrons via CSS — no icon font needed */
.hc-hero-carousel.owl-carousel .owl-nav .owl-prev::after,
.hc-hero-carousel.owl-carousel .owl-nav .owl-next::after {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2.5px solid #1a3d2e;
  border-right: 2.5px solid #1a3d2e;
  border-radius: 1px;
}
 
.hc-hero-carousel.owl-carousel .owl-nav .owl-prev::after {
  transform: rotate(-135deg) translate(-1px, 1px); /* ← left chevron */
}
 
.hc-hero-carousel.owl-carousel .owl-nav .owl-next::after {
  transform: rotate(45deg) translate(-1px, 1px);   /* → right chevron */
}
 
/* ── Mobile ── */
@media (max-width: 767px) {
  .hc-pcard {
    min-height: 220px !important;
    border-radius: 16px !important;
  }
  .hc-pcard__badge {
    font-size: 0.58rem !important;
    padding: 4px 8px !important;
  }
  .hc-pcard__title {
    font-size: 0.85rem !important;
    margin: 10px 10px 3px !important;
  }
  .hc-pcard__meta {
    font-size: 0.72rem !important;
    margin: 0 10px 10px !important;
  }
  .hc-pcard__cta {
    width: calc(100% - 20px) !important;
    margin: auto 10px 10px !important;
    padding: 10px 12px !important;
    font-size: 0.78rem !important;
  }
}
 
@media (prefers-reduced-motion: reduce) {
  .hc-pcard:hover { transform: none !important; }
  .hc-pcard:hover .hc-pcard__img-wrap img { transform: none !important; }
}



.p99-jsbanner--premium {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  margin-bottom: var(--ios-section-gap, 2.5rem);
}

/* --- Background panel: taller, cinematic --- */
.p99-jsbanner--premium .p99-jsbanner__bg {
  position: relative;
  min-height: clamp(320px, 58vh, 580px);
  max-height: none;
  overflow: hidden;
}

.p99-jsbanner--premium .p99-jsbanner__bgimg {
  width: 100%;
  height: 100%;
  min-height: clamp(320px, 58vh, 580px);
  object-fit: cover;
  object-position: center 30%;
  display: block;
  transition: transform 0.5s ease;
}
.p99-jsbanner--premium:hover .p99-jsbanner__bgimg {
  transform: scale(1.02);
}

@media (max-width: 767px) {
  .p99-jsbanner--premium .p99-jsbanner__bg {
    min-height: 0;
    height: auto;
  }
  .p99-jsbanner--premium .p99-jsbanner__bglink {
    min-height: 0;
    height: auto;
  }
  .p99-jsbanner--premium .p99-jsbanner__bgimg {
    height: auto;
    min-height: 0 !important;
    max-height: min(75vh, 520px);
    object-fit: contain;
    object-position: center top;
  }
  .p99-jsbanner--premium:hover .p99-jsbanner__bgimg {
    transform: none;
  }
  .p99-jsbanner--premium .p99-jsbanner__bg--gradient {
    min-height: clamp(200px, 42vh, 320px);
  }
}

/* Gradient bg when no image */
.p99-jsbanner--premium .p99-jsbanner__bg--gradient {
  min-height: clamp(320px, 58vh, 580px);
  background: linear-gradient(135deg, #1b5e40 0%, var(--ug-primary-mid, #00875a) 45%, #00b067 100%);
}
.p99-jsbanner--muted.p99-jsbanner--premium .p99-jsbanner__bg--gradient {
  background: linear-gradient(135deg, #0d3d2a 0%, #006a4d 50%, #1b7a52 100%);
}
.p99-jsbanner--deal.p99-jsbanner--premium .p99-jsbanner__bg--gradient {
  background: linear-gradient(135deg, #7c2d12 0%, #c2410c 45%, var(--ug-accent, #f4a261) 100%);
}

/* Dark gradient scrim so headline text is always readable */
.p99-jsbanner--premium .p99-jsbanner__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(8, 30, 22, 0.18) 0%,
    rgba(8, 30, 22, 0.42) 55%,
    rgba(8, 30, 22, 0.72) 100%
  );
  pointer-events: none;
  z-index: 1;
}

/* --- Hero copy — inside the bg panel, bottom-left --- */
.p99-jsbanner--premium .p99-jsbanner__hero-copy {
  position: absolute;
  left: clamp(1rem, 4vw, 2.75rem);
  bottom: clamp(6rem, 16vw, 10rem); /* leave room for the lifted card rail */
  z-index: 2;
  max-width: 460px;
  pointer-events: none;
}

.p99-jsbanner--premium .p99-jsbanner__hero-kicker {
  margin: 0 0 0.4rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.78);
}

.p99-jsbanner--premium .p99-jsbanner__hero-title {
  margin: 0 0 0.55rem;
  font-family: var(--font-display, 'DM Serif Display', Georgia, serif);
  font-style: italic;
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 400;
  line-height: 1.08;
  color: #f2e041; /* yellow like the reference */
  text-shadow: 0 3px 28px rgba(0, 0, 0, 0.4);
}

.p99-jsbanner--premium .p99-jsbanner__hero-sub {
  margin: 0;
  font-size: clamp(0.9rem, 1.8vw, 1.05rem);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
}

/* --- Overlay: lifted card rail --- */
.p99-jsbanner--premium .p99-jsbanner__overlay {
  position: relative;
  z-index: 3;
  max-width: var(--ug-max-w, 1280px);
  margin: -110px auto 0;   /* key lift — cards overlap the bg */
  padding: 0 clamp(1rem, 3vw, 2rem) 2.5rem;
}

@media (max-width: 767px) {
  .p99-jsbanner--premium .p99-jsbanner__overlay {
    margin-top: -80px;
    padding: 0 1rem 2rem;
  }
}

/* --- Rail head: view-all + arrows in one row --- */
.p99-jsbanner--premium .p99-jsbanner__rail-head {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  margin-bottom: 0.875rem;
}

/* --- Arrow buttons --- */
.p99-jsbanner__arrows {
  display: flex;
  gap: 8px;
  align-items: center;
}

.p99-jsbanner__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: #fff;
  color: var(--ug-primary-mid, #00875a);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.14);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  flex-shrink: 0;
}
.p99-jsbanner__arrow:hover {
  background: var(--ug-primary-soft, #e8f5e9);
  transform: scale(1.08);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.18);
}
.p99-jsbanner__arrow:active {
  transform: scale(0.95);
}
.p99-jsbanner__arrow svg {
  width: 12px;
  height: 12px;
}
.p99-jsbanner__arrow--prev:disabled,
.p99-jsbanner__arrow--next:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  transform: none;
}

/* For the deal (dark) variant — white arrows with dark icons */
.p99-jsbanner--deal .p99-jsbanner__arrow {
  background: rgba(255, 255, 255, 0.92);
  color: #7c2d12;
}

/* --- Manual scroll rail (replaces Owl) --- */
.p99-jsbanner--premium .p99-jsbanner__scroll-rail {
  display: flex;
  gap: clamp(10px, 1.8vw, 14px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 6px 4px 16px;
  scroll-behavior: smooth;
}
.p99-jsbanner--premium .p99-jsbanner__scroll-rail::-webkit-scrollbar {
  display: none;
}

.p99-jsbanner--premium .p99-jsbanner-slide {
  flex: 0 0 auto;
  width: clamp(180px, 22vw, 240px);
  scroll-snap-align: start;
  display: flex;
}

@media (max-width: 767px) {
  .p99-jsbanner--premium .p99-jsbanner-slide {
    width: clamp(160px, 44vw, 220px);
  }
}

@media (max-width: 400px) {
  .p99-jsbanner--premium .p99-jsbanner-slide {
    width: 72vw;
  }
}

/* Compact cards inside the premium rail — elevated look */
.p99-jsbanner--premium .p99-compact-card {
  border-radius: 18px;
  box-shadow:
    0 2px 8px rgba(0, 0, 0, 0.06),
    0 12px 32px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.8);
  background: #fff;
  transition: transform 0.28s cubic-bezier(0.34, 1.2, 0.64, 1),
              box-shadow 0.28s ease;
}
.p99-jsbanner--premium .p99-compact-card:hover {
  transform: translateY(-5px);
  box-shadow:
    0 6px 20px rgba(0, 0, 0, 0.1),
    0 22px 48px rgba(0, 0, 0, 0.14);
}

/* View-all pill in the rail head (re-style for dark bg context) */
.p99-jsbanner--premium .p99-jsbanner__rail-head .link-view-all {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.p99-jsbanner--premium .p99-jsbanner__rail-head .link-view-all:hover {
  background: rgba(255, 255, 255, 0.92);
  color: var(--ug-primary-mid, #00875a);
  border-color: transparent;
}

/* Deal variant: orange/warm tones */
.p99-jsbanner--deal.p99-jsbanner--premium .p99-jsbanner__hero-title {
  color: #fff5e0;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  .p99-jsbanner--premium .p99-jsbanner__scroll-rail {
    scroll-behavior: auto;
  }
  .p99-jsbanner--premium:hover .p99-jsbanner__bgimg {
    transform: none;
  }
}

.order-summary-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(0,0,0,0.07);
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  padding: 1.5rem;
}

.order-summary-card h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-black, #1a1a1a);
  margin: 0 0 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0,0,0,0.07);
  letter-spacing: 0.01em;
}

.order-line {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.05);
}

.order-line img {
  width: 52px;
  height: 52px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
  background: #f5f5f5;
}

.order-line .line-info {
  flex: 1;
  min-width: 0;
}

.order-line .line-info h6 {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--clr-black, #1a1a1a);
  margin: 0 0 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.order-line .line-info small {
  font-size: 0.75rem;
  color: #888;
}

.order-line .line-price {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--clr-black, #1a1a1a);
  white-space: nowrap;
  flex-shrink: 0;
}

.order-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 0.875rem;
  color: #555;
  border-bottom: 1px solid rgba(0,0,0,0.04);
}

.order-total-row:first-of-type {
  margin-top: 0.75rem;
}

.order-grand-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0 0;
  margin-top: 4px;
  border-top: 2px solid rgba(0,0,0,0.09);
}

.order-grand-total .label {
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-black, #1a1a1a);
}

.order-grand-total .amount {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--clr-black, #1a1a1a);
}

.order-trust-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(0,0,0,0.07);
}

.order-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: #666;
}

.order-trust-item i {
  color: #1a1a1a;
  font-size: 0.875rem;
  width: 16px;
}

/* view all button - alignment */
.deal-of-the-day__shell,
.best-sellers__shell,
.featured-pick-rail__shell {
  position: relative;
}

.deal-of-the-day__shell .storefront-section-actions,
.best-sellers__shell .storefront-section-actions,
.featured-pick-rail__shell .storefront-section-actions {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
}

@media (max-width: 767px) {
  .deal-of-the-day__shell .storefront-section-actions,
  .best-sellers__shell .storefront-section-actions,
  .featured-pick-rail__shell .storefront-section-actions {
    position: static;
    display: flex;
    justify-content: center;
    margin-top: 1rem;
  }
}

/* Add to cart button - alignment */

.storefront .tpc-actions-bleed .tpc-add-btn,
.storefront form.tpc-actions-bleed .tpc-add-btn {
  border-radius: 0 0 16px 16px !important;
  width: 100% !important;
  display: block !important;
}

.storefront .tpc-body {
  padding-bottom: 0 !important;
}

.storefront .tpc-actions-bleed {
  margin-left: -1rem !important;
  margin-right: -1rem !important;
  margin-bottom: 0 !important;
  width: calc(100% + 2rem) !important;
}

