/** Shopify CDN: Minification failed

Line 1311:9 Expected identifier but found whitespace
Line 1311:10 Unexpected "18px"

**/
/* =============================================
   HOUSEROOTED — Pet Beds Theme
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=DM+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --color-bg: #FAFAF8;
  --color-white: #FFFFFF;
  --color-dark: #1A1A1A;
  --color-dark-secondary: #2C2C2C;
  --color-primary: #3D6B4F;
  --color-primary-light: #E8F2EC;
  --color-accent: #D4A853;
  --color-accent-light: #FFF8E7;
  --color-warm: #F5EDE0;
  --color-warm-dark: #E8D5B7;
  --color-sale: #E8644A;
  --color-text: #2C2C2C;
  --color-text-muted: #777777;
  --color-border: #E8E8E2;
  --color-card-bg: #F4F4F0;
  --color-footer-bg: #1C3A2A;
  --color-marquee: #D4F54A;

  /* Button Colors - Customizable from Theme Editor */
  --button-bg-default: #1A1A1A;
  --button-text-default: #FFFFFF;
  --button-bg-hover: #FFFFFF;
  --button-text-hover: #1A1A1A;

  --font-display: 'Playfair Display', serif;
  --font-body: 'DM Sans', sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-pill: 100px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);

  --container-max: 1280px;
  --container-padding: 24px;

  --transition: 0.25s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { 
  scroll-behavior: smooth;
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--color-bg);
  color: var(--color-text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
  position: relative;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
  overflow-x: hidden;
  width: 100%;
}

/* =============================================
   SECTION CONTAINER VERTICAL PADDING
   All content section containers get 40px top/bottom.
   Header, footer, breadcrumb are excluded.
   ============================================= */
.section > .container,
.features-section > .container,
.testimonials-section > .container,
.why-section > .container,
.bundle-section > .container,
.dual-banners > .container,
.benefits-section > .container,
.countdown-products > .container,
.stats-section > .container,
.trust-bar > .container,
.marquee-section > .container,
.promo-strip > .container,
.related-products-section > .container {
  padding-top: 40px;
  padding-bottom: 40px;
}

/* Shopify Policies & Default Pages */
.shopify-policy__container,
.page-width {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 40px var(--container-padding);
  box-sizing: border-box;
}

.shopify-policy__title {
  font-family: var(--font-display);
  font-weight: 800;
  margin-bottom: 24px;
}

/* =============================================
   ANNOUNCEMENT BAR
   ============================================= */
.announcement-bar {
  background: var(--color-primary);
  color: var(--color-white);
  text-align: center;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.announcement-bar a { color: var(--color-white); font-weight: 700; }

/* =============================================
   HEADER
   ============================================= */
.site-header {
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 72px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--container-padding);
}
.header-logo {
  flex-shrink: 0;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--color-dark);
  letter-spacing: -0.02em;
}
.header-logo span { color: var(--color-primary); }
.header-logo small {
  display: block;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-top: -4px;
}
.header-nav {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}
.nav-item {
  position: relative;
}
.nav-link {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
  border-radius: var(--radius-pill);
  transition: var(--transition);
  white-space: nowrap;
}
.nav-link:hover, .nav-item.active > .nav-link {
  background: var(--color-dark);
  color: var(--color-white);
}
.nav-link svg { width: 14px; height: 14px; transition: transform var(--transition); }
.nav-item:hover .nav-link svg { transform: rotate(180deg); }

/* Mega Menu */
.mega-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--color-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 28px;
  display: none;
  min-width: 680px;
  border: 1px solid var(--color-border);
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  display: flex;
  pointer-events: none;
  transition: opacity var(--transition), visibility var(--transition);
}
.nav-item:hover .mega-menu { opacity: 1; visibility: visible; pointer-events: auto; gap: 32px; }
.mega-menu-col { min-width: 160px; }
.mega-menu-col h4 {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--color-text-muted);
  margin-bottom: 12px;
}
.mega-menu-col ul { display: flex; flex-direction: column; gap: 6px; }
.mega-menu-col ul li a {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-text);
  transition: var(--transition);
  display: block;
  padding: 3px 0;
}
.mega-menu-col ul li a:hover { color: var(--color-primary); padding-left: 4px; }
.mega-menu-col.mega-menu-categories ul li a {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-dark);
}
.mega-menu-images {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  min-width: 340px;
}
.mega-product-card {
  background: var(--color-card-bg);
  border-radius: var(--radius-md);
  overflow: hidden;
  text-align: center;
  padding: 12px 8px 8px;
}
.mega-product-card img { width: 80px; height: 80px; object-fit: contain; margin: 0 auto 8px; }
.mega-product-card .name { font-size: 12px; font-weight: 600; }
.mega-product-card .price { font-size: 12px; color: var(--color-text-muted); }
.mega-product-card .sale-price { color: var(--color-sale); }

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}
.header-search {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--color-card-bg);
  border-radius: var(--radius-pill);
  padding: 8px 16px;
  font-size: 14px;
  color: var(--color-text-muted);
  min-width: 180px;
}
.header-search input {
  border: none;
  background: none;
  font-size: 14px;
  color: var(--color-text);
  width: 100%;
  outline: none;
  font-family: var(--font-body);
}
.header-icon-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-pill);
  color: var(--color-dark);
  transition: var(--transition);
  position: relative;
}
.header-icon-btn:hover { background: var(--color-card-bg); }
.cart-count {
  position: absolute;
  top: 4px; right: 4px;
  width: 16px; height: 16px;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: 10px;
  font-weight: 700;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

/* =============================================
   HERO BANNER
   ============================================= */
.hero-banner {
  background: #E8EEFF;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 60px var(--container-padding);
  width: 100%;
}
.hero-content { position: relative; z-index: 2; }
.hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 800;
  line-height: 1.1;
  color: var(--color-dark);
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}
.hero-content p {
  font-size: 17px;
  color: var(--color-text-muted);
  max-width: 420px;
  margin-bottom: 32px;
  line-height: 1.7;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--button-bg-default);
  color: var(--button-text-default);
  padding: 14px 28px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 600;
  transition: color 0.4s ease;
  position: relative;
  overflow: hidden;
  border: 1.5px solid var(--button-bg-default);
  z-index: 1;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
  background: var(--button-bg-hover);
  transition: width 0.4s ease;
  z-index: -1;
}

.btn-primary:hover {
  color: var(--button-text-hover);
  border-color: var(--button-text-hover);
}

.btn-primary:hover::before {
  width: 100%;
  left: 0;
  right: auto;
}
.hero-image {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.hero-blob {
  width: 480px;
  height: 480px;
  background: rgba(255,255,255,0.7);
  border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-blob img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* =============================================
   PRODUCT SLIDER SECTION
   ============================================= */
.section { 
  padding: 0;
  overflow-x: hidden;
  max-width: 100%;
}
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
  max-width: 100%;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  color: var(--color-dark);
  letter-spacing: -0.02em;
  max-width: 100%;
  word-wrap: break-word;
}
.filter-tabs {
  display: flex;
  gap: 8px;
}
.filter-tab {
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  background: var(--color-card-bg);
  color: var(--color-text-muted);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease, color 0.4s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.filter-tab::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
  background: var(--button-bg-default);
  transition: width 0.4s ease;
  z-index: -1;
}

.filter-tab.active, .filter-tab:hover {
  color: var(--button-text-default);
  border-color: transparent;
}

.filter-tab.active::before, .filter-tab:hover::before {
  width: 100%;
  left: 0;
  right: auto;
}
.slider-wrapper { position: relative; overflow: hidden; }
.slider-track {
  display: flex;
  gap: 20px;
  transition: transform 0.5s ease;
}
.slider-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 28px;
}
.slider-dots { display: flex; gap: 6px; }
.slider-dot {
  height: 3px;
  border-radius: 2px;
  background: var(--color-border);
  cursor: pointer;
  transition: var(--transition);
}
.slider-dot.active { background: var(--color-dark); width: 32px !important; }
.slider-arrows { display: flex; gap: 8px; }
.slider-arrow {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1.5px solid var(--color-border);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  background: var(--color-white);
}
.slider-arrow:hover { background: var(--color-dark); color: var(--color-white); border-color: var(--color-dark); }

/* Product Card */
.product-card {
  flex: 0 0 calc(25% - 15px);
  min-width: calc(25% - 15px);
  background: var(--color-card-bg);
  border-radius: var(--radius-lg);
  overflow: visible;
  transition: var(--transition);
  position: relative;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.product-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.product-card-link-image {
  display: block;
  width: 100%;
  height: 100%;
}
.product-card-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--color-card-bg);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.4s ease;
}
.product-card:hover .product-card-image img { transform: scale(1.05); }
.card-badges {
  position: absolute;
  top: 12px; 
  left: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 10;
}
.badge {
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 700;
  display: inline-block;
}
.badge-new { background: #DEFF8C; color: var(--color-dark); }
.badge-popular { background: #B2EBE0; color: #1A5C4E; }
.badge-sale { background: var(--color-sale); color: var(--color-white); }
.card-choose-options {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%) translateY(10px);
  opacity: 0;
  background: var(--button-bg-default);
  color: var(--button-text-default);
  border: 1.5px solid var(--button-bg-default);
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease, color 0.4s ease;
  z-index: 20;
  white-space: nowrap;
  overflow: hidden;
}

.card-choose-options::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
  background: var(--button-bg-hover);
  transition: width 0.4s ease;
  z-index: -1;
}

