/* ========================================
   AQUA SHINE STORE — REDESIGNED STYLESHEET
   Palette: Deep Teal · Emerald · Champagne Gold
   Fonts: Playfair Display (display) + DM Sans (body)
   ======================================== */

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

/* ===== LIGHT THEME VARIABLES ===== */
:root {
  --primary:        #0d6e6e;
  --primary-mid:    #0f8a8a;
  --primary-light:  #e0f4f4;
  --accent:         #b5924c;
  --accent-light:   #fdf5e8;
  --accent-mid:     #c9a55a;

  --teal:           #14a89e;
  --teal-soft:      #d8f2f1;
  --emerald:        #0d9e6e;

  --green-wa:       #25D366;
  --green-wa-dark:  #1aab52;

  --bg:             #f5f8f7;
  --bg2:            #eaf2f1;
  --surface:        #ffffff;
  --surface2:       #f0f7f6;
  --surface3:       #e2efee;

  --text-primary:   #0b1f1e;
  --text-secondary: #3a5e5c;
  --text-muted:     #7aa4a2;

  --border:         #c8dedd;
  --border-soft:    #dff0ef;

  --dark:           #071918;
  --dark2:          #0c2d2c;

  --radius:         18px;
  --radius-sm:      10px;
  --radius-xs:      6px;

  --shadow-sm:  0 2px 10px rgba(13,110,110,0.07);
  --shadow:     0 4px 24px rgba(13,110,110,0.1);
  --shadow-lg:  0 10px 48px rgba(13,110,110,0.15);
  --shadow-card:0 2px 18px rgba(13,110,110,0.08);

  --top-bar-h:  36px;
  --header-h:   72px;

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
}

/* ===== DARK THEME VARIABLES ===== */
[data-theme="dark"] {
  --bg:             #060f0e;
  --bg2:            #091817;
  --surface:        #0e2322;
  --surface2:       #122b2a;
  --surface3:       #183635;

  --text-primary:   #d8edec;
  --text-secondary: #7ab5b2;
  --text-muted:     #4d8c89;

  --border:         #1c3c3b;
  --border-soft:    #163332;

  --primary-light:  #0d2d2c;
  --teal-soft:      #0a2928;
  --accent-light:   #1f1608;

  --shadow-sm:  0 2px 10px rgba(0,0,0,0.35);
  --shadow:     0 4px 24px rgba(0,0,0,0.45);
  --shadow-lg:  0 10px 48px rgba(0,0,0,0.6);
  --shadow-card:0 2px 18px rgba(0,0,0,0.38);
}

/* ===== RESET ===== */
*, *::before, *::after { margin:0; padding:0; box-sizing:border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text-primary);
  overflow-x: hidden;
  transition: background 0.35s, color 0.35s;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; }

/* ===== TOP BAR ===== */
.top-bar {
  width: 100%;
  height: var(--top-bar-h);
  background: linear-gradient(90deg, var(--dark) 0%, var(--primary) 50%, var(--dark2) 100%);
  color: rgba(255,255,255,0.85);
  overflow: hidden;
  white-space: nowrap;
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  z-index: 2000;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.1em;
}

.marquee {
  display: inline-block;
  padding-left: 100%;
  animation: marquee 28s linear infinite;
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-100%); }
}

/* ===== HEADER ===== */
header {
  width: 100%;
  height: var(--header-h);
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5%;
  position: fixed;
  top: var(--top-bar-h);
  z-index: 1000;
  border-bottom: 1px solid var(--border-soft);
  transition: box-shadow 0.3s, background 0.35s, border-color 0.35s;
}
[data-theme="dark"] header {
  background: rgba(8,22,21,0.97);
  border-bottom-color: var(--border);
}
header.scrolled { box-shadow: 0 4px 32px rgba(13,110,110,0.12); }
[data-theme="dark"] header.scrolled { box-shadow: 0 4px 32px rgba(0,0,0,0.55); }

/* LOGO */
.logo { display: flex; align-items: center; gap: 10px; }
.logo-img {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center;
  flex-shrink: 0;
  box-shadow: 0 0 0 2px rgba(13,110,110,0.18), 0 2px 10px rgba(13,110,110,0.15);
  transition: box-shadow 0.3s, transform 0.3s;
}
.logo:hover .logo-img {
  box-shadow: 0 0 0 3px var(--primary), 0 4px 16px rgba(13,110,110,0.22);
  transform: scale(1.06);
}
.logo-img-footer {
  width: 34px;
  height: 34px;
  box-shadow: 0 0 0 2px rgba(20,168,158,0.3);
}
.logo-icon { display: none; }
.logo-text {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: 0.02em;
  transition: color 0.3s;
}
.logo-accent { color: var(--primary); }

/* NAV */
.nav-links { display: flex; align-items: center; gap: 4px; }

