/** Shopify CDN: Minification failed

Line 4473:3 Unexpected "="

**/
/* ========================================
   BR BEAUTY & SUPPLIES — SHOPIFY THEME
   Production CSS — v2.0
   ======================================== */

/* ===========================================
   1. CSS VARIABLES
   =========================================== */
:root {
  /* Brand colours — overridden by inline :root in theme.liquid */
  --primary:        #9C7C3C;
  --primary-dark:   #7A5C2E;
  --primary-light:  #FBF7F1;
  --accent:         #2C1810;
  --accent-light:   #6B4423;
  --danger:         #E74C3C;
  --danger-dark:    #C0392B;
  --success:        #27AE60;
  --warning:        #F59E0B;

  /* Surfaces */
  --bg:             #FAFAFA;
  --white:          #FFFFFF;

  /* Text */
  --text:           #1a1a1a;
  --text-muted:     #888888;
  --text-light:     #BBBBBB;

  /* Borders */
  --border:         #F0EBE3;
  --border-hover:   #E0D5C5;

  /* Shadows */
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.06);
  --shadow-md:  0 8px 25px rgba(0,0,0,0.10);
  --shadow-lg:  0 16px 40px rgba(0,0,0,0.12);

  /* Radii */
  --radius-sm:   8px;
  --radius-md:  12px;
  --radius-lg:  16px;
  --radius-xl:  20px;
  --radius-full: 50px;

  /* Typography */
  --font-body:    'Outfit', 'Segoe UI', sans-serif;
  --font-heading: 'Playfair Display', serif;

  /* Motion */
  --transition: all 0.3s ease;

  /* Z-index scale */
  --z-header:       1000;
  --z-sticky-atc:    990;
  --z-mobile-menu:  9998;
  --z-cart-drawer:  9999;
  --z-popup:        9999;
  --z-whatsapp:      900;
  --z-back-to-top:   890;
  --z-social-proof:  800;
}

/* ===========================================
   2. RESET & BASE
   =========================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* NO scroll-behavior: smooth — causes jank on mobile */
html {
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  font-family: var(--font-body);
  cursor: pointer;
}

input,
textarea,
select {
  font-family: var(--font-body);
}

ul {
  list-style: none;
}

/* ===========================================
   3. UTILITIES
   =========================================== */

/* Hidden — true display:none, removes from flow & a11y tree */
.hidden {
  display: none !important;
}

/* Visually hidden but accessible */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -120px;
  left: 20px;
  z-index: 99999;
  background: var(--primary);
  color: #fff;
  padding: 10px 20px;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-weight: 600;
  font-size: 14px;
  transition: top 0.3s ease;
  white-space: nowrap;
}
.skip-link:focus {
  top: 0;
  outline: 2px solid #fff;
  outline-offset: 2px;
}

/* Scroll-reveal */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.scroll-reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.scroll-reveal--left  { transform: translateX(-30px); }
.scroll-reveal--right { transform: translateX(30px); }
.scroll-reveal--left.revealed,
.scroll-reveal--right.revealed { transform: translateX(0); }

.scroll-reveal--delay-1 { transition-delay: 0.1s; }
.scroll-reveal--delay-2 { transition-delay: 0.2s; }
.scroll-reveal--delay-3 { transition-delay: 0.3s; }
.scroll-reveal--delay-4 { transition-delay: 0.4s; }

/* Gradient text */
.gradient-text {
  background: linear-gradient(135deg, var(--primary), var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.gradient-text--warm {
  background: linear-gradient(135deg, #E74C3C, #F59E0B);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Glassmorphism */
.glass {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.25);
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}
.glass--dark {
  background: rgba(44,24,16,0.7);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(156,124,60,0.3);
}

/* Page transition */
.page-transition {
  animation: pageTransition 0.4s ease;
}

/* Lazy-load blur-up */
.lazy-img {
  filter: blur(8px);
  opacity: 0.6;
  transition: filter 0.4s ease, opacity 0.4s ease;
}
.lazy-img.loaded {
  filter: blur(0);
  opacity: 1;
}

/* Card tilt */
.card-tilt {
  transform-style: preserve-3d;
  transition: transform 0.15s ease;
}
.card-tilt:hover {
  transform: perspective(1000px) rotateX(2deg) rotateY(-2deg) translateY(-6px);
}

/* Spinner */
.spinner {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 2px solid rgba(156,124,60,0.2);
  border-top-color: var(--primary);
  border-radius: 50%;
  animation: spinnerRing 0.7s linear infinite;
}
.spinner--white {
  border-color: rgba(255,255,255,0.3);
  border-top-color: #fff;
}
.spinner--lg {
  width: 40px;
  height: 40px;
  border-width: 3px;
}

/* Success checkmark */
.success-checkmark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--success);
}
.success-checkmark svg {
  width: 24px;
  height: 24px;
  stroke: #fff;
  stroke-width: 3;
  fill: none;
  stroke-dasharray: 50;
  animation: checkmark 0.5s ease forwards;
}

/* Button ripple */
.btn-ripple {
  position: absolute;
  width: 10px;
  height: 10px;
  background: rgba(255,255,255,0.4);
  border-radius: 50%;
  transform: scale(0);
  animation: ripple 0.6s linear;
  pointer-events: none;
  margin-left: -5px;
  margin-top: -5px;
}

/* Badge bounce */
.badge-bounce {
  animation: badgeBounce 0.5s ease;
}

/* Verified badge */
.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #ECFDF5;
  color: var(--success);
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 20px;
  border: 1px solid #A7F3D0;
  margin-top: 6px;
}
.verified-badge::before {
  content: '✓';
  font-size: 10px;
}

/* Skeleton loading */
.skeleton {
  background: linear-gradient(90deg, #f0e8d8 25%, #e8d8c5 50%, #f0e8d8 75%);
  background-size: 400px 100%;
  animation: skeletonShimmer 1.4s ease infinite;
  border-radius: var(--radius-sm);
}
.skeleton-text       { height: 14px; margin-bottom: 8px; border-radius: 4px; }
.skeleton-text--wide   { width: 80%; }
.skeleton-text--medium { width: 60%; }
.skeleton-text--short  { width: 40%; }
.skeleton-image { width: 100%; height: 220px; border-radius: var(--radius-md); }
.skeleton-btn   { height: 40px; border-radius: var(--radius-full); margin-top: 12px; }
.skeleton-card {
  background: var(--white);
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--border);
  padding-bottom: 16px;
}
.skeleton-card .skeleton-image { border-radius: 0; }
.skeleton-card-body { padding: 14px 16px; }

/* ===========================================
   4. ANIMATIONS & KEYFRAMES
   =========================================== */
@keyframes fadeIn        { from { opacity: 0; }                                      to { opacity: 1; } }
@keyframes fadeOut       { from { opacity: 1; }                                      to { opacity: 0; } }
@keyframes slideUp       { from { opacity: 0; transform: translateY(30px); }         to { opacity: 1; transform: translateY(0); } }
@keyframes slideDown     { from { opacity: 0; transform: translateY(-20px); }        to { opacity: 1; transform: translateY(0); } }
@keyframes slideRight    { from { opacity: 0; transform: translateX(30px); }         to { opacity: 1; transform: translateX(0); } }
@keyframes slideLeft     { from { opacity: 0; transform: translateX(-30px); }        to { opacity: 1; transform: translateX(0); } }
@keyframes slideInLeft   { from { opacity: 0; transform: translateX(-60px); }        to { opacity: 1; transform: translateX(0); } }
@keyframes slideInRight  { from { opacity: 0; transform: translateX(60px); }         to { opacity: 1; transform: translateX(0); } }
@keyframes slideInUp     { from { opacity: 0; transform: translateY(40px); }         to { opacity: 1; transform: translateY(0); } }
@keyframes slideOutLeft  { from { opacity: 1; transform: translateX(0); }            to { opacity: 0; transform: translateX(-60px); } }
@keyframes pulse         { 0%, 100% { transform: scale(1); }   50% { transform: scale(1.05); } }
@keyframes bounce        { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }
@keyframes cartPop       { 0% { transform: scale(1); } 50% { transform: scale(1.3); } 100% { transform: scale(1); } }
@keyframes shimmer       { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }
@keyframes spin          { 0% { transform: rotate(0deg); }    100% { transform: rotate(360deg); } }
@keyframes spinnerRing   { 0% { transform: rotate(0deg); }    100% { transform: rotate(360deg); } }
@keyframes countPulse    { 0%, 100% { transform: scale(1); }  50% { transform: scale(1.1); } }
@keyframes ripple        { 0% { transform: scale(0); opacity: 0.6; } 100% { transform: scale(4); opacity: 0; } }
@keyframes tilt          { 0%, 100% { transform: rotate(-1deg); } 50% { transform: rotate(1deg); } }
@keyframes checkmark     { 0% { stroke-dashoffset: 50; opacity: 0; } 100% { stroke-dashoffset: 0; opacity: 1; } }
@keyframes badgeBounce   { 0%, 100% { transform: scale(1); } 30% { transform: scale(1.4); } 60% { transform: scale(0.9); } }
@keyframes blurUp        { from { filter: blur(12px); opacity: 0; transform: scale(1.02); } to { filter: blur(0); opacity: 1; transform: scale(1); } }
@keyframes glowPulse     { 0%, 100% { box-shadow: 0 0 20px rgba(156,124,60,0.3); } 50% { box-shadow: 0 0 40px rgba(156,124,60,0.7); } }
@keyframes toastSlideIn  { from { opacity: 0; transform: translateX(-120%); } to { opacity: 1; transform: translateX(0); } }
@keyframes toastSlideOut { from { opacity: 1; transform: translateX(0); }     to { opacity: 0; transform: translateX(-120%); } }
@keyframes stickySlideUp { from { transform: translateY(100%); opacity: 0; }  to { transform: translateY(0); opacity: 1; } }
@keyframes pageTransition { from { opacity: 0; transform: translateY(8px); }  to { opacity: 1; transform: translateY(0); } }
@keyframes skeletonShimmer { 0% { background-position: -400px 0; } 100% { background-position: 400px 0; } }

.animate-fade-in   { animation: fadeIn 0.5s ease; }
.animate-slide-up  { animation: slideUp 0.5s ease; }
.animate-slide-down { animation: slideDown 0.4s ease; }

/* ===========================================
   5. LAYOUT — container, section
   =========================================== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  max-width: 1200px;
  margin: 50px auto;
  padding: 0 20px;
}

.section-title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  color: var(--accent);
}

.section-subtitle {
  text-align: center;
  color: var(--text-muted);
  margin-top: 8px;
  margin-bottom: 28px;
}

/* Buttons */
.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  border: none;
  padding: 12px 28px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  position: relative;
  overflow: hidden;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(156,124,60,0.4);
}
.btn-primary:active { transform: translateY(0); }

.btn-primary--danger {
  background: linear-gradient(135deg, var(--danger), var(--danger-dark));
}
.btn-primary--danger:hover {
  box-shadow: 0 8px 25px rgba(231,76,60,0.4);
}
.btn-primary--large {
  padding: 14px 36px;
  font-size: 15px;
}
.btn-primary--full { width: 100%; }

.btn-secondary {
  background: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  padding: 10px 24px;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: var(--transition);
}
.btn-secondary:hover {
  background: var(--primary);
  color: #fff;
}

/* Focus states */
*:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
  border-radius: 4px;
}
button:focus-visible,
a:focus-visible { outline: 2px solid var(--primary); outline-offset: 3px; }
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 0;
  border-radius: var(--radius-sm);
}
.btn-primary:focus-visible { box-shadow: 0 0 0 4px rgba(156,124,60,0.3); }

/* ===========================================
   6. ANNOUNCEMENT BAR
   =========================================== */
.announcement-bar {
  background: linear-gradient(90deg, var(--accent), var(--accent-light), var(--primary));
  color: #fff;
  text-align: center;
  padding: 10px 16px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  position: relative;
  z-index: 1001;
}
.announcement-bar .coupon-tag {
  background: rgba(255,255,255,0.2);
  padding: 2px 10px;
  border-radius: 20px;
  font-weight: 700;
  margin-left: 4px;
}
.announcement-bar .bounce-icon {
  animation: bounce 2s infinite;
  display: inline-block;
}

/* ===========================================
   7. HEADER & NAVIGATION
   =========================================== */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: var(--z-header);
  transition: box-shadow 0.3s;
}
.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.header-logo-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 16px;
  flex-shrink: 0;
}
.header-logo-text h1 {
  font-weight: 700;
  font-size: 18px;
  color: var(--accent);
  line-height: 1.1;
}
.header-logo-text span {
  font-size: 10px;
  color: var(--primary);
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 600;
}

.header-nav {
  display: flex;
  gap: 28px;
  font-size: 13px;
  font-weight: 500;
}
.header-nav a {
  color: #444;
  transition: color 0.2s;
  position: relative;
}
.header-nav a:hover { color: var(--primary); }
.header-nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s;
}
.header-nav a:hover::after { width: 100%; }

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.header-actions button {
  background: none;
  border: none;
  font-size: 20px;
  position: relative;
  padding: 4px;
  transition: transform 0.2s;
}
.header-actions button:hover { transform: scale(1.1); }

.cart-count {
  position: absolute;
  top: -6px;
  right: -8px;
  background: var(--danger);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cart-count.pop { animation: cartPop 0.5s ease; }

/* ===========================================
   8. MOBILE MENU
   =========================================== */
.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  padding: 4px;
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: var(--z-mobile-menu);
  display: none;
}
.mobile-menu-overlay.open { display: block; }

.mobile-menu-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(3px);
}

