/* =============================================================================
   QUISQUEYA HIVE — Storefront Theme
   YETI section architecture · DeWalt color + typography
   ============================================================================= */

/* ── Self-hosted fonts (Session 14 — was Google Fonts @import, removed the
   two extra DNS/TLS round trips that caused the 2,200ms render-blocking
   penalty in PageSpeed Insights) ──────────────────────────────────────── */
@font-face {
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/barlow-condensed-latin-400-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/assets/fonts/barlow-condensed-latin-600-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/assets/fonts/barlow-condensed-latin-700-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('/assets/fonts/barlow-condensed-latin-800-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Barlow Condensed';
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url('/assets/fonts/barlow-condensed-latin-900-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('/assets/fonts/inter-latin-300-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/inter-latin-400-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/assets/fonts/inter-latin-500-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/assets/fonts/inter-latin-600-normal.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/assets/fonts/inter-latin-700-normal.woff2') format('woff2');
}

/* ── Design Tokens ────────────────────────────────────────────────────────── */
:root {
  /* Core colors */
  --dark:          #111111;
  --darker:        #0A0A0A;
  --dark-card:     #1A1A1A;
  --dark-border:   rgba(255,255,255,0.1);
  --gold:          #F0A500;
  --gold-hover:    #C47F00;
  --gold-light:    rgba(240,165,0,0.1);
  --white:         #FFFFFF;
  --off-white:     #F8F8F6;
  --light:         #F4F4F2;
  --border:        #E8E8E5;
  --text:          #111111;
  --text-mid:      #444444;
  --text-muted:    #888888;

  /* Typography */
  --font-display:  'Barlow Condensed', sans-serif;
  --font-body:     'Inter', -apple-system, sans-serif;

  /* Type scale */
  --hero-size:     clamp(56px, 10vw, 108px);
  --h1:            clamp(40px, 6vw, 72px);
  --h2:            clamp(32px, 4vw, 56px);
  --h3:            clamp(22px, 3vw, 36px);
  --body-lg:       18px;
  --body:          16px;
  --small:         14px;
  --label:         12px;

  /* Layout */
  --container:     1280px;
  --pad-x:         24px;
  --section-py:    96px;
  --nav-h:         68px;

  /* Effects */
  --radius:        4px;
  --radius-lg:     8px;
  --shadow-card:   0 2px 12px rgba(0,0,0,0.08);
  --shadow-hover:  0 8px 32px rgba(0,0,0,0.14);
  --transition:    0.22s cubic-bezier(0.4,0,0.2,1);
}

/* ── Reset ────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  font-size: var(--body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a   { color: inherit; text-decoration: none; }
button { font-family: inherit; }

/* ── Container ────────────────────────────────────────────────────────────── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

/* ── Utilities ────────────────────────────────────────────────────────────── */
.text-gold    { color: var(--gold); }
.text-white   { color: var(--white); }
.text-muted   { color: var(--text-muted); }
.uppercase    { text-transform: uppercase; }
.font-display { font-family: var(--font-display); }

/* ── Reveal animations ────────────────────────────────────────────────────── */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
[data-reveal].revealed {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal-group] > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
[data-reveal-group] > *.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ── Buttons ──────────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition), transform var(--transition), color var(--transition);
  white-space: nowrap;
}
.btn:active { transform: scale(0.98); }

.btn-gold {
  background: var(--gold);
  color: var(--dark);
  box-shadow: 0 0 24px rgba(240,165,0,0.25);
}
.btn-gold:hover {
  background: var(--gold-hover);
  box-shadow: 0 0 32px rgba(240,165,0,0.4);
}

.btn-ghost-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-ghost-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn-ghost-gold {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
}
.btn-ghost-gold:hover { background: var(--gold-light); }

.btn-dark {
  background: var(--dark);
  color: var(--white);
}
.btn-dark:hover { background: #222; }

.btn-lg { padding: 17px 40px; font-size: 14px; }
.btn-sm { padding: 10px 22px; font-size: 12px; }

/* ── Section labels ───────────────────────────────────────────────────────── */
.section-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 12px;
}

/* ── Section headline ─────────────────────────────────────────────────────── */
.section-headline {
  font-family: var(--font-display);
  font-weight: 900;
  text-transform: uppercase;
  line-height: 0.95;
  letter-spacing: 0.01em;
}

/* ═══════════════════════════════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════════════════════════════ */
.qh-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: var(--dark);
  z-index: 1000;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: border-color var(--transition);
}
.qh-nav.scrolled {
  border-bottom-color: rgba(255,255,255,0.12);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}