.nav-link {
  color: var(--text-secondary);
  font-size: 14px;
  font-weight: 500;
  padding: 7px 15px;
  border-radius: var(--radius-sm);
  transition: all 0.25s;
  letter-spacing: 0.02em;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px; left: 15px; right: 15px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transform: scaleX(0);
  transition: transform 0.25s ease;
}
.nav-link:hover { color: var(--primary); }
.nav-link:hover::after { transform: scaleX(1); }
.nav-link.active { color: var(--primary); font-weight: 600; }
.nav-link.active::after { transform: scaleX(1); }

.nav-socials { display: flex; align-items: center; gap: 2px; margin: 0 6px; }
.social-icon {
  display: flex; align-items: center; justify-content: center;
  width: 34px; height: 34px;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  transition: all 0.25s;
}
.social-icon:hover { background: var(--surface2); color: var(--primary); transform: translateY(-2px); }

.nav-cta {
  display: flex; align-items: center; gap: 7px;
  padding: 9px 20px;
  background: var(--green-wa);
  color: white;
  border-radius: 50px;
  font-size: 13.5px;
  font-weight: 600;
  margin-left: 6px;
  letter-spacing: 0.02em;
  transition: all 0.25s;
  box-shadow: 0 4px 14px rgba(37,211,102,0.28);
}
.nav-cta:hover { background: var(--green-wa-dark); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(37,211,102,0.42); }

/* ===== DARK MODE TOGGLE ===== */
.theme-toggle {
  width: 38px; height: 38px;
  border: 1px solid var(--border);
  background: var(--surface2);
  border-radius: 10px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  transition: all 0.25s;
  margin-left: 6px;
}
.theme-toggle:hover { background: var(--surface3); transform: rotate(15deg) scale(1.08); }

[data-theme="dark"]  .icon-sun  { display: inline; }
[data-theme="dark"]  .icon-moon { display: none; }
[data-theme="light"] .icon-moon { display: inline; }
[data-theme="light"] .icon-sun  { display: none; }
:not([data-theme]) .icon-moon   { display: inline; }
:not([data-theme]) .icon-sun    { display: none; }

/* HAMBURGER */
.hamburger {
  display: none;
  flex-direction: column; gap: 5px; justify-content: center; align-items: center;
  width: 40px; height: 40px;
  background: var(--surface2);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: background 0.2s;
}
.hamburger span {
  display: block; width: 20px; height: 1.8px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: translateX(-8px); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ===== MOBILE MENU ===== */
.mobile-menu {
  display: none;
  position: fixed;
  top: calc(var(--top-bar-h) + var(--header-h));
  left: 0; right: 0;
  background: var(--surface);
  border-bottom: 1px solid var(--border-soft);
  padding: 20px 5% 28px;
  z-index: 900;
  box-shadow: 0 12px 40px rgba(13,110,110,0.1);
  flex-direction: column;
  gap: 4px;
  transform: translateY(-12px);
  opacity: 0;
  transition: transform 0.3s cubic-bezier(0.25,0.8,0.25,1), opacity 0.3s ease;
}
.mobile-menu.open {
  display: flex;
  transform: translateY(0);
  opacity: 1;
}
[data-theme="dark"] .mobile-menu { box-shadow: 0 12px 40px rgba(0,0,0,0.55); }

.mob-link {
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  font-weight: 500;
  font-size: 15px;
  transition: all 0.2s;
}
.mob-link:hover { background: var(--surface2); color: var(--primary); }
.mob-link.active { background: var(--primary-light); color: var(--primary); font-weight: 600; }

.mob-socials { display: flex; gap: 8px; flex-wrap: wrap; padding: 12px 0 4px; border-top: 1px solid var(--border-soft); margin-top: 8px; }
.mob-social {
  display: flex; align-items: center; gap: 7px;
  padding: 8px 14px;
  background: var(--surface2);
  color: var(--text-primary);
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  font-weight: 500;
  border: 1px solid var(--border-soft);
  transition: all 0.2s;
}
.mob-social:hover { background: var(--surface3); color: var(--primary); }

.mob-theme-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 16px;
  background: var(--surface2);
  border-radius: var(--radius-sm);
  margin-top: 8px;
  border: 1px solid var(--border-soft);
}
.mob-theme-label { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 500; color: var(--text-primary); }

/* Toggle switch */
.toggle-switch { position: relative; display: inline-block; width: 44px; height: 24px; cursor: pointer; }
.toggle-switch input { display: none; }
.toggle-track {
  position: absolute; inset: 0;
  background: var(--border);
  border-radius: 24px;
  transition: background 0.3s;
}
.toggle-track::before {
  content: '';
  position: absolute;
  width: 18px; height: 18px;
  background: white;
  border-radius: 50%;
  top: 3px; left: 3px;
  transition: transform 0.3s cubic-bezier(0.25,0.8,0.25,1);
  box-shadow: 0 1px 4px rgba(0,0,0,0.18);
}
.toggle-switch input:checked + .toggle-track { background: var(--primary); }
.toggle-switch input:checked + .toggle-track::before { transform: translateX(20px); }

