/* ══════════════════════════════════════════════════════════════════
   HEIBERS — Design System v2
   Aesthetic: Industrial premium · Lujo minimalista · Tech sobria
   Palette: Carbón cálido · Caramelo · Arena dorada
══════════════════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Teko:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

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

/* ── Variables ── */
:root {
  /* Backgrounds — carbón oscuro, limpio y neutro */
  --black:       #0E0E0E;
  --dark:        #161616;
  --surface:     #202020;
  --card:        #282828;
  --card-hover:  #323232;
  --border:      #3A3A3A;
  --border-light:#525252;

  /* Ámbar dorado — vibrante, cálido, premium */
  --brown:       #C47830;
  --brown-md:    #DC9438;
  --brown-light: #EEA840;
  --sand:        #F6C258;
  --sand-light:  #FBDA90;

  /* Grises neutros */
  --gray:        #6A6A6A;
  --stone:       #969696;

  /* Textos — blanco puro */
  --white:       #FFFFFF;
  --white-dim:   #DEDEDE;
  --muted:       #AAAAAA;

  --font-d: 'Teko', 'Rajdhani', sans-serif;
  --font-b: 'Inter', sans-serif;

  --radius-xs: 2px;
  --radius-sm: 4px;
  --radius:    6px;
  --radius-md: 10px;
  --radius-lg: 14px;

  --shadow-sm:  0 2px 8px rgba(0,0,0,.35);
  --shadow:     0 8px 28px rgba(0,0,0,.50);
  --shadow-lg:  0 24px 64px rgba(0,0,0,.60);
  --shadow-warm:0 16px 48px rgba(196,120,48,.30);

  --trans:  0.22s ease;
  --trans-md: 0.35s ease;
}

/* ── Base ── */
html { scroll-behavior: smooth; font-size: 16px; }

body {
  background: var(--black);
  color: var(--white);
  font-family: var(--font-b);
  line-height: 1.65;
  overflow-x: hidden;
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--black); }
::-webkit-scrollbar-thumb { background: var(--brown-md); border-radius: 2px; }

/* ── Scroll progress ── */
#scroll-progress {
  position: fixed; top: 0; left: 0; height: 2px;
  background: var(--sand); width: 0%; z-index: 9999;
  transition: width .1s linear;
}

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-d);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: .01em;
  color: var(--white);
}
h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2.2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: 1.25rem; }

p   { color: var(--white-dim); line-height: 1.75; }
a   { color: inherit; text-decoration: none; }
em  { font-style: normal; color: var(--sand); }

.text-sand    { color: var(--sand); }
.text-muted   { color: var(--muted); }
.text-center  { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

/* ── Container ── */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ── Label / Tag ── */
.label {
  display: inline-block;
  font-family: var(--font-b);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}
.label-line {
  display: flex; align-items: center; gap: .75rem; margin-bottom: .9rem;
  font-size: .68rem; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; color: var(--stone);
}
.label-line::before {
  content: ''; display: block; width: 24px; height: 1px; background: var(--brown-md);
}

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-b); font-weight: 600;
  font-size: .85rem; letter-spacing: .06em;
  text-transform: uppercase; cursor: pointer;
  border: 1px solid transparent;
  transition: background var(--trans), border-color var(--trans), color var(--trans), transform var(--trans);
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--brown) 0%, var(--brown-md) 100%);
  color: var(--white); border-color: var(--brown-md);
  box-shadow: 0 4px 18px rgba(196,120,48,.35);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--brown-md) 0%, var(--brown-light) 100%);
  border-color: var(--brown-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(196,120,48,.50);
}
.btn-outline {
  background: transparent; color: var(--white-dim);
  border-color: var(--border-light);
}
.btn-outline:hover {
  border-color: var(--sand); color: var(--sand);
  transform: translateY(-1px);
}
.btn-ghost {
  background: transparent; color: var(--sand);
  border-color: transparent; padding: .75rem 0;
  gap: .6rem;
}
.btn-ghost:hover { color: var(--sand-light); gap: .9rem; }
.btn-sm   { padding: .5rem 1.1rem; font-size: .75rem; }
.btn-lg   { padding: .9rem 2.25rem; font-size: .9rem; }
.btn-xl   { padding: 1rem 2.75rem; font-size: .95rem; }
.btn-full { width: 100%; justify-content: center; }
.btn-icon {
  padding: .6rem; background: var(--surface);
  border: 1px solid var(--border); color: var(--muted);
}
.btn-icon:hover { border-color: var(--sand); color: var(--sand); }
.btn.disabled { opacity: .4; pointer-events: none; }

/* ── Section ── */
.section { padding: 6rem 0; }
.section-header { margin-bottom: 3.5rem; }
.section-header h2 { margin-bottom: .4rem; }
.section-header p  { font-size: .95rem; max-width: 480px; }
.section-header.center { text-align: center; }
.section-header.center p { margin: 0 auto; }

/* ── Divider ── */
.divider {
  height: 1px; background: var(--border);
  margin: 0 auto; max-width: 1280px;
}

/* ── Animations ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
@keyframes float {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-10px); }
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

.animate-in { opacity: 0; animation: fadeUp .7s ease forwards; }
.delay-1  { animation-delay: .1s; }
.delay-2  { animation-delay: .25s; }
.delay-3  { animation-delay: .4s; }
.delay-4  { animation-delay: .55s; }

.reveal {
  opacity: 0; transform: translateY(18px);
  transition: opacity .55s ease, transform .55s ease;
  transition-delay: var(--delay, 0s);
}
.reveal.visible { opacity: 1; transform: none; }

/* ════════════════════════════════════════════════════════════════
   NAVBAR
════════════════════════════════════════════════════════════════ */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(11, 8, 4, 0.82);
  backdrop-filter: blur(20px) saturate(1.6);
  -webkit-backdrop-filter: blur(20px) saturate(1.6);
  border-bottom: 1px solid rgba(196, 120, 48, 0.18);
  transition: background var(--trans-md), border-color var(--trans-md), box-shadow var(--trans-md);
}
.navbar.scrolled {
  background: rgba(13, 9, 5, 0.97);
  border-bottom-color: rgba(196, 120, 48, 0.30);
  box-shadow: 0 4px 28px rgba(0, 0, 0, 0.50);
}
.nav-container {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1280px; margin: 0 auto; padding: 1.1rem 2rem;
}
.nav-logo .logo-img {
  height: 58px; width: auto; object-fit: contain;
  max-width: 240px;
  opacity: 1;
  filter: drop-shadow(0 0 14px rgba(212,168,108,.22));
  transition: filter var(--trans), transform var(--trans);
}
.nav-logo:hover .logo-img {
  filter: drop-shadow(0 0 20px rgba(212,168,108,.45));
  transform: scale(1.03);
}