.qh-nav .container {
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-inner {
  display: flex;
  align-items: center;
  height: 100%;
  width: 100%;
  gap: 0;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
  margin-right: 40px;
}
.nav-logo-img { height: 32px; width: auto; display: block; }

/* Search */
.nav-search { position: relative; display: flex; align-items: center; flex-shrink: 0; }
.nav-search-toggle {
  background: none; border: none; color: rgba(255,255,255,0.7); cursor: pointer;
  padding: 8px; display: flex; align-items: center; justify-content: center;
  border-radius: 4px; transition: color var(--transition), background var(--transition);
}
.nav-search-toggle:hover { color: var(--white); background: rgba(255,255,255,0.08); }
.nav-search-form {
  position: absolute; top: calc(100% + 8px); right: 0; width: 280px;
  opacity: 0; pointer-events: none; transform: translateY(-6px);
  transition: opacity .2s ease, transform .2s ease;
}
.nav-search.open .nav-search-form { opacity: 1; pointer-events: auto; transform: translateY(0); }
.nav-search-input {
  width: 100%; padding: 10px 14px; border-radius: 6px; border: 1px solid rgba(255,255,255,0.15);
  background: #1a1a1a; color: var(--white); font-size: 16px; outline: none;
  box-shadow: 0 8px 24px rgba(0,0,0,0.5);
}
.nav-search-input:focus { border-color: var(--gold); }
.nav-search-input::placeholder { color: rgba(255,255,255,0.4); }

.nav-logo-hex {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo-name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 18px;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.nav-logo-sub {
  font-size: 9px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 2px;
}

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  min-width: 0;
  list-style: none;
}
.nav-links a {
  display: block;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  border-radius: 4px;
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover {
  color: var(--white);
  background: rgba(255,255,255,0.06);
}
.nav-links a.active { color: var(--gold); }

/* Nav actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-left: auto;
  flex-shrink: 0;
}

/* Language switcher */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-shrink: 0;
}
.lang-btn {
  background: none;
  border: none;
  padding: 4px 8px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: color var(--transition), background var(--transition);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}
.lang-btn:hover, .lang-btn.active {
  color: var(--white);
  background: rgba(255,255,255,0.08);
}
.lang-btn.active { color: var(--gold); }

/* Cart icon */
.nav-cart {
  position: relative;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  border-radius: 4px;
  transition: color var(--transition), background var(--transition);
  flex-shrink: 0;
}
.nav-cart:hover {
  color: var(--white);
  background: rgba(255,255,255,0.06);
}
.cart-badge {
  position: absolute;
  top: 4px; right: 4px;
  min-width: 16px; height: 16px;
  background: var(--gold);
  color: var(--dark);
  font-size: 9px;
  font-weight: 800;
  border-radius: 8px;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 0 3px;
  line-height: 1;
}

/* B2B button */
.nav-b2b {
  background: var(--gold);
  color: var(--dark);
  padding: 8px 18px;
  border-radius: var(--radius);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-b2b:hover { background: var(--gold-hover); color: var(--dark); }

/* Mobile toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  cursor: pointer;
  padding: 6px;
  border-radius: 4px;
}

/* ── Mobile Menu Overlay ──────────────────────────────────────────────────── */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 1100;
  flex-direction: column;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.mobile-menu.open {
  opacity: 1;
}
@media (max-width: 1023px) {
  .mobile-menu { display: flex; pointer-events: none; }
  .mobile-menu.open { pointer-events: all; }
}

.mobile-menu-logo-img { height: 42px; width: auto; display: block; }

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  padding: calc(24px + env(safe-area-inset-top)) 24px 24px;
}
.mobile-menu-body {
  flex: 1;
  overflow-y: auto;
  padding: 0 24px calc(24px + env(safe-area-inset-bottom));
}
.mobile-menu-close {
  background: none; border: none;
  color: rgba(255,255,255,0.6);
  cursor: pointer; padding: 8px;
  border-radius: 4px;
  transition: color var(--transition);
}
.mobile-menu-close:hover { color: var(--white); }

.mobile-nav-links {
  list-style: none;
  flex: 1;
}
.mobile-nav-links li { border-bottom: 1px solid rgba(255,255,255,0.07); }
.mobile-nav-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 32px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.02em;
  transition: color var(--transition);
}
.mobile-nav-links a:hover { color: var(--gold); }

.mobile-menu-footer {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.mobile-lang {
  display: flex;
  gap: 12px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   HERO SECTION
═══════════════════════════════════════════════════════════════════════════ */
/* Hero background video */
.hero-bg-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  /* Video composition has the action on the right third — nudge the
     crop right if a generation doesn't quite land where requested,
     rather than regenerating. Adjust this value first if the framing
     looks off before touching anything else. */
  object-position: 75% center;
  z-index: 0;
}

/* Darkening overlay — stronger than the photo version below needed,
   since moving video reads as much more visually busy behind text
   than a static image did. */
.qh-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.88) 0%,
    rgba(0,0,0,0.55) 45%,
    rgba(0,0,0,0.35) 100%
  );
}

/* Mobile: video hidden, poster image shows instead via the <video>
   element's own poster attribute — lighter payload, protects FCP. */
@media (max-width: 767px) {
  .hero-bg-video { display: none; }
}

/* Respect reduced-motion preference regardless of screen size. */
@media (prefers-reduced-motion: reduce) {
  .hero-bg-video { display: none; }
}