.card-choose-options .plus-icon {
  width: 20px;
  height: 20px;
  background: var(--button-text-default);
  color: var(--button-bg-default);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}
.product-card:hover .card-choose-options {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
.card-choose-options:hover {
  color: var(--button-text-hover);
  border-color: var(--button-text-hover);
}

.card-choose-options:hover::before {
  width: 100%;
  left: 0;
  right: auto;
}

.card-choose-options:hover .plus-icon {
  background: var(--button-text-hover);
  color: var(--button-bg-hover);
}

/* Mobile Cart Button - Hidden on Desktop */
.card-mobile-cart {
  display: flex;
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  background: var(--color-white);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
  z-index: 10;
  cursor: pointer;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.card-mobile-cart:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.2);
}

.card-mobile-cart:active {
  transform: scale(0.95);
}

.card-mobile-cart svg {
  width: 20px;
  height: 20px;
  stroke: var(--color-dark);
}
.product-card-info { padding: 14px 12px 12px; }
.card-category { font-size: 12px; color: var(--color-text-muted); text-align: center; margin-bottom: 4px; }
.card-name { font-size: 15px; font-weight: 700; text-align: center; margin-bottom: 6px; }
.card-price { text-align: center; font-size: 14px; font-weight: 600; }
.card-price .sale { color: var(--color-sale); margin-right: 6px; }
.card-price .original { color: var(--color-text-muted); text-decoration: line-through; font-weight: 400; }

/* =============================================
   FEATURES / INGREDIENTS SECTION
   ============================================= */
.features-section {
  padding: 0;
  background: var(--color-bg);
  text-align: center;
}
.features-heading {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 800;
  color: #2C1A0E;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.features-subtext {
  font-size: 16px;
  color: var(--color-text-muted);
  max-width: 560px;
  margin: 0 auto 48px;
  line-height: 1.7;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card { text-align: center; }
.feature-image {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 1/1;
  margin-bottom: 20px;
  background: var(--color-card-bg);
}
.feature-image img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover;
  border-radius: 16px;
}
.feature-label {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  color: #2C1A0E;
  margin-bottom: 8px;
}
.feature-desc { font-size: 14px; color: var(--color-text-muted); max-width: 280px; margin: 0 auto; }

/* =============================================
   TESTIMONIALS SLIDER
   ============================================= */
.testimonials-section { padding: 0; background: var(--color-bg); }
.testimonial-card {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  background: var(--color-white);
}
.testimonial-image { position: relative; min-height: 400px; }
.testimonial-image img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-product-badge {
  position: absolute;
  bottom: 20px; 
  left: 50%;
  transform: translateX(-50%);
  max-width: 65%;
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(12px);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}
.testimonial-product-badge img { width: 44px; height: 44px; object-fit: contain; border-radius: var(--radius-sm); }
.badge-product-info { flex: 1; }
.badge-product-info .name { font-size: 14px; font-weight: 700; }
.badge-product-info .price { font-size: 13px; color: var(--color-text-muted); }
.badge-product-info .price .sale { color: var(--color-sale); }
.badge-shop-btn {
  background: var(--button-bg-default);
  color: var(--button-text-default);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  border: 1.5px solid var(--button-bg-default);
  transition: color 0.4s ease;
  position: relative;
  overflow: hidden;
  display: inline-block;
  z-index: 1;
}

.badge-shop-btn::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
  background: var(--button-bg-hover);
  transition: width 0.4s ease;
  z-index: -1;
}

.badge-shop-btn:hover {
  color: var(--button-text-hover);
  border-color: var(--button-text-hover);
}

.badge-shop-btn:hover::before {
  width: 100%;
  left: 0;
  right: auto;
}
.testimonial-content {
  background: #EFF8F4;
  padding: 48px 44px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.testimonial-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 24px;
}
.testimonial-quote {
  font-family: var(--font-display);
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-dark);
  margin-bottom: 32px;
}
.testimonial-author-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-author img { width: 48px; height: 48px; border-radius: 50%; object-fit: cover; }
.author-name { font-size: 15px; font-weight: 700; }
.author-verified { font-size: 13px; color: var(--color-primary); display: flex; align-items: center; gap: 4px; }
.testimonial-nav { 
  display: flex; 
  align-items: center; 
  gap: 16px;
}
.testimonial-counter { font-size: 13px; color: var(--color-text-muted); }

/* =============================================
   WHY CHOOSE US
   ============================================= */
.why-section { padding: 0; background: var(--color-bg); }
.why-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.5vw, 46px);
  font-weight: 800;
  text-align: center;
  margin-bottom: 52px;
  letter-spacing: -0.02em;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}
.why-item {}
.why-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--color-primary-light);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-size: 28px;
}
.why-item h4 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.why-item p { font-size: 14px; color: var(--color-text-muted); line-height: 1.6; }

/* =============================================
   MARQUEE BANNER
   ============================================= */
.marquee-section {
  background: var(--color-marquee);
  padding: 16px 0;
  overflow: hidden;
}
.marquee-track {
  display: flex;
  gap: 0;
  white-space: nowrap;
  animation: marquee 20s linear infinite;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 0 24px;
  flex-shrink: 0;
}
.marquee-item span { font-size: 16px; font-weight: 700; color: var(--color-dark); }
.marquee-item svg { width: 20px; height: 20px; color: var(--color-dark); flex-shrink: 0; }
.marquee-shop-btn {
  background: var(--button-bg-default);
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  color: var(--button-text-default);
  flex-shrink: 0;
  border: 1.5px solid var(--button-bg-default);
  transition: color 0.4s ease;
  position: relative;
  overflow: hidden;
  display: inline-block;
  z-index: 1;
}

.marquee-shop-btn::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
  background: var(--button-bg-hover);
  transition: width 0.4s ease;
  z-index: -1;
}

.marquee-shop-btn:hover {
  color: var(--button-text-hover);
  border-color: var(--button-text-hover);
}

.marquee-shop-btn:hover::before {
  width: 100%;
  left: 0;
  right: auto;
}

/* =============================================
   BUNDLE BUILDER
   ============================================= */
.bundle-section { padding: 0; background: var(--color-bg); }
.bundle-inner {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 48px;
  align-items: start;
}
.bundle-sidebar {
  position: sticky;
  top: 100px;
}
.bundle-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: 12px;
}
.bundle-title {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.bundle-desc { font-size: 14px; color: var(--color-text-muted); margin-bottom: 28px; line-height: 1.6; }
.bundle-slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-bottom: 28px;
}
.bundle-slot {
  aspect-ratio: 1;
  border: 2px dashed var(--color-border);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
  overflow: hidden;
  position: relative;
  transition: var(--transition);
}
.bundle-slot.filled { border-color: var(--color-primary); }
.bundle-slot.filled img { width: 100%; height: 100%; object-fit: contain; padding: 8px; }
.bundle-slot .remove-btn {
  position: absolute;
  top: 6px; 
  right: 6px;
  width: 24px; 
  height: 24px;
  background: var(--color-sale);
  color: white;
  border-radius: 50%;
  font-size: 14px;
  font-weight: 700;
  border: 2px solid white;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0,0,0,0.2);
  z-index: 10;
  line-height: 1;
}
.bundle-slot.filled .remove-btn { 
  display: flex; 
}
.bundle-slot.filled:hover .remove-btn {
  transform: scale(1.1);
}
.bundle-add-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--button-bg-default);
  color: var(--button-text-default);
  padding: 14px 24px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 600;
  width: 100%;
  cursor: pointer;
  border: 1.5px solid var(--button-bg-default);
  transition: color 0.4s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.bundle-add-btn::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
  background: var(--button-bg-hover);
  transition: width 0.4s ease;
  z-index: -1;
}

.bundle-add-btn:hover {
  color: var(--button-text-hover);
  border-color: var(--button-text-hover);
}

.bundle-add-btn:hover::before {
  width: 100%;
  left: 0;
  right: auto;
}
.bundle-add-btn .arrow-icon {
  width: 28px; height: 28px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.bundle-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.bundle-product-card {
  background: var(--color-card-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
}
.bundle-product-card:hover { box-shadow: var(--shadow-md); }
.bundle-product-image {
  aspect-ratio: 1;
  display: flex; 
  align-items: center; 
  justify-content: center;
  padding: 0;
  position: relative;
  background: white;
  overflow: hidden;
  border-radius: 16px;
}
.bundle-product-image img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover;
  transition: transform 0.3s ease;
}
.bundle-product-info { padding: 12px; }
.bundle-product-info .category { font-size: 12px; color: var(--color-text-muted); text-align: center; }
.bundle-product-info .name { font-size: 14px; font-weight: 700; text-align: center; margin: 4px 0; min-height: 36px; }
.bundle-product-info .price { text-align: center; font-size: 13px; font-weight: 600; margin-bottom: 10px; }
.bundle-product-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 0 12px 12px;
}
.bundle-weight-select {
  flex: 1;
  padding: 8px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-family: var(--font-body);
  appearance: none;
  background: var(--color-white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E") no-repeat right 10px center;
  cursor: pointer;
  min-width: 0;
}
.bundle-add-product-btn {
  background: var(--button-bg-default);
  color: var(--button-text-default);
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 700;
  border: 1.5px solid var(--button-bg-default);
  transition: color 0.4s ease, transform 0.2s ease;
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  cursor: pointer;
  z-index: 1;
}

.bundle-add-product-btn svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.bundle-add-product-btn::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
  background: var(--button-bg-hover);
  transition: width 0.4s ease;
  z-index: -1;
}