.nav-links {
  display: flex; align-items: center; gap: 2.5rem; list-style: none;
}
.nav-links > li > a {
  font-size: .75rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--muted);
  transition: color var(--trans); padding: .25rem 0;
  position: relative;
}
.nav-links > li > a::after {
  content: ''; position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1px; background: var(--sand);
  transition: width var(--trans);
}
.nav-links > li > a:hover,
.nav-links > li > a.active { color: var(--white); }
.nav-links > li > a:hover::after,
.nav-links > li > a.active::after { width: 100%; }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown-menu {
  position: absolute; top: calc(100% + 16px); left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: .4rem;
  min-width: 220px; opacity: 0; pointer-events: none;
  transition: var(--trans);
  box-shadow: var(--shadow);
}
.has-dropdown:hover .dropdown-menu {
  opacity: 1; pointer-events: auto; transform: translateX(-50%) translateY(0);
}
.dropdown-menu a {
  display: flex; align-items: center; gap: .6rem;
  padding: .55rem .9rem; border-radius: var(--radius-sm);
  color: var(--muted); font-size: .82rem; font-weight: 500;
  letter-spacing: .04em; transition: var(--trans);
}
.dropdown-menu a:hover { color: var(--sand); background: rgba(212,168,108,.07); }
.dropdown-menu a:hover::after { display: none; }
.dropdown-menu .cat-count {
  margin-left: auto; font-size: .7rem;
  background: var(--surface); padding: .1rem .4rem;
  border-radius: 3px; color: var(--gray);
}

.nav-actions { display: flex; align-items: center; gap: .6rem; }

/* Unified icon button for nav */
.btn-icon-nav {
  background: none; border: none; cursor: pointer;
  color: var(--muted); font-size: 1rem; padding: .4rem;
  transition: color var(--trans); position: relative;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
}
.btn-icon-nav:hover { color: var(--white); }
.btn-search-toggle { /* keep old class working */
  background: none; border: none; cursor: pointer;
  color: var(--muted); font-size: 1rem; padding: .4rem;
  transition: color var(--trans); position: relative;
}
.btn-search-toggle:hover { color: var(--white); }

.cart-badge, .mbn-badge {
  position: absolute; top: -3px; right: -3px;
  background: var(--brown-md); color: var(--white);
  border-radius: 50%; width: 16px; height: 16px;
  font-size: .6rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

/* Desktop social icons in nav */
.nav-socials-desktop {
  display: flex; align-items: center; gap: .2rem;
  border-left: 1px solid var(--border); padding-left: .8rem;
  margin-left: .2rem;
}
.nav-socials-desktop a {
  color: var(--gray); font-size: .9rem; padding: .35rem .4rem;
  transition: color var(--trans); border-radius: var(--radius-sm);
}
.nav-socials-desktop a:hover { color: var(--white); }
.nav-socials-desktop .nav-wa { color: #25D366; }
.nav-socials-desktop .nav-wa:hover { color: #1fba5a; }

.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: .3rem;
}
.nav-burger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--white-dim); transition: var(--trans); border-radius: 1px;
}

/* Search bar */
.search-bar {
  background: var(--surface); border-top: 1px solid var(--border);
  padding: 0 2rem; max-height: 0; overflow: hidden;
  transition: max-height var(--trans-md), padding var(--trans-md);
}
.search-bar.open { max-height: 72px; padding: .7rem 2rem; }
.search-form {
  display: flex; max-width: 640px; margin: 0 auto;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-sm); overflow: hidden;
}
.search-form input {
  flex: 1; background: none; border: none;
  padding: .65rem 1rem; color: var(--white); font-size: .9rem; outline: none;
}
.search-form input::placeholder { color: var(--gray); }
.search-form button {
  background: var(--brown); border: none; padding: 0 1.1rem;
  color: var(--white); cursor: pointer; font-size: .9rem;
  transition: background var(--trans);
}
.search-form button:hover { background: var(--brown-md); }

.nav-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.75);
  z-index: 998; display: none;
}
.nav-overlay.open { display: block; }

/* Flash */
.flash-container {
  position: fixed; top: 76px; right: 1.5rem; z-index: 2000;
  display: flex; flex-direction: column; gap: .4rem;
}
.flash {
  display: flex; align-items: center; gap: .7rem;
  background: var(--card); border: 1px solid var(--border);
  border-left: 3px solid var(--sand);
  padding: .8rem 1.1rem; border-radius: var(--radius);
  max-width: 320px; font-size: .85rem;
  animation: slideDown .3s ease;
}
.flash-success { border-left-color: #7CB98A; }
.flash-error   { border-left-color: #C26B5A; }
.flash-close {
  margin-left: auto; background: none; border: none;
  color: var(--gray); cursor: pointer;
}

/* ════════════════════════════════════════════════════════════════
   HERO — Full bleed image slider
════════════════════════════════════════════════════════════════ */
.hero {
  position: relative; min-height: 100vh;
  overflow: hidden; display: flex; align-items: center;
  background: #18150F;
}

/* Slides: product studio photos full-bleed */
.hero-slides {
  position: absolute; inset: 0; z-index: 0;
  display: block; /* override old display:none */
}
.hero-slide {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center 20%;
  opacity: 0;
  transition: opacity 1.1s cubic-bezier(.4,0,.2,1);
}
.hero-slide.active { opacity: 1; }

/* Gradient overlay: left side darker for text, right shows product photo */
.hero-overlay {
  position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    linear-gradient(90deg,
      rgba(8,8,8,.90) 0%,
      rgba(8,8,8,.68) 35%,
      rgba(8,8,8,.22) 60%,
      rgba(8,8,8,.04) 100%),
    linear-gradient(0deg,
      rgba(8,8,8,.55) 0%,
      transparent 38%);
}

/* Content over the slides */
.hero-content {
  position: relative; z-index: 3;
  padding: 8rem 0 5rem;
  max-width: 600px;
}

.hero-eyebrow {
  font-size: .7rem; font-weight: 600; letter-spacing: .2em;
  text-transform: uppercase; color: var(--sand);
  display: flex; align-items: center; gap: .75rem;
  margin-bottom: 1.75rem;
}
.hero-eyebrow::before {
  content: ''; display: block; width: 32px; height: 1px;
  background: var(--brown-md);
}

.hero-title {
  font-family: var(--font-d);
  font-size: clamp(4.5rem, 9vw, 8.5rem);
  font-weight: 600; line-height: .9;
  color: var(--white); letter-spacing: -.02em;
  margin-bottom: 2rem;
  text-shadow: 0 4px 32px rgba(0,0,0,.6);
}
.hero-title em { display: block; color: var(--sand); font-style: normal; }

.hero-sub {
  font-size: 1rem; color: var(--white-dim);
  line-height: 1.8; margin-bottom: 2.5rem; max-width: 380px;
}

.hero-cta-row { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; }

/* Slide dots */
.hero-dots {
  display: flex; gap: .5rem; margin-top: 3rem;
}
.hero-dot {
  width: 24px; height: 3px; border-radius: 2px;
  background: rgba(255,255,255,.3); border: none; cursor: pointer;
  transition: background .3s, width .3s;
  padding: 0;
}
.hero-dot.active { background: var(--sand); width: 40px; }

/* Scroll hint */
.hero-scroll-hint {
  position: absolute; bottom: 2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 3; display: flex; flex-direction: column;
  align-items: center; gap: .5rem;
  color: rgba(255,255,255,.4); font-size: .65rem; font-weight: 600;
  letter-spacing: .14em; text-transform: uppercase;
}
.hero-scroll-hint::after {
  content: ''; display: block; width: 1px; height: 36px;
  background: linear-gradient(to bottom, rgba(255,255,255,.4), transparent);
  animation: float 2.5s ease infinite;
}

/* Slide nav arrows */
.hero-arrow {
  position: absolute; top: 50%; z-index: 4;
  transform: translateY(-50%);
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.7); width: 48px; height: 48px;
  border-radius: 50%; cursor: pointer; font-size: 1rem;
  display: flex; align-items: center; justify-content: center;
  transition: background .25s, border-color .25s, color .25s;
  backdrop-filter: blur(6px);
}
.hero-arrow:hover {
  background: rgba(228,190,130,.18); border-color: var(--sand);
  color: var(--sand);
}
.hero-arrow-prev { left: 2rem; }
.hero-arrow-next { right: 2rem; }

/* Unused old elements — keep invisible */
.hero-glow, .hero-divider, .hero-visual { display: none; }

/* ════════════════════════════════════════════════════════════════
   MARQUEE STRIP
════════════════════════════════════════════════════════════════ */
.marquee-strip {
  background: linear-gradient(90deg, var(--brown) 0%, var(--brown-md) 50%, var(--brown) 100%);
  padding: .75rem 0;
  overflow: hidden; white-space: nowrap;
  border-top: 1px solid var(--brown-light);
  border-bottom: 1px solid rgba(0,0,0,.3);
}
.marquee-track {
  display: inline-flex; gap: 3rem;
  animation: marquee 28s linear infinite;
}
.marquee-track span {
  font-size: .72rem; font-weight: 700; letter-spacing: .16em;
  text-transform: uppercase; color: rgba(255,255,255,.92);
}
.marquee-track .dot {
  color: rgba(255,255,255,.45); font-size: .5rem;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ════════════════════════════════════════════════════════════════
   CATEGORIES (editorial tiles)
════════════════════════════════════════════════════════════════ */
.section-categories { background: var(--dark); padding: 6rem 0; }
.categories-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-md); overflow: hidden;
}
/* First tile spans 2 cols */
.cat-tile:first-child { grid-column: span 2; }