.mob-cta {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px;
  background: var(--green-wa);
  color: white;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 14.5px;
  margin-top: 10px;
  transition: all 0.2s;
}
.mob-cta:hover { background: var(--green-wa-dark); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: calc(var(--top-bar-h) + var(--header-h) + 60px) 5% 80px;
  gap: 60px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(140deg, #f2faf9 0%, #e8f5f4 40%, #f0f7e8 100%);
}
[data-theme="dark"] .hero {
  background: linear-gradient(140deg, #060f0e 0%, #091817 50%, #060e0a 100%);
}

.hero-bg { position: absolute; inset: 0; overflow: hidden; pointer-events: none; z-index: 0; }

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
}
[data-theme="dark"] .hero-blob { opacity: 0.2; }

.blob1 {
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(13,110,110,0.2), transparent 70%);
  top: -200px; right: -100px;
  animation: drift1 12s ease-in-out infinite alternate;
}
.blob2 {
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(20,168,158,0.16), transparent 70%);
  bottom: -100px; left: -100px;
  animation: drift2 15s ease-in-out infinite alternate;
}
.blob3 {
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(181,146,76,0.12), transparent 70%);
  top: 50%; left: 40%;
  animation: drift3 18s ease-in-out infinite alternate;
}

@keyframes drift1 { 0%{transform:translate(0,0) scale(1)} 100%{transform:translate(-30px,40px) scale(1.06)} }
@keyframes drift2 { 0%{transform:translate(0,0) scale(1)} 100%{transform:translate(40px,-30px) scale(1.08)} }
@keyframes drift3 { 0%{transform:translate(0,0)} 100%{transform:translate(-20px,30px)} }

/* Hero lines decorative */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(13,110,110,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(13,110,110,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, black 40%, transparent 100%);
}
[data-theme="dark"] .hero-bg::after {
  background-image:
    linear-gradient(rgba(20,168,158,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(20,168,158,0.06) 1px, transparent 1px);
}

.hero-content { position: relative; z-index: 2; flex: 1; max-width: 600px; animation: heroFadeUp 0.8s ease both; }

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

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 16px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 28px;
  border: 1px solid rgba(13,110,110,0.18);
  animation: heroFadeUp 0.8s 0.1s ease both;
}
[data-theme="dark"] .hero-badge {
  background: rgba(15,138,138,0.15);
  border-color: rgba(15,138,138,0.3);
  color: #5ec9c5;
}

.hero-badge-dot {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulseDot 2s ease infinite;
}
[data-theme="dark"] .hero-badge-dot { background: #5ec9c5; }
@keyframes pulseDot {
  0%,100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.7; }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--text-primary);
  margin-bottom: 20px;
  animation: heroFadeUp 0.8s 0.15s ease both;
}

.hero-accent {
  color: var(--primary);
  font-style: italic;
  background: linear-gradient(135deg, var(--primary), var(--teal));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 17px;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 480px;
  font-weight: 400;
  animation: heroFadeUp 0.8s 0.2s ease both;
}

.hero-btns { display: flex; align-items: center; gap: 14px; margin-bottom: 48px; flex-wrap: wrap; animation: heroFadeUp 0.8s 0.25s ease both; }

.btn-primary {
  padding: 14px 32px;
  background: linear-gradient(135deg, var(--primary), var(--primary-mid));
  color: white;
  border: none;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  font-family: var(--font-body);
  cursor: pointer;
  transition: all 0.28s cubic-bezier(0.25,0.8,0.25,1);
  box-shadow: 0 6px 20px rgba(13,110,110,0.3);
  letter-spacing: 0.02em;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(13,110,110,0.42); }

.btn-whatsapp {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  background: white;
  color: #1a7d3c;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 600;
  border: 2px solid rgba(37,211,102,0.3);
  transition: all 0.28s cubic-bezier(0.25,0.8,0.25,1);
  box-shadow: 0 4px 16px rgba(37,211,102,0.12);
}
.btn-whatsapp:hover {
  background: var(--green-wa);
  color: white;
  border-color: var(--green-wa);
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(37,211,102,0.38);
}
[data-theme="dark"] .btn-whatsapp { background: rgba(37,211,102,0.08); border-color: rgba(37,211,102,0.25); color: #4dda86; }

.hero-stats {
  display: flex; align-items: center; gap: 0;
  padding: 18px 24px;
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-sm);
  width: fit-content;
  animation: heroFadeUp 0.8s 0.3s ease both;
}
[data-theme="dark"] .hero-stats { background: rgba(14,35,34,0.8); border-color: var(--border); }

.stat { text-align: center; padding: 0 24px; }
.stat strong { display: block; font-size: 24px; font-weight: 700; color: var(--primary); font-family: var(--font-display); }
.stat span { font-size: 12px; color: var(--text-muted); font-weight: 500; letter-spacing: 0.03em; }