.qh-hero {
  position: relative;
  min-height: 100svh;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
  padding-top: var(--nav-h);
  overflow: hidden;
  background: var(--darker);

  /* Fallback gradient — shows briefly before the video/poster loads,
     and permanently on mobile behind the poster image. */
  background-image:
    linear-gradient(135deg, #1C1C1C 0%, #0D0D0D 60%, #1A1209 100%);
}

/* Hero photo overlay — uncomment when you have a real image */
/*
.qh-hero {
  background-image: url('/assets/img/hero.jpg');
  background-size: cover;
  background-position: center top;
}
*/

/* Hex canvas overlay */
.hero-hex-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

/* Gold accent line (DeWalt inspired) */
.qh-hero::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: 0;
  height: 3px;
  background: var(--gold);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 820px;
}
.hero-content::before {
  content: '';
  position: absolute;
  left: -80px;
  top: -120px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(240,165,0,0.16) 0%, rgba(240,165,0,0) 70%);
  pointer-events: none;
  z-index: -1;
}

.hero-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.hero-label::before {
  content: '';
  display: block;
  width: 32px;
  height: 2px;
  background: var(--gold);
}

.hero-headline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: var(--hero-size);
  line-height: 0.92;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 28px;
}
.hero-headline span { color: var(--gold); }

.hero-sub {
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 400;
  color: rgba(255,255,255,0.65);
  max-width: 540px;
  line-height: 1.6;
  margin-bottom: 40px;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* Scroll indicator */
.hero-scroll-indicator {
  position: absolute;
  bottom: 28px;
  right: var(--pad-x);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.4);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  z-index: 2;
  transition: opacity 0.3s;
}
.hero-scroll-indicator svg {
  animation: scrollBounce 1.8s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(6px); }
}

/* ═══════════════════════════════════════════════════════════════════════════
   TRUST BAR
═══════════════════════════════════════════════════════════════════════════ */
.qh-trust {
  background: var(--gold);
  padding: 0;
}
.trust-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 22px 28px;
  border-right: 1px solid rgba(0,0,0,0.1);
  transition: background var(--transition);
}
.trust-item:last-child { border-right: none; }
.trust-item:hover { background: rgba(0,0,0,0.05); }
.trust-icon {
  width: 36px;
  height: 36px;
  color: var(--dark);
  flex-shrink: 0;
}
.trust-text { flex: 1; min-width: 0; }
.trust-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 17px;
  text-transform: uppercase;
  color: var(--dark);
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.trust-sub {
  font-size: 11px;
  color: rgba(0,0,0,0.55);
  margin-top: 3px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   CATEGORIES — Dark cards on white (DeWalt energy)
═══════════════════════════════════════════════════════════════════════════ */
.qh-categories {
  background: var(--white);
  padding: var(--section-py) 0;
}
.section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 48px;
  gap: 24px;
}
.section-header .section-headline { font-size: var(--h2); color: var(--dark); }
.section-header a {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
  transition: color var(--transition);
}
.section-header a:hover { color: var(--gold-hover); }

.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
}

.category-card {
  background: var(--dark-card);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  transition: background var(--transition);
  min-height: 260px;
}
.category-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.category-card:hover { background: #1E1E1E; }
.category-card:hover::before { transform: scaleX(1); }

/* Big background number (DeWalt style) */
.category-card-num {
  position: absolute;
  top: 16px; right: 20px;
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 72px;
  color: rgba(255,255,255,0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.category-icon {
  width: 48px;
  height: 48px;
  color: var(--gold);
  margin-bottom: 20px;
  flex-shrink: 0;
}
.category-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 26px;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.02em;
  line-height: 1.1;
  margin-bottom: 10px;
}
.category-desc {
  font-size: 13px;
  color: rgba(255,255,255,0.45);
  line-height: 1.5;
  flex: 1;
}
.category-cta {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 24px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  transition: gap var(--transition);
}
.category-card:hover .category-cta { gap: 10px; }

/* ═══════════════════════════════════════════════════════════════════════════
   FEATURED PRODUCTS
═══════════════════════════════════════════════════════════════════════════ */
.qh-featured {
  background: var(--light);
  padding: var(--section-py) 0;
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow var(--transition), border-color var(--transition), transform var(--transition);
  text-decoration: none;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  box-shadow: var(--shadow-hover), 0 0 20px rgba(240,165,0,0.12);
  border-color: rgba(240,165,0,0.35);
  transform: translateY(-3px);
}

.product-card-img {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--light);
  position: relative;
}
.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-card-img img {
  transform: scale(1.04);
}
.product-card-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #1A1A1A, #111111);
  font-size: 48px;
}

/* Featured badge */
.product-badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--gold);
  color: var(--dark);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 2px;
}

.product-card-body {
  padding: 18px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-card-sku {
  font-size: 10px;
  color: var(--text-muted);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 6px;
  font-family: monospace;
}
.product-card-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  text-transform: uppercase;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 8px;
  letter-spacing: 0.01em;
}
.product-card-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--gold);
  margin-top: auto;
  padding-top: 12px;
}
.product-card-price-currency {
  font-size: 14px;
  opacity: 0.8;
  margin-right: 2px;
}
.product-card-action {
  margin-top: 14px;
  display: block;
  width: 100%;
  padding: 10px;
  background: var(--dark);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background var(--transition);
  text-decoration: none;
}
.product-card-action:hover { background: var(--gold); color: var(--dark); }