.mobile-menu-panel {
  position: absolute;
  top: 0;
  left: 0;
  width: 300px;
  max-width: 85vw;
  height: 100vh;
  background: var(--white);
  overflow-y: auto;
  animation: slideInLeft 0.35s ease;
  box-shadow: 8px 0 30px rgba(0,0,0,0.15);
  display: flex;
  flex-direction: column;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 20px;
  border-bottom: 1px solid var(--border);
}
.mobile-menu-logo {
  font-weight: 800;
  font-size: 18px;
  color: var(--accent);
}
.mobile-menu-close {
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  color: #999;
  padding: 4px;
}

.mobile-menu-nav {
  padding: 16px 0;
  flex: 1;
}
.mobile-menu-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 20px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text);
  border-bottom: 1px solid var(--border);
  transition: background 0.2s, color 0.2s;
}
.mobile-menu-nav a:hover {
  background: var(--primary-light);
  color: var(--primary);
}

.mobile-menu-footer {
  padding: 20px;
  border-top: 1px solid var(--border);
  background: var(--primary-light);
}
.mobile-social {
  display: flex;
  gap: 10px;
}
.mobile-social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition);
}
.mobile-social-icon:hover {
  background: var(--primary-dark);
  transform: scale(1.1);
}

/* ===========================================
   9. HERO CAROUSEL
   =========================================== */
.hero-section {
  position: relative;
  overflow: hidden;
  height: 440px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  padding: 40px 20px;
  text-align: center;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 0.8s ease, transform 0.8s ease;
  pointer-events: none;
}
.hero-slide.active {
  opacity: 1;
  transform: scale(1);
  pointer-events: all;
}