.cat-tile {
  position: relative; display: flex; flex-direction: column;
  background: var(--card); padding: 2rem;
  overflow: hidden; min-height: 180px;
  transition: background var(--trans);
  cursor: pointer;
}
.cat-tile:hover { background: var(--card-hover); }

.cat-tile-bg {
  position: absolute; inset: 0; z-index: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity var(--trans-md);
  filter: brightness(0.3) saturate(0.4);
}
.cat-tile:hover .cat-tile-bg { opacity: 1; }

.cat-tile-body {
  position: relative; z-index: 1; margin-top: auto;
  display: flex; align-items: flex-end; justify-content: space-between;
}
.cat-tile-label {
  font-size: .65rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--gray);
  display: block; margin-bottom: .4rem;
  transition: color var(--trans);
}
.cat-tile:hover .cat-tile-label { color: var(--sand); }
.cat-tile h3 {
  font-size: clamp(1.5rem, 3vw, 2.2rem); color: var(--white);
  transition: color var(--trans);
}
.cat-tile:hover h3 { color: var(--sand); }
.cat-tile-arrow {
  font-size: 1.4rem; color: var(--border-light);
  transition: color var(--trans), transform var(--trans);
}
.cat-tile:hover .cat-tile-arrow { color: var(--sand); transform: translate(3px,-3px); }

/* ════════════════════════════════════════════════════════════════
   PRODUCT CARDS
════════════════════════════════════════════════════════════════ */
.product-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: border-color var(--trans), transform var(--trans-md), box-shadow var(--trans-md);
}
.product-card:hover {
  border-color: var(--border-light);
  transform: translateY(-5px);
  box-shadow: var(--shadow-warm);
}

.product-card-img-wrap {
  position: relative; overflow: hidden;
  aspect-ratio: 1 / 1.1; display: block; background: var(--surface);
}
.product-img {
  width: 100%; height: 100%; object-fit: contain;
  padding: 1rem;
  transition: transform .5s ease, opacity .3s;
}
.product-img-hover {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: contain; padding: 1rem;
  opacity: 0; transition: opacity .4s ease;
}
.product-card:hover .product-img      { transform: scale(1.04); }
.product-card:hover .product-img-hover { opacity: 1; }

.product-card-overlay {
  position: absolute; inset: 0;
  background: rgba(28,28,28,.65);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity var(--trans-md);
}
.product-card:hover .product-card-overlay { opacity: 1; }
.quick-view-label {
  background: var(--brown); color: var(--white);
  padding: .55rem 1.5rem; border-radius: var(--radius-sm);
  font-size: .72rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; transform: translateY(8px);
  transition: transform var(--trans-md);
}
.product-card:hover .quick-view-label { transform: none; }

.product-badge {
  position: absolute; top: .75rem; left: .75rem; z-index: 2;
  background: var(--brown); color: var(--white);
  font-size: .6rem; font-weight: 700; letter-spacing: .12em;
  padding: .2rem .6rem; border-radius: var(--radius-xs);
  text-transform: uppercase;
}

.product-card-body {
  padding: 1.25rem 1.25rem 1.25rem;
  display: flex; flex-direction: column; flex: 1;
  border-top: 1px solid var(--border);
}
.product-cat-label {
  font-size: .65rem; text-transform: uppercase; letter-spacing: .12em;
  color: var(--gray); margin-bottom: .35rem;
}
.product-name {
  font-family: var(--font-d); font-size: 1.2rem; font-weight: 600;
  margin-bottom: .4rem; line-height: 1.15;
}
.product-name a { color: var(--white); transition: color var(--trans); }
.product-name a:hover { color: var(--sand); }
.product-short-desc {
  font-size: .8rem; color: var(--muted); line-height: 1.55;
  margin-bottom: .8rem;
  display: -webkit-box;
  -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.product-footer {
  display: flex; align-items: center; justify-content: space-between;
  gap: .5rem; margin-top: auto; padding-top: .75rem;
  border-top: 1px solid var(--border);
}
.product-price { display: flex; align-items: baseline; gap: .35rem; }
.price-from    { font-size: .68rem; color: var(--gray); text-transform: uppercase; letter-spacing: .08em; }
.price-amount  {
  font-family: var(--font-d); font-size: 1.3rem; color: var(--sand);
  letter-spacing: .01em;
}
.price-consult { font-size: .8rem; color: var(--gray); font-style: italic; }
.product-actions { display: flex; gap: .4rem; }

/* ── Slider ── */
.slider-wrapper { position: relative; }
.products-slider {
  display: flex; gap: 1rem; overflow-x: auto;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
  scrollbar-width: none; padding: .5rem 0 1.5rem;
}
.products-slider::-webkit-scrollbar { display: none; }
.products-slider .product-card {
  flex: 0 0 clamp(240px, 24vw, 300px);
  scroll-snap-align: start;
}
.slider-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  z-index: 10; background: var(--card); border: 1px solid var(--border);
  color: var(--white-dim); width: 40px; height: 40px;
  border-radius: 50%; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: var(--trans); font-size: .9rem;
}
.slider-btn:hover { background: var(--brown); border-color: var(--brown); color: var(--white); }
.slider-btn-prev { left: -20px; }
.slider-btn-next { right: -20px; }

/* ── Grid ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(265px, 1fr));
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.products-grid .product-card {
  border-radius: 0; border: none;
}

/* ════════════════════════════════════════════════════════════════
   FEATURED STRIP (full-bleed)
════════════════════════════════════════════════════════════════ */
.section-featured { background: var(--black); }
.section-featured .products-grid {
  border-radius: var(--radius-md);
}