.stat-divider { width: 1px; height: 36px; background: var(--border-soft); flex-shrink: 0; }

/* HERO IMAGE SIDE */
.hero-image-side {
  position: relative; z-index: 2; flex: 1;
  display: flex; justify-content: center;
  max-width: 520px;
  animation: heroFadeUp 0.8s 0.2s ease both;
}
.hero-img-wrap { position: relative; width: 100%; }

.hero-product-frame {
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 28px 72px rgba(13,110,110,0.2);
  background: linear-gradient(135deg, var(--surface2), var(--teal-soft));
}
[data-theme="dark"] .hero-product-frame { background: linear-gradient(135deg,#132b2a,#0a2928); }

.hero-img { width: 100%; height: 460px; object-fit: cover; }

.hero-product-badge {
  position: absolute; bottom: 20px; left: 18px;
  background: var(--surface);
  border-radius: 14px;
  padding: 11px 15px;
  display: flex; align-items: center; gap: 11px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.14);
  z-index: 3;
  backdrop-filter: blur(8px);
}
[data-theme="dark"] .hero-product-badge { background: rgba(14,35,34,0.9); }

.hpb-icon {
  width: 30px; height: 30px;
  background: linear-gradient(135deg, var(--primary), var(--teal));
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
  font-size: 13px;
  flex-shrink: 0;
}
.hero-product-badge strong { display: block; font-size: 13px; color: var(--text-primary); font-weight: 600; }
.hero-product-badge small { color: var(--text-muted); font-size: 11px; }

.hero-product-badge2 {
  position: absolute; top: 18px; right: 18px;
  background: rgba(255,255,255,0.95);
  color: #7a5a1a;
  border-radius: 50px;
  padding: 7px 14px;
  font-size: 12.5px;
  font-weight: 600;
  z-index: 3;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  backdrop-filter: blur(8px);
}
[data-theme="dark"] .hero-product-badge2 { background: rgba(14,35,34,0.9); color: #d4a84a; }

.hero-img-glow {
  position: absolute; inset: 0;
  border-radius: 28px;
  background: linear-gradient(135deg, rgba(13,110,110,0.06), rgba(20,168,158,0.04));
  pointer-events: none;
}

/* ===== TRUST STRIP ===== */
.trust-strip {
  display: flex; align-items: stretch;
  background: var(--surface);
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  overflow: hidden;
}

.trust-item {
  display: flex; align-items: center; gap: 14px;
  padding: 26px 36px;
  flex: 1;
  border-right: 1px solid var(--border-soft);
  transition: background 0.25s, transform 0.25s;
}
.trust-item:last-child { border-right: none; }
.trust-item:hover { background: var(--surface2); }

.trust-icon {
  font-size: 22px;
  width: 48px; height: 48px;
  background: var(--primary-light);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s;
  color: var(--primary);
}
[data-theme="dark"] .trust-icon { background: rgba(15,138,138,0.15); }
.trust-item:hover .trust-icon { transform: scale(1.1) rotate(-4deg); background: var(--primary); color: white; }

.trust-item strong { display: block; font-size: 14px; font-weight: 600; color: var(--text-primary); margin-bottom: 2px; }
.trust-item p { font-size: 13px; color: var(--text-muted); margin: 0; }

/* Trust icon SVGs */
.trust-icon svg { width: 22px; height: 22px; }

/* ===== PRODUCTS SECTION ===== */
.products {
  padding: 90px 5%;
  max-width: 1400px;
  margin: 0 auto;
}

.section-header { text-align: center; margin-bottom: 56px; }

.section-tag {
  display: inline-block;
  padding: 5px 15px;
  background: var(--accent-light);
  color: var(--accent);
  border-radius: 50px;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 14px;
  border: 1px solid rgba(181,146,76,0.2);
}
[data-theme="dark"] .section-tag { background: rgba(181,146,76,0.1); border-color: rgba(181,146,76,0.2); color: #c9a55a; }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin-bottom: 12px;
}

.section-sub {
  font-size: 16px;
  color: var(--text-secondary);
  max-width: 480px;
  margin: 0 auto;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 26px;
}

/* CARD */
.card {
  background: var(--surface);
  border-radius: var(--radius);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.25,0.8,0.25,1),
              box-shadow 0.35s ease,
              border-color 0.3s;
}
.card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 56px rgba(13,110,110,0.14);
  border-color: rgba(13,110,110,0.2);
}

.card-image { position: relative; overflow: hidden; }
.card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7,25,24,0.08), transparent 50%);
  opacity: 0;
  transition: opacity 0.35s;
  pointer-events: none;
}
.card:hover .card-image::after { opacity: 1; }

/* SLIDER */
.slider { position: relative; height: 260px; background: var(--surface2); overflow: hidden; }
.slide {
  position: absolute; inset: 0; opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.25,0.8,0.25,1);
  object-fit: cover; width: 100%; height: 100%;
}
.slide.active { opacity: 1; }