.hero-slide--1 { background: linear-gradient(135deg, #2C1810 0%, #6B4423 50%, #9C7C3C 100%); }
.hero-slide--2 { background: linear-gradient(135deg, #1B2D3D 0%, #2C5F6F 50%, #44AD8E 100%); }
.hero-slide--3 { background: linear-gradient(135deg, #3D1B2D 0%, #6F2C5B 50%, #AD448E 100%); }

.hero-title {
  font-family: var(--font-heading);
  font-size: 44px;
  color: #fff;
  font-weight: 700;
  line-height: 1.15;
  max-width: 600px;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}
.hero-subtitle {
  color: rgba(255,255,255,0.85);
  font-size: 16px;
  max-width: 500px;
  line-height: 1.5;
}

.hero-dots {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 5;
}
.hero-dot {
  width: 8px;
  height: 8px;
  border-radius: 4px;
  background: rgba(255,255,255,0.4);
  cursor: pointer;
  transition: var(--transition);
  border: none;
  padding: 0;
}
.hero-dot.active {
  width: 24px;
  background: #fff;
}

/* ===========================================
   10. TRUST BADGES
   =========================================== */
.trust-badges {
  max-width: 1200px;
  margin: -30px auto 0;
  padding: 0 20px;
  position: relative;
  z-index: 10;
}
.trust-badges-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.trust-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  transition: var(--transition);
}
.trust-badge:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.trust-badge-icon { font-size: 26px; flex-shrink: 0; }
.trust-badge-title {
  font-weight: 600;
  font-size: 13px;
  color: var(--accent);
}
.trust-badge-sub {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ===========================================
   11. FLASH SALE & COUNTDOWN
   =========================================== */
.flash-sale {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
}
.flash-sale-inner {
  background: linear-gradient(135deg, #FFF5F5, #FFF0F6);
  border: 2px solid #FECACA;
  border-radius: var(--radius-lg);
  padding: 24px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}
.flash-sale-badge {
  background: var(--danger);
  color: #fff;
  padding: 3px 12px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.flash-sale-title {
  font-family: var(--font-heading);
  font-size: 22px;
  color: #991B1B;
}
.flash-sale-sub {
  color: #7F1D1D;
  font-size: 13px;
  margin-top: 4px;
}
.flash-sale-timer-label {
  font-size: 11px;
  color: #991B1B;
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
}

.countdown {
  display: flex;
  gap: 6px;
  justify-content: center;
}---------------
.countdown-block {
  background: var(--primary, #9C7C3C);
  color: #fff;
  border-radius: 6px;
  padding: 6px 10px;
  min-width: 42px;
  text-align: center;
}
.countdown-number {
  font-size: 18px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}
.countdown-label {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.6;
}

/* ===========================================
   12. CATEGORIES GRID
   =========================================== */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.category-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  height: 200px;
  transition: transform 0.4s ease;
}
.category-card:hover { transform: translateY(-6px); }
.category-card:hover img { transform: scale(1.1); }
.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.category-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
}
.category-card-content {
  position: absolute;
  bottom: 16px;
  left: 16px;
}
.category-card-name {
  color: #fff;
  font-weight: 700;
  font-size: 18px;
}
.category-card-count {
  color: rgba(255,255,255,0.7);
  font-size: 12px;
}

/* ===========================================
   13. TABS
   =========================================== */
.tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 20px 0 30px;
  flex-wrap: wrap;
}
.tab-btn {
  padding: 10px 24px;
  border-radius: var(--radius-full);
  border: 1.5px solid var(--border-hover);
  background: var(--white);
  cursor: pointer;
  font-weight: 500;
  font-size: 13px;
  transition: var(--transition);
  color: #666;
}
.tab-btn:hover { border-color: var(--primary); color: var(--primary); }
.tab-btn.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
}

/* ===========================================
   14. PRODUCT CARD
   ALL styles: grid, card, badges, wishlist,
   image swap, sold-out, savings, ATC states
   =========================================== */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 20px;
}

/* Base card */
.product-card {
  background: var(--white);
  border-radius: 14px;
  overflow: visible; /* allow wishlist btn shadow */
  border: 1px solid var(--border);
  position: relative;
  transition: var(--transition);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

/* Sold-out variant */
.product-card--sold-out { opacity: 0.85; }
.product-card--sold-out:hover { transform: none; }

/* ---------- BADGES ---------- */
.pc-badges {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.pc-badge {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.6px;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  display: inline-block;
  line-height: 1.4;
}
.pc-badge--off {
  background: linear-gradient(135deg, var(--danger), var(--danger-dark));
  color: #fff;
}
/* Legacy .badge-off inside .pc-badges resets absolute positioning */
.pc-badges .badge-off { position: static; }

.pc-badge--new {
  background: linear-gradient(135deg, #8B5CF6, #6D28D9);
  color: #fff;
}

/* ---------- WISHLIST BUTTON ---------- */
.pc-wishlist {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 4;
  background: rgba(255,255,255,0.92);
  border: none;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  padding: 0;
}
.pc-wishlist:hover {
  background: #fff;
  transform: scale(1.1);
}
.pc-wishlist--active .pc-wishlist__icon--empty  { display: none !important; }
.pc-wishlist--active .pc-wishlist__icon--filled { display: block !important; color: var(--danger); }
.pc-wishlist__icon--filled { color: var(--danger); }

/* ---------- IMAGE AREA ---------- */
.product-card-image,
.pc-image-wrap {
  height: 220px;
  overflow: hidden;
  background: var(--primary-light);
  position: relative;
  border-radius: 14px 14px 0 0;
  display: block;
}

/* Primary / secondary image swap */
.pc-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.4s ease, transform 0.5s ease;
}
.pc-img--primary  { opacity: 1; position: relative; }
.pc-img--secondary {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.product-card:hover .pc-img--primary   { opacity: 0; }
.product-card:hover .pc-img--secondary { opacity: 1; }

/* Legacy image helpers */
.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
.product-card:hover .product-card-image img { transform: scale(1.08); }

/* Image-swap compat layer (old product-card-secondary-img) */
.product-card-image-wrapper { position: relative; }
.product-card-secondary-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.4s ease;
}
.product-card:hover .product-card-secondary-img { opacity: 1; }
.product-card:hover .product-card-image > img:first-child { opacity: 0; }

/* Image placeholder */
.pc-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  color: var(--text-light);
}

/* ---------- SOLD-OUT OVERLAY ---------- */
.pc-sold-out-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}
.pc-sold-out-overlay__label {
  background: rgba(0,0,0,0.65);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 8px 18px;
  border-radius: var(--radius-full);
}

/* Quick view bar */
.product-card-quick-view {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(44,24,16,0.9);
  color: #fff;
  text-align: center;
  padding: 10px;
  font-size: 12px;
  font-weight: 600;
  transform: translateY(100%);
  transition: transform 0.3s;
}
.product-card:hover .product-card-quick-view { transform: translateY(0); }

/* ---------- CARD BODY ---------- */
.product-card-body {
  padding: 14px 16px 16px;
}

.product-card-stars {
  display: flex;
  align-items: center;
  gap: 2px;
}
.star       { color: var(--warning); font-size: 13px; }
.star-count { font-size: 11px; color: #9CA3AF; margin-left: 4px; }

.product-card-title {
  font-weight: 600;
  font-size: 14px;
  margin-top: 6px;
  line-height: 1.3;
  min-height: 36px;
  color: var(--accent);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card-prices {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 8px;
}
.price-current {
  font-weight: 800;
  font-size: 20px;
  color: var(--primary);
}
.price-old {
  text-decoration: line-through;
  color: var(--text-light);
  font-size: 13px;
}

/* ---------- SAVINGS BADGE ---------- */
.pc-savings,
.product-card .savings-badge {
  font-size: 11px;
  font-weight: 600;
  color: var(--success);
  background: #F0FFF4;
  border-radius: var(--radius-full);
  display: inline-block;
  padding: 2px 10px;
  margin-top: 4px;
  border: 1px solid #A7F3D0;
}

.product-card-installment {
  font-size: 11px;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ---------- ATC BUTTON STATES ---------- */
.product-card .btn-primary {
  width: 100%;
  margin-top: 12px;
  padding: 11px 16px;
}

.pc-atc-btn {
  margin-top: 12px;
  padding: 11px 16px;
  position: relative;
  overflow: hidden;
}
.pc-atc-btn--loading { pointer-events: none; }
.pc-atc-btn--success {
  background: linear-gradient(135deg, var(--success), #1E8449) !important;
}
.pc-atc-btn--disabled {
  background: #ccc !important;
  box-shadow: none !important;
  cursor: not-allowed;
}
.pc-atc-btn--disabled:hover {
  transform: none !important;
  box-shadow: none !important;
}

/* ===========================================
   15. PRODUCT PAGE
   =========================================== */
.product-page-layout {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: start;
}

.product-gallery {
  position: sticky;
  top: 100px;
}
.product-gallery-main {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--primary-light);
  border: 1px solid var(--border);
  margin-bottom: 12px;
  cursor: zoom-in;
}
.product-gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-gallery-main:hover img { transform: scale(1.04); }

.product-gallery-thumbs {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
}
.product-thumb {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid var(--border);
  cursor: pointer;
  transition: border-color 0.2s;
  background: var(--primary-light);
}
.product-thumb img { width: 100%; height: 100%; object-fit: cover; }
.product-thumb.active,
.product-thumb:hover { border-color: var(--primary); }

.product-info-title {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1.25;
  margin-bottom: 12px;
}
.product-info-reviews {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.product-info-price {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 6px;
}
.product-info-price .price-current { font-size: 32px; }
.product-info-installment {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.product-info-installment strong { color: var(--success); }

.product-variants { margin-bottom: 20px; }
.product-variants-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 10px;
}
.variant-swatches { display: flex; flex-wrap: wrap; gap: 8px; }
.variant-swatch {
  padding: 8px 16px;
  border: 1.5px solid var(--border-hover);
  border-radius: 8px;
  font-size: 13px;
  cursor: pointer;
  transition: var(--transition);
  background: var(--white);
  color: #555;
}
.variant-swatch:hover  { border-color: var(--primary); color: var(--primary); }
.variant-swatch.active { background: var(--primary); border-color: var(--primary); color: #fff; font-weight: 600; }
.variant-swatch.unavailable { opacity: 0.4; cursor: not-allowed; text-decoration: line-through; }

.variant-color-swatch {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 2px solid var(--border);
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
  padding: 0;
}
.variant-color-swatch.active,
.variant-color-swatch:hover {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(156,124,60,0.2);
}

.product-add-row {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
  align-items: center;
}
.qty-selector {
  display: flex;
  align-items: center;
  border: 1.5px solid var(--border-hover);
  border-radius: var(--radius-sm);
  overflow: hidden;
  flex-shrink: 0;
}
.qty-selector button {
  width: 38px;
  height: 46px;
  background: var(--primary-light);
  border: none;
  font-size: 18px;
  cursor: pointer;
  color: var(--primary);
  transition: background 0.2s;
}
.qty-selector button:hover { background: #EDE0F5; }
.qty-selector input {
  width: 50px;
  height: 46px;
  border: none;
  border-left: 1.5px solid var(--border-hover);
  border-right: 1.5px solid var(--border-hover);
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  outline: none;
  color: var(--accent);
}

.buy-now-btn {
  flex: 1;
  padding: 14px 20px;
  background: var(--accent);
  color: #fff;
  border: none;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.buy-now-btn:hover {
  background: #1A1208;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(44,24,16,0.4);
}

.urgency-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #FFF5F5;
  border: 1px solid #FECACA;
  border-radius: 10px;
  padding: 10px 14px;
  margin-bottom: 14px;
  font-size: 13px;
  color: #991B1B;
  font-weight: 500;
}
.urgency-bar-icon { font-size: 18px; animation: bounce 1.5s infinite; }
.urgency-count { font-weight: 800; color: var(--danger); }

.stock-indicator {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  font-size: 13px;
}
.stock-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.stock-dot--in  { background: var(--success); animation: pulse 2s infinite; }
.stock-dot--low { background: var(--warning); animation: pulse 1.5s infinite; }
.stock-dot--out { background: var(--danger); }
.stock-text--in  { color: var(--success); font-weight: 600; }
.stock-text--low { color: var(--warning); font-weight: 600; }
.stock-text--out { color: var(--danger);  font-weight: 600; }

.quantity-discounts {
  margin-bottom: 20px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.quantity-discounts-title {
  background: var(--primary-light);
  padding: 10px 14px;
  font-weight: 700;
  font-size: 12px;
  color: var(--primary);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.quantity-discount-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 14px;
  border-top: 1px solid var(--border);
  cursor: pointer;
  transition: background 0.2s;
}
.quantity-discount-row:hover { background: var(--primary-light); }
.quantity-discount-row.active { background: var(--primary-light); border-left: 3px solid var(--primary); }
.qd-qty   { font-size: 13px; color: var(--accent); font-weight: 600; }
.qd-price { font-size: 13px; font-weight: 700; color: var(--primary); }
.qd-save  { font-size: 11px; background: var(--danger); color: #fff; padding: 2px 7px; border-radius: 10px; font-weight: 700; }

.share-buttons {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.share-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.share-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1px solid var(--border-hover);
  background: var(--white);
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: #555;
}
.share-btn:hover { border-color: var(--primary); color: var(--primary); transform: translateY(-2px); }

.product-accordion {
  margin-top: 24px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.product-accordion-item { border-bottom: 1px solid var(--border); }
.product-accordion-item:last-child { border-bottom: none; }
.product-accordion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 18px;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  color: var(--accent);
  user-select: none;
  transition: background 0.2s;
  background: var(--white);
}
.product-accordion-header:hover { background: var(--primary-light); }
.product-accordion-header.open  { background: var(--primary-light); color: var(--primary); }
.product-accordion-icon { font-size: 18px; transition: transform 0.3s; color: var(--primary); }
.product-accordion-header.open .product-accordion-icon { transform: rotate(45deg); }
.product-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s ease;
  padding: 0 18px;
}
.product-accordion-body.open { max-height: 400px; padding: 14px 18px 18px; }
.product-accordion-body p,
.product-accordion-body ul { font-size: 13px; color: #666; line-height: 1.75; }
.product-accordion-body ul { padding-left: 18px; list-style: disc; }

/* ===========================================
   16. CART DRAWER
   =========================================== */
.cart-overlay {
  position: fixed;
  inset: 0;
  z-index: var(--z-cart-drawer);
}
.cart-overlay.hidden { display: none; }

.cart-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(3px);
}

.cart-drawer {
  position: absolute;
  top: 0;
  right: 0;
  width: 420px;
  max-width: 95vw;
  height: 100vh;
  background: var(--white);
  overflow-y: auto;
  animation: slideLeft 0.35s ease;
  box-shadow: -8px 0 30px rgba(0,0,0,0.15);
}

.cart-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cart-header h3 { font-weight: 700; font-size: 18px; color: var(--accent); }
.cart-close {
  background: none;
  border: none;
  font-size: 22px;
  color: #999;
  cursor: pointer;
}

.cart-body { padding: 16px 24px; }

.cart-empty { padding: 40px 20px; text-align: center; }
.cart-empty-icon { font-size: 48px; margin-bottom: 12px; }
.cart-empty p { color: var(--text-muted); }

.cart-item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid #F5F3F7;
  align-items: center;
}
.cart-item-image {
  width: 64px;
  height: 64px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--primary-light);
}
.cart-item-image img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-info { flex: 1; }
.cart-item-name { font-weight: 600; font-size: 13px; color: var(--accent); line-height: 1.3; }
.cart-item-price { font-weight: 700; color: var(--primary); margin-top: 4px; font-size: 15px; }

.cart-qty {
  display: flex;
  align-items: center;
  gap: 8px;
}
.cart-qty button {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid #ddd;
  background: var(--white);
  cursor: pointer;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.cart-qty button:hover { border-color: var(--primary); color: var(--primary); }
.cart-qty span { font-weight: 600; min-width: 16px; text-align: center; }

.cart-remove {
  background: none;
  border: none;
  color: #ccc;
  cursor: pointer;
  font-size: 16px;
  transition: color 0.2s;
}
.cart-remove:hover { color: var(--danger); }

/* Reservation timer */
.cart-reservation-timer {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #FFF9F0;
  border: 1px solid #FDE68A;
  border-radius: 10px;
  padding: 10px 14px;
  margin-bottom: 14px;
  font-size: 12px;
  color: #92400E;
}
.cart-reservation-timer-icon { font-size: 16px; animation: bounce 1.5s infinite; }
.cart-reservation-time { font-weight: 700; font-size: 14px; color: var(--danger); }

/* Security badges */
.cart-security-badges {
  display: flex;
  gap: 8px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 14px 0;
}
.security-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--primary-light);
  padding: 4px 10px;
  border-radius: 20px;
  border: 1px solid var(--border);
}
.security-badge-icon { font-size: 12px; }

/* Express checkout */
.cart-express-checkout {
  margin: 16px 0;
  padding: 16px;
  background: var(--primary-light);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
}
.cart-express-checkout-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-muted);
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 10px;
}
.cart-express-btns { display: flex; gap: 8px; }
.cart-express-btn {
  flex: 1;
  padding: 10px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  font-weight: 700;
  font-size: 13px;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-family: var(--font-body);
}
.cart-express-btn--pix   { background: #32BCAD; color: #fff; }
.cart-express-btn--pix:hover { background: #2AA99B; }
.cart-express-btn--apple { background: #000; color: #fff; }
.cart-express-btn--apple:hover { background: #222; }

/* Coupon */
.cart-coupon {
  margin: 16px 0;
  display: flex;
  gap: 8px;
}
.cart-coupon input {
  flex: 1;
  padding: 10px 14px;
  border: 1.5px solid var(--border-hover);
  border-radius: 10px;
  font-size: 13px;
  outline: none;
}
.cart-coupon input:focus { border-color: var(--primary); }

/* Totals */
.cart-totals {
  border-top: 2px solid var(--border);
  padding-top: 16px;
  margin-top: 8px;
}
.cart-total-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 6px;
  font-size: 13px;
  color: var(--text-muted);
}
.cart-total-row--discount { color: var(--success); }
.cart-total-row--free     { color: var(--success); font-weight: 600; }
.cart-total-final {
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid #eee;
}
.cart-total-final-label { font-weight: 700; font-size: 16px; color: var(--accent); }
.cart-total-final-value { font-weight: 800; font-size: 20px; color: var(--primary); }

.cart-payment-icons {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin: 16px 0;
  flex-wrap: wrap;
}
.cart-payment-tag {
  background: var(--primary-light);
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 600;
  color: #666;
}
.cart-shipping-note {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-top: 14px;
  font-size: 12px;
  color: var(--text-muted);
}

/* Free shipping progress */
.shipping-progress {
  margin: 12px 0;
  padding: 12px 16px;
  background: #F0FFF4;
  border-radius: 10px;
  border: 1px solid #C6F6D5;
}
.shipping-progress-text {
  font-size: 12px;
  color: #276749;
  font-weight: 500;
  margin-bottom: 8px;
  text-align: center;
}
.shipping-progress-bar {
  height: 6px;
  background: #C6F6D5;
  border-radius: 3px;
  overflow: hidden;
}
.shipping-progress-fill {
  height: 100%;
  background: var(--success);
  border-radius: 3px;
  transition: width 0.5s ease;
}

/* Milestone marker */
.milestone-marker {
  position: relative;
  text-align: center;
  margin: 8px 0;
}
.milestone-marker::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--border);
}
.milestone-marker span {
  position: relative;
  background: var(--white);
  padding: 0 10px;
  font-size: 11px;
  font-weight: 700;
  color: var(--success);
}

/* ===========================================
   17. CART PAGE
   =========================================== */
.cart-page-layout {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 30px;
  align-items: start;
}

.cart-sidebar {
  position: sticky;
  top: 100px;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.cart-sidebar-title { font-weight: 700; font-size: 18px; color: var(--accent); margin-bottom: 20px; }

.cart-item-enhanced {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  align-items: flex-start;
}
.cart-item-enhanced-image {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--primary-light);
}
.cart-item-enhanced-image img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-enhanced-info { flex: 1; }
.cart-item-enhanced-name    { font-weight: 600; font-size: 14px; color: var(--accent); line-height: 1.3; margin-bottom: 4px; }
.cart-item-enhanced-variant { font-size: 12px; color: var(--text-muted); margin-bottom: 8px; }
.cart-item-enhanced-bottom  { display: flex; align-items: center; justify-content: space-between; }
.cart-item-enhanced-price   { font-weight: 800; font-size: 16px; color: var(--primary); }

/* Cart recommendations */
.cart-recommendations {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.cart-recommendations-title { font-weight: 700; font-size: 14px; color: var(--accent); margin-bottom: 14px; }
.cart-rec-scroll { display: flex; gap: 12px; overflow-x: auto; padding-bottom: 8px; }
.cart-rec-scroll::-webkit-scrollbar { display: none; }
.cart-rec-scroll { -ms-overflow-style: none; scrollbar-width: none; }
.cart-rec-item {
  min-width: 130px;
  flex-shrink: 0;
  background: var(--primary-light);
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border);
  cursor: pointer;
  transition: var(--transition);
}
.cart-rec-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.cart-rec-item-image { height: 100px; overflow: hidden; }
.cart-rec-item-image img { width: 100%; height: 100%; object-fit: cover; }
.cart-rec-item-body { padding: 8px; }
.cart-rec-item-name  { font-size: 11px; font-weight: 600; color: var(--accent); line-height: 1.3; margin-bottom: 4px; }
.cart-rec-item-price { font-size: 12px; font-weight: 700; color: var(--primary); }

/* ===========================================
   18. COLLECTION PAGE
   =========================================== */
.collection-banner {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  padding: 50px 20px;
  text-align: center;
  color: #fff;
}
.collection-banner-title {
  font-family: var(--font-heading);
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 8px;
}
.collection-banner-desc { font-size: 15px; opacity: 0.8; max-width: 500px; margin: 0 auto; }

.collection-layout {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 30px;
  align-items: start;
}
.collection-sidebar { position: sticky; top: 100px; }

.filter-group { margin-bottom: 24px; }
.filter-group-title {
  font-weight: 700;
  font-size: 13px;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}
.filter-option {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
  font-size: 13px;
  color: #555;
  cursor: pointer;
  transition: color 0.2s;
}
.filter-option:hover { color: var(--primary); }
.filter-option input[type="checkbox"] { accent-color: var(--primary); }

.collection-sort {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}
.collection-sort select {
  padding: 8px 14px;
  border: 1.5px solid var(--border-hover);
  border-radius: var(--radius-sm);
  font-size: 13px;
  outline: none;
  background: var(--white);
}
.collection-sort select:focus { border-color: var(--primary); }

/* ===========================================
   19. UPSELL / BUNDLE
   =========================================== */
.upsell-box {
  margin: 20px 0;
  padding: 16px;
  background: #FFF9F0;
  border-radius: var(--radius-md);
  border: 1px solid #FDE68A;
}
.upsell-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.upsell-header-icon { font-size: 18px; }
.upsell-header-text { font-weight: 700; font-size: 13px; color: #92400E; }

.upsell-item {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 10px 0;
  border-top: 1px solid #FDE68A;
}
.upsell-item-image {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--primary-light);
}
.upsell-item-image img { width: 100%; height: 100%; object-fit: cover; }
.upsell-item-info { flex: 1; }
.upsell-item-name  { font-weight: 500; font-size: 12px; color: var(--accent); line-height: 1.3; }
.upsell-item-price { font-weight: 700; color: var(--primary); font-size: 13px; }
.upsell-add-btn {
  background: var(--primary);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  font-family: var(--font-body);
  transition: var(--transition);
}
.upsell-add-btn:hover { background: var(--primary-dark); }

/* Bundle */
.bundle-section {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}
.bundle-inner {
  background: linear-gradient(135deg, #1A1208, #2C1810);
  border-radius: var(--radius-xl);
  padding: 40px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.bundle-inner::before {
  content: '';
  position: absolute;
  top: -60px;
  right: -60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(156,124,60,0.2);
  pointer-events: none;
}
.bundle-inner::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: -40px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(156,124,60,0.1);
  pointer-events: none;
}
.bundle-header { text-align: center; margin-bottom: 32px; }
.bundle-tag {
  display: inline-block;
  background: var(--danger);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 10px;
}
.bundle-title    { font-family: var(--font-heading); font-size: 32px; color: #fff; margin-bottom: 6px; }
.bundle-subtitle { color: rgba(255,255,255,0.65); font-size: 14px; }

.bundle-products {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}
.bundle-product-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius-md);
  padding: 16px;
  min-width: 140px;
  transition: background 0.3s;
}
.bundle-product-item:hover { background: rgba(255,255,255,0.12); }
.bundle-product-image {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(255,255,255,0.1);
}
.bundle-product-image img { width: 100%; height: 100%; object-fit: cover; }
.bundle-product-name  { font-size: 12px; font-weight: 600; text-align: center; color: rgba(255,255,255,0.9); line-height: 1.3; }
.bundle-product-price { font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.6); text-decoration: line-through; }
.bundle-plus { font-size: 26px; font-weight: 300; color: rgba(255,255,255,0.4); flex-shrink: 0; }

.bundle-pricing {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}
.bundle-original-price { font-size: 20px; color: rgba(255,255,255,0.4); text-decoration: line-through; }
.bundle-sale-price     { font-size: 42px; font-weight: 800; color: #fff; line-height: 1; }
.bundle-savings {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(39,174,96,0.2);
  border: 1px solid rgba(39,174,96,0.4);
  color: #6EE7B7;
  font-size: 14px;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 20px;
}
.bundle-cta { text-align: center; position: relative; z-index: 1; }
.bundle-cta .btn-primary {
  padding: 16px 48px;
  font-size: 16px;
  background: linear-gradient(135deg, var(--primary), var(--accent-light));
  box-shadow: 0 8px 30px rgba(156,124,60,0.5);
}
.bundle-cta .btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(156,124,60,0.7);
}
.bundle-guarantee { text-align: center; margin-top: 12px; font-size: 12px; color: rgba(255,255,255,0.45); }

/* ===========================================
   20. TESTIMONIALS
   =========================================== */
.testimonials-section {
  background: linear-gradient(135deg, var(--primary-light) 0%, #fff 60%, #F5F0FC 100%);
  padding: 70px 20px;
}
.testimonials-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.testimonial-carousel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 40px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform 0.4s ease, box-shadow 0.4s ease, background 0.3s ease;
  position: relative;
  overflow: hidden;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: -10px;
  left: 18px;
  font-size: 100px;
  font-family: var(--font-heading);
  color: var(--primary);
  opacity: 0.08;
  line-height: 1;
  pointer-events: none;
}
.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(156,124,60,0.15);
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-color: rgba(156,124,60,0.2);
}
.testimonial-stars { display: flex; gap: 3px; margin-bottom: 14px; }
.testimonial-stars .star { font-size: 16px; color: var(--warning); }
.testimonial-text {
  font-size: 14px;
  line-height: 1.75;
  color: #555;
  margin-bottom: 20px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
  overflow: hidden;
}
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-author-name     { font-weight: 700; font-size: 14px; color: var(--accent); }
.testimonial-author-location { font-size: 12px; color: var(--text-muted); margin-top: 2px; }

/* ===========================================
   21. NEWSLETTER
   =========================================== */
.newsletter-section {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  padding: 50px 20px;
  text-align: center;
  color: #fff;
}
.newsletter-title {
  font-family: var(--font-heading);
  font-size: 28px;
  margin-bottom: 8px;
}
.newsletter-sub {
  opacity: 0.8;
  font-size: 14px;
  margin-bottom: 24px;
}
.newsletter-form {
  display: flex;
  gap: 10px;
  max-width: 500px;
  margin: 0 auto;
}
.newsletter-form input {
  flex: 1;
  padding: 14px 18px;
  border: none;
  border-radius: var(--radius-full);
  font-size: 14px;
  outline: none;
  font-family: var(--font-body);
}

/* ===========================================
   22. PAYMENT METHODS
   =========================================== */
.payment-section {
  background: var(--white);
  padding: 50px 20px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.payment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 800px;
  margin: 0 auto;
}
.payment-card {
  text-align: center;
  padding: 24px;
  border-radius: 14px;
  transition: var(--transition);
}
.payment-card:hover { transform: translateY(-4px); }
.payment-card-icon { font-size: 36px; margin-bottom: 8px; }
.payment-card-name { font-weight: 700; font-size: 16px; }
.payment-card-desc { font-size: 12px; color: #666; margin-top: 4px; }

/* ===========================================
   23. ABOUT SECTION
   =========================================== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.about-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  height: 360px;
}
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-title {
  font-family: var(--font-heading);
  font-size: 32px;
  color: var(--accent);
  margin-bottom: 16px;
}
.about-text {
  color: #666;
  line-height: 1.8;
  margin-bottom: 20px;
}

/* ===========================================
   24. INSTAGRAM FEED
   =========================================== */
.instagram-section {
  padding: 70px 20px;
  background: var(--white);
}
.instagram-section-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.instagram-handle { color: var(--primary); font-weight: 600; }
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
  margin-top: 32px;
}
.instagram-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: pointer;
  background: var(--primary-light);
}
.instagram-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.instagram-item:hover img { transform: scale(1.1); }
.instagram-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(44,24,16,0.65);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.instagram-item:hover .instagram-item-overlay { opacity: 1; }
.instagram-item-likes {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 4px;
}
.instagram-item-comments {
  color: rgba(255,255,255,0.8);
  font-size: 11px;
  display: flex;
  align-items: center;
  gap: 4px;
}

/* ===========================================
   25. GUARANTEE BANNER
   =========================================== */
.guarantee-section {
  background: linear-gradient(135deg, #0F0C06, #1A1208, #2C1810);
  padding: 70px 20px;
  position: relative;
  overflow: hidden;
}
.guarantee-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(156,124,60,0.15) 0%, transparent 70%);
  pointer-events: none;
  animation: glowPulse 4s ease-in-out infinite;
}
.guarantee-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}
.guarantee-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(156,124,60,0.25);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  transition: background 0.3s, border-color 0.3s, transform 0.3s;
  backdrop-filter: blur(8px);
}
.guarantee-card:hover {
  background: rgba(156,124,60,0.12);
  border-color: rgba(156,124,60,0.5);
  transform: translateY(-4px);
}
.guarantee-card-icon  { font-size: 42px; margin-bottom: 14px; display: block; }
.guarantee-card-title { font-weight: 700; font-size: 15px; color: #fff; margin-bottom: 8px; }
.guarantee-card-desc  { font-size: 13px; color: rgba(255,255,255,0.55); line-height: 1.6; }
.guarantee-section .section-title    { color: #fff; }
.guarantee-section .section-subtitle { color: rgba(255,255,255,0.5); }

/* ===========================================
   26. FOOTER
   =========================================== */
.site-footer {
  background: #FBF7F1;
  color: #fff;
  padding: 50px 20px 30px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer-brand-name { font-weight: 800; font-size: 22px; margin-bottom: 12px; }
.footer-brand-name span { color: var(--primary); }
.footer-brand-desc { color: rgba(255,255,255,0.5); font-size: 13px; line-height: 1.7; }
.footer-social { display: flex; gap: 12px; margin-top: 16px; }
.footer-social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  font-size: 16px;
}
.footer-social-icon:hover { background: var(--primary); }
.footer-col-title { font-weight: 700; font-size: 14px; margin-bottom: 16px; color: var(--primary); }
.footer-col a {
  display: block;
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
  max-width: 1200px;
  margin: 30px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.1);
  text-align: center;
  color: rgba(255,255,255,0.3);
  font-size: 12px;
}
.footer-payment-icons {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 12px;
  flex-wrap: wrap;
}
.footer-payment-icon {
  background: rgba(255,255,255,0.1);
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
}

/* ===========================================
   27. LANGUAGE SELECTOR
   =========================================== */
.language-selector {
  position: relative;
  display: inline-block;
}
.language-selector select {
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.7);
  padding: 4px 24px 4px 8px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  cursor: pointer;
  font-family: var(--font-body);
}
.language-selector::after {
  content: '▾';
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  font-size: 10px;
  color: rgba(255,255,255,0.6);
}

/* ===========================================
   28. POPUPS (Welcome, Newsletter, Exit Intent)
   =========================================== */
/* Shared overlay */
.popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: var(--z-popup);
  animation: fadeIn 0.3s ease;
}
.popup-overlay.hidden { display: none; }

