/* ==========================================================
   Ramon Pinales Wellness | LifeWave Premium Wellness Store
   FUTURISTIC NAVY THEME — per promt.txt design system
   ========================================================== */

:root {
  --bg-main: #031033;
  --bg-section: #06235A;
  --bg-card: #073A88;
  --primary: #0D66C5;
  --accent-glow: #3FADE8;
  --silver-light: #C7D3DE;
  --silver-mid: #97A2B4;
  --text-white: #FFFFFF;

  /* Supporting tokens */
  --bg-deep: #02081F;
  --bg-glow-a: rgba(63, 173, 232, 0.28);
  --bg-glow-b: rgba(13, 102, 197, 0.32);
  --silver-deep: #626F89;
  --ink-light: #EDF4FF;
  --ink-mute: #B7C4D6;
  --ink-dim: #8FA3BB;
  --line: rgba(63, 173, 232, 0.16);
  --line-strong: rgba(63, 173, 232, 0.38);
  --gold: #F5C518;
  --wa: #25D366;
  --wa-dark: #1FBD5C;
  --white-surface: #FFFFFF;
  --dark-ink: #0B1D3A;
  --dark-ink-soft: #43566E;
  --radius: 18px;
  --radius-sm: 12px;
  --font-body: 'Manrope', system-ui, -apple-system, sans-serif;
  --font-head: 'Manrope', system-ui, -apple-system, sans-serif;
  --font-ser: 'Playfair Display', Georgia, serif;
  --shadow-lg: 0 30px 70px rgba(0, 8, 30, 0.45);
  --shadow-md: 0 16px 40px rgba(0, 8, 30, 0.32);
}

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

html { scroll-behavior: smooth; scroll-padding-top: 88px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

body {
  font-family: var(--font-body);
  background: var(--bg-main);
  color: var(--ink-light);
  line-height: 1.7;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--font-head); font-weight: 800; }

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

a { color: inherit; text-decoration: none; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--accent-glow); outline-offset: 3px; border-radius: 6px;
}

.container { width: 100%; max-width: 1220px; margin: 0 auto; padding: 0 22px; }