/* Product image cards – use contain so before/after images show fully */
.card-image .slide {
  object-fit: contain;
  background: var(--surface2);
  padding: 0;
}
[data-theme="dark"] .card-image .slide { background: var(--surface3); }

.slide-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 34px; height: 34px;
  background: rgba(255,255,255,0.92);
  color: var(--text-primary);
  border: none;
  border-radius: 50%;
  font-size: 20px;
  cursor: pointer;
  z-index: 5;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.25s;
  box-shadow: 0 2px 10px rgba(0,0,0,0.12);
  line-height: 1;
  opacity: 0;
}
.card:hover .slide-btn { opacity: 1; }
.slide-btn:hover { background: white; box-shadow: 0 4px 16px rgba(0,0,0,0.18); transform: translateY(-50%) scale(1.1); }
.slide-btn.prev { left: 10px; }
.slide-btn.next { right: 10px; }

.slide-dots {
  position: absolute; bottom: 10px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 6px; z-index: 4;
}
.dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.25,0.8,0.25,1);
}
.dot.active { background: white; width: 18px; border-radius: 4px; }

.sale-tag {
  position: absolute; top: 12px; left: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-mid));
  color: white;
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  z-index: 4;
  box-shadow: 0 2px 8px rgba(181,146,76,0.38);
}

/* CARD CONTENT */
.card-content {
  padding: 22px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card-content h3 {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 8px;
  line-height: 1.3;
  min-height: 50px;
}

.reviews { display: flex; align-items: center; gap: 7px; margin-bottom: 14px; }
.stars { color: #e8a020; font-size: 14px; letter-spacing: 1px; }
.reviews span:last-child { font-size: 13px; color: var(--text-muted); }

/* SIZE SELECTOR */
.size-selector { display: flex; gap: 8px; margin-bottom: 14px; }
.size-btn {
  flex: 1;
  padding: 7px 6px;
  border: 2px solid var(--border);
  background: var(--surface2);
  color: var(--text-secondary);
  border-radius: var(--radius-xs);
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.22s cubic-bezier(0.25,0.8,0.25,1);
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.size-btn:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-light);
}
.size-btn.active {
  border-color: var(--primary);
  background: var(--primary-light);
  color: var(--primary);
  box-shadow: 0 2px 8px rgba(13,110,110,0.14);
}
[data-theme="dark"] .size-btn { background: var(--surface3); border-color: var(--border); color: var(--text-secondary); }
[data-theme="dark"] .size-btn.active,
[data-theme="dark"] .size-btn:hover {
  background: rgba(15,138,138,0.18);
  border-color: #3bbab5;
  color: #5ec9c5;
}

.price { display: flex; align-items: baseline; gap: 10px; margin-bottom: 18px; flex-wrap: wrap; }
.old-price { font-size: 14px; color: var(--text-muted); text-decoration: line-through; line-height: 1; white-space: nowrap; }
.new-price { font-size: 22px; font-weight: 700; color: var(--primary); font-family: var(--font-display); line-height: 1; white-space: nowrap; }

.order-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 12px;
  background: var(--green-wa);
  color: white;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  transition: all 0.25s cubic-bezier(0.25,0.8,0.25,1);
  box-shadow: 0 4px 14px rgba(37,211,102,0.22);
  margin-top: auto;
}
.order-btn:hover { background: var(--green-wa-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.38); }