.bundle-add-product-btn:hover {
  color: var(--button-text-hover);
  border-color: var(--button-text-hover);
  transform: translateY(-2px);
}

.bundle-add-product-btn:hover::before {
  width: 100%;
  left: 0;
  right: auto;
}

.bundle-add-product-btn:active {
  transform: translateY(0);
}

/* Bundle product clickable link */
.bundle-product-link {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.bundle-product-link:hover {
  transform: translateY(-4px);
}

.bundle-product-link:hover .bundle-product-image img {
  transform: scale(1.05);
}


/* Mobile Bundle Drawer */
.bundle-section-container {
  position: relative;
}
.mobile-bundle-header {
  margin-bottom: 24px;
}
.mobile-bundle-drawer {
  position: sticky;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  border-top: 1px solid var(--color-border);
  z-index: 100;
  margin-top: 20px;
  box-shadow: 0 -4px 12px rgba(0,0,0,0.08);
  border-radius: 16px 16px 0 0;
  overflow: hidden;
}
.bundle-drawer-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 20px;
  background: white;
  border: none;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  gap: 12px;
  border-radius: inherit;
}
.bundle-drawer-toggle span:first-child {
  flex: 1;
  text-align: left;
}
.bundle-count {
  background: var(--color-sale);
  color: white;
  min-width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  padding: 0 8px;
}
.drawer-arrow {
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.bundle-drawer-toggle.active .drawer-arrow {
  transform: rotate(180deg);
}
.bundle-drawer-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 20px;
}
.bundle-drawer-content.open {
  max-height: 600px;
  padding: 20px;
  padding-top: 0;
}
.mobile-slots {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 16px;
}
.mobile-add-btn {
  width: 100%;
  background: var(--button-bg-default);
  color: var(--button-text-default);
  padding: 16px 24px;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 700;
  font-size: 16px;
  border: 1.5px solid var(--button-bg-default);
  cursor: pointer;
  transition: color 0.4s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.mobile-add-btn::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
  background: var(--button-bg-hover);
  transition: width 0.4s ease;
  z-index: -1;
}
.mobile-add-btn:hover {
  color: var(--button-text-hover);
  border-color: var(--button-text-hover);
}
.mobile-add-btn:hover::before {
  width: 100%;
  left: 0;
  right: auto;
}
.mobile-add-btn svg {
  width: 18px;
  height: 18px;
  position: relative;
  z-index: 1;
}
  height: 18px;
}

/* =============================================
   DUAL BANNERS
   ============================================= */
.dual-banners { padding: 0; }
.dual-banners-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.promo-banner-card {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 16/9;
  cursor: pointer;
}
.promo-banner-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.promo-banner-card:hover img { transform: scale(1.03); }
.promo-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}
.promo-starburst {
  position: absolute;
  top: 20px; right: 20px;
  width: 80px; height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
  padding: 16px 8px;
}
.starburst-yellow { background: var(--color-marquee); color: var(--color-dark); }
.starburst-white { background: var(--color-white); color: var(--color-dark); }
.promo-banner-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-bottom: 6px;
}
.promo-banner-title { font-family: var(--font-display); font-size: 26px; font-weight: 800; color: white; margin-bottom: 14px; }
.promo-shop-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--button-bg-default);
  color: var(--button-text-default);
  padding: 10px 20px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  width: fit-content;
  border: 1.5px solid var(--button-bg-default);
  transition: color 0.4s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.promo-shop-btn::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
  background: var(--button-bg-hover);
  transition: width 0.4s ease;
  z-index: -1;
}

.promo-shop-btn:hover {
  color: var(--button-text-hover);
  border-color: var(--button-text-hover);
}

.promo-shop-btn:hover::before {
  width: 100%;
  left: 0;
  right: auto;
}
.promo-shop-btn .arrow {
  width: 24px; height: 24px;
  background: var(--color-dark);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

/* =============================================
   TRUST BAR
   ============================================= */
.trust-bar { padding: 0; border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); }
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.trust-item {}
.trust-icon { font-size: 28px; margin-bottom: 10px; display: block; }
.trust-item h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.trust-item p { font-size: 13px; color: var(--color-text-muted); }

/* =============================================
   FOOTER
   ============================================= */
.site-footer { background: var(--color-footer-bg); color: var(--color-white); padding: 64px 0 0; }
.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-newsletter h3 {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 800;
  line-height: 1.3;
  margin-bottom: 20px;
}
.newsletter-form {
  display: flex;
  align-items: center;
  background: var(--color-white);
  border-radius: var(--radius-pill);
  overflow: hidden;
  padding: 4px 4px 4px 20px;
  margin-bottom: 12px;
}
.newsletter-form input {
  flex: 1;
  border: none;
  background: none;
  font-size: 14px;
  color: var(--color-dark);
  outline: none;
  font-family: var(--font-body);
}
.newsletter-form button {
  width: 38px; height: 38px;
  background: var(--button-bg-default);
  color: var(--button-text-default);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  position: relative;
  overflow: hidden;
  transition: color 0.4s ease;
  border: 1.5px solid var(--button-bg-default);
  z-index: 1;
}

.newsletter-form button::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
  background: var(--button-bg-hover);
  transition: width 0.4s ease;
  z-index: -1;
  border-radius: 50%;
}

.newsletter-form button:hover {
  color: var(--button-text-hover);
  border-color: var(--button-text-hover);
}

.newsletter-form button:hover::before {
  width: 100%;
  left: 0;
  right: auto;
}
.footer-newsletter .fine-print { font-size: 12px; color: rgba(255,255,255,0.5); }
.footer-newsletter .fine-print a { color: rgba(255,255,255,0.8); text-decoration: underline; }
.footer-col h4 { font-size: 14px; font-weight: 700; margin-bottom: 16px; color: rgba(255,255,255,0.9); }
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.6); transition: var(--transition); }
.footer-col ul li a:hover { color: var(--color-white); }

/* Footer Accordion - Desktop (hide accordion functionality) */
.footer-accordion-icon {
  display: none;
}
.footer-accordion-trigger {
  cursor: default;
}
.footer-accordion-content {
  max-height: none;
  overflow: visible;
}

@media (min-width: 769px) {
  .footer-accordion-content {
    max-height: none !important;
    overflow: visible !important;
  }
}
.footer-instagram { padding: 40px 0; border-bottom: 1px solid rgba(255,255,255,0.1); }
.instagram-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px;
}
.instagram-header h4 { font-size: 20px; font-weight: 700; }
.instagram-handle { font-size: 14px; color: rgba(255,255,255,0.6); }
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 12px;
}
.instagram-item {
  aspect-ratio: 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  background: rgba(255,255,255,0.1);
}
.instagram-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.instagram-item:hover img { transform: scale(1.05); }
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  gap: 20px;
}
.footer-socials { display: flex; gap: 8px; }
.social-btn {
  width: 38px; height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.1);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  transition: var(--transition);
  font-size: 14px;
}
.social-btn:hover { background: rgba(255,255,255,0.2); color: white; }
.footer-policy-links { display: flex; gap: 20px; }
.footer-policy-links a { font-size: 13px; color: rgba(255,255,255,0.6); transition: var(--transition); }
.footer-policy-links a:hover { color: var(--color-white); }
.footer-very-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-copyright { font-size: 13px; color: rgba(255,255,255,0.4); }
.footer-payments { display: flex; gap: 8px; align-items: center; }
.payment-icon {
  height: 20px;
  width: auto;
  border-radius: 4px;
  transition: transform 0.2s ease, opacity 0.2s ease;
  opacity: 0.9;
}
.payment-icon:hover {
  transform: translateY(-2px);
  opacity: 1;
}
.currency-selector {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.1);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  cursor: pointer;
}

/* =============================================
   COLLECTION PAGE
   ============================================= */