/* ═══════════════════════════════════════════════════════════════════════════
   B2B BANNER — YETI-style dark CTA section
═══════════════════════════════════════════════════════════════════════════ */
/* ── Shop by Experience Level (replaces old B2B section) ─────────────────── */
.qh-experience { background: var(--dark); position: relative; overflow: hidden; padding: var(--section-py) 0; }
.experience-hex-canvas { position: absolute; inset: 0; width: 100%; height: 100%; pointer-events: none; }
.experience-header { position: relative; z-index: 2; text-align: center; max-width: 640px; margin: 0 auto 48px; }
.experience-subtitle { color: rgba(255,255,255,.6); font-size: 15px; margin-top: 12px; line-height: 1.6; }
.experience-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1fr 1fr; gap: 24px; max-width: 900px; margin: 0 auto; }
.experience-card {
  background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg); padding: 36px 32px; text-align: center;
  transition: border-color var(--transition), background var(--transition);
}
.experience-card:hover { border-color: rgba(240,165,0,.35); background: rgba(255,255,255,0.06); }
.experience-icon {
  width: 60px; height: 60px; border-radius: 50%; background: rgba(240,165,0,.1);
  display: flex; align-items: center; justify-content: center; margin: 0 auto 20px;
}
.experience-card h3 { font-family: var(--font-display); font-weight: 800; font-size: 20px; text-transform: uppercase; color: var(--white); margin-bottom: 12px; }
.experience-card p { color: rgba(255,255,255,.6); font-size: 14px; line-height: 1.65; margin-bottom: 24px; }
.experience-note { position: relative; z-index: 2; text-align: center; color: rgba(255,255,255,.4); font-size: 12px; margin-top: 36px; }

/* ── FAQ ───────────────────────────────────────────────────────────────── */
.qh-faq { background: var(--white); padding: 64px 0; }
.faq-header { text-align: center; margin-bottom: 40px; }
.faq-list { max-width: 720px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 20px 4px; background: none; border: none; text-align: left; cursor: pointer;
  font-family: var(--font-body); font-size: 15px; font-weight: 600; color: var(--dark);
}
.faq-chevron { color: var(--text-muted); flex-shrink: 0; margin-left: 16px; transition: transform .2s; }
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-item.open .faq-answer { max-height: 300px; }
.faq-answer p { padding: 0 4px 20px; color: var(--text-muted); font-size: 14px; line-height: 1.7; }

/* ── Newsletter ────────────────────────────────────────────────────────── */
.qh-newsletter { background: var(--light); padding: 64px 0; }
.newsletter-inner { max-width: 520px; margin: 0 auto; text-align: center; }
.newsletter-icon { font-size: 36px; margin-bottom: 14px; }
.qh-newsletter h2 { font-family: var(--font-display); font-weight: 900; font-size: clamp(22px,3vw,30px); text-transform: uppercase; color: var(--dark); margin-bottom: 10px; }
.qh-newsletter p { color: var(--text-muted); font-size: 14px; margin-bottom: 24px; }
.newsletter-form { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.newsletter-input {
  flex: 1; min-width: 220px; padding: 14px 18px; border: 1.5px solid var(--border);
  border-radius: var(--radius); font-size: 16px; font-family: var(--font-body);
  background: var(--white); color: var(--text); outline: none;
}
.newsletter-input:focus { border-color: var(--gold); }
.newsletter-success { background: rgba(34,197,94,0.1); color: #16803d; border: 1px solid rgba(34,197,94,0.3); border-radius: var(--radius); padding: 14px 20px; font-size: 14px; }
.newsletter-error { background: rgba(239,68,68,0.08); color: #b91c1c; border: 1px solid rgba(239,68,68,0.3); border-radius: var(--radius); padding: 10px 16px; font-size: 13px; margin-top: 12px; }

@media(max-width: 1023px) {
  .experience-grid { grid-template-columns: 1fr; max-width: 400px; }
}
@media(max-width: 640px) {
  .newsletter-form { flex-direction: column; }
}

/* ── Blog Preview (Homepage) ──────────────────────────────────────────── */
.qh-blog-preview { background: var(--white); padding: var(--section-py) 0; }
.blog-preview-header { text-align: center; margin-bottom: 40px; }
.blog-preview-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.blog-preview-card { background: var(--off-white); border: 1px solid var(--border); border-radius: var(--radius-lg); overflow: hidden; text-decoration: none; transition: box-shadow var(--transition), transform var(--transition); }
.blog-preview-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
.blog-preview-img { aspect-ratio: 16/10; background: var(--light); }
.blog-preview-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-preview-body { padding: 18px 20px; }
.blog-preview-cat { display: block; font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; color: var(--gold); margin-bottom: 6px; }
.blog-preview-body h3 { font-family: var(--font-display); font-weight: 800; font-size: 16px; text-transform: uppercase; color: var(--dark); line-height: 1.3; }

@media(max-width: 1023px) { .blog-preview-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; } }

.qh-b2b {
  background: var(--dark);
  position: relative;
  overflow: hidden;
  padding: var(--section-py) 0;
}

/* Hex decoration */
.b2b-hex-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* Gold left accent line */
.qh-b2b::before {
  content: '';
  position: absolute;
  top: 0; left: 0; bottom: 0;
  width: 4px;
  background: var(--gold);
}

.b2b-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.b2b-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.b2b-label::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--gold);
  display: block;
}
.b2b-headline {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: var(--h1);
  text-transform: uppercase;
  color: var(--white);
  line-height: 0.93;
  letter-spacing: 0.01em;
  margin-bottom: 24px;
}
.b2b-headline em {
  font-style: normal;
  color: var(--gold);
}
.b2b-desc {
  font-size: var(--body-lg);
  color: rgba(255,255,255,0.6);
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 480px;
}
.b2b-features {
  list-style: none;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.b2b-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.7);
}
.b2b-features li::before {
  content: '';
  width: 6px;
  height: 6px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
}