/* ===== CTA SECTION ===== */
.cta-section {
  padding: 90px 5%;
  background: linear-gradient(135deg, var(--dark) 0%, #0c2d2c 40%, var(--primary) 100%);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 40% 60% at 20% 50%, rgba(20,168,158,0.15), transparent),
    radial-gradient(ellipse 30% 50% at 80% 50%, rgba(181,146,76,0.1), transparent);
}
.cta-section::after {
  content: '';
  position: absolute; inset: 0;
  background-image: repeating-linear-gradient(
    -45deg,
    transparent,
    transparent 24px,
    rgba(255,255,255,0.02) 24px,
    rgba(255,255,255,0.02) 25px
  );
}

.cta-inner {
  position: relative; z-index: 2;
  text-align: center; max-width: 600px; margin: 0 auto;
}
.cta-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 700;
  color: white;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.cta-inner p { font-size: 16px; color: rgba(255,255,255,0.72); margin-bottom: 36px; }

.cta-btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 36px;
  background: white;
  color: #1a7d3c;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.28s cubic-bezier(0.25,0.8,0.25,1);
  box-shadow: 0 8px 28px rgba(0,0,0,0.18);
}
.cta-btn:hover { transform: translateY(-4px); box-shadow: 0 16px 44px rgba(0,0,0,0.24); background: #f0fff7; }

/* ===== WHATSAPP BOX ===== */
.whatsapp-section { padding: 80px 5%; background: var(--surface); }
.whatsapp-box {
  max-width: 640px; margin: 0 auto;
  background: linear-gradient(135deg, var(--dark), var(--dark2));
  border-radius: 24px;
  padding: 48px 44px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
[data-theme="dark"] .whatsapp-box { background: linear-gradient(135deg, #091817, #0f2a29); border: 1px solid var(--border); }
.whatsapp-box::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 70% 30%, rgba(20,168,158,0.14), transparent 60%); }

.wa-box-icon { font-size: 0; margin-bottom: 16px; position: relative; z-index: 2; }
.wa-box-icon::before {
  content: '';
  display: block;
  width: 64px; height: 64px;
  background: linear-gradient(135deg, #25D366, #1aab52);
  border-radius: 18px;
  margin: 0 auto;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
}
.whatsapp-box h2 { font-family: var(--font-display); font-size: 32px; font-weight: 700; color: white; margin-bottom: 10px; position: relative; z-index: 2; }
.whatsapp-box p { color: rgba(255,255,255,0.65); font-size: 15px; margin-bottom: 24px; position: relative; z-index: 2; }
.wa-features { display: flex; gap: 8px; justify-content: center; flex-wrap: wrap; margin-bottom: 28px; position: relative; z-index: 2; }
.wa-features span {
  padding: 6px 14px;
  background: rgba(255,255,255,0.07);
  color: rgba(255,255,255,0.75);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,0.1);
}
.wa-main-btn {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 16px 36px;
  background: var(--green-wa);
  color: white;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 700;
  transition: all 0.28s cubic-bezier(0.25,0.8,0.25,1);
  box-shadow: 0 6px 24px rgba(37,211,102,0.42);
  margin-bottom: 14px;
  position: relative; z-index: 2;
}
.wa-main-btn:hover { background: var(--green-wa-dark); transform: translateY(-3px); box-shadow: 0 12px 36px rgba(37,211,102,0.52); }
.wa-note { color: rgba(255,255,255,0.35); font-size: 12.5px; position: relative; z-index: 2; }

/* ===== PAGE BANNER ===== */
.page-banner {
  padding: calc(var(--top-bar-h) + var(--header-h) + 70px) 5% 70px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--dark), var(--dark2));
}
.page-banner::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(13,110,110,0.88), rgba(7,25,24,0.82));
  z-index: 1;
}
.banner-content { position: relative; z-index: 3; text-align: center; max-width: 640px; margin: 0 auto; }
.banner-content .section-tag { background: rgba(255,255,255,0.1); color: rgba(255,255,255,0.88); border-color: rgba(255,255,255,0.22); margin-bottom: 16px; }
.banner-content h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 700;
  color: white;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.banner-content p { font-size: 16px; color: rgba(255,255,255,0.72); }

/* CONTACT BANNER */
.contact-banner { background-image: url('https://images.unsplash.com/photo-1585421514284-efb74c2b69ba?q=80&w=1600'); background-size: cover; background-position: center; }
.contact-banner::after { content: ''; position: absolute; inset: 0; background: rgba(6,20,19,0.82); z-index: 1; }
.contact-banner .banner-content { z-index: 3; }

/* ===== ABOUT SECTION ===== */
.about-section { padding: 90px 5%; max-width: 1300px; margin: 0 auto; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}

.about-img-wrap { position: relative; }
.about-img-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}
.about-img-accent {
  position: absolute;
  width: 60%; height: 60%;
  bottom: -24px; left: -24px;
  background: var(--primary-light);
  border-radius: var(--radius);
  z-index: -1;
}
[data-theme="dark"] .about-img-accent { background: rgba(15,138,138,0.12); border: 1px solid rgba(15,138,138,0.2); }

.about-text .section-tag { margin-bottom: 14px; }
.about-text h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 20px;
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.about-text p { color: var(--text-secondary); font-size: 16px; line-height: 1.75; margin-bottom: 18px; }

.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 30px 0 36px; }
.value-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 18px;
  background: var(--surface2);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-soft);
  transition: all 0.3s cubic-bezier(0.25,0.8,0.25,1);
}
.value-item:hover { background: var(--primary-light); border-color: rgba(13,110,110,0.22); transform: translateY(-3px); box-shadow: var(--shadow-sm); }
[data-theme="dark"] .value-item:hover { background: rgba(15,138,138,0.12); }

.value-icon { font-size: 20px; flex-shrink: 0; width: 38px; height: 38px; background: var(--surface); border-radius: var(--radius-xs); display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-sm); }
.value-item strong { display: block; font-size: 14px; font-weight: 600; color: var(--text-primary); margin-bottom: 3px; }
.value-item p { font-size: 12.5px; color: var(--text-muted); margin: 0; line-height: 1.4; }

/* ===== CONTACT INFO CARDS ===== */
.contact-info-cards { padding: 90px 5%; max-width: 1300px; margin: 0 auto; }
.info-cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

.info-card {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 32px 28px;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-card);
  display: flex; flex-direction: column;
  transition: transform 0.35s cubic-bezier(0.25,0.8,0.25,1), box-shadow 0.35s, border-color 0.3s;
}
.info-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(13,110,110,0.12); border-color: rgba(13,110,110,0.18); }