.collection-hero { margin: 20px var(--container-padding); border-radius: var(--radius-xl); overflow: hidden; position: relative; }
.collection-hero-image {
  width: 100%;
  aspect-ratio: 16/5;
  object-fit: cover;
  display: block;
}
.collection-hero-ribbon {
  position: absolute;
  top: 28px;
  left: -20px;
  right: -20px;
  background: var(--color-marquee);
  padding: 10px 0;
  transform: rotate(-1deg);
  overflow: hidden;
  z-index: 2;
}
.collection-hero-ribbon .marquee-track { animation-duration: 12s; }
.collection-hero-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 40px;
  background: linear-gradient(to top, rgba(0,0,0,0.6), transparent);
}
.collection-hero-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
  margin-bottom: 8px;
}
.collection-hero-title {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 800;
  color: white;
  margin-bottom: 20px;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 16px var(--container-padding);
  font-size: 13px;
  color: var(--color-text-muted);
}
.breadcrumb a:hover { color: var(--color-primary); }
.breadcrumb span { color: var(--color-text-muted); }

/* Promo Strip */
.promo-strip {
  background: #E8F7F3;
  border-radius: var(--radius-xl);
  padding: 20px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin: 20px 0;
}
.promo-strip-avatars { display: flex; }
.promo-strip-avatars img {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid white;
  margin-left: -10px;
}
.promo-strip-avatars img:first-child { margin-left: 0; }
.promo-strip-text { flex: 1; font-size: 22px; font-weight: 800; color: var(--color-dark); }
.promo-strip-sub { font-size: 14px; color: var(--color-text-muted); }
.promo-strip-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--button-bg-default);
  color: var(--button-text-default);
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 600;
  border: 1.5px solid var(--button-bg-default);
  transition: color 0.4s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.promo-strip-btn::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
  background: var(--button-bg-hover);
  transition: width 0.4s ease;
  z-index: -1;
}

.promo-strip-btn:hover {
  color: var(--button-text-hover);
  border-color: var(--button-text-hover);
}

.promo-strip-btn:hover::before {
  width: 100%;
  left: 0;
  right: auto;
}

/* Benefits Slider */
.benefits-section { padding: 0; }
.benefits-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  color: var(--color-text-muted);
  margin-bottom: 12px;
}
.benefits-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 3vw, 38px);
  font-weight: 800;
  text-align: center;
  margin-bottom: 36px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}
.benefits-cards-wrapper { overflow: hidden; }
.benefits-cards {
  display: flex;
  gap: 16px;
  transition: transform 0.5s ease;
}
.benefit-card {
  flex: 0 0 calc(33.33% - 11px);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  aspect-ratio: 3/4;
  cursor: pointer;
}
.benefit-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.benefit-card:hover img { transform: scale(1.04); }
.benefit-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 50%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}
.benefit-card-tag {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(4px);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  color: white;
  margin-bottom: 8px;
  width: fit-content;
}
.benefit-card-label { font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-bottom: 4px; }
.benefit-card-title { font-family: var(--font-display); font-size: 22px; font-weight: 800; color: white; }
.benefit-arrow {
  width: 36px; height: 36px;
  background: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  position: absolute;
  bottom: 24px; right: 24px;
  color: var(--color-dark);
}

/* Countdown */
.countdown-products { padding: 0; }
.countdown-products-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  align-items: start;
}
.countdown-card {
  background: #5C3A1E;
  border-radius: var(--radius-xl);
  padding: 40px;
  position: relative;
  overflow: hidden;
  min-height: 480px;
  display: flex;
  flex-direction: column;
}
.countdown-card-label { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-bottom: 12px; }
.countdown-card-title { font-family: var(--font-display); font-size: 36px; font-weight: 800; color: white; line-height: 1.2; margin-bottom: 24px; }
.countdown-timer { display: flex; align-items: center; gap: 8px; margin-bottom: 24px; }
.timer-block {
  background: rgba(255,255,255,0.15);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  min-width: 56px;
  text-align: center;
}
.timer-block span { font-size: 28px; font-weight: 800; color: white; display: block; font-variant-numeric: tabular-nums; }
.timer-sep { font-size: 24px; font-weight: 700; color: rgba(255,255,255,0.5); }
.countdown-card-image {
  flex: 1;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  margin-top: 8px;
}
.countdown-card-image img { max-height: 200px; object-fit: contain; }
.mini-sliders { display: flex; flex-direction: column; gap: 20px; }
.mini-slider-section {}
.mini-slider-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px;
}
.mini-slider-title { font-family: var(--font-display); font-size: 22px; font-weight: 700; }
.mini-slider-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}
.mini-product-card {
  background: var(--color-card-bg);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.mini-product-card-img {
  aspect-ratio: 1;
  display: flex; align-items: center; justify-content: center;
  padding: 16px;
  background: var(--color-card-bg);
  position: relative;
}
.mini-product-card-img img { width: 100%; height: 100%; object-fit: contain; }
.mini-product-info { padding: 10px; }
.mini-product-info .cat { font-size: 11px; color: var(--color-text-muted); text-align: center; }
.mini-product-info .name { font-size: 13px; font-weight: 700; text-align: center; margin: 2px 0; }
.mini-product-info .price { font-size: 12px; font-weight: 600; text-align: center; }

/* =============================================
   PRODUCT PAGE
   ============================================= */
.product-page { 
  padding: 40px 0 40px;
  overflow-x: hidden;
  max-width: 100%;
}
.product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  max-width: 100%;
  overflow-x: hidden;
}
.product-layout > * {
  min-width: 0; /* Prevents grid children from overflowing their columns */
}
.product-image-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.product-thumbnails {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 4px 0;
}
.product-thumbnails::-webkit-scrollbar {
  display: none;
}
.product-thumbnail {
  width: 72px; 
  height: 72px;
  min-width: 72px;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  background: var(--color-card-bg);
  display: flex; 
  align-items: center; 
  justify-content: center;
  padding: 0;
  transition: var(--transition);
  flex-shrink: 0;
}
.product-thumbnail.active { 
  border-color: var(--color-primary); 
}
.product-thumbnail img { 
  width: 100%; 
  height: 100%; 
  object-fit: cover; 
}
.product-main-images { 
  width: 100%;
  min-width: 0;
}
.product-main-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--color-card-bg);
  aspect-ratio: 1;
  width: 100%;
  display: none;
  align-items: center; 
  justify-content: center;
  padding: 0;
}
.product-main-image.active {
  display: flex;
}
.product-main-image img { 
  width: 100%; 
  height: 100%; 
  object-fit: contain; 
}
.product-info { 
  position: relative;
  min-width: 0;
  overflow: hidden;
  word-break: break-word;
}
.product-breadcrumb { font-size: 13px; color: var(--color-text-muted); margin-bottom: 16px; display: flex; gap: 8px; }
.product-breadcrumb a:hover { color: var(--color-primary); }
.product-title { font-family: var(--font-display); font-size: 38px; font-weight: 800; line-height: 1.15; margin-bottom: 12px; letter-spacing: -0.02em; word-break: break-word; overflow-wrap: break-word; }
.product-price-row { margin-bottom: 16px; }
.product-price { font-size: 26px; font-weight: 700; }
.product-price .original { font-size: 18px; color: var(--color-text-muted); text-decoration: line-through; margin-left: 10px; font-weight: 400; }
.product-price .sale-price { color: var(--color-sale); }
.product-description { font-size: 14px; color: var(--color-text-muted); line-height: 1.7; margin-bottom: 24px; }
.product-stock { display: flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 600; color: var(--color-primary); margin-bottom: 20px; }
.size-label { font-size: 13px; font-weight: 700; margin-bottom: 10px; color: var(--color-text-muted); }
.size-label span { color: var(--color-dark); }
.size-options { display: flex; gap: 8px; margin-bottom: 20px; flex-wrap: wrap; }
.variant-option-group { margin-bottom: 4px; }
.size-btn {
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  border: 1.5px solid var(--color-border);
  background: var(--color-white);
  cursor: pointer;
  transition: var(--transition);
}
.size-btn.active { background: var(--color-dark); color: white; border-color: var(--color-dark); }
.size-btn:hover:not(.active) { border-color: var(--color-dark); }

/* Color Swatches */
.color-swatch-btn {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  outline: 2px solid transparent;
  outline-offset: 2px;
  flex-shrink: 0;
}
.color-swatch-btn.active {
  outline: 2px solid var(--color-dark);
  outline-offset: 2px;
  border-color: white;
}
.color-swatch-btn:hover:not(.active) {
  outline: 2px solid var(--color-border);
  outline-offset: 2px;
}
.product-actions { display: flex; gap: 12px; margin-bottom: 16px; align-items: stretch; }
.qty-selector {
  display: flex;
  align-items: center;
  gap: 0;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-pill);
  overflow: hidden;
  padding: 0 4px;
}
.qty-btn {
  width: 36px; height: 36px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  cursor: pointer;
  transition: var(--transition);
}
.qty-btn:hover { color: var(--color-primary); }
.qty-display { min-width: 32px; text-align: center; font-size: 15px; font-weight: 600; }
.btn-add-cart {
  flex: 1;
  background: var(--button-bg-default);
  color: var(--button-text-default);
  padding: 14px 24px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 700;
  border: 1.5px solid var(--button-bg-default);
  cursor: pointer;
  transition: color 0.4s ease;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-add-cart::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
  background: var(--button-bg-hover);
  transition: width 0.4s ease;
  z-index: -1;
}

.btn-add-cart:hover {
  color: var(--button-text-hover);
  border-color: var(--button-text-hover);
}