.skip-link { position: absolute; left: -9999px; top: 0; background: var(--primary); color: #fff; padding: 10px 16px; z-index: 2000; border-radius: 0 0 8px 0; }
.skip-link:focus { left: 0; }

/* ---------- Metallic heading + buttons (promt.txt) ---------- */
.metallic-heading {
  background: linear-gradient(180deg, #C7D3DE 0%, #97A2B4 50%, #626F89 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  filter: drop-shadow(0 0 8px rgba(63, 173, 232, 0.6));
}

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-family: var(--font-body); font-weight: 700; font-size: 0.92rem; letter-spacing: 0.05em;
  padding: 0 28px; height: 52px; line-height: 1.15;
  border-radius: var(--radius-sm); border: 1px solid transparent;
  cursor: pointer; transition: transform .25s cubic-bezier(.25,.8,.25,1), box-shadow .3s, background .3s, color .3s, border-color .3s;
  white-space: normal; text-align: center; text-transform: uppercase; overflow: hidden;
  -webkit-tap-highlight-color: transparent;
}
.btn:active { transform: translateY(1px) scale(0.985); }
.btn-sm { padding: 0 14px; height: 40px; font-size: 0.82rem; line-height: 1.15; border-radius: 10px; }
.btn-lg { padding: 0 24px; height: 58px; font-size: 0.98rem; line-height: 1.15; }
.btn-block { width: 100%; }
html[lang="es"] .btn { letter-spacing: 0.02em; }
html[lang="es"] .btn-sm { padding: 0 12px; font-size: 0.76rem; }
html[lang="es"] .btn-lg { padding: 0 20px; font-size: 0.9rem; }

/* ---------- Preloader (Professional, theme-matched) ---------- */
.preloader {
  position: fixed; inset: 0; z-index: 9999;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background:
    radial-gradient(120% 120% at 50% 0%, #06235A 0%, #031033 55%, #02081F 100%);
  opacity: 1; visibility: visible;
  transition: opacity .6s ease, visibility .6s ease;
}
.preloader.is-done { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader.is-hidden { display: none; }

.preloader__grid {
  position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image:
    linear-gradient(rgba(63, 173, 232, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(63, 173, 232, 0.06) 1px, transparent 1px);
  background-size: 46px 46px;
  -webkit-mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000 30%, transparent 75%);
  mask-image: radial-gradient(ellipse 70% 70% at 50% 50%, #000 30%, transparent 75%);
}
.preloader__glow {
  position: absolute; border-radius: 50%; filter: blur(70px); pointer-events: none;
}
.preloader__glow--a { width: 360px; height: 360px; top: -110px; left: -110px; background: var(--bg-glow-a); }
.preloader__glow--b { width: 450px; height: 450px; right: -150px; bottom: -130px; background: var(--bg-glow-b); }

.preloader__center {
  position: relative; display: flex; flex-direction: column; align-items: center; gap: 26px;
}
.preloader__logo {
  position: relative; width: 108px; height: 108px;
  display: grid; place-items: center;
}
.preloader__logo::before {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  border: 1px solid rgba(63, 173, 232, 0.22);
}
.preloader__logo::after {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  border: 2px solid transparent; border-top-color: var(--accent-glow); border-right-color: var(--primary);
  animation: preSpin 1.05s linear infinite;
}
@keyframes preSpin { to { transform: rotate(360deg); } }
.preloader__orbit { position: absolute; inset: -10px; animation: preSpin 2.4s linear infinite reverse; }
.preloader__orbit i {
  position: absolute; top: -4px; left: 50%; width: 8px; height: 8px; margin-left: -4px; border-radius: 50%;
  background: #A8E1FF; box-shadow: 0 0 12px rgba(63, 173, 232, 0.95);
}
.preloader__mark {
  font-family: var(--font-head); font-weight: 800; font-size: 1.55rem; color: var(--ink-light);
  letter-spacing: 0.06em; z-index: 1;
  text-shadow: 0 0 22px rgba(63, 173, 232, 0.6);
}
.preloader__text { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.preloader__brand {
  font-family: var(--font-head); font-weight: 800; font-size: 1.3rem; color: var(--ink-light);
  letter-spacing: 0.38em; text-transform: uppercase; text-indent: 0.38em;
}
.preloader__tag {
  font-family: var(--font-body); font-size: 0.7rem; font-weight: 600;
  color: var(--silver-mid); letter-spacing: 0.24em; text-transform: uppercase; text-indent: 0.24em;
}
.preloader__progress { width: 210px; display: flex; flex-direction: column; align-items: center; gap: 9px; }
.preloader__bar {
  width: 100%; height: 3px; border-radius: 99px; overflow: hidden;
  background: rgba(63, 173, 232, 0.14);
}
.preloader__bar span {
  display: block; height: 100%; width: 0%; border-radius: 99px;
  background: linear-gradient(90deg, var(--primary), var(--accent-glow));
  box-shadow: 0 0 12px rgba(63, 173, 232, 0.75);
  transition: width .4s ease;
}
.preloader__pct {
  font-family: var(--font-body); font-size: 0.7rem; font-weight: 600;
  color: var(--silver-light); letter-spacing: 0.1em;
}
@media (prefers-reduced-motion: reduce) {
  .preloader__logo::after, .preloader__orbit { animation: none; }
}
@media (max-width: 480px) {
  .preloader__brand { font-size: 1.08rem; letter-spacing: 0.28em; text-indent: 0.28em; }
  .preloader__progress { width: 180px; }
}

.btn-primary, .primary-btn {
  background: var(--primary);
  color: var(--text-white);
  border: 1px solid var(--accent-glow);
  box-shadow: 0 0 20px rgba(63, 173, 232, 0.6);
}
.btn-primary:hover, .primary-btn:hover { background: #0e7ae8; transform: translateY(-2px); box-shadow: 0 0 30px rgba(63, 173, 232, 0.8); }
.btn-primary:active, .primary-btn:active { box-shadow: 0 0 14px rgba(63, 173, 232, 0.5); }

.btn-wa {
  background: var(--wa); color: #fff;
  box-shadow: 0 10px 22px -8px rgba(37, 211, 102, 0.5);
}
.btn-wa:hover { background: var(--wa-dark); transform: translateY(-2px); box-shadow: 0 14px 28px -10px rgba(37, 211, 102, 0.55); }
.btn-wa:active { box-shadow: 0 4px 10px -5px rgba(37, 211, 102, 0.45); }

.btn-outline {
  background: rgba(255, 255, 255, 0.04); color: var(--accent-glow);
  border-color: var(--line-strong);
}
.btn-outline:hover { background: rgba(63, 173, 232, 0.12); border-color: var(--accent-glow); transform: translateY(-2px); box-shadow: 0 10px 24px -10px rgba(63, 173, 232, 0.45); }
.btn-outline:active { box-shadow: 0 3px 8px -3px rgba(63, 173, 232, 0.3); }

.btn-ghost { background: rgba(255, 255, 255, 0.06); color: var(--silver-light); border-color: rgba(199, 211, 222, 0.3); box-shadow: 0 1px 2px rgba(2, 8, 31, 0.3); }
.btn-ghost:hover { border-color: var(--accent-glow); color: var(--accent-glow); transform: translateY(-2px); box-shadow: 0 8px 18px -8px rgba(63, 173, 232, 0.4); }
.btn-ghost:active { box-shadow: none; }

/* ---------- Navbar ---------- */
.navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  background: rgba(3, 16, 51, 0.78);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .35s ease, background .35s ease;
}
.navbar.scrolled { background: rgba(2, 9, 31, 0.96); box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4); }
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; gap: 18px; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center;
  background: linear-gradient(135deg, var(--primary), #0b4a9c);
  color: #fff; font-family: var(--font-head); font-weight: 800; font-size: 1.05rem; letter-spacing: .5px;
  box-shadow: 0 0 18px rgba(63, 173, 232, 0.55), 0 8px 18px rgba(2, 8, 31, 0.4);
  border: 1px solid var(--accent-glow);
}
.brand-name { font-family: var(--font-head); font-weight: 800; font-size: 1.14rem; letter-spacing: .2px; color: var(--ink-light); line-height: 1.1; }
.brand-name .brand-tag { display: block; font-family: var(--font-body); font-size: 0.6rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2.4px; color: var(--accent-glow); margin-top: 2px; }

.nav-links { display: flex; gap: 2px; align-items: center; }
.nav-links a { padding: 9px 13px; border-radius: 9px; font-size: 0.9rem; font-weight: 600; color: var(--ink-mute); transition: color .2s, background .2s; letter-spacing: .02em; }
.nav-links a:hover { color: var(--accent-glow); background: rgba(63, 173, 232, 0.1); }

.nav-actions { display: flex; align-items: center; gap: 10px; }
.nav-icon {
  position: relative; width: 42px; height: 42px; border-radius: 11px; display: grid; place-items: center;
  background: rgba(255, 255, 255, 0.05); border: 1px solid var(--line); color: var(--silver-light);
  cursor: pointer; transition: color .2s, border-color .2s, background .2s, transform .2s;
}
.nav-icon:hover { color: var(--accent-glow); border-color: var(--accent-glow); background: rgba(63, 173, 232, 0.1); transform: translateY(-1px); }
.nav-icon.has-badge { padding: 0; }
.nav-count {
  position: absolute; top: -7px; right: -7px; min-width: 20px; height: 20px; padding: 0 5px;
  display: grid; place-items: center; border-radius: 999px;
  background: linear-gradient(135deg, var(--accent-glow), #2b8fe0); color: #031033;
  font-size: 0.72rem; font-weight: 800; border: 2px solid var(--bg-main);
}

.lang-switch { display: flex; align-items: center; gap: 2px; font-size: 0.9rem; color: var(--ink-dim); }
.lang-divider { opacity: .4; }
.lang-btn { background: none; border: none; color: var(--ink-dim); cursor: pointer; font-family: var(--font-head); font-weight: 700; font-size: 0.88rem; padding: 4px 6px; }
.lang-btn.active { color: var(--accent-glow); }

.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 8px; }
.h-line { width: 24px; height: 2px; background: var(--ink-light); border-radius: 2px; transition: transform .3s, opacity .3s; }
.hamburger.open .h-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open .h-line:nth-child(2) { opacity: 0; }
.hamburger.open .h-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center;
  overflow: hidden; padding: 130px 22px 90px;
}
.hero-poster {
  position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; object-fit: cover;
  background-size: cover; background-position: center;
}
.hero-video {
  position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; object-fit: cover;
  opacity: 1; transition: opacity .5s ease;
  animation: heroRoll 36s ease-in-out infinite alternate;
  will-change: transform;
  image-rendering: auto;
}
.hero-video.is-loading { opacity: 0; }
@keyframes heroRoll {
  from { transform: scale(1.0) translateY(0); }
  to { transform: scale(1.08) translateY(-1%); }
}
@media (prefers-reduced-motion: reduce) {
  .hero-video { animation: none; }
}
.hero-overlay {
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(180deg, rgba(3, 16, 51, 0.62) 0%, rgba(3, 16, 51, 0.34) 40%, rgba(2, 8, 31, 0.9) 100%);
  background: linear-gradient(180deg, rgba(3, 16, 51, 0.7) 0%, rgba(6, 35, 90, 0.4) 45%, rgba(2, 8, 31, 0.92) 100%);
}
.hero-fx { position: absolute; inset: 0; z-index: 1; overflow: hidden; }
.ring { position: absolute; border: 1px solid rgba(63, 173, 232, 0.18); border-radius: 50%; }
.ring-1 { width: 520px; height: 520px; top: 50%; left: 50%; transform: translate(-50%, -50%); animation: slowSpin 46s linear infinite; }
.ring-2 { width: 780px; height: 780px; top: 50%; left: 50%; transform: translate(-50%, -50%); border-color: rgba(63, 173, 232, 0.1); animation: slowSpin 64s linear infinite reverse; }
@keyframes slowSpin { to { transform: translate(-50%, -50%) rotate(360deg); } }
.particles { position: absolute; inset: 0; }

.hero-inner { position: relative; z-index: 3; max-width: 900px; animation: fadeUp 1s ease both; }
.hero-eyebrow {
  color: var(--accent-glow); font-weight: 700; letter-spacing: 4px; text-transform: uppercase; font-size: 0.78rem; margin-bottom: 24px;
  display: inline-block; padding: 10px 22px; border: 1px solid rgba(63, 173, 232, 0.4); border-radius: 999px;
  background: rgba(3, 16, 51, 0.5); backdrop-filter: blur(8px);
  box-shadow: 0 0 24px rgba(63, 173, 232, 0.2) inset;
}
.hero-title { font-size: clamp(2.6rem, 6.4vw, 5rem); line-height: 1.06; font-weight: 800; letter-spacing: -0.02em; text-shadow: 0 4px 34px rgba(2, 8, 18, 0.6); }
.hero-sub { margin: 26px auto 42px; font-size: clamp(1.06rem, 2.4vw, 1.28rem); color: var(--ink-mute); max-width: 680px; text-shadow: 0 2px 14px rgba(2, 8, 18, 0.6); }
.hero-cta { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.scroll-hint {
  margin-top: 54px; display: inline-flex; flex-direction: column; align-items: center; gap: 8px;
  color: var(--silver-mid); font-size: 0.78rem; letter-spacing: 3px; text-transform: uppercase; font-weight: 600;
}
.scroll-hint::before {
  content: ''; width: 24px; height: 40px; border: 2px solid var(--silver-mid); border-radius: 14px; position: relative;
  box-shadow: 0 0 14px rgba(63, 173, 232, 0.25);
}
.scroll-hint::after {
  content: ''; position: absolute; width: 4px; height: 8px; border-radius: 4px; background: var(--accent-glow);
  transform: translateY(8px); animation: scrollDot 1.8s ease-in-out infinite;
}
.scroll-hint { position: relative; }
@keyframes scrollDot { 0%, 100% { opacity: 0; transform: translateY(6px); } 30% { opacity: 1; } 60% { opacity: 1; transform: translateY(18px); } }

@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }

/* ---------- Trust bar ---------- */
.trust-bar { background: linear-gradient(180deg, var(--bg-section), #041B48); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); text-align: center; }
.trust-item { display: flex; align-items: center; justify-content: center; gap: 14px; padding: 26px 12px; font-weight: 700; font-size: 0.96rem; color: var(--ink-light); border-right: 1px solid var(--line); letter-spacing: .02em; }
.trust-item:last-child { border-right: none; }
.trust-ico { color: var(--accent-glow); display: grid; place-items: center; filter: drop-shadow(0 0 10px rgba(63, 173, 232, 0.5)); }

/* ---------- Sections ---------- */
.section { padding: 108px 22px; }
.section-eyebrow {
  color: var(--accent-glow); font-weight: 800; letter-spacing: 3.5px; text-transform: uppercase; font-size: 0.72rem; margin-bottom: 16px;
  display: inline-flex; align-items: center; gap: 10px;
}
.section-eyebrow::before { content: ''; width: 26px; height: 2px; background: var(--accent-glow); border-radius: 2px; box-shadow: 0 0 10px rgba(63, 173, 232, 0.7); }
.section-eyebrow.centered::after { content: ''; width: 26px; height: 2px; background: var(--accent-glow); border-radius: 2px; box-shadow: 0 0 10px rgba(63, 173, 232, 0.7); }
.section-eyebrow.centered { justify-content: center; }
.section-eyebrow.light { color: var(--sky, #dbeafe); }
.section-eyebrow.light::before { background: var(--sky, #dbeafe); }
.section-title { font-size: clamp(2rem, 4.8vw, 3.1rem); font-weight: 800; letter-spacing: -0.02em; line-height: 1.1; margin-bottom: 18px; color: var(--ink-light); }
.section-title.light { color: #fff; }
.section-title.centered { text-align: center; }
.section-sub { color: var(--ink-dim); font-size: 1.08rem; max-width: 660px; margin-bottom: 52px; }
.section-sub.center { margin-left: auto; margin-right: auto; text-align: center; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; } }

/* Improve scroll render performance by skipping paint of off-screen sections */
@media (min-width: 768px) {
  .trust-bar, .featured, .categories, .showcase, .education, .story,
  .why, .about, .testimonials, .best, .faq, .final-cta, .contact, .footer {
    content-visibility: auto;
    contain-intrinsic-size: auto 700px;
  }
}

/* ---------- Glass card base ---------- */
.glass {
  background: linear-gradient(160deg, rgba(7, 58, 136, 0.55), rgba(3, 16, 51, 0.35));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  backdrop-filter: blur(6px);
}

/* ---------- Carousel (featured) ---------- */
.featured { background: linear-gradient(180deg, var(--bg-main), var(--bg-section)); }
.carousel { position: relative; }
.carousel-track {
  display: flex; gap: 22px; overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 6px 4px 26px; scrollbar-width: none;
}
.carousel-track::-webkit-scrollbar { display: none; }
.carousel-arrow {
  position: absolute; top: 44%; z-index: 5; width: 48px; height: 48px; border-radius: 50%;
  display: grid; place-items: center; cursor: pointer;
  background: rgba(3, 16, 51, 0.8); color: var(--accent-glow); border: 1px solid var(--line-strong);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.4), 0 0 18px rgba(63, 173, 232, 0.25);
  transition: background .25s, transform .25s, color .25s;
}
.carousel-arrow:hover { background: var(--primary); color: #fff; transform: scale(1.08); }
.carousel-arrow.prev { left: -22px; }
.carousel-arrow.next { right: -22px; }

/* Featured carousel dots + CTA */
.carousel-viewport { overflow: hidden; border-radius: var(--radius); }
.carousel-dots { display: flex; justify-content: center; gap: 8px; margin-top: 22px; flex-wrap: wrap; }
.feat-dot {
  width: 9px; height: 9px; border-radius: 999px; border: 1px solid rgba(63, 173, 232, 0.4);
  background: rgba(199, 211, 222, 0.22); cursor: pointer; padding: 0;
  transition: width .25s ease, background .25s ease, border-color .25s ease;
}
.feat-dot:hover { border-color: var(--accent-glow); }
.feat-dot.active { width: 26px; background: var(--accent-glow); border-color: var(--accent-glow); box-shadow: 0 0 10px rgba(63, 173, 232, 0.5); }
.featured-cta { margin-top: 34px; }

/* Featured / best-seller product cards */
.carousel-card, .product-card {
  flex: 0 0 auto; width: 300px; scroll-snap-align: start;
  background: linear-gradient(165deg, rgba(7, 58, 136, 0.6), rgba(3, 16, 51, 0.45));
  border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .4s cubic-bezier(.25,.8,.25,1), border-color .3s, box-shadow .4s cubic-bezier(.25,.8,.25,1);
  position: relative;
}
.carousel-card { width: 22%; min-width: 240px; }
.carousel-track { align-items: stretch; }
.carousel-card::before, .product-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; z-index: 4;
  background: linear-gradient(90deg, transparent, var(--accent-glow), transparent);
  opacity: 0; transition: opacity .35s ease;
}
.carousel-card:hover::before, .product-card:hover::before { opacity: .9; }
.carousel-card:hover, .product-card:hover { transform: translateY(-10px); border-color: rgba(63, 173, 232, 0.55); box-shadow: 0 28px 60px rgba(0, 0, 0, 0.45), 0 0 35px rgba(63, 173, 232, 0.15); }

/* ==========================================================
   PREMIUM PRODUCT CARD  (promt.txt design -> hybrid dark)
   Gold stars + indigo/brand accents on the navy theme
   ========================================================== */
.product-card__image-wrapper, .carousel-card .product-card__image-wrapper {
  position: relative; overflow: hidden; aspect-ratio: 1 / 1;
  background: radial-gradient(140% 120% at 50% 0%, rgba(63, 173, 232, 0.16), rgba(3, 16, 51, 0.3));
  border-bottom: 1px solid var(--line); display: flex; align-items: center; justify-content: center;
}
.product-card__image {
  width: 100%; height: 100%; object-fit: contain; padding: 22px;
  transition: transform .6s cubic-bezier(.4, 0, .2, 1);
}
.product-card:hover .product-card__image, .carousel-card:hover .product-card__image { transform: scale(1.08); }

/* Badges (top-left, glassy) */
.product-card__badges {
  position: absolute; top: 14px; left: 14px; display: flex; flex-direction: column; gap: 8px; z-index: 3;
}
.badge {
  display: inline-flex; align-items: center; gap: 4px; padding: 6px 13px; border-radius: 50px;
  font-size: 0.62rem; font-weight: 800; letter-spacing: .5px; text-transform: uppercase;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  animation: badgeIn .45s ease-out both;
}
.badge--sale { background: rgba(239, 68, 68, 0.92); color: #fff; box-shadow: 0 4px 14px rgba(239, 68, 68, 0.45); }
.badge--bestseller { background: rgba(63, 173, 232, 0.92); color: #031033; box-shadow: 0 4px 14px rgba(63, 173, 232, 0.45); animation-delay: .08s; }
@keyframes badgeIn {
  from { opacity: 0; transform: translateX(-18px) scale(.8); }
  to { opacity: 1; transform: translateX(0) scale(1); }
}

/* Wishlist (top-right, round glass) */
.product-card__image-wrapper .card-heart, .carousel-card .product-card__image-wrapper .card-heart {
  position: absolute; top: 14px; right: 14px; z-index: 4;
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(3, 16, 51, 0.72); border: 1px solid rgba(199, 211, 222, 0.35);
  color: #d1d5db; backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  display: grid; place-items: center; cursor: pointer;
  transition: transform .25s, color .2s, border-color .2s, background .2s;
}
.product-card__image-wrapper .card-heart:hover, .carousel-card .product-card__image-wrapper .card-heart:hover { transform: scale(1.12); color: #ff5c77; border-color: #ff5c77; }
.product-card__image-wrapper .card-heart.active, .carousel-card .product-card__image-wrapper .card-heart.active { color: #ff5c77; background: rgba(255, 92, 119, 0.16); border-color: #ff5c77; }
.card-heart svg { display: block; }

.carousel-body, .product-card__content { padding: 22px; display: flex; flex-direction: column; gap: 12px; flex: 1; }

/* Category pill */
.product-card__category {
  font-size: 0.62rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--accent-glow); background: rgba(63, 173, 232, 0.12); border: 1px solid rgba(63, 173, 232, 0.25);
  padding: 5px 12px; border-radius: 50px; width: fit-content;
}

.product-card__title, .carousel-name { font-size: 1.02rem; font-weight: 800; color: var(--ink-light); line-height: 1.35; letter-spacing: -0.01em; }
.product-card__title a:hover, .carousel-name a:hover { color: var(--accent-glow); }
.product-card__title a, .carousel-name a { color: inherit; }

/* Gold star rating */
.product-card__rating { display: flex; align-items: center; gap: 6px; }
.product-card__stars { display: flex; gap: 2px; color: var(--gold); }
.product-card__stars svg { display: block; }
.product-card__rating-count { font-size: 0.78rem; color: var(--ink-dim); font-weight: 600; }

/* Two-price section (Regular / Subscribe) + discount badge */
.product-card__price-row { display: flex; flex-direction: column; gap: 8px; padding: 6px 0 2px; }
.product-card__price-item { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; }
.product-card__price-label { font-size: 0.78rem; font-weight: 700; color: var(--ink-dim); letter-spacing: .5px; text-transform: uppercase; }
.product-card__price { white-space: nowrap; }
.product-card__price--regular { font-weight: 600; color: var(--ink-dim); text-decoration: line-through; text-decoration-thickness: 2px; font-size: 0.98rem; }
.product-card__price--subscribe { font-weight: 800; color: var(--accent-glow); font-size: 1.3rem; text-shadow: 0 0 18px rgba(63, 173, 232, 0.35); }
.product-card__discount-badge {
  display: inline-block; background: linear-gradient(135deg, var(--gold), #f7c14b); color: #3a2a00;
  font-size: 0.62rem; font-weight: 800; padding: 4px 9px; border-radius: 6px; letter-spacing: .5px;
  animation: pulse 2s ease-in-out infinite; align-self: center; text-transform: uppercase;
}
@keyframes pulse { 0%, 100% { transform: scale(1); } 50% { transform: scale(1.08); } }

/* Description (2-line clamp) */
.product-card__description, .carousel-desc {
  font-size: 0.85rem; color: var(--ink-dim); line-height: 1.55;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}

/* Actions: Buy Now (primary) + Add to Cart (outline icon) */
.product-card__actions { display: flex; gap: 10px; margin-top: 2px; }
.product-card__actions .btn { flex: 1 1 auto; padding: 13px 14px; font-size: 0.8rem; }
.btn-buy { position: relative; overflow: hidden; }
.btn-buy::before {
  content: ''; position: absolute; top: 0; left: -100%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent); transition: left .5s ease;
}
.btn-buy:hover::before { left: 100%; }
.btn-buy .btn__icon { display: inline-flex; flex-shrink: 0; }
.btn-buy .btn__icon svg { display: block; }
.btn--outline.btn--carticon {
  flex: 0 0 auto; width: 48px; padding: 12px; display: grid; place-items: center;
  background: rgba(255, 255, 255, 0.05); color: var(--silver-light);
  border: 2px solid rgba(63, 173, 232, 0.5);
}
.btn--carticon:hover { border-color: var(--accent-glow); background: rgba(63, 173, 232, 0.18); transform: translateY(-2px); box-shadow: 0 8px 20px -8px rgba(63, 173, 232, 0.5); }
.btn--carticon:active { transform: scale(.94); }
.btn--carticon svg { display: block; }

/* WhatsApp full-width button */
.btn--whatsapp { width: 100%; margin-top: 2px; justify-content: center; font-weight: 800; }

/* Added-to-cart confirmation popup */
.added-msg {
  position: absolute; left: 50%; bottom: 16px; transform: translateX(-50%) translateY(24px);
  display: inline-flex; align-items: center; gap: 7px;
  background: #10b981; color: #fff; padding: 9px 18px; border-radius: 50px;
  font-size: 0.82rem; font-weight: 700; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: opacity .35s ease, transform .35s cubic-bezier(.2,.9,.3,1.4);
  box-shadow: 0 10px 26px -6px rgba(16, 185, 129, 0.6); z-index: 8;
}
.added-msg.is-visible { opacity: 1; transform: translateX(-50%) translateY(0); }
.added-msg.is-error { background: #ef4444; box-shadow: 0 10px 26px -6px rgba(239, 68, 68, 0.5); }
.added-msg__icon { font-size: 1rem; line-height: 1; }
.product-card, .carousel-card { position: relative; }
.no-results { color: var(--ink-dim); grid-column: 1/-1; padding: 40px; text-align: center; }


/* ---------- Card corner cart icon ---------- */
.card-cart {
  position: absolute; top: 14px; right: 14px; z-index: 4; width: 38px; height: 38px; border-radius: 11px;
  display: grid; place-items: center; background: rgba(3, 16, 51, 0.78); border: 1px solid rgba(63, 173, 232, 0.4);
  color: var(--accent-glow); cursor: pointer; backdrop-filter: blur(4px);
  transition: transform .2s, background .2s, box-shadow .2s;
}
.card-cart:hover { transform: scale(1.08); background: rgba(14, 122, 232, 0.25); box-shadow: 0 0 16px rgba(63, 173, 232, 0.5); }
.card-cart:active { transform: scale(0.95); }
.card-cart svg { display: block; }

/* ---------- Cart drawer ---------- */
.cart-drawer { position: fixed; inset: 0; z-index: 1000; visibility: hidden; pointer-events: none; }
.cart-drawer .cart-overlay { position: absolute; inset: 0; background: rgba(1, 6, 22, 0.6); opacity: 0; transition: opacity .3s; }
.cart-panel {
  position: absolute; top: 0; right: 0; height: 100%; width: 420px; max-width: 92vw;
  background: linear-gradient(180deg, #061a42, #020816); border-left: 1px solid var(--line);
  display: flex; flex-direction: column; transform: translateX(105%); transition: transform .35s cubic-bezier(.22,.8,.28,1);
  box-shadow: -20px 0 60px rgba(0,0,0,0.5);
}
.cart-drawer .cart-panel.open { transform: translateX(0); }
body.drawer-show .cart-drawer { visibility: visible; pointer-events: auto; }
body.drawer-show .cart-drawer .cart-overlay { opacity: 1; }
.cart-head { display: flex; align-items: center; justify-content: space-between; padding: 20px 22px; border-bottom: 1px solid var(--line); }
.cart-title { font-size: 1.2rem; font-weight: 800; color: var(--ink-light); margin: 0; }
.cart-close { background: rgba(255,255,255,0.06); border: 1px solid var(--line); color: var(--ink-mute); width: 34px; height: 34px; border-radius: 9px; font-size: 1.4rem; line-height: 1; cursor: pointer; }
.cart-close:hover { color: #fff; border-color: var(--accent-glow); }
.cart-items { flex: 1; overflow-y: auto; padding: 10px 22px; }
.cart-empty { color: var(--ink-dim); text-align: center; padding: 40px 0; }
.cart-item { display: flex; align-items: center; gap: 10px; padding: 14px 0; border-bottom: 1px dashed var(--line); }
.cart-item-info { flex: 1; min-width: 0; }
.cart-item-name { display: block; font-size: 0.86rem; font-weight: 700; color: var(--ink-light); line-height: 1.3; }
.cart-item-price { display: block; font-size: 0.8rem; color: var(--accent-glow); margin-top: 3px; }
.cart-qty { display: flex; align-items: center; gap: 8px; }
.cart-qty-btn { width: 28px; height: 28px; border-radius: 8px; background: rgba(255,255,255,0.06); border: 1px solid var(--line); color: var(--silver-light); font-size: 1rem; line-height: 1; cursor: pointer; }
.cart-qty-btn:hover { border-color: var(--accent-glow); color: var(--accent-glow); }
.cart-qty-val { min-width: 20px; text-align: center; font-weight: 700; color: var(--ink-light); }
.cart-remove { background: none; border: none; color: var(--ink-mute); font-size: 1.3rem; line-height: 1; cursor: pointer; padding: 4px; }
.cart-remove:hover { color: #ff5c77; }
.cart-foot { padding: 18px 22px; border-top: 1px solid var(--line); display: flex; flex-direction: column; gap: 10px; }
.cart-total-row { display: flex; justify-content: space-between; align-items: center; font-weight: 800; color: var(--ink-light); margin-bottom: 4px; }
.cart-total { font-size: 1.25rem; color: var(--accent-glow); }
.cart-foot .btn { justify-content: center; }


/* ---------- Shop by category ---------- */
.categories { background: var(--bg-main); }
.category-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.category-card {
  position: relative; display: flex; flex-direction: column; align-items: flex-start; gap: 12px;
  padding: 34px 28px; border-radius: var(--radius); overflow: hidden;
  background: linear-gradient(165deg, var(--bg-card), #06235A);
  border: 1px solid var(--line);
  transition: transform .35s, border-color .35s, box-shadow .35s;
}
.category-card:hover { transform: translateY(-8px) rotate(-0.5deg); border-color: var(--accent-glow); box-shadow: 0 24px 50px rgba(0, 0, 0, 0.4), 0 0 34px rgba(63, 173, 232, 0.18); }
.cat-glow { position: absolute; inset: -40% -20% auto auto; width: 70%; height: 130%; background: radial-gradient(circle at 70% 20%, rgba(63, 173, 232, 0.28), transparent 62%); opacity: 0; transition: opacity .4s; pointer-events: none; }
.category-card:hover .cat-glow { opacity: 1; }
.cat-ico { color: var(--accent-glow); filter: drop-shadow(0 0 12px rgba(63, 173, 232, 0.55)); }
.cat-name { font-size: 1.3rem; font-weight: 800; color: var(--ink-light); position: relative; z-index: 1; }
.cat-desc { font-size: 0.9rem; color: var(--ink-dim); position: relative; z-index: 1; }

/* ---------- Product showcase ---------- */
.showcase { background: linear-gradient(180deg, var(--bg-section), var(--bg-main)); }
.showcase-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 60px; align-items: center; }
.showcase-visual { position: relative; }
.showcase-media-card {
  position: relative; z-index: 2; border-radius: 26px; overflow: hidden;
  background: radial-gradient(120% 100% at 50% 0%, rgba(63, 173, 232, 0.22), rgba(3, 16, 51, 0.4));
  border: 1px solid var(--line-strong);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45), 0 0 40px rgba(63, 173, 232, 0.14);
  padding: 34px;
}
.showcase-media-card img { width: 100%; height: auto; object-fit: contain; }
.showcase-orbs { position: absolute; inset: 0; z-index: 1; pointer-events: none; }
.orb { position: absolute; border-radius: 50%; border: 1px solid rgba(63, 173, 232, 0.3); }
.orb-1 { width: 320px; height: 320px; top: -40px; left: -60px; filter: blur(1px); animation: slowSpin 30s linear infinite; }
.orb-2 { width: 420px; height: 420px; bottom: -80px; right: -80px; border-style: dashed; animation: slowSpin 44s linear infinite reverse; }
.orb-3 { width: 180px; height: 180px; top: 40px; right: 10px; border-color: rgba(63, 173, 232, 0.18); }

.showcase-content { position: relative; z-index: 2; }
.showcase-name { font-family: var(--font-ser); font-style: italic; color: var(--accent-glow); font-size: 1.15rem; margin-bottom: 10px; }
.showcase-desc { color: var(--ink-mute); font-size: 1.04rem; margin-bottom: 22px; }
.showcase-points { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 26px; }
.showcase-points li { display: flex; align-items: flex-start; gap: 12px; color: var(--ink-mute); font-size: 0.98rem; }
.showcase-points li::before { content: ''; flex: 0 0 auto; width: 8px; height: 8px; border-radius: 50%; margin-top: 9px; background: var(--accent-glow); box-shadow: 0 0 10px rgba(63, 173, 232, 0.8); }
.showcase-price { display: flex; align-items: baseline; gap: 14px; margin-bottom: 26px; flex-wrap: wrap; }
.showcase-price .price-main { font-size: 2.1rem; color: var(--silver-light); }
.showcase-price .price-label { font-size: 0.9rem; }
.showcase-price .price-sub { color: var(--accent-glow); font-weight: 800; }
.showcase-buy { display: flex; flex-direction: column; gap: 16px; margin-bottom: 22px; }
.qty-wrap { display: flex; align-items: center; gap: 14px; }
.qty-label { font-size: 0.88rem; font-weight: 700; color: var(--ink-mute); text-transform: uppercase; letter-spacing: 1px; }
.qty-control { display: inline-flex; align-items: center; border: 1px solid var(--line-strong); border-radius: 12px; overflow: hidden; background: rgba(3, 16, 51, 0.6); }
.qty-control button { width: 40px; height: 44px; background: none; border: none; color: var(--accent-glow); font-size: 1.3rem; font-weight: 700; cursor: pointer; transition: background .2s; }
.qty-control button:hover { background: rgba(63, 173, 232, 0.14); }
.qty-control button:disabled { color: var(--ink-dim); opacity: 0.45; cursor: not-allowed; }
.qty-control button:disabled:hover { background: none; }
.qty-control input { width: 56px; height: 44px; text-align: center; background: none; border: none; border-left: 1px solid var(--line); border-right: 1px solid var(--line); color: var(--ink-light); font-size: 1rem; font-weight: 700; -moz-appearance: textfield; }
.qty-control input::-webkit-outer-spin-button, .qty-control input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.showcase-actions { display: flex; gap: 12px; flex-wrap: wrap; }
.showcase-trust { display: flex; flex-wrap: wrap; gap: 10px; }
.trust-chip { display: inline-flex; align-items: center; gap: 7px; font-size: 0.82rem; color: var(--ink-mute); padding: 8px 14px; border: 1px solid var(--line); border-radius: 999px; background: rgba(255, 255, 255, 0.03); }
.trust-chip svg { color: var(--accent-glow); }

/* ---------- Wellness education ---------- */
.education { background: var(--bg-main); }
.education .section-eyebrow, .education .section-title, .education .section-sub { text-align: center; }
.education .section-title { margin-left: auto; margin-right: auto; }
.edu-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-bottom: 46px; }
.edu-card {
  position: relative; padding: 36px 30px; border-radius: var(--radius); overflow: hidden;
  background: linear-gradient(165deg, rgba(7, 58, 136, 0.6), rgba(3, 16, 51, 0.4));
  border: 1px solid var(--line); text-align: center;
  transition: transform .35s, border-color .35s, box-shadow .35s;
}
.edu-card:hover { transform: translateY(-8px); border-color: rgba(63, 173, 232, 0.5); box-shadow: 0 20px 44px rgba(0, 0, 0, 0.35), 0 0 30px rgba(63, 173, 232, 0.12); }
.edu-card::before { content: ''; position: absolute; inset: 0 0 auto 0; height: 3px; background: linear-gradient(90deg, transparent, var(--accent-glow), transparent); opacity: .6; }
.edu-ico { display: inline-grid; place-items: center; width: 68px; height: 68px; border-radius: 20px; margin-bottom: 18px; color: var(--accent-glow); background: rgba(63, 173, 232, 0.1); border: 1px solid var(--line-strong); box-shadow: 0 0 24px rgba(63, 173, 232, 0.15); }
.edu-title { font-size: 1.28rem; margin-bottom: 10px; color: var(--ink-light); }
.edu-text { color: var(--ink-dim); font-size: 0.96rem; }

/* ---------- Product story / video ---------- */
.story { background: linear-gradient(180deg, var(--bg-main), var(--bg-section)); }
.story-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: center; }
.story-video { position: relative; border-radius: 24px; overflow: hidden; border: 1px solid var(--line-strong); box-shadow: 0 30px 70px rgba(0, 0, 0, 0.45), 0 0 34px rgba(63, 173, 232, 0.12); aspect-ratio: 16 / 10; background: #02102e; }
.story-video-el { width: 100%; height: 100%; object-fit: cover; }
.story-play {
  position: absolute; inset: 0; margin: auto; width: 82px; height: 82px; border-radius: 50%;
  display: grid; place-items: center; cursor: pointer;
  background: rgba(3, 16, 51, 0.6); color: #fff; border: 2px solid rgba(63, 173, 232, 0.7);
  backdrop-filter: blur(6px); transition: transform .25s, background .25s, box-shadow .25s;
  box-shadow: 0 0 40px rgba(63, 173, 232, 0.4);
}
.story-play svg { margin-left: 4px; }
.story-play:hover { transform: scale(1.1); background: var(--primary); box-shadow: 0 0 60px rgba(63, 173, 232, 0.7); }
.story-play.hidden { opacity: 0; pointer-events: none; }
.story-text { color: var(--ink-mute); font-size: 1.05rem; margin-bottom: 26px; }
.story-info { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.story-info-card { display: flex; gap: 15px; align-items: flex-start; padding: 16px 18px; border-radius: 16px; background: rgba(255, 255, 255, 0.03); border: 1px solid var(--line); transition: border-color .25s, transform .25s; }
.story-info-card:hover { border-color: var(--line-strong); transform: translateX(4px); }
.si-ico { flex: 0 0 auto; width: 46px; height: 46px; border-radius: 13px; display: grid; place-items: center; color: var(--accent-glow); background: rgba(63, 173, 232, 0.1); border: 1px solid var(--line-strong); }
.story-info-card h3 { font-size: 1.02rem; margin-bottom: 4px; color: var(--ink-light); }
.story-info-card p { font-size: 0.9rem; color: var(--ink-dim); }

/* ---------- Why shop with us (clean white) ---------- */
.why { background: var(--white-surface); color: var(--dark-ink); }
.why .section-eyebrow { color: var(--primary); }
.why .section-eyebrow::before, .why .section-eyebrow.centered::after { background: var(--primary); box-shadow: none; }
.why .section-title { color: var(--dark-ink); }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.why-col { text-align: center; padding: 34px 22px; border-radius: var(--radius); border: 1px solid #E4ECF6; background: #fff; box-shadow: 0 10px 26px rgba(2, 43, 100, 0.06); transition: transform .3s, box-shadow .3s, border-color .3s; }
.why-col:hover { transform: translateY(-6px); border-color: rgba(13, 102, 197, 0.3); box-shadow: 0 20px 40px rgba(2, 43, 100, 0.12); }
.why-ico { display: inline-grid; place-items: center; width: 62px; height: 62px; border-radius: 18px; margin-bottom: 16px; color: var(--primary); background: #EAF1FB; border: 1px solid rgba(13, 102, 197, 0.16); }
.why-name { font-size: 1.14rem; margin-bottom: 8px; color: var(--dark-ink); }
.why-text { color: var(--dark-ink-soft); font-size: 0.92rem; }

/* ---------- About ---------- */
.about { background: var(--bg-main); }
.about-grid { display: grid; grid-template-columns: 1fr 1.05fr; gap: 60px; align-items: center; }
.about-visual { position: relative; }
.about-frame { border-radius: 24px; overflow: hidden; border: 1px solid var(--line-strong); box-shadow: var(--shadow-lg), 0 0 34px rgba(63, 173, 232, 0.1); }
.about-frame img { width: 100%; height: auto; aspect-ratio: 4/5; object-fit: cover; }
.about-float { position: absolute; right: -16px; bottom: -16px; width: 170px; height: 170px; object-fit: cover; border-radius: 18px; border: 4px solid var(--bg-main); box-shadow: var(--shadow-md); }
.about-thumb { position: absolute; width: 120px; height: 120px; object-fit: cover; border-radius: 14px; border: 4px solid var(--bg-main); box-shadow: var(--shadow-md); }
.about-thumb.t1 { top: -26px; left: -26px; }
.about-thumb.t2 { top: -10px; right: 30px; }
.about-copy { color: var(--ink-mute); font-size: 1.05rem; margin-bottom: 24px; max-width: 560px; }
.about-points { list-style: none; margin-bottom: 26px; display: flex; flex-direction: column; gap: 12px; }
.about-points li { display: flex; align-items: flex-start; gap: 12px; color: var(--ink-mute); font-size: 0.98rem; }
.ap-ico {
  flex: 0 0 auto; width: 26px; height: 26px; border-radius: 8px; display: grid; place-items: center;
  background: rgba(63, 173, 232, 0.14); color: var(--accent-glow); margin-top: 2px;
  border: 1px solid rgba(63, 173, 232, 0.25);
}

/* ---------- Testimonials ---------- */
.testimonials { background: linear-gradient(180deg, var(--bg-section), var(--bg-main)); }
.testimonials .section-eyebrow, .testimonials .section-title { text-align: center; }
.testimonials .section-title { margin-left: auto; margin-right: auto; }
.test-carousel { position: relative; display: flex; align-items: center; gap: 18px; max-width: 900px; margin: 0 auto; }
.test-viewport { flex: 1; overflow: hidden; position: relative; }
.test-slides { display: flex; transition: transform .55s cubic-bezier(.4, 0, .2, 1); }
.test-card {
  flex: 0 0 100%; padding: 40px 40px 32px; text-align: center;
  border-radius: var(--radius);
  background: linear-gradient(165deg, rgba(7, 58, 136, 0.55), rgba(3, 16, 51, 0.45));
  border: 1px solid var(--line);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.3);
}
.test-avatar { width: 74px; height: 74px; border-radius: 50%; margin: 0 auto 16px; display: grid; place-items: center; font-family: var(--font-head); font-weight: 800; font-size: 1.5rem; color: #031033; background: linear-gradient(135deg, var(--accent-glow), #2b8fe0); box-shadow: 0 0 0 4px rgba(63, 173, 232, 0.2), 0 10px 24px rgba(0, 0, 0, 0.3); }
.test-name { font-size: 1.14rem; color: var(--ink-light); margin-bottom: 6px; }
.test-role { font-size: 0.82rem; text-transform: uppercase; letter-spacing: 2px; color: var(--accent-glow); margin-bottom: 14px; font-weight: 700; }
.test-text { color: var(--ink-mute); font-size: 1.05rem; font-style: italic; max-width: 620px; margin: 0 auto 10px; }
.test-stars { display: inline-flex; gap: 3px; color: var(--gold); }
.test-dots { display: flex; justify-content: center; gap: 8px; margin-top: 22px; }
.test-dot { width: 9px; height: 9px; border-radius: 999px; border: none; background: rgba(199, 211, 222, 0.28); cursor: pointer; transition: width .25s, background .25s; padding: 0; }
.test-dot.active { width: 26px; background: var(--accent-glow); }

/* ---------- Best sellers ---------- */
.best { background: var(--bg-main); }
.best .section-eyebrow, .best .section-title { text-align: center; }
.best .section-title { margin-left: auto; margin-right: auto; }
.best .product-grid { grid-template-columns: repeat(3, 1fr); gap: 22px; margin-bottom: 40px; }
.best .product-card { width: auto; }

/* ---------- Newsletter ---------- */
.newsletter { background: linear-gradient(160deg, #06235A, #041B48 55%, #0b2f73); position: relative; overflow: hidden; }
.newsletter::before { content: ''; position: absolute; inset: 0; background: radial-gradient(60% 90% at 20% 0%, rgba(63, 173, 232, 0.28), transparent 60%), radial-gradient(50% 80% at 85% 100%, rgba(13, 102, 197, 0.3), transparent 60%); }
.newsletter-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; text-align: center; }
.news-ico { display: inline-grid; place-items: center; width: 64px; height: 64px; border-radius: 18px; color: var(--accent-glow); background: rgba(63, 173, 232, 0.1); border: 1px solid var(--line-strong); margin-bottom: 18px; box-shadow: 0 0 26px rgba(63, 173, 232, 0.2); }
.news-text { color: var(--ink-mute); font-size: 1.05rem; margin-bottom: 30px; }
.news-form { display: flex; gap: 12px; max-width: 520px; margin: 0 auto; flex-wrap: wrap; }
.news-form input { flex: 1; min-width: 220px; padding: 17px 20px; border-radius: var(--radius-sm); border: 1px solid var(--line-strong); background: rgba(3, 16, 51, 0.6); color: var(--ink-light); font-size: 1rem; }
.news-form input:focus { border-color: var(--accent-glow); outline: none; box-shadow: 0 0 0 3px rgba(63, 173, 232, 0.18); }
.news-form input.invalid { border-color: #f87171; background: rgba(248, 113, 113, 0.08); }
.news-form input.invalid:focus { box-shadow: 0 0 0 3px rgba(248, 113, 113, 0.2); }
.news-form input::placeholder { color: var(--ink-dim); }

/* ---------- FAQ ---------- */
.faq { background: var(--bg-main); }
.faq-container { max-width: 780px; }
.faq-container .section-eyebrow, .faq-container .section-title { text-align: center; }
.faq-title-wrap { text-align: center; }
.faq-item { border: 1px solid var(--line); border-radius: 14px; margin-bottom: 12px; overflow: hidden; background: rgba(255, 255, 255, 0.03); transition: border-color .25s; }
.faq-item.open { border-color: var(--line-strong); }
.faq-q { width: 100%; text-align: left; background: none; border: none; color: var(--ink-light); font-family: var(--font-head); font-weight: 700; font-size: 1rem; padding: 20px 22px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-icon { width: 26px; height: 26px; flex-shrink: 0; display: grid; place-items: center; color: var(--accent-glow); font-size: 1.05rem; font-weight: 700; border-radius: 8px; background: rgba(63, 173, 232, 0.1); border: 1px solid var(--line-strong); transition: transform .3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-a-inner { padding: 0 22px 20px; color: var(--ink-mute); font-size: 0.97rem; }
.faq-item.open .faq-a { max-height: 320px; }
.faq-a .btn { margin-top: 12px; }

/* ---------- Final CTA ---------- */
.final-cta { background: linear-gradient(160deg, var(--bg-section), var(--bg-main)); text-align: center; position: relative; overflow: hidden; }
.final-cta::before { content: ''; position: absolute; inset: 0; background: radial-gradient(70% 100% at 50% 0%, rgba(63, 173, 232, 0.22), transparent 65%); }
.final-inner { max-width: 760px; margin: 0 auto; position: relative; z-index: 2; }
.final-text { color: var(--ink-mute); font-size: 1.1rem; margin-bottom: 34px; }
.final-cta .btn-outline { background: rgba(255, 255, 255, 0.08); color: var(--silver-light); border-color: rgba(63, 173, 232, 0.5); }
.final-cta .btn-outline:hover { background: rgba(63, 173, 232, 0.18); border-color: var(--accent-glow); }

/* ---------- Contact ---------- */
.contact { background: var(--bg-main); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: 50px; align-items: start; }
.contact-text { color: var(--ink-mute); margin-bottom: 26px; }

.wa-panel { background: linear-gradient(160deg, #0eae58, #0b8f47); border: 1px solid rgba(37, 211, 102, 0.35); border-radius: var(--radius); padding: 30px; color: #fff; box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3), 0 0 30px rgba(37, 211, 102, 0.18); margin-bottom: 26px; position: relative; }
.wa-panel-icon { position: relative; z-index: 1; width: 64px; height: 64px; border-radius: 18px; display: grid; place-items: center; margin-bottom: 16px; background: rgba(255, 255, 255, 0.2); color: #fff; border: 1px solid rgba(255, 255, 255, 0.3); }
.wa-panel-title { position: relative; z-index: 1; font-size: 1.35rem; font-weight: 800; margin-bottom: 8px; }
.wa-panel-text { position: relative; z-index: 1; color: #eafff6; font-size: 0.98rem; margin-bottom: 22px; }
.wa-panel .btn-wa { position: relative; z-index: 1; background: #fff; color: #0b8f47; box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18); }
.wa-panel .btn-wa:hover { background: #f0fdf4; transform: translateY(-2px); }

.channel-head { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1.6px; color: var(--ink-dim); font-weight: 700; margin-bottom: 10px; }
.contact-channels { display: flex; flex-direction: column; gap: 8px; }
.channel { display: flex; align-items: center; gap: 12px; color: var(--ink-mute); font-weight: 600; padding: 9px 12px; border-radius: 11px; transition: color .2s, transform .2s, background .2s; margin-left: -12px; }
.channel:hover { color: var(--accent-glow); transform: translateX(4px); background: rgba(63, 173, 232, 0.08); }
.channel-dot { width: 13px; height: 13px; border-radius: 50%; box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.06), 0 2px 6px rgba(0, 0, 0, 0.4); }
.channel-dot.ig { background: #e4405f; } .channel-dot.tt { background: #69c9d0; } .channel-dot.fb { background: #1877f2; } .channel-dot.wa { background: #25d366; }

.form-intro { color: var(--ink-mute); font-size: 0.98rem; margin-bottom: 22px; padding-bottom: 18px; border-bottom: 1px solid var(--line); }
.contact-form { background: linear-gradient(165deg, rgba(7, 58, 136, 0.5), rgba(3, 16, 51, 0.4)); border: 1px solid var(--line); border-radius: var(--radius); padding: 32px; box-shadow: 0 12px 34px rgba(0, 0, 0, 0.2), 0 0 26px rgba(63, 173, 232, 0.06); }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.9rem; font-weight: 700; margin-bottom: 7px; color: var(--ink-mute); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 16px; border-radius: 11px; border: 1px solid var(--line-strong); background: rgba(3, 16, 51, 0.55); color: var(--ink-light); font-size: 0.97rem; font-family: var(--font-body);
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--accent-glow); outline: none; box-shadow: 0 0 0 3px rgba(63, 173, 232, 0.18); }
.field input.invalid, .field textarea.invalid { border-color: #f87171; }
.err { color: #f87171; font-size: 0.82rem; margin-top: 5px; display: block; min-height: 16px; }
.form-note { margin-top: 14px; font-size: 0.85rem; color: var(--ink-dim); text-align: center; }

/* ---------- Catalog ---------- */
.catalog { background: linear-gradient(180deg, var(--bg-section), var(--bg-main)); }
.catalog-tools { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; margin-bottom: 30px; }
.search-input { flex: 1; min-width: 200px; padding: 14px 18px; border-radius: 11px; border: 1px solid var(--line-strong); background: rgba(3, 16, 51, 0.55); color: var(--ink-light); font-size: 0.98rem; }
.search-input::placeholder { color: var(--ink-dim); }
.search-input:focus { border-color: var(--accent-glow); outline: none; box-shadow: 0 0 0 3px rgba(63, 173, 232, 0.18); }
.sort-label { display: flex; align-items: center; gap: 8px; color: var(--ink-dim); font-size: 0.9rem; }
.sort-label select { padding: 12px 14px; border-radius: 10px; border: 1px solid var(--line-strong); background: rgba(3, 16, 51, 0.55); color: var(--ink-light); font-size: 0.92rem; }
.filter-toggle { display: none; }

.catalog-layout { display: grid; grid-template-columns: 240px 1fr; gap: 28px; align-items: start; }
.filters { margin-left: 0; background: linear-gradient(165deg, rgba(7, 58, 136, 0.5), rgba(3, 16, 51, 0.4)); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; position: sticky; top: 96px; box-shadow: 0 10px 26px rgba(0, 0, 0, 0.2); }
.filter-heading { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1.2px; color: var(--accent-glow); margin: 18px 0 10px; font-weight: 800; }
.filter-heading:first-child { margin-top: 0; }
.filter-group { display: flex; flex-direction: column; gap: 6px; }
.filter-group label { display: flex; align-items: center; gap: 9px; color: var(--ink-mute); font-size: 0.92rem; padding: 3px 0; cursor: pointer; }
.filter-group input[type="checkbox"] { accent-color: var(--accent-glow); width: 16px; height: 16px; cursor: pointer; }
.filters .btn { margin-top: 22px; }

.results-count { color: var(--ink-dim); font-size: 0.9rem; margin-bottom: 18px; }
.product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(235px, 1fr)); gap: 18px; }
.product-grid .product-card { width: 100%; height: 100%; }
.product-grid .product-card .product-card__content,
.best .product-card .product-card__content { flex: 1; }
.product-grid .product-card .product-card__actions,
.best .product-card .product-card__actions { margin-top: auto; }

/* ---------- Footer ---------- */
.footer { background: var(--bg-deep); border-top: 1px solid var(--line); color: var(--ink-mute); }
.footer-top { display: grid; grid-template-columns: 1.7fr repeat(4, 1fr); gap: 36px; padding: 72px 0 44px; }
.footer-brand { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.f-name { font-family: var(--font-head); font-weight: 800; font-size: 1.25rem; color: var(--ink-light); }
.f-tag { color: var(--accent-glow); font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; }
.f-about { color: var(--ink-dim); font-size: 0.92rem; max-width: 280px; line-height: 1.6; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h4 { font-size: 0.8rem; text-transform: uppercase; letter-spacing: 1.4px; color: var(--accent-glow); margin-bottom: 8px; font-weight: 800; }
.footer-col a { color: var(--ink-mute); font-size: 0.92rem; transition: color .2s, transform .2s; }
.footer-col a:hover { color: #fff; transform: translateX(3px); }
.footer-mid { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding: 24px 0; border-top: 1px solid rgba(63, 173, 232, 0.12); border-bottom: 1px solid rgba(63, 173, 232, 0.12); flex-wrap: wrap; }
.pay-chips { display: flex; gap: 8px; }
.pay-chip { font-size: 0.72rem; font-weight: 800; letter-spacing: 1px; color: var(--ink-mute); padding: 7px 13px; border-radius: 8px; border: 1px solid var(--line); background: rgba(255, 255, 255, 0.04); }
.footer-note { color: var(--ink-dim); font-size: 0.82rem; max-width: 560px; }
.footer-bottom { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 10px; padding: 22px 0; color: var(--ink-dim); font-size: 0.85rem; }
.footer-bottom a:hover { color: #fff; }

/* ---------- Disclaimers ---------- */
.disclaimers { background: var(--bg-deep); border-top: 1px solid rgba(63, 173, 232, 0.1); }
.disclaimers .container { padding-top: 26px; padding-bottom: 26px; }
.disclaimer { color: var(--ink-dim); font-size: 0.82rem; margin-bottom: 10px; max-width: 1000px; }

/* ---------- WhatsApp float + toast ---------- */
.whatsapp-float {
  position: fixed; bottom: 24px; right: 24px; z-index: 1500; width: 58px; height: 58px;
  background: var(--wa); color: #fff; border-radius: 50%; display: grid; place-items: center;
  box-shadow: 0 12px 30px rgba(22, 185, 79, 0.45), 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: transform .25s ease, box-shadow .25s ease;
}
.whatsapp-float::before { content: ''; position: absolute; inset: 0; border-radius: 50%; box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.5); animation: waPulse 2.4s ease-out infinite; }
.whatsapp-float:hover { transform: scale(1.08); box-shadow: 0 1px 0 rgba(255, 255, 255, .38) inset, 0 16px 44px rgba(22, 185, 79, 0.6); }
.whatsapp-float:hover::before { animation: none; box-shadow: 0 0 0 10px rgba(37, 211, 102, 0); }
@keyframes waPulse { 0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45); } 70% { box-shadow: 0 0 0 14px rgba(37, 211, 102, 0); } 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); } }

.toast {
  position: fixed; bottom: 100px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: var(--bg-card); color: var(--ink-light); border: 1px solid var(--line-strong);
  padding: 14px 26px; border-radius: 12px; font-size: 0.95rem; opacity: 0; pointer-events: none;
  transition: opacity .3s, transform .3s; z-index: 2000; box-shadow: var(--shadow-md), 0 0 26px rgba(63, 173, 232, 0.2); max-width: 90%; text-align: center;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* ==========================================================
   MOBILE PRODUCT CARDS — Professional e-commerce style
   (AliExpress / Daraz inspired, adapted to dark theme)
   ========================================================== */
@media (max-width: 767px) {
  /* Card base */
  .carousel-card, .product-card {
    width: 100%; min-width: 0;
    background: linear-gradient(180deg, rgba(6, 24, 60, 0.95), rgba(4, 14, 40, 0.98));
    border: 1px solid rgba(63, 173, 232, 0.12);
    border-radius: 10px;
    overflow: hidden;
    display: flex; flex-direction: column;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
  }
  .carousel-card:hover, .product-card:hover {
    transform: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  }
  .carousel-card::before, .product-card::before { display: none; }

  /* Image — dominant area */
  .product-card__image-wrapper,
  .carousel-card .product-card__image-wrapper {
    aspect-ratio: 1 / 1;
    max-height: none;
    background: #0a1628;
    border-bottom: none;
  }
  .product-card__image,
  .carousel-card .product-card__image {
    padding: 12px;
    object-fit: contain;
  }
  .product-card:hover .product-card__image,
  .carousel-card:hover .product-card__image { transform: none; }

  /* Content — ultra compact */
  .product-card__content,
  .carousel-body {
    padding: 8px 10px 10px;
    gap: 4px;
    flex: 1;
    display: flex; flex-direction: column;
  }

  /* Category pill — tiny, top of content */
  .product-card__category {
    font-size: 0.48rem;
    padding: 2px 6px;
    letter-spacing: 0.8px;
    width: fit-content;
    border-radius: 3px;
    background: rgba(63, 173, 232, 0.15);
    color: var(--accent-glow);
    border: none;
    font-weight: 700;
    margin-bottom: 2px;
  }

  /* Title — short, bold, 1 line */
  .product-card__title,
  .carousel-name {
    font-size: 0.78rem;
    font-weight: 700;
    line-height: 1.2;
    color: var(--ink-light);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
    letter-spacing: -0.01em;
  }
  .product-card__title a,
  .carousel-name a { color: inherit; }

  /* Rating — hidden on mobile */
  .product-card__rating { display: none; }

  /* Price — prominent, bold */
  .product-card__price-row {
    gap: 2px; padding: 4px 0 0;
    margin-top: auto;
  }
  .product-card__price-item { justify-content: flex-start; gap: 6px; }
  .product-card__price-label { font-size: 0.52rem; font-weight: 600; }
  .product-card__price--regular {
    font-size: 0.62rem; font-weight: 600;
    color: var(--silver-mid); text-decoration: line-through;
  }
  .product-card__price--subscribe {
    font-size: 0.95rem; font-weight: 800;
    color: var(--accent-glow);
    text-shadow: none;
  }
  .product-card__discount-badge {
    font-size: 0.45rem; padding: 1px 5px;
    border-radius: 3px; font-weight: 800;
  }

  /* Description — hidden */
  .product-card__description,
  .carousel-desc { display: none; }

  /* Actions — single clean button row */
  .product-card__actions {
    gap: 5px; margin-top: 6px;
    display: flex; flex-direction: row;
  }
  .product-card__actions .btn {
    flex: 1; padding: 7px 6px;
    font-size: 0.6rem; font-weight: 700;
    height: auto; min-height: 30px;
    border-radius: 6px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
  }
  .btn--outline.btn--carticon {
    flex: 0 0 auto; width: 30px;
    padding: 7px; min-height: 30px;
    border-radius: 6px;
    background: rgba(63, 173, 232, 0.1);
    border: 1px solid rgba(63, 173, 232, 0.3);
    color: var(--accent-glow);
  }
  .btn--whatsapp {
    width: 100%;
    font-size: 0.58rem;
    padding: 7px 8px;
    min-height: 30px;
    border-radius: 6px;
    background: var(--wa);
    color: #fff;
    border: none;
  }

  /* Heart icon — top right, subtle */
  .card-heart {
    width: 24px; height: 24px;
    top: 6px; right: 6px;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    border-radius: 50%;
    backdrop-filter: blur(4px);
  }
  .card-heart svg { width: 11px; height: 11px; }

  /* Badges — top left */
  .product-card__badges { top: 6px; left: 6px; gap: 3px; }
  .badge {
    padding: 2px 6px; font-size: 0.42rem;
    border-radius: 3px; font-weight: 800;
  }

  /* Cart icon — top right */
  .card-cart {
    width: 26px; height: 26px;
    top: 6px; right: 6px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    border: none;
    backdrop-filter: blur(4px);
  }
  .card-cart svg { width: 12px; height: 12px; }

  /* Added message */
  .added-msg {
    font-size: 0.58rem;
    padding: 4px 10px;
    border-radius: 20px;
    bottom: 6px;
  }

  /* Grid — 2 columns, tight */
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }
  .best .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }

  /* Carousel */
  .carousel-card { width: 70%; min-width: 0; }
  .carousel-track { gap: 8px; padding: 4px 2px 12px; }

  /* Override base hover glow */
  .product-card:hover { border-color: rgba(63, 173, 232, 0.2); }
}

/* Extra small — 320px, 360px */
@media (max-width: 374px) {
  .product-card__title, .carousel-name { font-size: 0.68rem; }
  .product-card__price--subscribe { font-size: 0.82rem; }
  .product-card__price--regular { font-size: 0.56rem; }
  .product-card__actions .btn { font-size: 0.52rem; padding: 5px 4px; min-height: 26px; }
  .btn--outline.btn--carticon { width: 26px; padding: 5px; }
  .btn--whatsapp { font-size: 0.52rem; padding: 5px 6px; }
  .product-grid { gap: 5px; }
  .product-card__image { padding: 8px; }
  .product-card__content { padding: 6px 8px 8px; }
}

/* ==========================================================
   PRODUCT DETAIL PAGE
   ========================================================== */
body.detail-body { background: var(--bg-main); }
.detail-back { padding-top: 100px; }
.back-link { color: var(--accent-glow); font-weight: 700; font-size: 0.95rem; display: inline-block; padding: 8px 0; }
.back-link:hover { text-decoration: underline; }
.detail { padding: 24px 22px 60px; }
.detail-loading { padding: 80px 0; text-align: center; color: var(--ink-dim); font-size: 1.1rem; }
.detail-layout { display: grid; grid-template-columns: 1.1fr 1fr; gap: 50px; align-items: start; }
.detail-media { background: linear-gradient(165deg, rgba(7, 58, 136, 0.55), rgba(3, 16, 51, 0.4)); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; box-shadow: var(--shadow-lg); position: sticky; top: 96px; }
.detail-media img { width: 100%; height: auto; }
.detail-name { font-size: clamp(1.7rem, 4vw, 2.5rem); font-weight: 800; line-height: 1.15; margin: 10px 0 14px; color: var(--ink-light); }
.detail-desc { color: var(--ink-mute); font-size: 1.05rem; margin-bottom: 24px; }
.detail-price-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 24px; }
.detail-price-card { background: rgba(3, 16, 51, 0.5); border: 1px solid var(--line); border-radius: 14px; padding: 20px; }
.detail-price-card.sub { border-color: rgba(63, 173, 232, 0.4); background: rgba(63, 173, 232, 0.1); }
.dp-label { font-size: 0.82rem; font-weight: 700; color: var(--ink-dim); margin-bottom: 6px; text-transform: uppercase; letter-spacing: .5px; }
.dp-value { font-weight: 800; font-size: 1.7rem; color: var(--silver-light); }
.detail-price-card.sub .dp-value { color: var(--accent-glow); }
.detail-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 16px; }
.detail-disclaimer { font-size: 0.82rem; color: var(--ink-dim); margin-bottom: 26px; }
.detail-meta { background: rgba(3, 16, 51, 0.4); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.detail-meta h3 { font-size: 1.1rem; margin-bottom: 12px; color: var(--ink-light); }
.detail-long { color: var(--ink-mute); font-size: 0.97rem; margin-bottom: 18px; }
.meta-row { display: flex; justify-content: space-between; gap: 14px; font-size: 0.9rem; padding: 8px 0; border-top: 1px dashed var(--line); color: var(--ink-mute); }
.meta-row a { color: var(--accent-glow); word-break: break-all; }
.meta-row span:first-child { color: var(--ink-dim); }

.related { margin-top: 60px; }
.rel-title { font-size: 1.6rem; font-weight: 800; margin-bottom: 22px; color: var(--ink-light); }
.rel-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.rel-card { background: linear-gradient(165deg, rgba(7, 58, 136, 0.5), rgba(3, 16, 51, 0.4)); border: 1px solid var(--line); border-radius: var(--radius); padding: 16px; text-align: center; transition: transform .3s, border-color .3s, box-shadow .3s; }
.rel-card:hover { transform: translateY(-4px); border-color: rgba(63, 173, 232, 0.5); box-shadow: 0 12px 26px rgba(0, 0, 0, 0.3); }
.rel-card img { height: 120px; object-fit: contain; margin: 0 auto 12px; }
.rel-name { font-family: var(--font-head); font-weight: 700; font-size: 0.92rem; color: var(--ink-light); margin-bottom: 6px; line-height: 1.3; }
.rel-price { color: var(--accent-glow); font-weight: 800; }

.detail-cta { background: var(--bg-section); text-align: center; }
.detail-cta-inner { max-width: 660px; margin: 0 auto; }

/* ================= RESPONSIVE ================= */
@media (max-width: 1300px) {
  .carousel-card { width: 31%; min-width: 0; }
}

@media (max-width: 1100px) {
  .carousel-arrow.prev { left: -8px; }
  .carousel-arrow.next { right: -8px; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .featured .product-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1023px) {
  .nav-links {
    position: fixed; top: 0; right: 0; flex-direction: column; align-items: flex-start;
    background: rgba(2, 9, 31, 0.98); width: 280px; padding: 80px 24px 24px; gap: 4px;
    border-left: 1px solid var(--line);
    transform: translateX(100%); transition: transform .3s cubic-bezier(.4,0,.2,1); height: 100vh; height: 100dvh;
    box-shadow: -10px 10px 30px rgba(0, 0, 0, 0.5);
    overscroll-behavior: contain;
  }
  .nav-links.open { transform: translateX(0); }
  .hamburger { display: flex; }
  .nav-actions .primary-btn { display: none; }
  .showcase-grid, .story-grid, .about-grid { grid-template-columns: 1fr; gap: 44px; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .detail-layout { grid-template-columns: 1fr; gap: 30px; }
  .detail-media { position: static; }
  .best .product-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 1000px) {
  .carousel-card { width: 47%; min-width: 0; }
}

@media (max-width: 900px) {
  .catalog-layout { grid-template-columns: 1fr; }
  .filters { position: static; margin-left: 0; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .best .product-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
  .container { padding: 0 14px; }
  .section { padding: 60px 16px; }
  .hero { padding: 100px 16px 60px; min-height: 85vh; min-height: 85dvh; }
  .hero-title { font-size: clamp(2rem, 8vw, 3rem); }
  .hero-sub { font-size: clamp(0.95rem, 3.5vw, 1.1rem); margin: 18px auto 30px; }
  .nav-inner { height: 62px; }
  .brand-mark { width: 38px; height: 38px; font-size: 0.9rem; }
  .brand-name { font-size: 1rem; }
  .brand-name .brand-tag { font-size: 0.5rem; letter-spacing: 1.5px; }
  .nav-icon { width: 36px; height: 36px; }
  .nav-icon svg { width: 17px; height: 17px; }
  .lang-btn { font-size: 0.72rem; padding: 3px 4px; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item { border-bottom: 1px solid var(--line); padding: 18px 8px; font-size: 0.82rem; gap: 8px; }
  .trust-item:nth-child(2) { border-right: none; }
  .trust-item:nth-child(3), .trust-item:nth-child(4) { border-bottom: none; }
  .trust-ico svg { width: 20px; height: 20px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .best .product-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .category-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .category-card { padding: 20px 14px; }
  .cat-ico svg { width: 26px; height: 26px; }
  .cat-name { font-size: 1.05rem; }
  .cat-desc { font-size: 0.78rem; }
  .edu-grid { grid-template-columns: 1fr; }
  .edu-card { padding: 28px 20px; }
  .why-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .why-col { padding: 20px 12px; }
  .why-ico { width: 48px; height: 48px; border-radius: 14px; }
  .why-ico svg { width: 22px; height: 22px; }
  .why-name { font-size: 0.95rem; }
  .why-text { font-size: 0.82rem; }
  .catalog-layout { grid-template-columns: 1fr; }
  .filters { position: static; display: none; }
  .filters.open { display: block; }
  .filter-toggle { display: inline-flex; }
  .catalog-tools { gap: 8px; }
  .search-input { min-width: 0; padding: 11px 14px; font-size: 0.9rem; }
  .showcase-actions, .hero-cta, .cta-row { flex-direction: column; }
  .showcase-actions .btn, .hero-cta .btn, .cta-row .btn { width: 100%; }
  .section-eyebrow { font-size: 0.65rem; letter-spacing: 2.5px; }
  .section-title { font-size: clamp(1.5rem, 6vw, 2rem); }
  .section-sub { font-size: 0.95rem; }
  .test-carousel { gap: 6px; }
  .test-card { padding: 24px 16px 20px; }
  .test-avatar { width: 56px; height: 56px; font-size: 1.2rem; }
  .test-name { font-size: 1rem; }
  .test-text { font-size: 0.92rem; }
  .about-thumb { width: 80px; height: 80px; }
  .about-float { width: 120px; height: 120px; }
  .about-frame img { aspect-ratio: 3/4; }
  .about-copy { font-size: 0.95rem; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 20px; padding: 36px 0 24px; }
  .footer-brand { grid-column: 1/-1; margin-bottom: 8px; }
  .footer-col h4 { font-size: 0.72rem; }
  .footer-col a { font-size: 0.85rem; }
  .f-about { font-size: 0.85rem; max-width: 100%; }
  .footer-mid { flex-direction: column; gap: 12px; align-items: flex-start; }
  .footer-bottom { flex-direction: column; gap: 6px; }
  .rel-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .rel-card { padding: 10px; }
  .rel-card img { height: 80px; }
  .rel-name { font-size: 0.78rem; }
  .detail-price-grid { grid-template-columns: 1fr; }
  .detail-name { font-size: clamp(1.3rem, 5vw, 1.8rem); }
  .detail-actions { flex-direction: column; }
  .detail-actions .btn { width: 100%; }
  .cart-panel { width: 100%; max-width: 100vw; }
  .whatsapp-float { width: 52px; height: 52px; bottom: 18px; right: 16px; }
  .whatsapp-float svg { width: 24px; height: 24px; }
  .preloader__logo { width: 80px; height: 80px; }
  .preloader__mark { font-size: 1.2rem; }
  .preloader__brand { font-size: 0.95rem; letter-spacing: 0.22em; text-indent: 0.22em; }
  .preloader__progress { width: 160px; }
  .product-cat { font-size: 0.58rem; }
}

@media (max-width: 480px) {
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { margin: 0 auto; max-width: 300px; width: 100%; }
  .category-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .why-grid { grid-template-columns: 1fr; }
  .trust-item { flex-direction: column; gap: 6px; font-size: 0.78rem; padding: 14px 6px; }
  .carousel-arrow.prev { left: -2px; width: 34px; height: 34px; }
  .carousel-arrow.next { right: -2px; width: 34px; height: 34px; }
  .footer-top { grid-template-columns: 1fr; }
  .about-visual { display: none; }
  .showcase-media-card { padding: 14px; }
  .showcase-orbs { display: none; }
  .hero-overlay { background: linear-gradient(180deg, rgba(3, 16, 51, 0.8) 0%, rgba(6, 35, 90, 0.5) 45%, rgba(2, 8, 31, 0.95) 100%); }
  .product-card__title, .carousel-name { font-size: 0.66rem; }
  .product-card__price--subscribe { font-size: 0.76rem; }
  .product-card__price--regular { font-size: 0.54rem; }
  .product-card__actions .btn { font-size: 0.5rem; padding: 5px 3px; min-height: 26px; }
  .btn--outline.btn--carticon { width: 26px; padding: 5px; }
  .btn--whatsapp { font-size: 0.5rem; padding: 5px 6px; }
  .product-card__category { font-size: 0.44rem; padding: 2px 5px; }
  .product-card__image-wrapper { max-height: none; }
  .product-card__image { padding: 8px; }
  .product-card__content { padding: 6px 7px 8px; gap: 3px; }
  .carousel-card { width: 68%; }
}

@media (min-width: 1440px) {
  .container { max-width: 1320px; }
}

/* Mobile menu overlay */
@media (max-width: 1023px) {
  .nav-overlay {
    position: fixed; inset: 0; z-index: 999;
    background: rgba(1, 6, 22, 0.6); opacity: 0; visibility: hidden;
    transition: opacity .3s, visibility .3s;
    -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px);
  }
  .nav-overlay.is-visible { opacity: 1; visibility: visible; }
}

/* Touch-friendly tap targets */
@media (pointer: coarse) {
  .nav-links a { padding: 14px 13px; min-height: 44px; display: flex; align-items: center; }
  .filter-group label { padding: 8px 0; min-height: 40px; }
  .faq-q { padding: 18px 18px; min-height: 52px; }
  .cart-qty-btn { width: 36px; height: 36px; }
}

/* Prevent layout shift from video */
.hero-video { position: absolute; z-index: 0; }

/* Prevent horizontal overflow on all mobile widths */
@media (max-width: 767px) {
  html, body { overflow-x: hidden; }
  .container { overflow-wrap: break-word; word-wrap: break-word; }
}