.popup-content {
  position: relative;
  max-width: 440px;
  width: 92%;
  animation: slideUp 0.4s cubic-bezier(0.16,1,0.3,1);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.3);
}

.popup-close {
  position: absolute;
  top: 12px;
  right: 14px;
  background: rgba(255,255,255,0.3);
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: #fff;
}
.popup-close:hover { background: rgba(255,255,255,0.5); }

.popup-header {
  padding: 30px 24px;
  text-align: center;
  color: #fff;
}
.popup-header--coupon    { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); }
.popup-header--newsletter { background: linear-gradient(135deg, var(--accent), var(--accent-light)); }
.popup-header-icon { font-size: 40px; margin-bottom: 8px; }
.popup-header h2 { font-family: var(--font-heading); font-size: 26px; margin-bottom: 6px; }
.popup-header p  { font-size: 14px; opacity: 0.85; }

.popup-body {
  background: var(--white);
  padding: 28px 32px 32px;
  border-radius: 0 0 var(--radius-xl) var(--radius-xl);
}

.popup-coupon-value {
  font-size: 42px;
  font-weight: 800;
  color: var(--primary);
  text-align: center;
  margin-bottom: 4px;
}
.popup-coupon-desc {
  color: var(--text-muted);
  font-size: 13px;
  text-align: center;
  margin-bottom: 20px;
}
.coupon-box {
  background: var(--primary-light);
  border: 2px dashed var(--primary);
  border-radius: 10px;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  margin-bottom: 20px;
  transition: var(--transition);
}
.coupon-box:hover { background: #F0E8F8; }
.coupon-code { font-weight: 800; font-size: 20px; letter-spacing: 3px; color: var(--accent); }
.coupon-copy-label { color: var(--primary); font-weight: 600; font-size: 13px; }
.popup-disclaimer { font-size: 11px; color: var(--text-light); text-align: center; margin-top: 12px; }

.popup-form-group { margin-bottom: 12px; }
.popup-form-group label {
  font-size: 12px;
  font-weight: 600;
  color: #555;
  margin-bottom: 4px;
  display: block;
}
.popup-form-group input {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border-hover);
  border-radius: 10px;
  font-size: 14px;
  outline: none;
  transition: border 0.2s;
  font-family: var(--font-body);
}
.popup-form-group input:focus { border-color: var(--primary); }

/* Exit intent popup */
.exit-popup-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.7);
  backdrop-filter: blur(6px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.exit-popup-overlay.active { opacity: 1; pointer-events: all; }
.exit-popup-content {
  max-width: 500px;
  width: 94%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
  transform: scale(0.9) translateY(20px);
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1);
  position: relative;
}
.exit-popup-overlay.active .exit-popup-content { transform: scale(1) translateY(0); }
.exit-popup-header {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  padding: 40px 32px 32px;
  text-align: center;
  color: #fff;
  position: relative;
}
.exit-popup-emoji { font-size: 52px; display: block; margin-bottom: 12px; }
.exit-popup-header h2 { font-family: var(--font-heading); font-size: 28px; margin-bottom: 8px; }
.exit-popup-header p  { opacity: 0.85; font-size: 14px; line-height: 1.5; }
.exit-popup-body      { background: var(--white); padding: 32px; }
.exit-popup-coupon {
  background: linear-gradient(135deg, var(--primary-light), #EDE0F5);
  border: 2px dashed var(--primary);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  text-align: center;
  margin-bottom: 20px;
  cursor: pointer;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.exit-popup-coupon:hover { border-color: var(--primary-dark); }
.exit-popup-coupon-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 4px;
}
.exit-popup-coupon-code { font-size: 32px; font-weight: 800; letter-spacing: 4px; color: var(--accent); }
.exit-popup-coupon-copy { font-size: 12px; color: var(--primary); margin-top: 6px; font-weight: 500; }
.exit-popup-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: rgba(255,255,255,0.2);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background 0.2s;
}
.exit-popup-close:hover { background: rgba(255,255,255,0.35); }
.exit-popup-dismiss {
  display: block;
  text-align: center;
  font-size: 12px;
  color: var(--text-muted);
  cursor: pointer;
  margin-top: 16px;
  text-decoration: underline;
  background: none;
  border: none;
  width: 100%;
  font-family: var(--font-body);
  transition: color 0.2s;
}
.exit-popup-dismiss:hover { color: var(--text); }

/* ===========================================
   29. SOCIAL PROOF TOAST
   =========================================== */
.social-proof-toast {
  position: fixed;
  bottom: 90px;
  left: 24px;
  z-index: var(--z-social-proof);
  max-width: 280px;
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  border: 1px solid var(--border);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  transform: translateX(-120%);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), opacity 0.3s ease;
  pointer-events: none;
}
.social-proof-toast.show {
  transform: translateX(0);
  opacity: 1;
  animation: toastSlideIn 0.4s cubic-bezier(0.16,1,0.3,1);
  pointer-events: all;
}
.social-proof-toast.hide {
  animation: toastSlideOut 0.3s ease forwards;
}
.toast-icon { font-size: 28px; flex-shrink: 0; }
.toast-title    { font-weight: 700; font-size: 13px; color: var(--accent); line-height: 1.3; }
.toast-subtitle { font-size: 11px; color: var(--text-muted); margin-top: 2px; }
.toast-time     { font-size: 10px; color: var(--text-light); margin-top: 4px; }
.toast-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  flex-shrink: 0;
  align-self: flex-start;
  margin-top: 4px;
  animation: pulse 2s infinite;
}

/* ===========================================
   30. STICKY ADD TO CART
   z-index: 990 — below cart drawer, above WhatsApp
   =========================================== */
.sticky-atc {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky-atc);
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.16,1,0.3,1), opacity 0.3s ease;
  pointer-events: none;
}
.sticky-atc.visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
  animation: stickySlideUp 0.4s cubic-bezier(0.16,1,0.3,1);
}
.sticky-atc-inner {
  background: var(--white);
  border-top: 2px solid var(--border);
  box-shadow: 0 -8px 30px rgba(0,0,0,0.12);
  padding: 12px 20px;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.sticky-atc-product {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 1;
  min-width: 0;
}
.sticky-atc-image {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--primary-light);
}
.sticky-atc-image img  { width: 100%; height: 100%; object-fit: cover; }
.sticky-atc-name  { font-weight: 600; font-size: 14px; color: var(--accent); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.sticky-atc-price { font-weight: 800; font-size: 18px; color: var(--primary); white-space: nowrap; }
.sticky-atc-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.sticky-atc .btn-primary { padding: 12px 32px; white-space: nowrap; }

/* ===========================================
   31. RECENTLY VIEWED
   =========================================== */
.recently-viewed {
  max-width: 1200px;
  margin: 50px auto;
  padding: 0 20px;
}
.recently-viewed-scroll {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 12px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.recently-viewed-scroll::-webkit-scrollbar { display: none; }
.recently-viewed-scroll .product-card {
  min-width: 200px;
  flex-shrink: 0;
  scroll-snap-align: start;
}

/* ===========================================
   32. WHATSAPP FLOAT
   bottom: 24px — staggered below back-to-top
   =========================================== */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: var(--z-whatsapp);
  cursor: pointer;
  transition: bottom 0.3s ease;
}
/* Shift up when sticky ATC bar is visible */
.body--sticky-atc-visible .whatsapp-float {
  bottom: 80px;
}

.whatsapp-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37,211,102,0.4);
  font-size: 28px;
  animation: pulse 2s infinite;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.whatsapp-btn:hover {
  transform: scale(1.1);
  animation-play-state: paused;
}