.btn-add-cart:hover::before {
  width: 100%;
  left: 0;
  right: auto;
}
.btn-buy-now {
  width: 100%;
  background: var(--button-bg-default);
  color: var(--button-text-default);
  padding: 16px 24px;
  border-radius: var(--radius-pill);
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: color 0.4s ease;
  border: 1.5px solid var(--button-bg-default);
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  display: block;
  text-align: center;
  text-decoration: none;
}

.btn-buy-now::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
  background: var(--button-bg-hover);
  transition: width 0.4s ease;
  z-index: -1;
}

.btn-buy-now:hover {
  color: var(--button-text-hover);
  border-color: var(--button-text-hover);
}

.btn-buy-now:hover::before {
  width: 100%;
  left: 0;
  right: auto;
}
.product-trust { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-bottom: 20px; }
.product-trust-item { text-align: center; }
.product-trust-item svg { width: 24px; height: 24px; margin: 0 auto 4px; display: block; }
.product-trust-item span { font-size: 12px; font-weight: 600; color: var(--color-text-muted); }
.pickup-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  margin-bottom: 20px;
  cursor: pointer;
  transition: var(--transition);
}
.pickup-card:hover { border-color: var(--color-primary); }
.pickup-card-icon { font-size: 22px; }
.pickup-card-text .title { font-size: 14px; font-weight: 700; }
.pickup-card-text .sub { font-size: 12px; color: var(--color-text-muted); }
.pickup-card-arrow { margin-left: auto; color: var(--color-text-muted); }
.video-feedbacks { margin-bottom: 20px; }
.video-feedbacks h4 { font-size: 14px; font-weight: 700; margin-bottom: 12px; }
.video-avatars { display: flex; gap: 10px; }
.video-avatar {
  width: 50px; height: 50px;
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid var(--color-border);
  transition: var(--transition);
}
.video-avatar:hover { border-color: var(--color-primary); transform: scale(1.1); }
.video-avatar img { width: 100%; height: 100%; object-fit: cover; }
.accordion { border-top: 1px solid var(--color-border); margin-bottom: 0; }
.accordion-item { border-bottom: 1px solid var(--color-border); }
.accordion-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  cursor: pointer;
  font-size: 15px;
  font-weight: 700;
  width: 100%;
  background: none;
  text-align: left;
  color: var(--color-dark);
}
.accordion-trigger svg { transition: transform var(--transition); }
.accordion-item.open .accordion-trigger svg { transform: rotate(180deg); }
.accordion-content {
  display: none;
  padding-bottom: 16px;
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.7;
}
.accordion-content ul { padding-left: 16px; display: flex; flex-direction: column; gap: 6px; }
.accordion-content ul li { list-style: disc; }
.accordion-item.open .accordion-content { display: block; }
.product-share {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  margin-top: 8px;
}
.product-share span { font-size: 14px; font-weight: 600; color: var(--color-text-muted); }
.share-icon {
  width: 34px; height: 34px;
  border-radius: 50%;
  border: 1.5px solid var(--color-border);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 14px;
}
.share-icon:hover { background: var(--color-dark); color: white; border-color: var(--color-dark); }
.need-help-btn {
  margin-left: auto;
  padding: 8px 16px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.need-help-btn:hover { background: var(--color-dark); color: white; }
.pair-with { margin-top: 28px; padding-top: 20px; border-top: 1px solid var(--color-border); }
.pair-with-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; }
.pair-with h4 { font-size: 16px; font-weight: 700; }
.pair-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.pair-card { background: var(--color-card-bg); border-radius: var(--radius-md); overflow: hidden; text-align: center; cursor: pointer; transition: var(--transition); }
.pair-card:hover { box-shadow: var(--shadow-sm); }
.pair-card-img { aspect-ratio: 1; display: flex; align-items: center; justify-content: center; padding: 12px; position: relative; }
.pair-card-img img { width: 100%; height: 100%; object-fit: contain; }
.pair-card-info { padding: 8px; }
.pair-card-info .name { font-size: 12px; font-weight: 700; }
.pair-card-info .price { font-size: 12px; color: var(--color-text-muted); }

/* Sticky Add to Cart */
.sticky-atc {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
  padding: 12px var(--container-padding);
  display: flex;
  align-items: center;
  gap: 16px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  z-index: 900;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
}
.sticky-atc.visible { transform: translateY(0); }
.sticky-atc-product { display: flex; align-items: center; gap: 12px; flex: 1; }
.sticky-atc-product img { width: 48px; height: 48px; object-fit: contain; background: var(--color-card-bg); border-radius: var(--radius-sm); padding: 4px; }
.sticky-atc-product .name { font-size: 14px; font-weight: 700; }
.sticky-atc-product .price { font-size: 13px; color: var(--color-text-muted); }
.sticky-atc-btn {
  background: var(--color-dark);
  color: white;
  padding: 12px 28px;
  border-radius: var(--radius-pill);
  font-size: 14px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.sticky-atc-btn:hover { background: var(--color-primary); }

/* Stats Section */
.stats-section { padding: 0; background: var(--color-bg); text-align: center; }
.stats-label { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--color-text-muted); margin-bottom: 12px; }
.stats-title { font-family: var(--font-display); font-size: clamp(26px, 3vw, 38px); font-weight: 800; margin-bottom: 40px; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 24px; }
.stat-card { background: #EFF8FF; border-radius: var(--radius-lg); padding: 32px 20px; }
.stat-number { font-family: var(--font-display); font-size: 48px; font-weight: 800; color: #3B82F6; margin-bottom: 8px; }
.stat-desc { font-size: 14px; color: var(--color-text-muted); line-height: 1.5; }
.stats-footnote { font-size: 13px; color: var(--color-text-muted); max-width: 500px; margin: 0 auto; }

/* =============================================
   UTILITY CLASSES (Desktop)
   ============================================= */
.mobile-only {
  display: none !important;
}

.desktop-only {
  display: block !important;
}

/* =============================================
   MOBILE MENU / DRAWER STYLES
   ============================================= */
.mobile-header {
  display: none;
}

.mobile-menu-btn {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-dark);
  font-size: 24px;
}

.mobile-logo {
  flex: 1;
  text-align: center;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--color-dark);
}

.mobile-actions {
  display: flex;
  align-items: center;
  gap: 4px;
}

.mobile-search-btn {
  width: 44px;
  height: 44px;
}

.mobile-drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 9998;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.mobile-drawer-overlay.active {
  display: block;
  opacity: 1;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 85%;
  max-width: 340px;
  background: var(--color-white);
  z-index: 9999;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  display: flex;
  flex-direction: column;
}

.mobile-drawer.active {
  transform: translateX(0);
}

.mobile-drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid var(--color-border);
  position: sticky;
  top: 0;
  background: var(--color-white);
  z-index: 10;
}

.mobile-drawer-logo {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 800;
  color: var(--color-dark);
}

.mobile-drawer-close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-card-bg);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 20px;
  color: var(--color-dark);
  transition: var(--transition);
}

.mobile-drawer-close:active {
  transform: scale(0.95);
}

.mobile-nav-panel {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.mobile-nav {
  padding: 0;
}

.mobile-nav-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 20px;
  border-bottom: 1px solid var(--color-border);
  background: none;
  border-left: none;
  border-right: none;
  border-top: none;
  font-size: 16px;
  font-weight: 600;
  color: var(--color-dark);
  text-align: left;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

.mobile-nav-item:active {
  background: var(--color-card-bg);
}

.mobile-nav-trigger {
  position: relative;
}

.mobile-nav-trigger svg {
  transition: transform 0.3s ease;
}

.mobile-nav-trigger.active svg {
  transform: rotate(180deg);
}

.mobile-submenu {
  display: none;
  background: var(--color-card-bg);
  padding: 8px 0;
}

.mobile-submenu.active {
  display: block;
}

.mobile-submenu-item {
  display: block;
  padding: 12px 20px 12px 40px;
  font-size: 15px;
  font-weight: 500;
  color: var(--color-text);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.mobile-submenu-item:active {
  background: rgba(0, 0, 0, 0.05);
}

.mobile-drawer-footer {
  padding: 20px;
  border-top: 1px solid var(--color-border);
  background: var(--color-card-bg);
}

.mobile-signin-btn {
  display: block;
  width: 100%;
  padding: 14px 20px;
  background: var(--color-dark);
  color: var(--color-white);
  border-radius: var(--radius-pill);
  text-align: center;
  font-weight: 600;
  margin-bottom: 16px;
  transition: var(--transition);
}

.mobile-signin-btn:active {
  transform: scale(0.98);
}

.mobile-currency {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  background: var(--color-white);
  border-radius: var(--radius-md);
  margin-bottom: 16px;
  font-size: 14px;
  font-weight: 500;
}

.mobile-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.mobile-social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
  border-radius: 50%;
  color: var(--color-dark);
  font-size: 16px;
  transition: var(--transition);
}

.mobile-social-icon:active {
  transform: scale(0.95);
}

/* =============================================
   MOBILE RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .product-layout { grid-template-columns: 60px 1fr; }
  .product-info { grid-column: 1 / -1; position: static; }
  .bundle-inner { grid-template-columns: 1fr; }
  .bundle-sidebar { position: static; }
  .countdown-products-inner { grid-template-columns: 1fr; }
  
  /* Reset testimonial badge to full width on tablet */
  .testimonial-product-badge {
    left: 20px;
    right: 20px;
    transform: none;
    max-width: none;
  }
}