/* ════════════════════════════════════════════════════════════════
   TRUST BAR
════════════════════════════════════════════════════════════════ */
.trust-bar {
  background: var(--dark);
  border-top: 1px solid var(--border);
  border-bottom: 2px solid var(--brown);
  padding: 1.5rem 0;
}
.trust-grid {
  display: flex; flex-wrap: wrap;
  gap: 0; /* borders via box-shadow */
}
.trust-item {
  flex: 1 1 200px;
  display: flex; align-items: center; gap: .85rem;
  padding: 1.1rem 2rem;
  border-right: 1px solid var(--border);
  font-size: .78rem; font-weight: 600; letter-spacing: .06em;
  text-transform: uppercase; color: var(--white-dim);
}
.trust-item:last-child { border-right: none; }
.trust-item i {
  font-size: 1.2rem; color: var(--sand); flex-shrink: 0;
  filter: drop-shadow(0 0 8px rgba(246,194,88,.4));
}

/* ════════════════════════════════════════════════════════════════
   CATEGORY SECTIONS (FP-Moto style)
════════════════════════════════════════════════════════════════ */
.cat-section {
  padding: 5rem 0;
  background: var(--black);
  border-bottom: 1px solid var(--border);
  position: relative;
}
.cat-section::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--brown) 40%, var(--brown-light) 60%, transparent);
  opacity: .35;
}
.cat-section-alt {
  background: var(--dark);
}

.cat-section-inner {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 4rem;
  align-items: start;
}

/* Left: intro */
.cat-section-intro {
  position: sticky; top: 100px;
  padding-top: .5rem;
}
.cat-section-num {
  font-family: var(--font-d);
  font-size: 5rem; font-weight: 600; line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px var(--brown-md);
  display: block; margin-bottom: .5rem;
  letter-spacing: -.02em;
  opacity: .6;
}
.cat-section-intro .label-line { margin-bottom: 1rem; }
.cat-section-title {
  font-family: var(--font-d);
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 600; line-height: 1.05;
  color: var(--white); margin-bottom: 1rem;
  letter-spacing: -.01em;
}
.cat-section-sub {
  font-size: .82rem; color: var(--gray);
  line-height: 1.7; margin-bottom: 1.75rem;
}
.cat-section-link {
  display: inline-flex; align-items: center; gap: .6rem;
  font-size: .75rem; font-weight: 600; letter-spacing: .1em;
  text-transform: uppercase; color: var(--sand);
  border-bottom: 1px solid var(--brown);
  padding-bottom: .2rem;
  transition: color var(--trans), border-color var(--trans), gap var(--trans);
}
.cat-section-link:hover {
  color: var(--sand-light); border-color: var(--sand);
  gap: .9rem;
}

/* Right: slider */
.cat-section-slider {
  position: relative;
  min-width: 0; /* prevent grid blowout */
}
.cat-products-track {
  display: flex; gap: 1px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch; scrollbar-width: none;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding-bottom: 0;
}
.cat-products-track::-webkit-scrollbar { display: none; }
.cat-products-track .product-card {
  flex: 0 0 clamp(200px, 22vw, 280px);
  scroll-snap-align: start;
  border-radius: 0; border: none;
}

.cat-slider-nav {
  display: flex; gap: .5rem; margin-top: 1.25rem;
  justify-content: flex-end;
}
.cat-slider-nav .slider-btn {
  position: static; transform: none;
  width: 38px; height: 38px; font-size: .85rem;
}

/* Product card aspect ratio — portrait (3:4) */
.product-card-img-wrap {
  aspect-ratio: 3 / 4 !important;
}

/* ════════════════════════════════════════════════════════════════
   BRAND MANIFESTO
════════════════════════════════════════════════════════════════ */
.manifesto {
  padding: 7rem 0;
  background: var(--surface);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.manifesto-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6rem; align-items: center;
}
.manifesto-text .label-line { margin-bottom: 1.5rem; }
.manifesto-text h2 { font-size: clamp(2.5rem, 5vw, 4.5rem); margin-bottom: 1.5rem; }
.manifesto-text p  { margin-bottom: 1rem; line-height: 1.85; color: var(--muted); }

.manifesto-pillars {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem;
}
.pillar {
  border-top: 1px solid var(--border-light); padding-top: 1.25rem;
}
.pillar-num {
  font-family: var(--font-d); font-size: 2.5rem; color: var(--brown);
  display: block; margin-bottom: .4rem;
}
.pillar h4 {
  font-family: var(--font-b); font-size: .88rem; font-weight: 700;
  color: var(--white); margin-bottom: .3rem; letter-spacing: .02em;
}
.pillar p { font-size: .8rem; color: var(--gray); line-height: 1.6; }

/* ════════════════════════════════════════════════════════════════
   BANNER CTA
════════════════════════════════════════════════════════════════ */
.section-cta {
  background: linear-gradient(135deg, #1A1208 0%, var(--brown) 50%, #1A1208 100%);
  padding: 5.5rem 0;
  text-align: center;
  position: relative; overflow: hidden;
}
.section-cta::before {
  content: 'HEIBERS'; position: absolute;
  font-family: var(--font-d); font-size: clamp(6rem, 14vw, 14rem);
  font-weight: 700; color: rgba(255,255,255,.06);
  white-space: nowrap; top: 50%; left: 50%;
  transform: translate(-50%, -50%); pointer-events: none;
  letter-spacing: -.02em;
}
.section-cta::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(246,194,88,.12) 0%, transparent 70%);
  pointer-events: none;
}
.cta-content { position: relative; z-index: 1; }
.section-cta h2 { font-size: clamp(2rem, 4vw, 3.5rem); color: var(--white); margin-bottom: .75rem; }
.section-cta p  { color: rgba(241,241,241,.7); margin-bottom: 2rem; }
.section-cta .btn-outline {
  border-color: rgba(241,241,241,.4); color: var(--white);
}
.section-cta .btn-outline:hover {
  border-color: var(--white); background: rgba(255,255,255,.1);
  color: var(--white);
}

/* ════════════════════════════════════════════════════════════════
   PAGE HEADER
════════════════════════════════════════════════════════════════ */
.page-header {
  background: var(--dark); border-bottom: 1px solid var(--border);
  padding: 7rem 0 3.5rem;
}
.page-header h1 { margin: .5rem 0; }
.page-header-sub { color: var(--muted); font-size: .9rem; }

.breadcrumb {
  display: flex; align-items: center; gap: .5rem;
  font-size: .75rem; color: var(--gray);
  margin-bottom: .75rem; letter-spacing: .04em;
}
.breadcrumb a:hover { color: var(--sand); }
.breadcrumb i { font-size: .6rem; color: var(--border-light); }