/* ===========================================
   33. BACK TO TOP
   bottom: 90px — above WhatsApp (24px + 56px + 10px gap)
   =========================================== */
.back-to-top {
  position: fixed;
  bottom: 90px;
  right: 24px;
  z-index: var(--z-back-to-top);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--border-hover);
  color: var(--primary);
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease, background 0.2s, border-color 0.2s;
  pointer-events: none;
}
.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}
.back-to-top:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-3px);
}
/* Also shift when sticky ATC is visible */
.body--sticky-atc-visible .back-to-top {
  bottom: 146px;
}

/* ===========================================
   34. RESPONSIVE
   Breakpoints: 1100, 968, 900, 768, 600, 420
   =========================================== */

/* --- 1100px --- */
@media (max-width: 1100px) {
  .footer-inner            { grid-template-columns: 1fr 1fr 1fr; }
  .testimonial-carousel    { grid-template-columns: repeat(2, 1fr); }
  .guarantee-grid          { grid-template-columns: repeat(2, 1fr); }
  .instagram-grid          { grid-template-columns: repeat(4, 1fr); }
  .product-page-layout     { gap: 30px; }
  .cart-page-layout        { grid-template-columns: 1fr 340px; }
}

/* --- 968px (tablet) --- */
@media (max-width: 968px) {
  .header-nav              { display: none; }
  .mobile-menu-toggle      { display: block; }
  .trust-badges-grid       { grid-template-columns: repeat(2, 1fr); }
  .categories-grid         { grid-template-columns: repeat(2, 1fr); }
  .about-grid              { grid-template-columns: 1fr; }
  .footer-inner            { grid-template-columns: 1fr 1fr; }
  .payment-grid            { grid-template-columns: 1fr; }
  .hero-title              { font-size: 32px; }
  .flash-sale-inner        { flex-direction: column; text-align: center; }
  .products-grid           { grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); }
  .product-card-image,
  .pc-image-wrap           { height: 180px; }
  .skeleton-image          { height: 180px; }
}

/* --- 900px --- */
@media (max-width: 900px) {
  .cart-page-layout        { grid-template-columns: 1fr; }
  .cart-sidebar            { position: static; }
  .bundle-product-item     { min-width: 110px; }
  .sticky-atc-inner        { flex-wrap: wrap; }
  .bundle-inner            { padding: 28px 20px; }
  .social-proof-toast      { left: 12px; max-width: 260px; }
}

/* --- 768px --- */
@media (max-width: 768px) {
  .product-page-layout     { grid-template-columns: 1fr; }
  .product-gallery         { position: static; }
  .testimonial-carousel    { grid-template-columns: 1fr; }
  .guarantee-grid          { grid-template-columns: repeat(2, 1fr); }
  .instagram-grid          { grid-template-columns: repeat(3, 1fr); }
  .bundle-title            { font-size: 24px; }
  .bundle-sale-price       { font-size: 32px; }
  .hero-section            { height: 380px; }
  .sticky-atc-product .sticky-atc-name { display: none; }
}