/* Right side graphic */
.b2b-graphic {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.b2b-tiers {
  display: flex;
  flex-direction: column;
  gap: 3px;
  width: 100%;
  max-width: 380px;
}
.b2b-tier {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-left: 3px solid var(--gold);
  padding: 20px 24px;
  border-radius: var(--radius);
  transition: background var(--transition), border-left-color var(--transition);
}
.b2b-tier:hover { background: rgba(255,255,255,0.07); }
.b2b-tier-featured {
  background: rgba(240,165,0,0.08);
  box-shadow: 0 0 28px rgba(240,165,0,0.15);
}
.b2b-tier-featured:hover { background: rgba(240,165,0,0.12); }
.b2b-tier-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 18px;
  text-transform: uppercase;
  color: var(--white);
  letter-spacing: 0.04em;
}
.b2b-tier-desc { font-size: 13px; color: rgba(255,255,255,0.45); margin-top: 3px; }
.b2b-tier-badge {
  float: right;
  background: var(--gold);
  color: var(--dark);
  font-size: 10px;
  font-weight: 800;
  padding: 2px 8px;
  border-radius: 2px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ═══════════════════════════════════════════════════════════════════════════
   BEGINNERS SECTION
═══════════════════════════════════════════════════════════════════════════ */
.qh-beginners {
  background: var(--white);
  padding: var(--section-py) 0;
  border-top: 1px solid var(--border);
}
.beginners-header {
  text-align: center;
  margin-bottom: 60px;
}
.beginners-header .section-headline { font-size: var(--h2); color: var(--dark); }
.beginners-header p {
  font-size: var(--body-lg);
  color: var(--text-mid);
  margin-top: 16px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  margin-bottom: 56px;
}
.step-card {
  background: var(--white);
  padding: 40px 32px;
  position: relative;
}
.step-num {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 72px;
  color: var(--border);
  line-height: 1;
  margin-bottom: 16px;
  display: block;
}
.step-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 24px;
  text-transform: uppercase;
  color: var(--dark);
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}
.step-desc { font-size: 14px; color: var(--text-mid); line-height: 1.6; }
.step-icon {
  position: absolute;
  top: 36px; right: 32px;
  width: 32px; height: 32px;
  color: var(--gold);
}
.beginners-cta { text-align: center; }

/* ═══════════════════════════════════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════════════════════════════════ */
.qh-testimonials {
  background: var(--light);
  padding: var(--section-py) 0;
}
.testimonials-header {
  text-align: center;
  margin-bottom: 56px;
}
.testimonials-header .section-headline { font-size: var(--h2); color: var(--dark); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: box-shadow var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-card); }

/* ── Google Reviews component (Session 14B) ─────────────────────────────── */
.gr-section.gr-full { background: var(--light); padding: var(--section-py) 0; }
.gr-section.gr-compact { background: var(--off-white); padding: 40px 0; }
.gr-header { text-align: center; margin-bottom: 44px; }
.gr-overall { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 12px; }
.gr-overall-stars { color: var(--gold); font-size: 20px; letter-spacing: 2px; }
.gr-overall-num { font-family: var(--font-display); font-weight: 800; font-size: 20px; color: var(--dark); }
.gr-overall-count { font-size: 13px; color: var(--text-muted); }
.gr-grid { display: grid; gap: 24px; }
.gr-grid-compact { grid-template-columns: repeat(3, 1fr); gap: 16px; }