@media (max-width: 768px) {
  :root { --container-padding: 16px; }
  
  /* Prevent horizontal scroll globally */
  html, body {
    max-width: 100%;
    overflow-x: hidden;
    position: relative;
  }
  
  /* ========== MOBILE HEADER VISIBILITY ========== */
  /* Don't hide header-inner, just hide its desktop children */
  .header-logo {
    display: none !important;
  }
  
  .header-nav {
    display: none !important;
  }
  
  .header-actions {
    display: none !important;
  }
  
  .header-search {
    display: none !important;
  }
  
  .mobile-header {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 12px 16px;
    height: 60px;
    width: 100%;
  }
  
  /* All section containers — 10px top/bottom on mobile */
  .section > .container,
  .features-section > .container,
  .testimonials-section > .container,
  .why-section > .container,
  .bundle-section > .container,
  .dual-banners > .container,
  .benefits-section > .container,
  .countdown-products > .container,
  .stats-section > .container,
  .trust-bar > .container,
  .marquee-section > .container,
  .promo-strip > .container,
  .related-products-section > .container {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .section {
    padding: 0;
    overflow-x: hidden;
    max-width: 100vw;
  }
  
  .section-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  
  /* Product Slider - Left padding only */
  [id*="hot_this_week"] .container,
  [id*="product_slider"] .container,
  [id*="product-slider"] .container {
    padding-left: 7.5vw;
  }
  
  .section-title {
    font-size: 28px;
    max-width: 100%;
    line-height: 1.2;
  }
  
  /* ========== FILTER TABS - MOBILE SCROLL ========== */
  .filter-tabs {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    padding-bottom: 4px;
    flex-wrap: nowrap;
    scrollbar-width: none;
  }
  
  .filter-tabs::-webkit-scrollbar {
    display: none;
  }
  
  .filter-tab {
    white-space: nowrap;
    flex-shrink: 0;
    padding: 10px 20px;
    font-size: 14px;
  }
  
  /* ========== HERO SECTION ========== */
  .hero-banner {
    min-height: auto;
    padding: 40px 0;
    overflow-x: hidden;
    max-width: 100vw;
  }
  
  .hero-inner { 
    grid-template-columns: 1fr;
    gap: 0;
    padding: 0;
    overflow-x: hidden;
  }
  
  .hero-content {
    padding: 0 16px 32px;
    max-width: 100%;
  }
  
  .hero-content h1 {
    font-size: 32px;
    margin-bottom: 16px;
    max-width: 100%;
    line-height: 1.1;
  }
  
  .hero-content p {
    font-size: 16px;
    margin-bottom: 24px;
    max-width: 100%;
  }
  
  .btn-primary {
    padding: 14px 24px;
    font-size: 15px;
    width: 100%;
    justify-content: center;
  }
  
  .hero-image { 
    display: none; 
  }
  
  /* Footer */
  .footer {
    overflow-x: hidden;
    max-width: 100vw;
  }
  .footer-top {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0 16px;
    max-width: 100%;
  }
  .footer-newsletter {
    max-width: 100%;
    margin-bottom: 32px;
  }
  
  .footer-newsletter h3 {
    font-size: 22px;
    margin-bottom: 12px;
  }
  
  .footer-newsletter p {
    font-size: 13px;
  }
  
  .newsletter-form {
    max-width: 100%;
    flex-direction: row;
    gap: 0;
    padding: 4px;
    background: var(--color-white);
    border-radius: var(--radius-pill);
  }
  
  .newsletter-form input {
    flex: 1;
    width: auto;
    max-width: none;
    padding: 12px 16px;
    font-size: 15px;
    border: none;
    background: transparent;
  }
  
  .newsletter-form button {
    width: 44px;
    height: 44px;
    min-width: 44px;
    max-width: 44px;
    border-radius: 50%;
    flex-shrink: 0;
    background: var(--button-bg-default);
    color: var(--button-text-default);
    border: 1.5px solid var(--button-bg-default);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .newsletter-form button svg {
    width: 16px;
    height: 16px;
  }
  
  /* Footer Accordion for Mobile */
  .footer-accordion {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 16px 0;
  }
  
  .footer-accordion-trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    user-select: none;
    width: 100%;
    padding: 0;
    margin-bottom: 0 !important;
  }
  
  .footer-accordion-icon {
    display: block !important;
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 8px;
  }
  
  .footer-accordion.open .footer-accordion-icon {
    transform: rotate(180deg);
  }
  
  .footer-accordion-content {
    max-height: 0 !important;
    overflow: hidden !important;
    transition: max-height 0.3s ease, margin-top 0.3s ease;
  }
  
  .footer-accordion.open .footer-accordion-content {
    max-height: 500px !important;
    margin-top: 16px;
  }
  
  /* Footer Instagram Mobile */
  .footer-instagram {
    padding: 32px 16px;
    margin: 0;
  }
  
  .instagram-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }
  
  /* Footer Bottom Mobile */
  .footer-bottom {
    flex-direction: column;
    gap: 24px;
    padding: 24px 16px;
    align-items: center;
  }
  
  .footer-policy-links {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
  
  .footer-socials {
    justify-content: center;
  }
  
  /* Footer Very Bottom Mobile */
  .footer-very-bottom {
    flex-direction: column;
    gap: 16px;
    padding: 20px 16px;
    align-items: center;
    text-align: center;
  }
  
  .footer-copyright {
    font-size: 12px;
  }
  
  .footer-payments {
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .payment-icon {
    height: 18px;
  }
  
  .currency-selector {
    padding: 8px 16px;
    font-size: 12px;
  }
  
  /* Product Cards */
  .product-card {
    flex: 0 0 calc(85% - 10px);
    min-width: calc(85% - 10px);
    max-width: 100%;
    overflow: hidden;
  }
  .product-card-image {
    max-width: 100%;
    padding: 0;
  }
  .product-card-image img {
    max-width: 100%;
    height: auto;
  }
  .card-badges {
    top: 12px;
    left: 12px;
  }
  .badge {
    padding: 5px 12px;
    font-size: 11px;
  }
  
  /* Hide Choose Options on mobile */
  .card-choose-options {
    display: none !important;
  }
  
  /* Mobile cart button - already visible, just ensure sizing */
  .card-mobile-cart {
    width: 44px;
    height: 44px;
  }
  
  .card-mobile-cart svg {
    width: 18px;
    height: 18px;
  }
  
  /* Stats/Percentage Cards */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 100%;
  }
  .stat-card {
    padding: 24px 16px;
    max-width: 100%;
  }
  
  /* ========== TESTIMONIALS ========== */
  .testimonials-section {
    padding: 10px 0;
    overflow-x: hidden;
    max-width: 100vw;
  }
  
  .testimonial-card {
    grid-template-columns: 1fr;
    border-radius: var(--radius-lg);
    max-width: calc(100vw - 32px);
    margin: 0 16px;
  }
  
  .testimonial-image {
    min-height: 280px;
    max-height: 280px;
  }
  
  .testimonial-content {
    padding: 32px 20px;
  }
  
  .testimonial-quote {
    font-size: 20px;
    line-height: 1.4;
    margin-bottom: 24px;
  }
  
  .testimonial-author-wrapper {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  
  .testimonial-nav {
    width: 100%;
    justify-content: space-between;
  }
  
  .testimonial-nav .slider-arrow {
    display: flex !important;
  }
  
  .testimonial-product-badge {
    bottom: 12px;
    left: 12px;
    right: 12px;
    transform: none;
    max-width: none;
    padding: 10px 12px;
  }
  
  .testimonial-product-badge img {
    width: 36px;
    height: 36px;
  }
  
  .badge-shop-btn {
    padding: 6px 14px;
    font-size: 12px;
  }
  
  /* Images in sections */
  .section img {
    max-width: 100%;
    height: auto;
  }
  
  /* Feature Cards */  
  .features-grid { 
    grid-template-columns: 1fr;
    max-width: 100%;
  }
  .features-section .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .features-section {
    padding: 10px 0;
  }
  .feature-card {
    max-width: 100%;
  }
  
  /* Stats Section Mobile */
  .stats-section .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .stats-section {
    padding: 10px 0;
  }
  
  /* Related Products Mobile - "You May Also Like" */
  .section[class*="related"] .container,
  [id*="related"] .container {
    padding-left: 20px;
  }
  
  /* Why Section */
  .why-section .container {
    padding-left: 20px;
    padding-right: 20px;
  }
  .why-section {
    padding: 10px 0;
  }
  .why-grid { 
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 100%;
  }
  .why-item {
    max-width: 100%;
  }
  
  /* Trust Grid */
  .trust-bar {
    padding: 10px 0;
  }
  .trust-grid { 
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 100%;
  }
  
  /* Dual Banners */
  .dual-banners {
    padding: 10px 0;
  }
  .dual-banners-grid { 
    grid-template-columns: 1fr;
    gap: 16px;
    max-width: 100%;
  }
  .banner-card {
    max-width: 100%;
  }
  .banner-card img {
    max-width: 100%;
    height: auto;
  }
  
  /* Instagram Grid */
  .instagram-grid { 
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    max-width: 100%;
  }
  
  /* Pair Cards */
  .pair-cards { 
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    max-width: 100%;
  }
  
  .header-nav { display: none; }
  
  /* Product Page Mobile */
  .product-page {
    padding: 0;
    max-width: 100vw;
    overflow-x: hidden;
  }
  .product-layout { 
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 100vw;
    overflow-x: hidden;
  }
  .product-main-images {
    width: 100%;
    max-width: 100vw;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
  }
  .product-image-carousel {
    width: 100%;
    max-width: 100vw;
    margin: 0;
    overflow-x: hidden;
  }
  .product-main-image {
    aspect-ratio: 1;
    padding: 0;
    border-radius: 0;
    width: 100%;
    max-width: 100vw;
    margin: 0;
    box-sizing: border-box;
  }
  .product-main-image img {
    max-width: 100%;
    height: auto;
  }
  .product-thumbnails { 
    display: flex;
    gap: 8px;
    margin: 12px 16px;
    padding: 0;
    justify-content: flex-start;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    max-width: calc(100vw - 32px);
  }
  .product-thumbnail {
    width: 64px;
    height: 64px;
    min-width: 64px;
    flex-shrink: 0;
  }
  .product-info {
    position: static;
    padding: 0 16px;
    max-width: 100vw;
    box-sizing: border-box;
  }
  .product-title {
    font-size: 24px;
    margin-bottom: 12px;
    line-height: 1.2;
    max-width: 100%;
    word-wrap: break-word;
  }
  .product-price {
    font-size: 22px;
  }
  .product-price .original {
    font-size: 16px;
  }
  .product-description {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 16px;
    max-width: 100%;
    word-wrap: break-word;
  }
  .product-stock {
    margin-bottom: 16px;
  }
  .size-label {
    font-size: 14px;
    margin-bottom: 12px;
  }
  .size-options {
    flex-wrap: wrap;
    margin-bottom: 16px;
    max-width: 100%;
  }
  .size-btn {
    padding: 12px 22px;
    font-size: 14px;
    min-width: 60px;
  }
  .product-actions {
    gap: 10px;
    margin-bottom: 12px;
    max-width: 100%;
  }
  .qty-selector {
    padding: 0 8px;
    flex-shrink: 0;
  }
  .qty-btn {
    width: 40px;
    height: 40px;
  }
  .qty-display {
    min-width: 40px;
    font-size: 16px;
  }
  .btn-add-cart {
    padding: 12px 24px;
    font-size: 15px;
    flex: 1;
    max-width: 100%;
  }
  .btn-buy-now {
    width: 100%;
    max-width: 100%;
    padding: 14px 24px;
    font-size: 15px;
    margin-bottom: 20px;
    box-sizing: border-box;
  }
  .product-trust {
    display: flex;
    justify-content: space-around;
    gap: 12px;
    margin: 20px 0;
    padding: 16px 0;
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
    max-width: 100%;
  }
  .product-trust-item {
    flex-direction: column;
    gap: 6px;
    font-size: 11px;
    text-align: center;
    flex: 1;
  }
  .product-trust-item svg {
    width: 20px;
    height: 20px;
  }
  .pickup-card {
    padding: 14px 16px;
    margin-bottom: 20px;
    max-width: 100%;
    box-sizing: border-box;
  }
  .video-feedbacks {
    margin-bottom: 20px;
  }
  .video-avatars {
    gap: 10px;
  }
  .video-avatar {
    width: 60px;
    height: 60px;
  }
  .container {
    max-width: 100%;
    padding-left: 0;
    padding-right: 0;
    overflow-x: hidden;
  }
  .breadcrumb {
    padding: 12px 16px;
    max-width: 100%;
    overflow-x: hidden;
  }
  
  /* ========== BUNDLE SECTION ========== */
  .bundle-section {
    padding: 10px 0;
    overflow-x: hidden;
    max-width: 100vw;
  }
  
  .bundle-section .container {
    padding: 0;
  }
  
  .bundle-grid { 
    grid-template-columns: repeat(2, 1fr); 
    gap: 12px;
    padding: 0 16px;
    max-width: 100%;
    margin-top: 16px;
  }
  
  .bundle-inner { 
    grid-template-columns: 1fr; 
    gap: 0;
    max-width: 100%;
    padding-top: 0;
  }
  
  .bundle-sidebar {
    display: none !important;
  }
  
  .bundle-product-card {
    border-radius: var(--radius-md);
    max-width: 100%;
  }
  
  .bundle-product-img {
    aspect-ratio: 1;
    padding: 12px;
  }
  
  .bundle-product-footer { 
    padding: 10px 8px;
    gap: 6px; 
    flex-direction: column;
  }
  
  .bundle-weight-select { 
    font-size: 12px; 
    padding: 8px 10px;
    width: 100%;
  }
  
  .bundle-add-product-btn { 
    padding: 10px 16px; 
    font-size: 13px; 
    font-weight: 700;
    width: 100%;
    gap: 6px;
  }
  
  .bundle-add-product-btn svg {
    width: 14px;
    height: 14px;
  }
  
  .mobile-bundle-header {
    display: block !important;
    padding: 16px;
    background: var(--color-white);
    position: relative;
    z-index: 10;
    border-bottom: 1px solid var(--color-border);
    margin-bottom: 0;
  }
  
  .mobile-bundle-header .bundle-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 8px;
  }
  
  .mobile-bundle-header .bundle-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 800;
    margin-bottom: 8px;
    line-height: 1.2;
  }
  
  .mobile-bundle-header .bundle-desc {
    font-size: 14px;
    color: var(--color-text-muted);
    margin-bottom: 12px;
  }
  
  .mobile-slots {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
  }
  
  .mobile-add-btn {
    width: 100%;
    padding: 14px 20px;
    font-size: 15px;
  }
  
  /* ========== MARQUEE BANNER ========== */
  .marquee-section {
    padding: 12px 0;
  }
  
  .marquee-item {
    padding: 0 16px;
    gap: 12px;
  }
  
  .marquee-item span {
    font-size: 14px;
  }
  
  .marquee-shop-btn {
    padding: 6px 14px;
    font-size: 12px;
  }
  
  /* ========== DUAL BANNERS ========== */
  .dual-banners-grid { 
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 0 16px;
    max-width: 100%;
  }
  
  .banner-card {
    border-radius: var(--radius-lg);
    max-width: 100%;
  }
  
  .banner-card img {
    max-width: 100%;
    height: auto;
  }
  
  .banner-content {
    padding: 20px 16px;
  }
  
  .banner-label {
    font-size: 11px;
  }
  
  .banner-title {
    font-size: 24px;
  }
  
  /* ========== PROMO STRIP ========== */
  .promo-strip {
    flex-direction: column;
    padding: 20px 16px;
    gap: 16px;
    margin: 20px 16px;
    text-align: center;
  }
  
  .promo-strip-text {
    font-size: 18px;
  }
  
  .promo-strip-sub {
    font-size: 13px;
  }
  
  .promo-strip-btn {
    width: 100%;
    justify-content: center;
  }
  
  /* ========== BENEFITS SLIDER ========== */
  .benefits-section {
    padding: 40px 0;
    overflow-x: hidden;
  }
  
  .benefits-label {
    font-size: 11px;
    padding: 0 16px;
  }
  
  .benefits-title {
    font-size: 24px;
    margin-bottom: 28px;
    padding: 0 16px;
  }
  
  .benefit-card { 
    flex: 0 0 calc(85% - 10px);
    min-width: calc(85% - 10px);
  }
  
  .benefit-card-overlay {
    padding: 20px 16px;
  }
  
  .benefit-card-title {
    font-size: 20px;
  }
  
  /* ========== COLLECTION PAGE ========== */
  .collection-hero {
    margin: 16px;
    border-radius: var(--radius-lg);
  }
  
  .collection-hero-image {
    aspect-ratio: 16/7;
  }
  
  .collection-hero-content {
    padding: 24px 20px;
  }
  
  .collection-hero-title {
    font-size: 32px;
    margin-bottom: 16px;
  }
  
  .collection-hero-ribbon {
    top: 20px;
    padding: 8px 0;
  }
  
  /* ========== TRUST BAR ========== */
  .trust-grid { 
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 0 16px;
    max-width: 100%;
  }
  
  .trust-item {
    padding: 16px 12px;
  }
  
  .trust-icon {
    font-size: 28px;
    margin-bottom: 8px;
  }
  
  .trust-item h4 {
    font-size: 14px;
    margin-bottom: 4px;
  }
  
  .trust-item p {
    font-size: 12px;
  }
  
  /* ========== INSTAGRAM GRID ========== */
  .instagram-grid { 
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    max-width: 100%;
  }
  
  /* ========== PAIR CARDS ========== */
  .pair-cards { 
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    max-width: 100%;
  }
  
  .pair-card-img {
    padding: 12px;
  }
  
  .pair-card-info .name {
    font-size: 12px;
  }
  
  .pair-card-info .price {
    font-size: 12px;
  }
  
  /* ========== SLIDER CONTROLS ========== */
  .slider-controls {
    display: none;
  }
  
  .slider-arrow {
    display: none;
  }
  
  .slider-dot {
    width: 8px !important;
    height: 3px;
  }
  
  .slider-dot.active {
    width: 24px !important;
  }
  
  /* ========== BLOG ========== */
  .blog-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 0 16px;
  }
  
  .blog-card-title {
    font-size: 18px;
  }
  
  .blog-card-excerpt {
    font-size: 14px;
  }
  
  /* ========== STICKY ADD TO CART ========== */
  .sticky-atc {
    padding: 12px 16px;
    gap: 12px;
  }
  
  .sticky-atc-product {
    gap: 10px;
  }
  
  .sticky-atc-product img {
    width: 44px;
    height: 44px;
  }
  
  .sticky-atc-btn {
    padding: 12px 20px;
    font-size: 14px;
    white-space: nowrap;
  }
  
  /* ========== CART DRAWER MOBILE OPTIMIZATION ========== */
  .cart-drawer-container {
    max-width: 100% !important;
    width: 100% !important;
  }
  
  .cart-drawer-header {
    padding: 16px !important;
  }
  
  .cart-drawer-header h2 {
    font-size: 22px !important;
  }
  
  .cart-drawer-content {
    padding: 16px !important;
  }
  
  .cart-item {
    grid-template-columns: 60px 1fr auto !important;
    gap: 12px !important;
    position: relative;
  }
  
  .cart-item-image {
    width: 60px !important;
    height: 60px !important;
  }
  
  .cart-item-title {
    font-size: 13px !important;
  }
  
  .cart-item-quantity {
    margin-top: 8px;
  }
  
  .cart-item-remove {
    position: absolute !important;
    top: 0;
    right: 0;
  }
  
  .cart-footer {
    padding: 16px !important;
  }
  
  .cart-collections {
    grid-template-columns: repeat(2, 1fr) !important;
  }
  
  /* ========== ACCORDION ========== */
  .accordion-trigger {
    padding: 14px 0;
    font-size: 15px;
  }
  
  .accordion-content {
    font-size: 14px;
    padding-bottom: 14px;
  }
  
  /* ========== PRODUCT SHARE ========== */
  .product-share {
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .share-icon {
    width: 40px;
    height: 40px;
  }
  
  .need-help-btn {
    width: 100%;
    margin-left: 0;
    margin-top: 8px;
    padding: 10px 16px;
  }
  
  /* ========== PAIR WITH ========== */
  .pair-with {
    margin-top: 24px;
    padding-top: 20px;
  }
  
  .pair-with h4 {
    font-size: 16px;
  }
  
  /* ========== UTILITY CLASSES ========== */
  .mega-menu { 
    min-width: 90vw; 
  }
  
  .hide-on-mobile { 
    display: none !important; 
  }
  
  .show-on-mobile,
  .mobile-only {
    display: block !important;
  }
  
  .desktop-only {
    display: none !important;
  }
  
  /* ========== GLOBAL IMAGE SAFETY ========== */
  .section img {
    max-width: 100%;
    height: auto;
  }
  
  img, svg, video, iframe {
    max-width: 100%;
    height: auto;
  }
  
  /* ========== TOUCH TARGET IMPROVEMENTS ========== */
  button, a[role="button"], .clickable {
    min-height: 44px;
    min-width: 44px;
  }
  
  /* ========== TOUCH SCROLLING ========== */
  .slider-track,
  .benefits-cards,
  .product-thumbnails,
  .filter-tabs,
  .breadcrumb {
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  
  /* Make slider swipable on mobile */
  .slider-wrapper {
    overflow-x: auto;
    overflow-y: hidden;
  }
  
  .slider-track {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    transition: none;
    gap: 16px;
    padding: 0 16px;
  }
  
  .slider-track > * {
    scroll-snap-align: start;
    flex-shrink: 0;
  }
  
  .slider-track::-webkit-scrollbar,
  .benefits-cards::-webkit-scrollbar,
  .product-thumbnails::-webkit-scrollbar,
  .filter-tabs::-webkit-scrollbar,
  .breadcrumb::-webkit-scrollbar {
    display: none;
  }
}

/* =============================================
   LARGE SCREENS (1440px+)
   ============================================= */
@media (min-width: 1440px) {
  :root {
    --container-max: 1400px;
  }
  
  .product-layout {
    gap: 64px;
  }
}

/* =============================================
   EXTRA LARGE SCREENS (1920px+)
   ============================================= */
@media (min-width: 1920px) {
  :root {
    --container-max: 1600px;
  }
  
  .product-layout {
    gap: 80px;
  }
}

/* =============================================
   URGENCY ELEMENTS
   ============================================= */
/* Live Viewers */
.urgency-viewers {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  margin-bottom: 12px;
  color: var(--color-dark);
}

.blinking-dot {
  width: 10px;
  height: 10px;
  background-color: #ff3b30;
  border-radius: 50%;
  display: inline-block;
  animation: blinker 1.5s linear infinite;
}

@keyframes blinker {
  50% { opacity: 0; }
}

/* Stock Bar */
.urgency-stock {
  margin-bottom: 20px;
}

.urgency-stock-text {
  font-size: 14px;
  margin-bottom: 6px;
  font-weight: 600;
  color: #d93025;
}

.urgency-stock-bar-bg {
  width: 100%;
  height: 8px;
  background-color: #f1f3f4;
  border-radius: 4px;
  overflow: hidden;
}

.urgency-stock-bar-fill {
  height: 100%;
  background-color: #d93025;
  border-radius: 4px;
  transition: width 0.5s ease-in-out;
  background-image: linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);
  background-size: 1rem 1rem;
  animation: progress-stripes 1s linear infinite;
}