/* --- 600px (mobile) --- */
@media (max-width: 600px) {
  .trust-badges-grid       { grid-template-columns: 1fr; }
  .categories-grid         { grid-template-columns: 1fr; }
  .products-grid           { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .hero-section            { height: 340px; }
  .hero-title              { font-size: 26px; }
  .footer-inner            { grid-template-columns: 1fr; }
  .newsletter-form         { flex-direction: column; }
  .product-card-image,
  .pc-image-wrap           { height: 160px; }
  .skeleton-image          { height: 160px; }
  .testimonial-carousel    { grid-template-columns: 1fr; }
  .guarantee-grid          { grid-template-columns: 1fr 1fr; }
  .instagram-grid          { grid-template-columns: repeat(3, 1fr); }
  .bundle-products         { flex-direction: column; align-items: center; }
  .bundle-plus             { transform: rotate(90deg); }
  .product-page-layout     { padding: 0 14px; }
  .sticky-atc-inner        { padding: 10px 14px; gap: 10px; }
  .exit-popup-content      { width: 98%; }
  .exit-popup-header       { padding: 28px 20px 24px; }
  .exit-popup-body         { padding: 20px; }
  .exit-popup-coupon-code  { font-size: 24px; letter-spacing: 2px; }
  .cart-page-layout        { padding: 0 14px; }
  .product-add-row         { flex-wrap: wrap; }
  .buy-now-btn             { min-width: 100%; }
  .cart-express-btns       { flex-direction: column; }
  .recently-viewed-scroll .product-card { min-width: 160px; }
  .mobile-menu-panel       { width: 280px; }
  .bundle-inner            { padding: 20px 16px; }
  .bundle-header           { margin-bottom: 20px; }
  .popup-body              { padding: 20px 20px 24px; }
  .social-proof-toast      { left: 8px; max-width: 240px; }
  .collection-layout       { grid-template-columns: 1fr; }
}

/* --- 420px (small mobile) --- */
@media (max-width: 420px) {
  .guarantee-grid          { grid-template-columns: 1fr; }
  .instagram-grid          { grid-template-columns: repeat(2, 1fr); }
  .hero-title              { font-size: 22px; }
  .section-title           { font-size: 22px; }
  .countdown-number        { font-size: 16px; }
  .countdown-block         { min-width: 36px; padding: 5px 8px; }
  .back-to-top             { right: 12px; }
  .whatsapp-float          { right: 12px; }
  .recently-viewed-scroll .product-card { min-width: 140px; }
  .products-grid           { grid-template-columns: 1fr 1fr; gap: 10px; }
  .pc-image-wrap,
  .product-card-image      { height: 140px; }
}

/* ===========================================
   PRINT
   =========================================== */
@media print {
  .announcement-bar,
  .site-header,
  .cart-overlay,
  .popup-overlay,
  .exit-popup-overlay,
  .whatsapp-float,
  .back-to-top,
  .sticky-atc,
  .social-proof-toast,
  .mobile-menu-overlay { display: none !important; }

  body { font-size: 12px; color: #000; background: #fff; }
  a    { color: #000; text-decoration: underline; }
  .section { max-width: 100%; margin: 20px 0; }
  .product-card { break-inside: avoid; border: 1px solid #ccc; }
  .btn-primary, .btn-secondary { border: 1px solid #000; background: none; color: #000; }
  .site-footer { background: none; color: #000; border-top: 1px solid #ccc; }
}

/* ===========================================
   DARK MODE
   =========================================== */
@media (prefers-color-scheme: dark) {
  :root {
    --bg:           #0F0C06;
    --white:        #1A1610;
    --text:         #E8E0D0;
    --text-muted:   #9B8F7D;
    --text-light:   #6B5C4D;
    --border:       #2D1F10;
    --border-hover: #3D2B15;
    --shadow-sm:    0 2px 8px rgba(0,0,0,0.3);
    --shadow-md:    0 8px 25px rgba(0,0,0,0.4);
    --shadow-lg:    0 16px 40px rgba(0,0,0,0.5);
    --primary-light: #1F1508;
  }
  .site-header                    { background: #1A1610; border-bottom-color: #2D1F10; }
  .product-card                   { background: #1A1610; border-color: #2D1F10; }
  .trust-badge                    { background: #1A1610; border-color: #2D1F10; }
  .cart-drawer                    { background: #1A1610; }
  .popup-body, .exit-popup-body   { background: #1A1610; }
  .flash-sale-inner               { background: #1F0A0A; border-color: #7B1111; }
  .flash-sale-title               { color: #FCA5A5; }
  .tab-btn                        { background: #1A1610; border-color: #3D2B15; color: #9B8F7D; }
  .tab-btn.active                 { background: var(--primary); color: #fff; }
  .payment-section                { background: #1A1610; border-color: #2D1F10; }
  .instagram-section              { background: #1A1610; }
  .testimonial-card               { background: #1A1610; border-color: #2D1F10; }
  .mobile-menu-panel              { background: #1A1610; }
  .social-proof-toast             { background: #1A1610; border-color: #2D1F10; }
  .cart-sidebar                   { background: #1A1610; border-color: #2D1F10; }
  .cart-rec-item                  { background: #1F1508; border-color: #2D1F10; }
  .upsell-box                     { background: #1A1608; border-color: #7B6A0A; }
  .coupon-box                     { background: #1F1508; border-color: var(--primary); }
  .shipping-progress              { background: #0F1F17; border-color: #1A4731; }
  .cart-express-checkout          { background: #1F1508; }
  .quantity-discounts             { border-color: #2D1F10; }
  .quantity-discount-row:hover,
  .quantity-discount-row.active   { background: #1F1508; }
  .product-gallery-main           { background: #1F1508; border-color: #2D1F10; }
  .product-accordion-header       { background: #1A1610; }
  .product-accordion-header:hover,
  .product-accordion-header.open  { background: #1F1508; }
  .back-to-top                    { background: #1A1610; border-color: #3D2B15; }
  .skeleton {
    background: linear-gradient(90deg, #1F1508 25%, #2D1F10 50%, #1F1508 75%);
  }
  input, textarea, select         { background: #1F1508; color: var(--text); border-color: #3D2B15; }
}

/* ===========================================
   PREMIUM SOPHISTICATION ENHANCEMENTS
   =========================================== */

/* --- Countdown timer pulse effect --- */
.countdown-block {
  position: relative;
  overflow: hidden;
}
.countdown-block::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.08) 0%, transparent 50%);
  pointer-events: none;
}
.countdown-number {
  text-shadow: 0 0 20px rgba(255,255,255,0.15);
}

/* --- Enhanced product card hover --- */
.product-card {
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1),
              box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(156,124,60,0.12), 0 8px 20px rgba(0,0,0,0.06);
}
.product-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent-light));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  border-radius: 0 0 14px 14px;
}
.product-card:hover::after {
  transform: scaleX(1);
}

/* --- Premium button shine effect --- */
.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
  pointer-events: none;
}
.btn-primary:hover::before {
  left: 100%;
}

/* --- Cart drawer slide-in refinement --- */
.cart-drawer {
  animation: cartDrawerSlideIn 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
}
@keyframes cartDrawerSlideIn {
  from { transform: translateX(100%); opacity: 0.8; }
  to   { transform: translateX(0); opacity: 1; }
}
.cart-backdrop {
  animation: fadeIn 0.3s ease;
}

/* --- Cart item enter animation --- */
.cart-item {
  animation: cartItemEnter 0.35s ease both;
}
@keyframes cartItemEnter {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}
.cart-item:nth-child(2) { animation-delay: 0.05s; }
.cart-item:nth-child(3) { animation-delay: 0.1s; }
.cart-item:nth-child(4) { animation-delay: 0.15s; }
.cart-item:nth-child(5) { animation-delay: 0.2s; }

/* --- Cart footer premium styling --- */
.cart-footer {
  padding: 20px 24px;
  background: linear-gradient(to top, var(--white), rgba(250,250,250,0.97));
  border-top: 1px solid var(--border);
}

/* --- Cart guarantee premium card --- */
.cart-guarantee {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #FBF7F1, #F0EBE3);
  border: 1px solid var(--border);
  margin: 14px 0;
}
.cart-guarantee__icon { font-size: 24px; flex-shrink: 0; }
.cart-guarantee__title { font-weight: 700; font-size: 13px; color: var(--accent); }
.cart-guarantee__sub { font-size: 11px; color: var(--text-muted); margin-top: 2px; }

/* --- Cart security badges premium --- */
.cart-security-badge {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 10px;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--primary-light);
  padding: 5px 12px;
  border-radius: 20px;
  border: 1px solid var(--border);
}

/* --- Cart timer premium styling --- */
.cart-timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 16px;
  margin: 0 24px 8px;
  background: linear-gradient(135deg, #FFF9E6, #FFF5D4);
  border: 1px solid #FDE68A;
  border-radius: var(--radius-md);
  font-size: 13px;
  font-weight: 600;
  color: #92400E;
  animation: fadeIn 0.4s ease;
}
.cart-timer.timer-expired {
  background: linear-gradient(135deg, #FEF2F2, #FEE2E2);
  border-color: #FECACA;
  color: var(--danger);
  animation: pulse 2s infinite;
}

/* --- Cart upsell premium --- */
.cart-upsell {
  padding: 16px 24px;
  border-top: 1px solid var(--border);
}
.cart-upsell__header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.cart-upsell__icon { font-size: 16px; }
.cart-upsell__title { font-weight: 700; font-size: 14px; color: var(--accent); }
.cart-upsell__scroll {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 8px;
}
.cart-upsell__scroll::-webkit-scrollbar { display: none; }

/* --- Cart coupon applied styling --- */
.cart-coupon-applied {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: #ECFDF5;
  border: 1px solid #A7F3D0;
  border-radius: var(--radius-md);
  margin: 8px 0;
}
.cart-coupon-applied__tag {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 13px;
  color: var(--success);
}
.cart-coupon-applied__remove {
  background: none;
  border: none;
  color: #999;
  cursor: pointer;
  font-size: 14px;
  transition: color 0.2s;
}
.cart-coupon-applied__remove:hover { color: var(--danger); }
.cart-coupon-applied__savings {
  font-size: 12px;
  font-weight: 600;
  color: var(--success);
}

/* --- Cart express checkout premium --- */
.cart-express-checkout {
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: center;
  padding: 10px 16px;
  background: linear-gradient(135deg, #FBF7F1, #F0EBE3);
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  margin: 12px 0;
  font-size: 12px;
  color: var(--text-muted);
  font-weight: 500;
}

/* --- Cart payment icons premium --- */
.cart-payment-icons {
  display: flex;
  gap: 6px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 12px 0;
}
.cart-payment-tag {
  background: linear-gradient(135deg, #FAFAFA, #F5F3F7);
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 10px;
  font-weight: 700;
  color: #666;
  border: 1px solid var(--border);
  letter-spacing: 0.3px;
}

/* --- Cart shipping note premium --- */
.cart-shipping-note {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  margin-top: 14px;
  padding: 8px 0;
  font-size: 12px;
  color: var(--success);
  font-weight: 600;
}

/* --- Free shipping progress premium --- */
.cart-shipping-progress {
  padding: 14px 24px;
}
.cart-shipping-progress__text {
  font-size: 12px;
  font-weight: 600;
  color: #276749;
  text-align: center;
  margin-bottom: 8px;
}
.cart-shipping-progress__track {
  height: 8px;
  background: #E5F6ED;
  border-radius: 4px;
  overflow: visible;
  position: relative;
}
.cart-shipping-progress__fill {
  height: 100%;
  background: linear-gradient(90deg, var(--success), #34D399);
  border-radius: 4px;
  transition: width 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
  position: relative;
}
.cart-shipping-progress__fill::after {
  content: '';
  position: absolute;
  right: 0;
  top: -2px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--success);
  border: 2px solid #fff;
  box-shadow: 0 0 6px rgba(39,174,96,0.4);
}
.cart-shipping-progress__milestone {
  position: absolute;
  top: -6px;
  transform: translateX(-50%);
}
.cart-shipping-progress__milestone-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #CBD5E0;
  margin: 0 auto 4px;
  border: 2px solid #fff;
}
.cart-shipping-progress__milestone-label {
  font-size: 9px;
  font-weight: 700;
  color: #999;
  text-align: center;
  margin-top: 12px;
}

/* --- Premium flash sale --- */
.flash-sale-inner {
  background: linear-gradient(135deg, #FFF5F5 0%, #FFF0F6 50%, #FEF3F2 100%);
  border: 2px solid #FECACA;
  border-radius: var(--radius-xl);
  padding: 28px 36px;
  position: relative;
  overflow: hidden;
}
.flash-sale-inner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(231,76,60,0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* --- Premium announcement bar --- */
.announcement-bar {
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-light) 40%, var(--primary) 100%);
  background-size: 200% 100%;
  animation: announcementGradient 8s ease infinite;
}
@keyframes announcementGradient {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* --- Cart empty state premium --- */
.cart-empty {
  padding: 48px 24px;
  text-align: center;
}
.cart-empty-icon {
  font-size: 56px;
  margin-bottom: 16px;
  animation: bounce 2s infinite;
}
.cart-empty__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
}
.cart-empty__sub {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
}
.cart-empty__cta {
  margin-bottom: 32px;
}

/* --- Cart empty featured products --- */
.cart-empty-featured {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.cart-empty-featured__title {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}
.cart-empty-featured__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

/* --- Header cart count glow animation --- */
.cart-count {
  transition: transform 0.3s ease;
}
.cart-count.pop {
  animation: cartCountGlow 0.6s ease;
}
@keyframes cartCountGlow {
  0%   { transform: scale(1); box-shadow: none; }
  30%  { transform: scale(1.4); box-shadow: 0 0 12px rgba(231,76,60,0.6); }
  100% { transform: scale(1); box-shadow: none; }
}

/* --- Premium section headings --- */
.section-title {
  position: relative;
  padding-bottom: 16px;
}
.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent-light));
  border-radius: 2px;
}

/* --- Premium focus ring --- */
*:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: 6px;
  transition: outline-offset 0.15s ease;
}

/* --- Smooth page load --- */
body {
  animation: pageLoad 0.4s ease;
}
@keyframes pageLoad {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* --- Scroll indicator for cart upsell --- */
.cart-upsell__scroll::after {
  content: '';
  display: block;
  min-width: 1px;
  flex-shrink: 0;
}

/* --- Premium quick-add button states --- */
.quick-add-btn {
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.quick-add-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(156,124,60,0.3);
}
.quick-add-success {
  background: var(--success) !important;
  border-color: var(--success) !important;
  transform: scale(1.05);
}
.quick-add-error {
  background: var(--danger) !important;
  border-color: var(--danger) !important;
}

/* --- WhatsApp button premium hover --- */
.whatsapp-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: var(--z-whatsapp);
}
.whatsapp-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: #25D366;
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  transition: all 0.3s ease;
}
.whatsapp-btn:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.5);
}

/* --- Back to top premium --- */
.back-to-top {
  position: fixed;
  bottom: 90px;
  right: 24px;
  z-index: var(--z-back-to-top);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--white);
  border: 1px solid var(--border);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}
.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top:hover {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 4px 16px rgba(156,124,60,0.3);
  transform: translateY(-2px);
}
.back-to-top svg { stroke: currentColor; }

/* --- Checkout button premium glow --- */
.btn-primary--full.btn-primary--large {
  position: relative;
  box-shadow: 0 4px 20px rgba(156,124,60,0.25);
  font-size: 16px;
  padding: 16px 36px;
  letter-spacing: 0.5px;
}
.btn-primary--full.btn-primary--large:hover {
  box-shadow: 0 8px 30px rgba(156,124,60,0.45);
  transform: translateY(-3px);
}

/* ===========================================
   MOBILE OPTIMIZATION — ENHANCED
   =========================================== */

/* Touch-friendly tap targets (min 44px) */
@media (max-width: 768px) {
  .btn-primary, .btn-secondary, .tab-btn,
  .pc-atc-btn, .pm-qty__btn, .cp-item__qty-btn {
    min-height: 48px;
    min-width: 48px;
  }
  .pc-wishlist {
    width: 40px;
    height: 40px;
    top: 8px;
    right: 8px;
  }
  /* Smoother scrolling for mobile */
  .cart-body, .cart-upsell__scroll,
  .pm-gallery__thumbs, .recently-viewed-scroll {
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x mandatory;
  }
  .cart-upsell__scroll > * {
    scroll-snap-align: start;
  }
  /* Better cart drawer on mobile */
  .cart-drawer {
    width: 100% !important;
    max-width: 100vw;
    border-radius: 0;
  }
  /* Fix mobile menu overlap */
  .mobile-menu-panel {
    width: 85vw;
    max-width: 320px;
  }
  /* Prevent horizontal overflow */
  body {
    overflow-x: hidden;
  }
  .section {
    overflow-x: hidden;
  }
  /* Stack product card actions */
  .product-card-body {
    padding: 10px 8px 12px;
  }
  .product-card-title {
    font-size: 13px;
    line-height: 1.3;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .product-card-installment {
    font-size: 10px;
  }
  .pc-atc-btn {
    font-size: 12px;
    padding: 10px 8px;
  }
  /* Hero section mobile */
  .hero-slide-content {
    padding: 20px;
  }
  .hero-subtitle {
    font-size: 14px;
  }
  /* Announcement bar mobile */
  .announcement-bar {
    font-size: 12px;
    padding: 8px 12px;
  }
  /* Cart page mobile */
  .cp-sidebar__checkout {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99;
    border-radius: 0;
    margin: 0;
    padding: 16px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
  }
  .cp-section {
    padding-bottom: 100px;
  }
  /* Sticky ATC mobile full width */
  .sticky-atc {
    border-radius: 0;
    padding: 8px 12px;
  }
  /* Social proof toast mobile */
  .social-proof-toast {
    left: 8px;
    right: 8px;
    max-width: none;
    bottom: 80px;
  }
  /* Trust badges horizontal scroll on mobile */
  .trust-badges-grid {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  .trust-badge {
    min-width: 140px;
    flex-shrink: 0;
    scroll-snap-align: start;
  }
  /* Product main mobile adjustments */
  .pm-form-buttons__atc {
    width: 100%;
    padding: 16px;
    font-size: 16px;
  }
  .pm-form-buttons__buy-now {
    width: 100%;
    justify-content: center;
  }
  /* Better spacing for cart items */
  .cp-item {
    padding: 14px 0;
  }
  .cp-item__image-wrap {
    width: 80px;
    height: 80px;
  }
}

/* Small mobile specific */
@media (max-width: 420px) {
  .pm-price-block__current {
    font-size: 24px;
  }
  .pm-coupon-banner {
    flex-direction: column;
    text-align: center;
  }
  .pm-qty-tiers {
    flex-direction: column;
    gap: 8px;
  }
  .pm-qty-tiers__sep {
    display: none;
  }
  .cp-trust-row {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .cp-trust-item {
    font-size: 10px;
    padding: 8px 4px;
  }
  .cart-security-badges {
    flex-direction: column;
    gap: 6px;
  }
  .pm-social-share {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Prevent layout shift from lazy images */
img[loading="lazy"] {
  content-visibility: auto;
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .scroll-reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ===========================================
   PREMIUM ENHANCEMENTS — AI-OPTIMIZED
   =========================================== */

/* Glassmorphism effect for premium overlays */
.cart-footer,
.sticky-atc {
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  background: rgba(255,255,255,0.92);
}

/* Premium gradient text for headings */
.pm-info__title,
.cp-page-header__title,
.cp-empty__title {
  background: linear-gradient(135deg, var(--accent) 0%, var(--primary-dark) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Premium card hover micro-interaction */
.product-card {
  transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(156,124,60,0.15);
}

/* Animated gradient border for active states */
.pm-variants__btn.active {
  background: linear-gradient(135deg, var(--primary), var(--accent-light));
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(156,124,60,0.3);
}

/* Premium loading skeleton pulse */
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
.skeleton,
.skeleton-image {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s ease-in-out infinite;
  border-radius: var(--radius-md);
}

/* Premium notification slide-in */
@keyframes slideInRight {
  from { transform: translateX(100%); opacity: 0; }
  to   { transform: translateX(0); opacity: 1; }
}
@keyframes slideDown {
  from { transform: translateY(-20px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}

/* Premium badge pulse animation */
.pc-badge--off {
  animation: badgePulse 2s ease-in-out infinite;
}
@keyframes badgePulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.08); }
}

/* Premium success toast */
.pm-atc-notification {
  animation: slideDown 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* Premium form input focus */
input:focus, textarea:focus, select:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(156,124,60,0.1);
  outline: none;
}

/* Premium divider */
.pm-accordion__item {
  border-color: rgba(156,124,60,0.08);
}

/* Premium star rating glow */
.star {
  color: #F59E0B;
  text-shadow: 0 1px 4px rgba(245,158,11,0.3);
  font-size: 14px;
}

/* Cart item hover effect */
.cp-item:hover {
  background: rgba(156,124,60,0.02);
  border-radius: var(--radius-sm);
}

/* Premium scroll indicator */
.cart-upsell__scroll::-webkit-scrollbar {
  height: 4px;
}
.cart-upsell__scroll::-webkit-scrollbar-track {
  background: var(--primary-light);
  border-radius: 4px;
}
.cart-upsell__scroll::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, var(--primary), var(--accent-light));
  border-radius: 4px;
}

/* Premium button ripple effect */
.btn-primary {
  position: relative;
  overflow: hidden;
}
.btn-primary::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255,255,255,0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.5s, height 0.5s, opacity 0.5s;
  opacity: 0;
}
.btn-primary:active::after {
  width: 200%;
  height: 200%;
  opacity: 1;
  transition: 0s;
}

/* Premium image zoom on product card */
.pc-img--primary {
  transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.product-card:hover .pc-img--primary {
  transform: scale(1.08);
}

/* Premium savings badge pop */
.pc-savings, .pm-price-block__savings {
  animation: savingsPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes savingsPop {
  from { transform: scale(0.8); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

/* Premium cart progress bar animation */
.cart-shipping-progress__fill,
.cp-shipping-bar__fill {
  background: linear-gradient(90deg, var(--success), #68D391, var(--success));
  background-size: 200% 100%;
  animation: progressGlow 2s ease-in-out infinite;
}
@keyframes progressGlow {
  0%   { background-position: 0% 0; }
  50%  { background-position: 100% 0; }
  100% { background-position: 0% 0; }
}

/* Premium coupon applied celebration */
.cart-coupon-applied {
  animation: slideDown 0.3s ease;
}
.cart-coupon-applied__tag {
  background: linear-gradient(135deg, #DCFCE7, #BBF7D0);
}

/* Premium accordion open animation */
details[open] .pm-accordion__panel {
  animation: accordionOpen 0.3s ease;
}
@keyframes accordionOpen {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Premium empty cart illustration */
.cart-empty-icon,
.cp-empty__icon {
  filter: drop-shadow(0 4px 8px rgba(156,124,60,0.2));
}

/* Premium WhatsApp button pulse */
.whatsapp-btn::before {
  content: '';
  position: absolute;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;
  animation: whatsappPulse 2s ease-in-out infinite;
  z-index: -1;
}
@keyframes whatsappPulse {
  0%   { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.5); opacity: 0; }
}
.whatsapp-float {
  position: fixed;
}
.whatsapp-btn {
  position: relative;
}

/* Premium trust badge hover */
.trust-badge {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.trust-badge:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

/* Premium countdown digits */
.countdown-number {
  background: linear-gradient(135deg, var(--accent), var(--primary-dark));
  color: #fff;
  border-radius: var(--radius-sm);
  padding: 8px 12px;
  font-variant-numeric: tabular-nums;
  text-shadow: 0 1px 4px rgba(0,0,0,0.2);
  box-shadow: 0 4px 12px rgba(44,24,16,0.3);
}

/* Performance optimizations */
.product-card,
.cart-drawer,
.sticky-atc,
.whatsapp-float,
.back-to-top {
  will-change: transform;
}
.pc-img--primary,
.pc-img--secondary {
  will-change: transform, opacity;
}

/* GPU acceleration for animations */
.scroll-reveal {
  transform: translateZ(0);
}

/* Optimized image rendering */
img {
  image-rendering: -webkit-optimize-contrast;
}

/* ========================================
   MOBILE OPTIMIZATION — ADVANCED RESPONSIVE
   ======================================== */

/* === Base Mobile Font Fix === */
@media (max-width: 768px) {
  body {
    font-size: 15px;
    -webkit-tap-highlight-color: transparent;
  }

  /* Touch targets — minimum 44px */
  button,
  .btn-primary,
  .pc-atc-btn,
  .ai-rec-card__quick-add,
  a[role="button"] {
    min-height: 44px;
    min-width: 44px;
  }

  /* Header mobile adjustments */
  .header {
    padding: 8px 12px;
  }
  .header__logo img {
    max-height: 32px;
  }

  /* Hero section mobile */
  .hero__title {
    font-size: 1.6rem;
    line-height: 1.2;
  }
  .hero__subtitle {
    font-size: 0.9rem;
  }

  /* Trust badges — horizontal scroll on mobile */
  .trust-badges__grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    gap: 12px;
    padding: 0 16px;
    scrollbar-width: none;
  }
  .trust-badges__grid::-webkit-scrollbar {
    display: none;
  }
  .trust-badges__grid .trust-badge {
    flex: 0 0 auto;
    min-width: 140px;
    scroll-snap-align: start;
  }

  /* Product cards — 2 columns mobile */
  .featured-products__grid,
  .collection-products__grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
    padding: 0 12px;
  }

  /* Product card mobile optimizations */
  .product-card {
    border-radius: 12px;
  }
  .product-card-body {
    padding: 10px;
  }
  .product-card-title {
    font-size: 12px;
    line-height: 1.3;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .price-current {
    font-size: 15px;
  }
  .price-old {
    font-size: 11px;
  }
  .product-card-installment {
    font-size: 10px;
  }
  .pc-atc-btn {
    font-size: 12px;
    padding: 10px 8px;
  }
  .product-card-stars .star {
    font-size: 11px;
  }
  .star-count {
    font-size: 10px;
  }

  /* Badge sizes on mobile */
  .pc-badge {
    font-size: 9px;
    padding: 3px 6px;
  }

  /* Wishlist button mobile */
  .pc-wishlist {
    width: 30px;
    height: 30px;
    top: 6px;
    right: 6px;
  }
  .pc-wishlist__icon {
    width: 14px;
    height: 14px;
  }

  /* AI Recommendations mobile */
  .ai-rec__title {
    font-size: 1.4rem;
  }
  .ai-rec__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .ai-rec-card__image-wrap {
    height: 160px;
  }
  .ai-rec-card__info {
    padding: 12px;
  }
  .ai-rec-card__title {
    font-size: 12px;
  }
  .ai-rec-card__price {
    font-size: 16px;
  }
  .ai-rec-card__quick-add {
    opacity: 1;
    transform: none;
    width: 36px;
    height: 36px;
  }
  .ai-rec-card__match {
    font-size: 10px;
    padding: 4px 8px;
  }
  .ai-rec-card__reason {
    font-size: 9px;
    padding: 4px 8px;
  }

  /* Flash sale mobile */
  .flash-sale {
    padding: 20px 12px;
  }

  /* Scarcity section mobile */
  .smart-scarcity__timer-digits {
    font-size: 24px;
  }

  /* Testimonials mobile */
  .testimonials__grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  /* Footer mobile */
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  /* Modals/Popups mobile — full width */
  .lead-modal,
  .coupon-popup,
  .exit-popup {
    width: 95vw !important;
    max-width: 95vw !important;
    max-height: 90vh;
    overflow-y: auto;
    border-radius: 16px;
  }

  /* Cart drawer mobile */
  .cart-drawer {
    width: 100vw !important;
    max-width: 100vw !important;
  }

  /* Announcement bar mobile */
  .announcement-bar {
    font-size: 11px;
    padding: 6px 8px;
  }

  /* Section spacing mobile */
  section {
    padding-left: 12px;
    padding-right: 12px;
  }

  /* Guarantee banner mobile */
  .guarantee-grid {
    grid-template-columns: 1fr !important;
    gap: 12px;
  }

  /* Payment methods mobile */
  .payment-methods__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
}

/* === Extra Small Phones (iPhone SE, 375px) === */
@media (max-width: 380px) {
  body {
    font-size: 14px;
  }

  .hero__title {
    font-size: 1.3rem;
  }

  .featured-products__grid,
  .collection-products__grid {
    gap: 8px !important;
  }

  .product-card-body {
    padding: 8px;
  }
  .product-card-title {
    font-size: 11px;
  }
  .price-current {
    font-size: 14px;
  }
  .pc-atc-btn {
    font-size: 11px;
    padding: 8px 6px;
  }

  .ai-rec__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .ai-rec-card__image-wrap {
    height: 200px;
  }
}

/* === Tablet (768px - 1024px) === */
@media (min-width: 769px) and (max-width: 1024px) {
  .featured-products__grid,
  .collection-products__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .ai-rec__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .trust-badges__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .testimonials__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* === Performance: Reduce motion for accessibility === */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .scroll-reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* === Performance: Content-visibility for off-screen sections === */
.ai-rec-section,
.testimonials-section,
.instagram-section,
.guarantee-section,
.footer {
  content-visibility: auto;
  contain-intrinsic-size: auto 500px;
}

/* === Smooth image loading === */
img[loading="lazy"] {
  opacity: 0;
  transition: opacity 0.3s ease;
}
img[loading="lazy"].loaded,
img[loading="lazy"][src] {
  opacity: 1;
}

/* ========================================
   END OF BR BEAUTY & SUPPLIES THEME CSS

   /* === LIGHT THEME OVERRIDES - Footer & Guarantee === */
   .site-footer { color: #2C1810; }
   .footer-brand-desc { color: rgba(44,24,16,0.6) !important; }
   .footer-social-icon { background: rgba(156,124,60,0.1) !important; color: var(--accent, #2C1810) !important; }
   .footer-social-icon:hover { background: var(--primary) !important; color: #fff !important; }
   .footer-col a { color: rgba(44,24,16,0.6) !important; }
   .footer-col a:hover { color: var(--accent, #2C1810) !important; }
   .footer-bottom { border-top-color: rgba(44,24,16,0.1) !important; color: rgba(44,24,16,0.45) !important; }
   .footer-payment-icon { background: rgba(156,124,60,0.08) !important; color: var(--accent, #2C1810) !important; }
   .language-selector select { border-color: rgba(44,24,16,0.2) !important; color: rgba(44,24,16,0.7) !important; }
   .language-selector::after { color: rgba(44,24,16,0.6) !important; }
   .guarantee-section .section-title { color: #2C1810 !important; }
   .guarantee-section .section-subtitle { color: rgba(44,24,16,0.6) !important; }
   .guarantee-card-title { color: #2C1810 !important; }
   .guarantee-card-desc { color: rgba(44,24,16,0.6) !important; }
   .guarantee-card { background: rgba(156,124,60,0.06) !important; border-color: rgba(156,124,60,0.18) !important; }
   .guarantee-card:hover { background: rgba(156,124,60,0.1) !important; }
   .exit-popup-coupon { background: linear-gradient(135deg, var(--primary-light), #F0EBE3) !important; }
   ======================================== */

   /* ============================================================
      MOBILE OPTIMIZATION v2.0 — BR Beauty & Supplies
         Comprehensive responsive overrides for all breakpoints
            ============================================================ */

            /* === GLOBAL MOBILE IMPROVEMENTS === */
            html {
              -webkit-text-size-adjust: 100%;
                scroll-padding-top: 70px;
                }
                * { -webkit-tap-highlight-color: transparent; }
                body { overflow-x: hidden !important; }
                img, video, iframe { max-width: 100% !important; height: auto; }
                button, a, input, select, textarea {
                  touch-action: manipulation;
                  }

                  /* === TABLET & LARGE PHONES (max-width: 768px) === */
                  @media (max-width: 768px) {
                    /* Typography scaling */
                      h1, .h1 { font-size: 1.6rem !important; line-height: 1.25 !important; }
                        h2, .h2 { font-size: 1.35rem !important; line-height: 1.3 !important; }
                          h3, .h3 { font-size: 1.15rem !important; line-height: 1.3 !important; }
                            h4, .h4 { font-size: 1.05rem !important; }
                              p, li, span, a { font-size: inherit; }

                                /* Section spacing */
                                  section, .shopify-section { padding: 40px 20px !important; }
                                    .section-title { font-size: 1.4rem !important; margin-bottom: 20px !important; }
                                      .section-subtitle { font-size: 0.95rem !important; }

                                        /* Hero section */
                                          .hero-section, .hero-banner { min-height: 55vh !important; padding: 40px 20px !important; }
                                            .hero-section h1, .hero-banner h1 { font-size: 1.8rem !important; }
                                              .hero-section p, .hero-banner p { font-size: 1rem !important; }
                                                .hero-slide { min-height: 55vh !important; }

                                                  /* Navigation */
                                                    .site-header { padding: 10px 15px !important; }
                                                      .header-icons { gap: 12px !important; }

                                                        /* Product grid */
                                                          .product-grid, .collection-grid { 
                                                              grid-template-columns: repeat(2, 1fr) !important; 
                                                                  gap: 20px !important; 
                                                                      padding: 0 15px !important;
                                                                        }
                                                                          .product-card { border-radius: 12px !important; }
                                                                            .product-card img { aspect-ratio: 1/1; object-fit: cover; }
                                                                              .product-card-info { padding: 12px !important; }
                                                                                .product-card-title { font-size: 0.9rem !important; }
                                                                                  .product-card-price { font-size: 0.95rem !important; }

                                                                                    /* Category cards */
                                                                                      .cat-card, .category-card { min-height: 160px !important; border-radius: 12px !important; }
                                                                                        .cat-card-title, .category-card-title { font-size: 1rem !important; }
                                                                                          .featured-categories .categories-grid { gap: 15px !important; grid-template-columns: repeat(2, 1fr) !important; }

                                                                                            /* Trust badges */
                                                                                              .trust-badges-grid { 
                                                                                                  grid-template-columns: repeat(2, 1fr) !important; 
                                                                                                      gap: 12px !important; 
                                                                                                          padding: 15px !important;
                                                                                                            }
                                                                                                              .trust-badge { padding: 12px 10px !important; }
                                                                                                                .trust-badge-icon { font-size: 1.4rem !important; }
                                                                                                                  .trust-badge-title { font-size: 0.85rem !important; }
                                                                                                                    .trust-badge-sub { font-size: 0.75rem !important; }

                                                                                                                      /* Product main trust badges */
                                                                                                                        .pm-trust__grid { grid-template-columns: repeat(2, 1fr) !important; gap: 10px !important; }
                                                                                                                          .pm-trust__item { padding: 10px !important; }
                                                                                                                            .pm-trust__icon { font-size: 1.3rem !important; }

                                                                                                                              /* Testimonials */
                                                                                                                                .testimonials-grid { grid-template-columns: 1fr !important; gap: 20px !important; }
                                                                                                                                  .testimonial-card { padding: 20px !important; font-size: 0.95rem !important; }

                                                                                                                                    /* Bundle deals */
                                                                                                                                      .bundle-products { flex-direction: column !important; gap: 15px !important; }
                                                                                                                                        .bundle-product { min-width: unset !important; width: 100% !important; }

                                                                                                                                          /* Footer */
                                                                                                                                            .footer-grid { grid-template-columns: 1fr !important; gap: 25px !important; }
                                                                                                                                              .footer-col { text-align: center !important; }

                                                                                                                                                /* AI Recommendations */
                                                                                                                                                  .ai-rec-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 15px !important; }
                                                                                                                                                    .ai-rec-card { border-radius: 12px !important; }

                                                                                                                                                      /* Buttons */
                                                                                                                                                        .btn, button[type="submit"], .shopify-payment-button button {
                                                                                                                                                            min-height: 48px !important;
                                                                                                                                                                font-size: 0.95rem !important;
                                                                                                                                                                    padding: 12px 24px !important;
                                                                                                                                                                      }

                                                                                                                                                                        /* Product page */
                                                                                                                                                                          .product-main-grid { grid-template-columns: 1fr !important; gap: 25px !important; }
                                                                                                                                                                            .product-gallery { max-height: 400px !important; }
                                                                                                                                                                              .product-title { font-size: 1.4rem !important; }
                                                                                                                                                                                .product-price { font-size: 1.3rem !important; }

                                                                                                                                                                                  /* Instagram feed */
                                                                                                                                                                                    .instagram-grid { grid-template-columns: repeat(3, 1fr) !important; gap: 8px !important; }

                                                                                                                                                                                      /* Frequently bought together */
                                                                                                                                                                                        .fbt-products { flex-wrap: wrap !important; justify-content: center !important; }
                                                                                                                                                                                          .fbt-product { width: 45% !important; min-width: 140px !important; }

                                                                                                                                                                                            /* Sticky ATC bar */
                                                                                                                                                                                              .sticky-atc { padding: 10px 15px !important; }
                                                                                                                                                                                                .sticky-atc-info { gap: 10px !important; }
                                                                                                                                                                                                }

                                                                                                                                                                                                /* === STANDARD PHONES (max-width: 600px) === */
                                                                                                                                                                                                @media (max-width: 600px) {
                                                                                                                                                                                                  /* Typography */
                                                                                                                                                                                                    h1, .h1 { font-size: 1.4rem !important; }
                                                                                                                                                                                                      h2, .h2 { font-size: 1.2rem !important; }
                                                                                                                                                                                                        h3, .h3 { font-size: 1.05rem !important; }
                                                                                                                                                                                                          .section-title { font-size: 1.25rem !important; }
                                                                                                                                                                                                            .section-subtitle { font-size: 0.88rem !important; }

                                                                                                                                                                                                              /* Section spacing */
                                                                                                                                                                                                                section, .shopify-section { padding: 30px 15px !important; }

                                                                                                                                                                                                                  /* Hero */
                                                                                                                                                                                                                    .hero-section, .hero-banner { min-height: 45vh !important; padding: 30px 15px !important; }
                                                                                                                                                                                                                      .hero-section h1, .hero-banner h1 { font-size: 1.5rem !important; }
                                                                                                                                                                                                                        .hero-slide { min-height: 45vh !important; }
                                                                                                                                                                                                                          .hero-cta, .hero-section .btn { 
                                                                                                                                                                                                                              padding: 14px 28px !important; 
                                                                                                                                                                                                                                  font-size: 0.95rem !important;
                                                                                                                                                                                                                                      width: 100% !important;
                                                                                                                                                                                                                                          text-align: center !important;
                                                                                                                                                                                                                                            }

                                                                                                                                                                                                                                              /* Navigation */
                                                                                                                                                                                                                                                .site-header { padding: 8px 12px !important; }
                                                                                                                                                                                                                                                  .logo-img, .site-header img { max-height: 35px !important; }
                                                                                                                                                                                                                                                    .header-icons { gap: 10px !important; }
                                                                                                                                                                                                                                                      .header-icons svg { width: 22px !important; height: 22px !important; }

                                                                                                                                                                                                                                                        /* Product grid */
                                                                                                                                                                                                                                                          .product-grid, .collection-grid { 
                                                                                                                                                                                                                                                              grid-template-columns: repeat(2, 1fr) !important; 
                                                                                                                                                                                                                                                                  gap: 12px !important; 
                                                                                                                                                                                                                                                                      padding: 0 10px !important;
                                                                                                                                                                                                                                                                        }
                                                                                                                                                                                                                                                                          .product-card-info { padding: 10px !important; }
                                                                                                                                                                                                                                                                            .product-card-title { font-size: 0.82rem !important; line-height: 1.3 !important; }
                                                                                                                                                                                                                                                                              .product-card-price { font-size: 0.88rem !important; }
                                                                                                                                                                                                                                                                                .product-card .btn { 
                                                                                                                                                                                                                                                                                    padding: 10px 16px !important; 
                                                                                                                                                                                                                                                                                        font-size: 0.82rem !important; 
                                                                                                                                                                                                                                                                                            min-height: 44px !important;
                                                                                                                                                                                                                                                                                              }

                                                                                                                                                                                                                                                                                                /* Category cards */
                                                                                                                                                                                                                                                                                                  .cat-card, .category-card { min-height: 140px !important; }
                                                                                                                                                                                                                                                                                                    .cat-card-title, .category-card-title { font-size: 0.92rem !important; }
                                                                                                                                                                                                                                                                                                      .featured-categories .categories-grid { gap: 12px !important; }

                                                                                                                                                                                                                                                                                                        /* Trust badges */
                                                                                                                                                                                                                                                                                                          .trust-badges-grid { grid-template-columns: 1fr 1fr !important; gap: 10px !important; }
                                                                                                                                                                                                                                                                                                            .trust-badge { padding: 10px 8px !important; flex-direction: column !important; text-align: center !important; gap: 6px !important; }
                                                                                                                                                                                                                                                                                                              .trust-badge-icon { font-size: 1.5rem !important; }
                                                                                                                                                                                                                                                                                                                .trust-badge-title { font-size: 0.8rem !important; }
                                                                                                                                                                                                                                                                                                                  .trust-badge-sub { font-size: 0.7rem !important; }

                                                                                                                                                                                                                                                                                                                    /* Product main trust badges */
                                                                                                                                                                                                                                                                                                                      .pm-trust__grid { gap: 8px !important; }
                                                                                                                                                                                                                                                                                                                        .pm-trust__item { padding: 8px !important; flex-direction: column !important; text-align: center !important; }
                                                                                                                                                                                                                                                                                                                          .pm-trust__icon { font-size: 1.2rem !important; }
                                                                                                                                                                                                                                                                                                                            .pm-trust__title { font-size: 0.78rem !important; }
                                                                                                                                                                                                                                                                                                                              .pm-trust__sub { font-size: 0.68rem !important; }

                                                                                                                                                                                                                                                                                                                                /* Product page */
                                                                                                                                                                                                                                                                                                                                  .product-gallery { max-height: 350px !important; }
                                                                                                                                                                                                                                                                                                                                    .product-title { font-size: 1.25rem !important; }
                                                                                                                                                                                                                                                                                                                                      .product-price { font-size: 1.2rem !important; }
                                                                                                                                                                                                                                                                                                                                        .product-description { font-size: 0.92rem !important; line-height: 1.6 !important; }
                                                                                                                                                                                                                                                                                                                                          .product-form .btn { width: 100% !important; min-height: 52px !important; font-size: 1rem !important; }
                                                                                                                                                                                                                                                                                                                                            .product-thumbnails { gap: 8px !important; }
                                                                                                                                                                                                                                                                                                                                              .product-thumbnails img { width: 55px !important; height: 55px !important; }

                                                                                                                                                                                                                                                                                                                                                /* Quantity selector */
                                                                                                                                                                                                                                                                                                                                                  .qty-selector, .quantity-selector { 
                                                                                                                                                                                                                                                                                                                                                      min-height: 48px !important;
                                                                                                                                                                                                                                                                                                                                                        }
                                                                                                                                                                                                                                                                                                                                                          .qty-selector button, .quantity-selector button {
                                                                                                                                                                                                                                                                                                                                                              min-width: 44px !important;
                                                                                                                                                                                                                                                                                                                                                                  min-height: 44px !important;
                                                                                                                                                                                                                                                                                                                                                                    }

                                                                                                                                                                                                                                                                                                                                                                      /* Instagram feed */
                                                                                                                                                                                                                                                                                                                                                                        .instagram-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 6px !important; }

                                                                                                                                                                                                                                                                                                                                                                          /* Frequently bought together */
                                                                                                                                                                                                                                                                                                                                                                            .fbt-products { gap: 10px !important; }
                                                                                                                                                                                                                                                                                                                                                                              .fbt-product { width: 100% !important; }
                                                                                                                                                                                                                                                                                                                                                                                .fbt-total { font-size: 1.1rem !important; }

                                                                                                                                                                                                                                                                                                                                                                                  /* AI Recommendations */
                                                                                                                                                                                                                                                                                                                                                                                    .ai-rec-grid { grid-template-columns: 1fr 1fr !important; gap: 10px !important; }
                                                                                                                                                                                                                                                                                                                                                                                      .ai-rec-card { padding: 10px !important; }
                                                                                                                                                                                                                                                                                                                                                                                        .ai-rec-title { font-size: 0.82rem !important; }

                                                                                                                                                                                                                                                                                                                                                                                          /* Guarantee section */
                                                                                                                                                                                                                                                                                                                                                                                            .guarantee-grid { grid-template-columns: 1fr !important; gap: 15px !important; }
                                                                                                                                                                                                                                                                                                                                                                                              .guarantee-card { padding: 20px 15px !important; }

                                                                                                                                                                                                                                                                                                                                                                                                /* Modals and popups */
                                                                                                                                                                                                                                                                                                                                                                                                  .modal-content, .popup-content { 
                                                                                                                                                                                                                                                                                                                                                                                                      width: 95vw !important; 
                                                                                                                                                                                                                                                                                                                                                                                                          max-width: 95vw !important; 
                                                                                                                                                                                                                                                                                                                                                                                                              margin: 10px auto !important;
                                                                                                                                                                                                                                                                                                                                                                                                                  padding: 20px 15px !important;
                                                                                                                                                                                                                                                                                                                                                                                                                    }

                                                                                                                                                                                                                                                                                                                                                                                                                      /* Accordion / collapsible */
                                                                                                                                                                                                                                                                                                                                                                                                                        .accordion-header, .collapsible-trigger { 
                                                                                                                                                                                                                                                                                                                                                                                                                            padding: 14px 12px !important; 
                                                                                                                                                                                                                                                                                                                                                                                                                                font-size: 0.95rem !important;
                                                                                                                                                                                                                                                                                                                                                                                                                                    min-height: 48px !important;
                                                                                                                                                                                                                                                                                                                                                                                                                                      }

                                                                                                                                                                                                                                                                                                                                                                                                                                        /* Forms */
                                                                                                                                                                                                                                                                                                                                                                                                                                          input[type="text"], input[type="email"], input[type="tel"], textarea, select {
                                                                                                                                                                                                                                                                                                                                                                                                                                              min-height: 48px !important;
                                                                                                                                                                                                                                                                                                                                                                                                                                                  font-size: 16px !important;
                                                                                                                                                                                                                                                                                                                                                                                                                                                      padding: 12px !important;
                                                                                                                                                                                                                                                                                                                                                                                                                                                        }

                                                                                                                                                                                                                                                                                                                                                                                                                                                          /* Social sharing */
                                                                                                                                                                                                                                                                                                                                                                                                                                                            .share-buttons { flex-wrap: wrap !important; gap: 8px !important; }
                                                                                                                                                                                                                                                                                                                                                                                                                                                              .share-btn { min-height: 44px !important; padding: 10px 16px !important; font-size: 0.82rem !important; }
                                                                                                                                                                                                                                                                                                                                                                                                                                                              }

                                                                                                                                                                                                                                                                                                                                                                                                                                                              /* === SMALL PHONES (max-width: 420px) === */
                                                                                                                                                                                                                                                                                                                                                                                                                                                              @media (max-width: 420px) {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                /* Typography */
                                                                                                                                                                                                                                                                                                                                                                                                                                                                  h1, .h1 { font-size: 1.25rem !important; }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                    h2, .h2 { font-size: 1.1rem !important; }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                      h3, .h3 { font-size: 0.98rem !important; }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                        .section-title { font-size: 1.12rem !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                          /* Section spacing */
                                                                                                                                                                                                                                                                                                                                                                                                                                                                            section, .shopify-section { padding: 24px 12px !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                              /* Hero */
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                .hero-section, .hero-banner { min-height: 40vh !important; padding: 24px 12px !important; }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  .hero-section h1, .hero-banner h1 { font-size: 1.3rem !important; }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    .hero-section p, .hero-banner p { font-size: 0.88rem !important; }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      .hero-slide { min-height: 40vh !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        /* Product grid */
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          .product-grid, .collection-grid { gap: 10px !important; padding: 0 8px !important; }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            .product-card-info { padding: 8px !important; }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              .product-card-title { font-size: 0.78rem !important; }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                .product-card-price { font-size: 0.82rem !important; }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  .product-card .btn { padding: 8px 12px !important; font-size: 0.78rem !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    /* Category cards */
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      .cat-card, .category-card { min-height: 120px !important; }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        .cat-card-title, .category-card-title { font-size: 0.85rem !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          /* Trust badges - single column */
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            .trust-badges-grid { grid-template-columns: 1fr !important; gap: 8px !important; }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              .trust-badge { flex-direction: row !important; text-align: left !important; padding: 10px 12px !important; }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                .trust-badge-icon { font-size: 1.3rem !important; min-width: 28px !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  /* Product main trust badges - single column */
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    .pm-trust__grid { grid-template-columns: 1fr !important; gap: 6px !important; }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      .pm-trust__item { flex-direction: row !important; text-align: left !important; padding: 8px 10px !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        /* Product page */
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          .product-gallery { max-height: 300px !important; }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            .product-title { font-size: 1.15rem !important; }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              .product-price { font-size: 1.1rem !important; }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                .product-thumbnails img { width: 48px !important; height: 48px !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  /* Frequently bought together */
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    .fbt-product img { max-height: 100px !important; }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      .fbt-product-title { font-size: 0.78rem !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        /* AI Recommendations */
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          .ai-rec-grid { grid-template-columns: 1fr !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            /* Buttons */
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              .btn, button[type="submit"] { padding: 12px 20px !important; font-size: 0.88rem !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                /* Footer */
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  .footer-bottom { font-size: 0.78rem !important; flex-direction: column !important; gap: 10px !important; }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    .footer-payment-icons { justify-content: center !important; }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    /* === EXTRA SMALL PHONES (max-width: 380px) === */
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    @media (max-width: 380px) {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      /* Typography minimum enforced */
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        h1, .h1 { font-size: 1.15rem !important; }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          h2, .h2 { font-size: 1.02rem !important; }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            h3, .h3 { font-size: 0.92rem !important; }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              p, li { font-size: 0.85rem !important; line-height: 1.55 !important; }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                .section-title { font-size: 1.05rem !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  /* Maximum padding reduction */
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    section, .shopify-section { padding: 20px 10px !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      /* Hero */
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        .hero-section, .hero-banner { min-height: 35vh !important; padding: 20px 10px !important; }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          .hero-section h1, .hero-banner h1 { font-size: 1.15rem !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            /* Single column everything */
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              .product-grid, .collection-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 8px !important; }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                .product-card-info { padding: 6px !important; }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  .product-card-title { font-size: 0.72rem !important; }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    .product-card-price { font-size: 0.78rem !important; }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      .product-card .btn { padding: 7px 10px !important; font-size: 0.72rem !important; min-height: 40px !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        /* Ensure no horizontal overflow */
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          .container, .page-width, main, .main-content {
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              max-width: 100vw !important;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  overflow-x: hidden !important;
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      /* Compact trust badges */
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        .trust-badge-title { font-size: 0.75rem !important; }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          .trust-badge-sub { font-size: 0.65rem !important; }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            .pm-trust__title { font-size: 0.72rem !important; }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              .pm-trust__sub { font-size: 0.62rem !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                /* Product page compact */
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                  .product-gallery { max-height: 260px !important; }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    .product-title { font-size: 1.05rem !important; }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      .product-form .btn { min-height: 48px !important; font-size: 0.92rem !important; }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        /* Footer compact */
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                          .site-footer { padding: 25px 10px !important; }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            .footer-col h4 { font-size: 0.92rem !important; }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              .footer-col a, .footer-col p { font-size: 0.8rem !important; }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              }

                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                              /* === END MOBILE OPTIMIZATION === */