.gr-spotlight { max-width: 640px; margin: 0 auto; }
.gr-spotlight-track { display: flex; gap: 24px; }
.gr-spotlight .gr-spotlight-slide { display: none; flex: 1; min-width: 0; }
.gr-spotlight .gr-spotlight-slide.active { display: flex; }
@media (min-width: 768px) {
  .gr-spotlight { max-width: 1100px; }
  .gr-spotlight .gr-spotlight-slide.active + .gr-spotlight-slide { display: flex; }
}
.gr-spotlight-nav { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 24px; }
.gr-spotlight-dots { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; max-width: 100%; }
.gr-spotlight-counter { font-family: var(--font-display); font-weight: 700; font-size: 14px; color: var(--text-muted); white-space: nowrap; }
.gr-spotlight-counter-current { color: var(--dark); }
.gr-dot {
  width: 8px; height: 8px; border-radius: 50%; border: none;
  background: var(--border); cursor: pointer; padding: 0;
  transition: background var(--transition), width var(--transition), border-radius var(--transition);
}
.gr-dot.active { background: var(--gold); width: 24px; border-radius: 4px; }
.gr-spotlight-next, .gr-spotlight-prev {
  width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
  background: var(--white); border: 1px solid var(--border); color: var(--dark);
  font-size: 16px; line-height: 1; cursor: pointer; display: flex;
  align-items: center; justify-content: center; transition: all .15s;
}
.gr-spotlight-next:hover, .gr-spotlight-prev:hover { border-color: var(--gold); color: var(--gold); }

.gr-card {
  background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 28px; display: flex; flex-direction: column; gap: 14px;
  transition: box-shadow var(--transition);
}
.gr-compact .gr-card { padding: 18px; gap: 10px; }
.gr-card:hover { box-shadow: var(--shadow-card); }
.gr-stars { color: var(--gold); font-size: 15px; letter-spacing: 2px; }
.gr-text { font-size: 14px; color: var(--text); line-height: 1.65; flex: 1; }
.gr-compact .gr-text { font-size: 13px; }
.gr-translated { font-size: 10px; color: var(--text-muted); font-style: italic; margin-top: -8px; }
.gr-author { display: flex; align-items: center; gap: 10px; }
.gr-avatar, .gr-avatar-img {
  width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0; object-fit: cover;
}
.gr-avatar {
  background: var(--dark); color: var(--gold); display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-weight: 700; font-size: 13px;
}
.gr-name { font-size: 13px; font-weight: 700; color: var(--dark); }
.gr-time { font-size: 11px; color: var(--text-muted); }
.gr-google-icon { margin-left: auto; flex-shrink: 0; }
.gr-verified-badge {
    margin-left: auto; flex-shrink: 0;
    width: 22px; height: 22px; border-radius: 50%;
    background: var(--success, #22C55E); color: #fff;
    display: flex; align-items: center; justify-content: center;
    font-size: 12px; font-weight: 700;
}
.gr-product-tag {
    display: inline-block; font-size: 11px; font-weight: 600;
    color: var(--gold-hover, #C47F00); background: var(--gold-light, #FFFBEB);
    border: 1px solid var(--gold-border, #FDE68A); border-radius: 5px;
    padding: 2px 8px; margin: 4px 0 8px;
}
.gr-footer { text-align: center; margin-top: 36px; }
.gr-see-all { color: var(--gold); font-weight: 700; font-size: 14px; text-decoration: none; }
.gr-see-all:hover { text-decoration: underline; }

@media(max-width: 1023px) {
  .gr-grid-compact { grid-template-columns: 1fr 1fr; }
}
@media(max-width: 640px) {
  .gr-grid-compact { grid-template-columns: 1fr; }
}
.testimonial-stars {
  display: flex;
  gap: 3px;
  color: var(--gold);
  font-size: 16px;
}
.testimonial-text {
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.7;
  flex: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}
.testimonial-avatar {
  width: 40px;
  height: 40px;
  background: var(--dark);
  color: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16px;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 700; font-size: 14px; }
.testimonial-location { font-size: 12px; color: var(--text-muted); margin-top: 1px; }
.testimonial-flag { font-size: 16px; margin-left: auto; }

/* ═══════════════════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════════════════ */
.qh-footer {
  background: var(--dark);
  border-top: 3px solid var(--gold);
  padding: 72px 0 0;
  color: rgba(255,255,255,0.6);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

/* Footer logo col */
.footer-logo-img { height: 56px; width: auto; display: block; margin-bottom: 16px; }

.footer-brand-name {
  font-family: var(--font-display);
  font-weight: 900;
  font-size: 26px;
  color: var(--gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 4px;
}
.footer-brand-sub {
  font-size: 10px;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 20px;
}
.footer-tagline {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  max-width: 260px;
  margin-bottom: 28px;
}
.footer-social {
  display: flex;
  gap: 10px;
}
.footer-social-link {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5);
  transition: background var(--transition), color var(--transition);
}
.footer-social-link:hover { background: var(--gold); color: var(--dark); }

/* Footer nav cols */
.footer-col-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 20px;
  display: block;
}
.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-nav a {
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  transition: color var(--transition);
}
.footer-nav a:hover { color: var(--gold); }

/* Contact col */
.footer-contact-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin-bottom: 14px;
}
.footer-contact-item svg { flex-shrink: 0; color: var(--gold); margin-top: 2px; }
.footer-contact-item span { font-size: 13px; color: rgba(255,255,255,0.5); line-height: 1.5; }

/* Footer bottom bar */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-copy { font-size: 12px; color: rgba(255,255,255,0.55); }
.footer-langs {
  display: flex;
  gap: 6px;
}
.footer-lang-link {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  color: rgba(255,255,255,0.55);
  padding: 4px 8px;
  border-radius: 3px;
  transition: color var(--transition), background var(--transition);
}
.footer-lang-link:hover { color: var(--white); background: rgba(255,255,255,0.07); }
.footer-lang-link.active { color: var(--gold); }

/* ── WhatsApp Floating Button ─────────────────────────────────────────── */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 500;
  transition: transform var(--transition), box-shadow var(--transition);
}
.wa-float::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: #25D366;
  z-index: -1;
  pointer-events: none;
  animation: waPulseRing 3s ease-in-out infinite;
}
.wa-float:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55);
}
.wa-float:hover::after {
  animation: none;
  opacity: 0;
}
@keyframes waPulseRing {
  0%   { transform: scale(1);    opacity: 0.55; }
  70%  { transform: scale(1.35); opacity: 0; }
  100% { transform: scale(1.35); opacity: 0; }
}