/* ════════════════════════════════════════════════════════════════
   CATALOG
════════════════════════════════════════════════════════════════ */
.catalog-layout {
  display: grid; grid-template-columns: 240px 1fr;
  gap: 3rem; padding: 3.5rem 0 5rem;
}
.catalog-sidebar { display: flex; flex-direction: column; gap: 1.25rem; }
.filter-block {
  border: 1px solid var(--border); border-radius: var(--radius-md);
  padding: 1.5rem; background: var(--card);
}
.filter-block h3 {
  font-family: var(--font-b); font-size: .72rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; color: var(--stone);
  margin-bottom: 1rem; display: flex; align-items: center; gap: .5rem;
}
.filter-list { list-style: none; display: flex; flex-direction: column; gap: .15rem; }
.filter-list a {
  display: flex; align-items: center; gap: .6rem;
  padding: .5rem .7rem; border-radius: var(--radius-sm);
  font-size: .84rem; color: var(--muted);
  transition: color var(--trans), background var(--trans);
}
.filter-list a:hover, .filter-list a.active {
  color: var(--sand); background: rgba(212,168,108,.07);
}
.filter-list .count {
  margin-left: auto; font-size: .7rem;
  background: var(--surface); padding: .1rem .4rem;
  border-radius: 3px; color: var(--gray);
}
.sidebar-search {
  display: flex; background: var(--surface);
  border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden;
}
.sidebar-search input {
  flex: 1; background: none; border: none;
  padding: .6rem .85rem; color: var(--white);
  font-size: .85rem; outline: none;
}
.sidebar-search input::placeholder { color: var(--gray); }
.sidebar-search button {
  background: none; border: none; padding: 0 .85rem;
  color: var(--gray); cursor: pointer;
}
.sidebar-search button:hover { color: var(--sand); }
.sidebar-cta {
  text-align: center; display: flex; flex-direction: column;
  align-items: center; gap: .6rem;
}
.sidebar-cta i { font-size: 1.5rem; color: var(--sand); }
.sidebar-cta p { font-size: .82rem; color: var(--muted); }

.catalog-toolbar {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1.5rem;
}
.toolbar-result { font-size: .82rem; color: var(--gray); }
.toolbar-result strong { color: var(--white); }
.clear-search { margin-left: .5rem; color: var(--stone); font-size: .78rem; }
.view-btn {
  background: none; border: 1px solid var(--border);
  color: var(--gray); padding: .4rem .6rem;
  border-radius: var(--radius-sm); cursor: pointer; transition: var(--trans);
}
.view-btn.active, .view-btn:hover { border-color: var(--sand); color: var(--sand); }

.catalog-main .products-grid { border-radius: var(--radius-md); }

/* List view */
.products-grid.list-view { grid-template-columns: 1fr; background: transparent; border: none; gap: 1px; }
.products-grid.list-view .product-card { flex-direction: row; border-radius: var(--radius-md); border: 1px solid var(--border); }
.products-grid.list-view .product-card-img-wrap { flex: 0 0 180px; aspect-ratio: unset; height: 160px; }

/* Empty state */
.empty-state {
  display: flex; flex-direction: column; align-items: center;
  gap: 1rem; padding: 5rem 1rem; text-align: center; color: var(--gray);
}
.empty-state i { color: var(--border-light); }
.empty-state h3 { font-family: var(--font-b); color: var(--white-dim); }

/* ════════════════════════════════════════════════════════════════
   PRODUCT DETAIL
════════════════════════════════════════════════════════════════ */
.product-detail {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; padding: 3.5rem 0 2rem;
}

.gallery-main {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-lg); overflow: hidden;
  cursor: zoom-in; position: relative;
}
.gallery-main-img {
  width: 100%; aspect-ratio: 4/3; object-fit: contain;
  padding: 1.5rem; transition: transform .4s ease;
}
.gallery-main:hover .gallery-main-img { transform: scale(1.04); }
.gallery-zoom-hint {
  position: absolute; bottom: .7rem; right: .7rem;
  background: rgba(28,28,28,.8); color: var(--muted);
  padding: .25rem .6rem; border-radius: var(--radius-sm); font-size: .72rem;
  opacity: 0; transition: var(--trans);
}
.gallery-main:hover .gallery-zoom-hint { opacity: 1; }

.gallery-thumbs { display: flex; gap: .6rem; margin-top: .75rem; flex-wrap: wrap; }
.gallery-thumb {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-sm); overflow: hidden;
  cursor: pointer; width: 68px; height: 68px;
  transition: border-color var(--trans); padding: 0;
}
.gallery-thumb img { width: 100%; height: 100%; object-fit: contain; padding: 3px; }
.gallery-thumb.active, .gallery-thumb:hover { border-color: var(--sand); }

.product-info {}
.product-badge-lg {
  display: inline-block; background: var(--brown);
  color: var(--white); font-size: .62rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  padding: .2rem .7rem; border-radius: var(--radius-xs); margin-bottom: .75rem;
}
.product-title { font-size: clamp(1.8rem, 3vw, 3rem); margin-bottom: .5rem; }
.product-short  { color: var(--muted); font-size: .95rem; margin-bottom: 2rem; line-height: 1.7; }

.product-price-block { margin-bottom: 1.75rem; padding-bottom: 1.75rem; border-bottom: 1px solid var(--border); }
.price-label { font-size: .65rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; color: var(--gray); }
.price-big { font-family: var(--font-d); font-size: 3.2rem; color: var(--sand); line-height: 1.05; margin: .3rem 0; }
.price-consult-lg { font-size: 1.1rem; color: var(--gray); font-style: italic; padding: .5rem 0; }

.variants-block { margin-top: 1.1rem; }
.variants-block > label {
  font-size: .68rem; font-weight: 600; letter-spacing: .12em;
  text-transform: uppercase; color: var(--gray); display: block; margin-bottom: .6rem;
}
.variant-btns { display: flex; flex-wrap: wrap; gap: .5rem; }
.variant-btn {
  background: var(--surface); border: 1px solid var(--border);
  color: var(--muted); padding: .6rem 1rem; border-radius: var(--radius-sm);
  cursor: pointer; font-size: .8rem; line-height: 1.4; transition: var(--trans); text-align: center;
}
.variant-btn strong { color: var(--sand); display: block; font-family: var(--font-d); font-size: 1.1rem; }
.variant-btn.active, .variant-btn:hover { border-color: var(--sand); background: rgba(212,168,108,.08); color: var(--white); }

.option-block { margin-bottom: 1.5rem; }
.option-block > label {
  display: block; font-size: .68rem; font-weight: 600;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--gray); margin-bottom: .55rem;
}
.color-btns { display: flex; flex-wrap: wrap; gap: .4rem; }
.color-btn {
  padding: .35rem .85rem; border-radius: var(--radius-sm);
  font-size: .76rem; cursor: pointer; border: 1px solid var(--border);
  background: var(--surface); color: var(--muted); transition: var(--trans);
}
.color-btn.active, .color-btn:hover { border-color: var(--sand); color: var(--sand); }

.add-to-cart-block { display: flex; gap: 1rem; align-items: center; margin-bottom: 1.5rem; flex-wrap: wrap; }
.qty-block {
  display: flex; align-items: center; gap: .4rem;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: .2rem .4rem;
}
.qty-btn {
  background: none; border: none; color: var(--muted);
  padding: .4rem .65rem; cursor: pointer; transition: color var(--trans);
}
.qty-btn:hover { color: var(--sand); }
.qty-input {
  background: none; border: none; color: var(--white);
  width: 36px; text-align: center; font-size: .95rem; font-weight: 600; outline: none;
}
.btn-add-cart { flex: 1; }

.shipping-info {
  display: flex; flex-direction: column; gap: .45rem;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 1rem 1.2rem;
}
.si-item { display: flex; align-items: center; gap: .6rem; font-size: .82rem; color: var(--muted); }
.si-item i { color: var(--sand); width: 14px; font-size: .85rem; }