.ic-icon {
  width: 58px; height: 58px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  margin-bottom: 18px;
  transition: transform 0.3s;
}
.info-card:hover .ic-icon { transform: scale(1.1) rotate(-4deg); }
.ic-wa .ic-icon  { background: rgba(37,211,102,0.1); color: #22c55e; }
.ic-cod .ic-icon { background: rgba(181,146,76,0.1); font-size: 28px; }
.ic-call .ic-icon { background: var(--primary-light); color: var(--primary); }
.ic-ig .ic-icon  { background: rgba(220,39,67,0.1); color: #dc2743; }
.ic-tt .ic-icon  { background: rgba(0,0,0,0.05); color: #010101; }
.ic-delivery .ic-icon { background: rgba(13,110,110,0.1); color: var(--primary); }
[data-theme="dark"] .ic-tt .ic-icon { background: rgba(255,255,255,0.07); color: #dde6f0; }

.info-card h3 { font-family: var(--font-display); font-size: 20px; color: var(--text-primary); margin-bottom: 10px; font-weight: 600; }
.info-card p { color: var(--text-secondary); font-size: 14px; line-height: 1.7; margin-bottom: 16px; flex: 1; }

.ic-detail {
  font-size: 12.5px; font-weight: 600;
  color: var(--text-primary);
  padding: 6px 12px;
  background: var(--surface2);
  border-radius: var(--radius-xs);
  margin-bottom: 18px;
  display: inline-block;
  border: 1px solid var(--border-soft);
}

.ic-btn {
  display: flex; align-items: center; justify-content: center;
  padding: 11px 20px;
  border-radius: var(--radius-sm);
  font-size: 13.5px;
  font-weight: 600;
  color: white;
  transition: all 0.25s cubic-bezier(0.25,0.8,0.25,1);
}
.ic-btn-wa  { background: #22c55e; box-shadow: 0 4px 14px rgba(37,211,102,0.28); }
.ic-btn-wa:hover  { background: var(--green-wa-dark); transform: translateY(-2px); }
.ic-btn-cod { background: linear-gradient(135deg, var(--accent), var(--accent-mid)); box-shadow: 0 4px 14px rgba(181,146,76,0.3); }
.ic-btn-cod:hover { opacity: 0.9; transform: translateY(-2px); }
.ic-btn-call { background: var(--primary); box-shadow: 0 4px 14px rgba(13,110,110,0.28); }
.ic-btn-call:hover { background: var(--primary-mid); transform: translateY(-2px); }
.ic-btn-ig  { background: linear-gradient(135deg,#f09433,#dc2743,#bc1888); box-shadow: 0 4px 14px rgba(220,39,67,0.25); }
.ic-btn-ig:hover  { opacity: 0.9; transform: translateY(-2px); }
.ic-btn-tt  { background: #010101; box-shadow: 0 4px 14px rgba(0,0,0,0.18); }
.ic-btn-tt:hover  { background: #333; transform: translateY(-2px); }

/* ===== HOW TO ORDER ===== */
.how-to-order {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark2) 100%);
  padding: 90px 5%;
  position: relative; overflow: hidden;
}
[data-theme="dark"] .how-to-order { background: linear-gradient(135deg, #040c0b, #091817); }
.how-to-order::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(20,168,158,0.14), transparent 60%),
              radial-gradient(ellipse at 70% 50%, rgba(13,110,110,0.1), transparent 60%);
}
.hto-inner { position: relative; z-index: 2; max-width: 1000px; margin: 0 auto; }
.hto-steps { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }

.hto-step {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  flex: 1; min-width: 210px; max-width: 260px;
  position: relative;
  transition: background 0.35s, border-color 0.35s, transform 0.35s;
}
.hto-step:hover { background: rgba(255,255,255,0.09); border-color: rgba(255,255,255,0.18); transform: translateY(-5px); }

.hto-num {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  width: 28px; height: 28px;
  background: linear-gradient(135deg, var(--primary), var(--teal));
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 12px;
  box-shadow: 0 4px 12px rgba(13,110,110,0.42);
}
.hto-icon { font-size: 38px; margin-bottom: 14px; }
.hto-step h3 { font-family: var(--font-display); color: white; font-size: 18px; margin-bottom: 10px; font-weight: 600; }
.hto-step p { color: rgba(255,255,255,0.55); font-size: 13.5px; line-height: 1.65; }
.hto-arrow { font-size: 26px; color: rgba(255,255,255,0.2); font-weight: 300; flex-shrink: 0; }

/* ===== FOOTER ===== */
footer {
  background: var(--dark);
  color: white;
  border-top: 1px solid rgba(255,255,255,0.04);
}
[data-theme="dark"] footer { background: #030b0a; border-top-color: var(--border); }

.footer-inner {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: 56px 5% 48px;
  flex-wrap: wrap; gap: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  max-width: 1400px; margin: 0 auto;
}

.footer-logo-link { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; }
.footer-logo { font-family: var(--font-display); font-size: 22px; font-weight: 700; }

.footer-brand p { color: rgba(255,255,255,0.42); font-size: 14px; line-height: 1.7; max-width: 260px; }
.footer-socials { display: flex; gap: 8px; margin-top: 20px; }
.fsoc {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.25s;
  color: white;
}
.fsoc:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,0,0,0.3); }
.fsoc-wa { background: #22c55e; }
.fsoc-ig { background: linear-gradient(135deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); }
.fsoc-tt { background: #1a1a1a; border: 1px solid rgba(255,255,255,0.1); }
.fsoc-call { background: var(--primary); }

.footer-nav { display: flex; gap: 64px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; min-width: 100px; }
.footer-col h4 {
  color: rgba(255,255,255,0.3);
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 4px;
}
.footer-col a { color: rgba(255,255,255,0.55); font-size: 14px; transition: color 0.22s; }
.footer-col a:hover { color: white; }

.footer-bottom { padding: 20px 5%; text-align: center; max-width: 1400px; margin: 0 auto; }
.footer-bottom p { color: rgba(255,255,255,0.28); font-size: 12.5px; }
.footer-bottom strong { color: var(--teal); }

/* ===== FLOATING WHATSAPP ===== */
.whatsapp-float {
  position: fixed; bottom: 28px; right: 28px;
  width: 58px; height: 58px;
  background: var(--green-wa);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 22px rgba(37,211,102,0.5);
  z-index: 999;
  transition: all 0.25s cubic-bezier(0.25,0.8,0.25,1);
  animation: wa-pulse 2.5s ease infinite;
}
.whatsapp-float:hover { transform: scale(1.14); box-shadow: 0 12px 34px rgba(37,211,102,0.62); animation: none; }

@keyframes wa-pulse {
  0%,100% { box-shadow: 0 6px 22px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 6px 32px rgba(37,211,102,0.72), 0 0 0 12px rgba(37,211,102,0.08); }
}

/* ===== STEP ===== */
.step { padding: 28px; background: var(--surface2); border-radius: var(--radius); border: 1px solid var(--border-soft); }

/* ===== SCROLL REVEAL (enhanced by JS) ===== */
.reveal-ready {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s cubic-bezier(0.25,0.8,0.25,1), transform 0.6s cubic-bezier(0.25,0.8,0.25,1);
}
.reveal-ready.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .about-grid { grid-template-columns: 1fr; gap: 44px; }
  .about-img-wrap img { height: 360px; }
  .about-img-accent { display: none; }
  .info-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-nav { gap: 36px; }
}

@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .hero { flex-direction: column; text-align: center; padding-top: calc(var(--top-bar-h) + var(--header-h) + 40px); }
  .hero-image-side { display: none; }
  .hero-btns { justify-content: center; }
  .hero-stats { margin: 0 auto; }
  .hero-subtitle { margin-left: auto; margin-right: auto; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-socials { display: none; }

  .trust-strip { flex-direction: column; }
  .trust-item { border-right: none; border-bottom: 1px solid var(--border-soft); padding: 20px 5%; }
  .trust-item:last-child { border-bottom: none; }

  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }

  .size-selector { flex-direction: column; gap: 5px; }
  .size-btn { font-size: 11.5px; padding: 7px 5px; width: 100%; text-align: center; }

  .price { margin-bottom: 10px; gap: 5px; }
  .new-price { font-size: 17px; }
  .old-price { font-size: 11.5px; }

  .card-content { padding: 12px 11px 14px; }
  .card-content h3 { font-size: 14px; min-height: unset; margin-bottom: 5px; line-height: 1.25; }
  .reviews { margin-bottom: 8px; gap: 5px; }
  .reviews span:last-child { font-size: 11px; }
  .stars { font-size: 11px; }
  .order-btn { font-size: 12px; padding: 9px 6px; gap: 4px; }
  .order-btn svg { width: 12px; height: 12px; flex-shrink: 0; }

  .info-cards-grid { grid-template-columns: 1fr; }
  .hto-steps { flex-direction: column; align-items: center; }
  .hto-arrow { transform: rotate(90deg); }

  .footer-inner { flex-direction: column; }
  .footer-nav { gap: 24px; }

  .hero-stats { flex-wrap: wrap; gap: 0; }
  .stat-divider { display: none; }
  .stat { padding: 12px 16px; }

  .whatsapp-box { padding: 36px 24px; }
  .about-values { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .hero-btns { flex-direction: column; align-items: stretch; width: 100%; }
  .btn-primary, .btn-whatsapp { width: 100%; justify-content: center; }
  .cta-section h2 { font-size: 30px; }
  .about-values { grid-template-columns: 1fr; }
  .size-btn { font-size: 11px; padding: 7px 4px; }
}