@keyframes progress-stripes {
  from { background-position: 1rem 0; }
  to { background-position: 0 0; }
}

/* Purchase Toast */
.purchase-toast {
  position: fixed;
  bottom: 20px;
  left: 20px;
  background: white;
  border-radius: var(--radius-md);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  display: flex;
  align-items: center;
  padding: 12px;
  gap: 12px;
  z-index: 1000;
  width: 300px;
  transform: translateY(150%);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.4s ease;
  pointer-events: none;
}

.purchase-toast.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.purchase-toast-img {
  flex-shrink: 0;
}

.purchase-toast-img img {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-sm);
  object-fit: cover;
}

.purchase-toast-content {
  flex-grow: 1;
}

.purchase-toast-name {
  font-size: 13px;
  color: var(--color-dark);
}

.purchase-toast-action {
  font-size: 12px;
  color: var(--color-text);
  margin: 2px 0;
}

.purchase-toast-time {
  font-size: 11px;
  color: var(--color-text-muted);
}

.purchase-toast-close {
  background: none;
  border: none;
  font-size: 20px;
  color: var(--color-text-muted);
  cursor: pointer;
  padding: 0 4px;
  align-self: flex-start;
  line-height: 1;
}

@media (max-width: 768px) {
  .purchase-toast {
    bottom: 90px; /* Sit clearly above the sticky ATC bar */
    left: 12px;
    right: auto;     /* Don't stretch to right edge */
    width: 260px;    /* Fixed compact width */
    padding: 8px 10px;
    gap: 8px;
    border-radius: 10px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.18);
  }
  .purchase-toast-img img {
    width: 36px;
    height: 36px;
    border-radius: 6px;
  }
  .purchase-toast-name {
    font-size: 11px;
  }
  .purchase-toast-action {
    font-size: 11px;
  }
  .purchase-toast-time {
    font-size: 10px;
  }
  .purchase-toast-close {
    font-size: 16px;
    padding: 0 2px;
  }
}

/* Delivery Estimate Box */
.delivery-estimate-box {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--color-card-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  margin-top: 16px;
  margin-bottom: 24px;
}

.delivery-estimate-box svg {
  color: var(--color-dark);
  flex-shrink: 0;
}

.delivery-title {
  font-size: 12px;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.delivery-date {
  font-size: 15px;
  color: var(--color-dark);
}

/* Shipping Progress Bar */
.shipping-progress-wrapper {
  margin-bottom: 24px;
  padding: 16px;
  background: var(--color-card-bg);
  border-radius: var(--radius-sm);
}

.shipping-progress-msg {
  font-size: 14px;
  margin-bottom: 12px;
  text-align: center;
}

.shipping-progress-bar {
  width: 100%;
  height: 8px;
  background: #E0E0E0;
  border-radius: 4px;
  overflow: hidden;
}

.shipping-progress-fill {
  height: 100%;
  background: var(--color-dark);
  border-radius: 4px;
  transition: width 0.5s ease;
}

.shipping-progress-fill.success {
  background: #4CAF50;
}