/* Tabs */
.product-tabs { padding: 2.5rem 0; border-top: 1px solid var(--border); }
.tabs-nav { display: flex; gap: 0; border-bottom: 1px solid var(--border); margin-bottom: 2rem; }
.tab-btn {
  background: none; border: none; color: var(--gray);
  padding: .7rem 1.5rem; font-size: .8rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -1px; transition: var(--trans);
}
.tab-btn.active { color: var(--sand); border-bottom-color: var(--sand); }
.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fadeIn .3s; }
.product-description { color: var(--muted); line-height: 1.85; }
.product-description p { margin-bottom: 1rem; }
.features-list { list-style: none; display: flex; flex-direction: column; gap: .55rem; }
.features-list li { display: flex; align-items: flex-start; gap: .65rem; color: var(--muted); font-size: .9rem; }
.features-list li i { color: var(--sand); margin-top: .25rem; flex-shrink: 0; font-size: .8rem; }

.section-related { padding: 2rem 0 3.5rem; }
.section-related h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 1.5rem; }

/* Lightbox */
.lightbox {
  position: fixed; inset: 0; background: rgba(0,0,0,.92);
  z-index: 9998; display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.lightbox.active { opacity: 1; pointer-events: auto; }
.lightbox-img { max-width: 90vw; max-height: 90vh; object-fit: contain; border-radius: var(--radius); }
.lightbox-close {
  position: absolute; top: 1.5rem; right: 1.5rem;
  background: var(--surface); border: 1px solid var(--border);
  color: var(--white); padding: .55rem .85rem; border-radius: var(--radius-sm);
  cursor: pointer; transition: var(--trans);
}
.lightbox-close:hover { background: var(--brown); }

/* ════════════════════════════════════════════════════════════════
   CART
════════════════════════════════════════════════════════════════ */
.cart-layout {
  display: grid; grid-template-columns: 1fr 360px;
  gap: 3rem; padding-top: 3rem; padding-bottom: 5rem; align-items: start;
}
.cart-item {
  display: flex; align-items: center; gap: 1.25rem;
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-md); padding: 1.25rem; margin-bottom: .75rem;
  transition: border-color var(--trans);
}
.cart-item:hover { border-color: var(--border-light); }
.cart-item-img {
  width: 76px; height: 76px; object-fit: contain;
  border-radius: var(--radius-sm); background: var(--surface); padding: 4px;
}
.cart-item-info { flex: 1; }
.cart-item-info h4 { font-size: .92rem; font-weight: 700; }
.cart-item-price { color: var(--sand); font-weight: 600; font-size: .85rem; margin-top: .2rem; }
.cart-item-qty {
  display: flex; align-items: center; gap: .4rem;
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: .15rem .4rem;
}
.cart-item-qty span { font-weight: 700; min-width: 18px; text-align: center; font-size: .9rem; }
.cart-item-subtotal { font-family: var(--font-d); font-size: 1.4rem; color: var(--sand); min-width: 90px; text-align: right; }
.cart-item-remove {
  background: none; border: none; color: var(--gray);
  cursor: pointer; padding: .4rem; border-radius: var(--radius-sm); transition: var(--trans);
}
.cart-item-remove:hover { color: #C26B5A; }

.cart-summary-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 1.75rem;
  position: sticky; top: 86px;
}
.cart-summary-card h3 {
  font-family: var(--font-b); font-size: 1rem; font-weight: 700;
  margin-bottom: 1.25rem; padding-bottom: .75rem; border-bottom: 1px solid var(--border);
  letter-spacing: .04em; text-transform: uppercase;
}
.summary-row { display: flex; justify-content: space-between; font-size: .88rem; margin-bottom: .65rem; color: var(--muted); }
.summary-total { font-size: 1.1rem; font-weight: 700; color: var(--white); }
.summary-divider { height: 1px; background: var(--border); margin: 1rem 0; }
.summary-secure { text-align: center; font-size: .75rem; color: var(--gray); margin: .85rem 0; display: flex; align-items: center; justify-content: center; gap: .4rem; }
.summary-payments { text-align: center; font-size: .75rem; color: var(--gray); }
.payment-icons { display: flex; align-items: center; justify-content: center; gap: .65rem; margin-top: .35rem; }
.payment-icons i { color: var(--stone); }
.pse-badge { background: #003087; color: white; padding: .1rem .45rem; border-radius: 3px; font-size: .68rem; font-weight: 700; }
.epayco-badge { background: var(--brown); color: var(--white); padding: .15rem .6rem; border-radius: var(--radius-sm); font-weight: 700; font-size: .75rem; }
.cart-help {
  margin-top: .85rem; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 1rem;
  display: flex; align-items: center; gap: .65rem;
}
.cart-help i { font-size: 1.35rem; color: #4CAF50; }
.cart-help strong { display: block; font-size: .82rem; }
.cart-help a { color: var(--sand); font-size: .8rem; }

/* ════════════════════════════════════════════════════════════════
   CHECKOUT
════════════════════════════════════════════════════════════════ */
.checkout-layout { display: grid; grid-template-columns: 1fr 400px; gap: 2.5rem; padding-top: 3rem; padding-bottom: 5rem; }
.card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-lg); padding: 2rem;
}
.card h3 {
  font-family: var(--font-b); font-size: .8rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase; color: var(--stone);
  margin-bottom: 1.5rem; padding-bottom: .75rem; border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: .5rem;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; }
.form-group-full { grid-column: 1/-1; }
.form-group label { font-size: .72rem; font-weight: 600; letter-spacing: .08em; text-transform: uppercase; color: var(--gray); }
.form-group input, .form-group select, .form-group textarea {
  background: var(--surface); border: 1px solid var(--border);
  color: var(--white); padding: .7rem 1rem; border-radius: var(--radius-sm);
  font-family: var(--font-b); font-size: .9rem; outline: none; transition: border-color var(--trans);
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--sand); }
.form-group textarea { resize: vertical; }
.form-group select option { background: var(--card); }
.checkout-item { display: flex; align-items: center; gap: 1rem; padding: .75rem 0; border-bottom: 1px solid var(--border); }
.checkout-item img { width: 52px; height: 52px; object-fit: contain; border-radius: var(--radius-sm); background: var(--surface); }
.checkout-item div { flex: 1; }
.checkout-item p { font-size: .85rem; font-weight: 600; color: var(--white); }
.checkout-item small { color: var(--gray); }
.checkout-item strong { color: var(--sand); font-family: var(--font-d); font-size: 1.15rem; }
.checkout-summary-col .card { position: sticky; top: 86px; }

/* ════════════════════════════════════════════════════════════════
   ABOUT
════════════════════════════════════════════════════════════════ */
.about-grid { display: grid; grid-template-columns: 1fr 400px; gap: 5rem; align-items: center; padding: 5rem 0; }
.about-text h2 { margin-bottom: 1.25rem; }
.about-text p  { color: var(--muted); margin-bottom: 1rem; line-height: 1.85; }
.about-values  { display: flex; flex-direction: column; gap: 1rem; margin-top: 2.5rem; }
.av-item { display: flex; align-items: flex-start; gap: 1rem; border-top: 1px solid var(--border); padding-top: 1rem; }
.av-item i { font-size: 1.2rem; color: var(--sand); margin-top: .1rem; }
.av-item strong { display: block; color: var(--white); font-size: .9rem; }
.av-item p { font-size: .82rem; color: var(--gray); margin: 0; }
.about-logo-img { width: 100%; border-radius: var(--radius-lg); border: 1px solid var(--border); }