/* ── Unified Language / Region / Currency Panel (Session 14B) ───────────── */
.settings-section-label {
  font-size: 10px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: rgba(255,255,255,.4); margin: 4px 0 6px;
}
.settings-divider { height: 1px; background: rgba(255,255,255,.1); margin: 10px 0; }
.settings-row {
  display: flex; align-items: center; justify-content: space-between; width: 100%;
  padding: 8px 10px; border-radius: 6px; font-size: 13px; color: rgba(255,255,255,.85);
  text-decoration: none; box-sizing: border-box;
}
.settings-row:hover:not(.disabled) { background: rgba(255,255,255,.06); }
.settings-row.active { color: var(--gold-primary, #F0A500); }
.settings-row.disabled { color: rgba(255,255,255,.3); cursor: default; }
.settings-check { color: var(--gold-primary, #F0A500); font-weight: 700; }
.settings-soon { font-size: 10px; text-transform: uppercase; letter-spacing: .04em; color: rgba(255,255,255,.3); }

/* ── Buy box — elevated card treatment, Alibaba-style visual containment ─── */
.buy-box {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    margin-top: 16px;
}

/* ── Rating summary near the title ────────────────────────────────────────── */
.product-rating-summary {
    display: inline-flex; align-items: center; gap: 8px;
    cursor: pointer; margin: 6px 0 14px; user-select: none;
}
.product-rating-summary:hover .prs-count,
.product-rating-summary:hover .prs-empty { text-decoration: underline; }
.prs-stars { color: var(--gold); font-size: 15px; letter-spacing: 1px; }
.prs-avg   { font-weight: 800; font-size: 14px; color: var(--dark); }
.prs-count, .prs-empty { font-size: 13px; color: var(--text-muted); }

/* ── Wholesale price-break hint — visible to everyone, not just approved
   wholesale accounts, so it acts as a real incentive to register ─────────── */
.price-tiers-hint {
    font-size: 12px; color: var(--gold-hover, #C47F00);
    background: var(--gold-light, #FFFBEB);
    border: 1px solid var(--gold-border, #FDE68A);
    border-radius: 6px; padding: 6px 10px; margin-bottom: 8px;
}
/* ── Sticky Add-to-Cart Bar (mobile AND desktop now — see media query below) ── */
.sticky-cart-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 10px 0 calc(10px + env(safe-area-inset-bottom));
  z-index: 400; /* below WhatsApp (500), above page content */
  transform: translateY(100%);
  transition: transform .25s ease;
  display: block;
}
.sticky-cart-bar.visible { transform: translateY(0); }
.sticky-cart-inner {
  display: flex;
  align-items: center;
  gap: 12px;
}
.sticky-cart-info { display: flex; align-items: center; gap: 10px; min-width: 0; flex: 1; }
.sticky-cart-thumb { width: 38px; height: 38px; border-radius: 6px; object-fit: cover; flex-shrink: 0; background: var(--light); }
.sticky-cart-text { display: flex; flex-direction: column; min-width: 0; }
.sticky-cart-name {
  font-size: 12px; color: rgba(255,255,255,.7); white-space: nowrap;
  overflow: hidden; text-overflow: ellipsis; max-width: 160px;
}
.sticky-cart-price { font-family: var(--font-display); font-weight: 800; font-size: 16px; color: var(--gold); }
.sticky-cart-btn { width: auto !important; flex-shrink: 0; padding: 10px 20px !important; font-size: 13px !important; }

/* Keep the WhatsApp float clear of the sticky bar while it's showing */
body.has-sticky-cart .wa-float { bottom: 86px; transition: bottom .25s ease; }

/* ── Mobile Buy Sheet — panel deslizante desde abajo, mismo patrón que
   usa Alibaba en su versión mobile: la barra inferior solo abre el panel,
   la acción real de comprar sucede ahí dentro ─────────────────────────── */
.buy-sheet-overlay {
    position: fixed; inset: 0; background: rgba(0,0,0,0.45);
    z-index: 900; opacity: 0; pointer-events: none;
    transition: opacity .25s ease;
}
.buy-sheet-overlay.visible { opacity: 1; pointer-events: auto; }

.buy-sheet {
    position: fixed; left: 0; right: 0; bottom: 0;
    background: var(--white);
    border-radius: 20px 20px 0 0;
    padding: 12px 24px calc(24px + env(safe-area-inset-bottom));
    z-index: 901;
    transform: translateY(100%);
    transition: transform .3s ease;
    box-shadow: 0 -8px 30px rgba(0,0,0,0.15);
    display: none;
}
.buy-sheet.visible { transform: translateY(0); }

.buy-sheet-handle {
    width: 40px; height: 4px; border-radius: 2px;
    background: var(--border); margin: 4px auto 16px;
}
.buy-sheet-close {
    position: absolute; top: 16px; right: 20px;
    background: none; border: none; font-size: 18px;
    color: var(--text-muted); cursor: pointer; padding: 4px;
}
.buy-sheet-product {
    display: flex; align-items: center; gap: 14px; margin-bottom: 20px;
}
.buy-sheet-thumb {
    width: 56px; height: 56px; border-radius: 10px;
    object-fit: cover; background: var(--light); flex-shrink: 0;
}
.buy-sheet-name {
    font-size: 14px; font-weight: 600; color: var(--dark);
    line-height: 1.3; margin-bottom: 4px;
}
.buy-sheet-price {
    font-family: var(--font-display); font-weight: 800;
    font-size: 20px; color: var(--gold);
}

@media (min-width: 1024px) {
    .buy-sheet, .buy-sheet-overlay { display: none !important; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   RESPONSIVE BREAKPOINTS
═══════════════════════════════════════════════════════════════════════════ */
@media (min-width: 768px) {
  :root { --pad-x: 40px; }
}
@media (min-width: 1200px) {
  :root { --pad-x: 64px; }
}

/* Tablet: ≤1023px */
@media (max-width: 1023px) {
  :root { --section-py: 72px; }

  .nav-links, .nav-b2b { display: none; }
  .mobile-toggle { display: flex; }

  .b2b-inner { grid-template-columns: 1fr; gap: 48px; }
  .b2b-tiers { max-width: 100%; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-inner { grid-template-columns: repeat(2, 1fr); }
  .trust-item { border-bottom: 1px solid rgba(0,0,0,0.1); }
}

/* Mobile: ≤767px */
@media (max-width: 767px) {
  :root {
    --section-py: 56px;
    --nav-h: 60px;
  }

  .nav-logo-img { height: 30px; }

  .nav-search-form {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    width: 100%;
    padding: 12px 16px;
    margin: 0;
    background: var(--dark);
    box-sizing: border-box;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  }
  .nav-search-input { box-shadow: none; width: 100%; box-sizing: border-box; }
  .hero-ctas { flex-direction: column; }
  .hero-ctas .btn { width: 100%; justify-content: center; }

  .categories-grid { grid-template-columns: 1fr; gap: 2px; }
  .category-card { min-height: 200px; padding: 28px 24px; }

  .products-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .product-card-body { padding: 14px; }
  .product-card-name { font-size: 15px; }

  .steps-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }

  .trust-inner { grid-template-columns: 1fr 1fr; }

  .lang-switcher { display: none; }
}

/* Very small: ≤480px */
@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .trust-inner { grid-template-columns: 1fr; }
  .trust-item { border-right: none; }
}

/* ── LANGUAGE SWITCHER ──────────────────────────────────────────────────────── */
.lang-switcher {
    position: relative;
}
.lang-current {
    background: transparent;
    border: 1px solid #2a2a2a;
    border-radius: 6px;
    color: #9A9A9A;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 500;
    padding: 6px 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 4px;
    transition: border-color 0.2s, color 0.2s;
    white-space: nowrap;
}
.lang-current:hover {
    border-color: #F0A500;
    color: #F0A500;
}
.lang-menu {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    padding: 6px;
    min-width: 140px;
    display: none;
    z-index: 200;
    box-shadow: 0 8px 24px rgba(0,0,0,0.4);
}
.lang-menu.open { display: block; }
.lang-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    font-size: 14px;
    color: #9A9A9A;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.15s, color 0.15s;
}
.lang-option:hover {
    background: #2a2a2a;
    color: #F2F2F2;
}

/* ── NAV ACCOUNT + CART ICONS ───────────────────────────────────────────────── */
.nav-account-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: #9A9A9A;
    text-decoration: none;
    border-radius: 6px;
    transition: color 0.2s, background 0.2s;
}
.nav-account-btn:hover { color: #F0A500; background: rgba(240,165,0,0.08); }

.nav-cart-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: #9A9A9A;
    text-decoration: none;
    border-radius: 6px;
    transition: color 0.2s, background 0.2s;
}
.nav-cart-btn:hover { color: #F0A500; background: rgba(240,165,0,0.08); }

/* ── FOOTER WHATSAPP BTN ────────────────────────────────────────────────────── */
.footer-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #25D366;
    color: #fff;
    text-decoration: none;
    padding: 10px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    margin-top: 16px;
    transition: background 0.2s;
}
.footer-whatsapp-btn:hover { background: #1da851; }

/* Currency secondary price (conversion hint) */
.price-secondary {
    font-size: 0.55em;
    font-weight: 500;
    color: var(--text-muted);
    opacity: 0.75;
    margin-left: 4px;
}