/* ════════════════════════════════════════════════════════════════
   CONTACT
════════════════════════════════════════════════════════════════ */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; padding: 3.5rem 0 5rem; }
.contact-info h3, .contact-form-card h3 { font-family: var(--font-b); font-size: 1rem; font-weight: 700; margin-bottom: 1.5rem; color: var(--white); }
.ci-item { display: flex; align-items: flex-start; gap: 1rem; margin-bottom: 1.25rem; }
.ci-item i { font-size: 1.1rem; color: var(--sand); margin-top: .2rem; }
.ci-item strong { display: block; color: var(--white); font-size: .85rem; }
.ci-item p, .ci-item a { color: var(--muted); font-size: .85rem; }
.ci-item a:hover { color: var(--sand); }
.contact-form-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg); padding: 2rem; }
.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.btn-success { background: #4A7A52 !important; border-color: #4A7A52 !important; color: white !important; }

/* ════════════════════════════════════════════════════════════════
   PAYMENT RESULT
════════════════════════════════════════════════════════════════ */
.payment-result { display: flex; flex-direction: column; align-items: center; gap: 1.5rem; }
.payment-result p { color: var(--muted); max-width: 480px; text-align: center; }
.ref-code { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: .75rem 1.5rem; font-family: monospace; color: var(--sand); }

/* ════════════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════════════ */
.footer {
  background: #141311; border-top: 1px solid var(--border); padding: 5rem 0 0;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem; max-width: 1280px; margin: 0 auto; padding: 0 2rem;
}
.footer-logo { height: 38px; width: auto; max-width: 180px; opacity: .85; margin-bottom: 1.25rem; filter: drop-shadow(0 0 10px rgba(212,168,108,.15)); }
.footer-brand p { font-size: .82rem; color: var(--gray); line-height: 1.8; margin-bottom: 1.25rem; }
.footer-social { display: flex; gap: .5rem; }
.footer-social a {
  width: 34px; height: 34px; border-radius: var(--radius-sm);
  background: var(--surface); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--gray); transition: var(--trans); font-size: .9rem;
}
.footer-social a:hover { background: var(--brown); border-color: var(--brown); color: var(--white); }

.footer-col h4 {
  font-family: var(--font-b); font-size: .68rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--stone); margin-bottom: 1.1rem;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .45rem; }
.footer-col a { color: var(--gray); font-size: .82rem; transition: color var(--trans); }
.footer-col a:hover { color: var(--sand); }
.footer-contact { list-style: none; display: flex; flex-direction: column; gap: .55rem; }
.footer-contact li { display: flex; align-items: center; gap: .5rem; color: var(--gray); font-size: .82rem; }
.footer-contact i { color: var(--brown-md); width: 14px; }
.footer-contact a:hover { color: var(--sand); }
.footer-payments { margin-top: 1.1rem; }
.footer-payments span { font-size: .7rem; color: var(--gray); display: block; margin-bottom: .35rem; }
.payment-logos { display: flex; gap: .4rem; }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  max-width: 1280px; margin: 3rem auto 0; padding: 1.25rem 2rem;
  border-top: 1px solid var(--border); flex-wrap: wrap; gap: .5rem;
}
.footer-bottom p { font-size: .74rem; color: #403C39; }
.footer-bottom a { color: #403C39; }
.footer-bottom a:hover { color: var(--sand); }

/* ════════════════════════════════════════════════════════════════
   TOAST
════════════════════════════════════════════════════════════════ */
.toast {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 9000;
  background: var(--card); border: 1px solid var(--border);
  border-left: 3px solid var(--sand);
  color: var(--white); padding: 1rem 1.4rem; border-radius: var(--radius);
  display: flex; align-items: center; gap: .7rem;
  box-shadow: var(--shadow); font-size: .85rem; font-weight: 600;
  transform: translateY(80px); opacity: 0;
  transition: transform .35s ease, opacity .35s ease;
}
.toast.show { transform: none; opacity: 1; }
.toast i { color: var(--sand); }

/* ════════════════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .hero { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-content { max-width: 100%; padding: 8rem 2rem 5rem; }
  .hero-divider { display: none; }
  .cat-section-inner { grid-template-columns: 1fr; gap: 2rem; }
  .cat-section-intro { position: static; }
  .manifesto-inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img { display: none; }
  .product-detail { grid-template-columns: 1fr; }
  .checkout-layout { grid-template-columns: 1fr; }
  .cart-layout { grid-template-columns: 1fr; }
  .catalog-layout { grid-template-columns: 1fr; }
  .catalog-sidebar { display: none; }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed; top: 0; left: 0; bottom: 0; width: 270px;
    background: var(--dark); flex-direction: column; align-items: flex-start;
    padding: 5rem 1.5rem 2rem; z-index: 999;
    transform: translateX(-100%); transition: transform var(--trans-md);
    border-right: 1px solid var(--border); gap: .25rem;
  }
  .nav-links.open { transform: none; }
  .nav-burger { display: flex; }
  .dropdown-menu { position: static; opacity: 1; pointer-events: auto; transform: none; box-shadow: none; border: none; background: var(--card); margin-top: .4rem; display: none; }
  .has-dropdown.open .dropdown-menu { display: block; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .manifesto-pillars { grid-template-columns: 1fr; }
  .products-slider .product-card { flex: 0 0 clamp(200px, 72vw, 275px); }
  .cat-products-track .product-card { flex: 0 0 clamp(180px, 68vw, 260px); }
  .trust-grid { flex-direction: column; }
  .trust-item { border-right: none; border-bottom: 1px solid var(--border); }
  .trust-item:last-child { border-bottom: none; }
  .cat-section-num { font-size: 3.5rem; }
  .cat-section { padding: 3.5rem 0; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .page-header { padding: 5.5rem 0 2rem; }
  .hero-title { font-size: clamp(3rem, 13vw, 5rem); }
  .cart-item { flex-wrap: wrap; }
  .cat-slider-nav { display: none; }
}

/* ════════════════════════════════════════════════════════════════
   NAVBAR — drawer mobile & social
════════════════════════════════════════════════════════════════ */
.nav-drawer-header {
  display: none; /* visible only in mobile drawer */
}
.nav-drawer-socials {
  display: none; /* visible only in mobile drawer */
}

/* ════════════════════════════════════════════════════════════════
   FLOATING BUTTONS
════════════════════════════════════════════════════════════════ */
.float-actions {
  position: fixed; bottom: 2rem; right: 1.5rem;
  z-index: 800;
  display: flex; flex-direction: column; align-items: flex-end; gap: .75rem;
}

.float-btn {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; cursor: pointer;
  border: none; transition: transform .2s ease, box-shadow .2s ease;
  box-shadow: 0 6px 24px rgba(0,0,0,.5);
}
.float-btn:hover { transform: scale(1.1); }

.float-btn-wa {
  background: #25D366; color: #fff;
}
.float-btn-wa:hover { background: #1fba5a; }

.float-btn-call {
  background: var(--brown-md); color: var(--white);
}
.float-btn-call:hover { background: var(--sand); color: var(--black); }
.float-btn-call.active {
  background: var(--sand); color: var(--black);
  transform: rotate(135deg);
}

/* Call / contact panel */
.float-call-panel {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.25rem; width: 280px;
  box-shadow: var(--shadow-lg);
  opacity: 0; pointer-events: none; transform: translateY(12px) scale(.96);
  transition: opacity .25s ease, transform .25s ease;
}
.float-call-panel.open {
  opacity: 1; pointer-events: auto; transform: none;
}
.call-panel-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 1rem;
}
.call-panel-header strong {
  font-size: .9rem; color: var(--white);
  display: flex; align-items: center; gap: .5rem;
}
.call-panel-header strong i { color: var(--sand); }
.call-panel-close {
  background: none; border: none; color: var(--gray);
  cursor: pointer; font-size: .9rem; padding: .2rem;
}
.call-panel-close:hover { color: var(--white); }

.call-direct-btn, .call-wa-btn {
  display: flex; align-items: center; gap: .7rem;
  padding: .75rem 1rem; border-radius: var(--radius);
  font-size: .82rem; font-weight: 600; margin-bottom: .5rem;
  transition: background var(--trans), transform var(--trans);
  text-decoration: none;
}
.call-direct-btn {
  background: var(--brown); color: var(--white);
  flex-direction: column; align-items: flex-start; gap: .15rem;
}
.call-direct-btn i { font-size: 1.1rem; }
.call-direct-btn span { font-size: .72rem; color: var(--sand-light); font-weight: 400; }
.call-direct-btn:hover { background: var(--brown-md); }

.call-wa-btn {
  background: rgba(37,211,102,.12); color: #25D366;
  border: 1px solid rgba(37,211,102,.2);
}
.call-wa-btn:hover { background: rgba(37,211,102,.2); }

.call-divider {
  text-align: center; position: relative; margin: .9rem 0;
}
.call-divider::before {
  content: ''; position: absolute; top: 50%; left: 0; right: 0;
  height: 1px; background: var(--border);
}
.call-divider span {
  position: relative; background: var(--card);
  padding: 0 .75rem; font-size: .68rem;
  color: var(--gray); text-transform: uppercase; letter-spacing: .08em;
}

.call-callback-form {
  display: flex; gap: .4rem;
}
.call-callback-form input {
  flex: 1; background: var(--surface); border: 1px solid var(--border);
  color: var(--white); padding: .6rem .85rem;
  border-radius: var(--radius-sm); font-size: .88rem; outline: none;
  transition: border-color .2s;
}
.call-callback-form input:focus { border-color: var(--sand); }
.call-callback-form input::placeholder { color: var(--gray); }
.call-callback-form button {
  background: #25D366; color: #fff; border: none;
  padding: .6rem .85rem; border-radius: var(--radius-sm);
  font-size: .82rem; cursor: pointer; white-space: nowrap;
  transition: background .2s;
}
.call-callback-form button:hover { background: #1fba5a; }

/* ════════════════════════════════════════════════════════════════
   MOBILE BOTTOM NAV
════════════════════════════════════════════════════════════════ */
.mobile-bottom-nav {
  display: none; /* hidden on desktop */
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 900;
  background: var(--dark); border-top: 1px solid var(--border);
  padding: .3rem 0 max(.3rem, env(safe-area-inset-bottom));
}
.mbn-item {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; gap: .2rem; padding: .35rem .5rem;
  color: var(--gray); font-size: .62rem; font-weight: 600;
  letter-spacing: .03em; text-transform: uppercase;
  text-decoration: none; position: relative;
  transition: color var(--trans);
}
.mbn-item i { font-size: 1.1rem; }
.mbn-item.active, .mbn-item:hover { color: var(--sand); }
.mbn-wa { color: #25D366 !important; }
.mbn-badge {
  position: absolute; top: .2rem; left: 50%;
  transform: translateX(6px);
  background: var(--brown-md); color: var(--white);
  border-radius: 50%; width: 15px; height: 15px;
  font-size: .55rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}

/* ════════════════════════════════════════════════════════════════
   PRODUCT IMAGE — improved reactions
════════════════════════════════════════════════════════════════ */
.product-card {
  transition: border-color var(--trans), transform .3s cubic-bezier(.2,.8,.2,1),
              box-shadow .3s ease;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(123,82,48,.22), 0 4px 12px rgba(0,0,0,.4);
}
.product-img {
  transition: transform .55s cubic-bezier(.2,.8,.2,1), opacity .3s;
}
.product-img-hover {
  transition: opacity .4s ease;
}
.product-card-overlay {
  background: linear-gradient(to top, rgba(28,28,28,.85) 0%, rgba(28,28,28,.2) 100%);
}
/* Skeleton loading */
.product-card-img-wrap::before {
  content: ''; position: absolute; inset: 0; z-index: 0;
  background: var(--surface);
}
.product-card-img-wrap img { position: relative; z-index: 1; }

/* ════════════════════════════════════════════════════════════════
   RESPONSIVE — Mobile improvements
════════════════════════════════════════════════════════════════ */
@media (max-width: 768px) {

  /* Float buttons: move above mobile bottom nav */
  .float-actions {
    bottom: 5.5rem; right: 1rem;
  }
  .float-btn { width: 46px; height: 46px; font-size: 1.1rem; }
  .float-call-panel { width: calc(100vw - 3rem); right: 0; }

  /* Show mobile bottom nav */
  .mobile-bottom-nav { display: flex; }

  /* Body padding for bottom nav */
  main { padding-bottom: 62px; }
  .footer { padding-bottom: calc(62px + 1rem); }

  /* Mobile drawer socials & header */
  .nav-drawer-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 0 1.5rem; border-bottom: 1px solid var(--border);
    margin-bottom: .5rem; width: 100%;
  }
  .drawer-logo { height: 24px; opacity: .8; }
  #navClose {
    background: none; border: none; color: var(--gray);
    font-size: 1.1rem; cursor: pointer; padding: .3rem;
  }
  #navClose:hover { color: var(--white); }

  .nav-drawer-socials {
    display: flex; gap: .75rem;
    padding: 1.25rem 0 0; margin-top: auto;
    border-top: 1px solid var(--border); width: 100%;
  }
  .nav-drawer-socials a {
    width: 38px; height: 38px; border-radius: 50%;
    background: var(--surface); border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    color: var(--muted); font-size: .95rem;
    transition: color var(--trans), border-color var(--trans);
  }
  .nav-drawer-socials a:hover { color: var(--sand); border-color: var(--sand); }

  /* Hide desktop socials on mobile */
  .nav-socials-desktop { display: none; }

  /* Nav drawer takes full height */
  .nav-links {
    flex-direction: column; height: 100%;
    padding-bottom: 1.5rem;
  }

  /* Cat section on mobile */
  .cat-section { padding: 2.5rem 0; }
  .cat-section-num { font-size: 3rem; }
  .cat-products-track .product-card { flex: 0 0 clamp(175px, 65vw, 250px); }

  /* Trust bar on mobile: 2 columns */
  .trust-grid {
    display: grid; grid-template-columns: 1fr 1fr;
  }
  .trust-item {
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: .85rem 1rem;
    font-size: .7rem;
  }
  .trust-item:nth-child(2n) { border-right: none; }
  .trust-item:nth-last-child(-n+2) { border-bottom: none; }

  /* Hero mobile */
  .hero-cta-row { flex-direction: column; align-items: flex-start; gap: .8rem; }
  .btn-xl { padding: .85rem 1.75rem; }

  /* Footer on mobile */
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { border-right: none; }
  .trust-item:nth-last-child(-n+2) { border-bottom: 1px solid var(--border); }
  .trust-item:last-child { border-bottom: none; }
  .cat-section-title { font-size: 1.9rem; }
  .float-call-panel { width: calc(100vw - 2rem); }
}
