/* ============================================================
   PORTANOA STORE — styles.css
   Archetype: Industrial Dark + Orange accent
   ============================================================ */

/* ---- Tokens ---- */
:root {
  --bg:       #f8f7f5;
  --bg-2:     #f0ede8;
  --bg-3:     #ffffff;
  --bg-4:     #e8e4de;
  --ink:      #1a1714;
  --ink-soft: #4a4540;
  --mute:     #9a9590;
  --accent:   #e85520;
  --accent-2: #c94010;
  --gold:     #c08a20;
  --line:     rgba(26,23,20,.1);
  --line-2:   rgba(26,23,20,.06);
  --radius:   6px;
  --radius-lg:12px;
  --font-head:"Barlow Condensed", sans-serif;
  --font-body:"Inter", sans-serif;
  --font-mono:"JetBrains Mono", monospace;
  --nav-h:    72px;
  --ease-out: cubic-bezier(0.16,1,0.3,1);
  --ease-in:  cubic-bezier(0.7,0,0.84,0);
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html {
  overflow-x: clip;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: clip;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

/* ---- Reveal animation (base) ---- */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}
.reveal[data-split] { opacity: 1; transform: none; }

/* ============================================================
   SPLASH
   ============================================================ */
.splash {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: #f8f7f5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .6s var(--ease-in), clip-path .6s var(--ease-in);
  animation: splashSafety .01s 4.5s forwards;
}
@keyframes splashSafety {
  to { opacity: 0; pointer-events: none; clip-path: inset(0 0 100% 0); }
}
.splash.is-out {
  opacity: 0;
  pointer-events: none;
  clip-path: inset(0 0 100% 0);
}
.splash-inner {
  text-align: center;
}
.splash-logo {
  display: block;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2.5rem, 8vw, 5rem);
  letter-spacing: .08em;
  color: var(--ink);
}
.splash-logo em {
  font-style: normal;
  color: var(--accent);
}
.splash-bar {
  margin: 1.5rem auto 0;
  width: 180px;
  height: 2px;
  background: var(--line);
  border-radius: 2px;
  overflow: hidden;
}
.splash-progress {
  height: 100%;
  width: 0%;
  background: var(--accent);
  border-radius: 2px;
  animation: splashLoad 1.8s var(--ease-out) forwards;
}
@keyframes splashLoad {
  to { width: 100%; }
}

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  gap: 2rem;
  transition: background .35s ease, border-color .35s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(248,247,245,.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--line);
}
.nav-logo {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.4rem;
  letter-spacing: .08em;
  display: flex;
  align-items: center;
  gap: .5rem;
}
.nav-logo em { font-style: normal; color: var(--accent); }
.nav-tag {
  font-family: var(--font-mono);
  font-size: .6rem;
  font-weight: 500;
  letter-spacing: .12em;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: .15em .4em;
  border-radius: 3px;
  margin-left: .25rem;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  font-size: .875rem;
  font-weight: 500;
  color: var(--ink-soft);
  letter-spacing: .04em;
  transition: color .2s;
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width .25s var(--ease-out);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }

.nav-cta {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--accent);
  border: 1px solid rgba(255,107,53,.3);
  padding: .45em 1em;
  border-radius: var(--radius);
  transition: background .2s, border-color .2s;
}
.nav-cta:hover {
  background: rgba(255,107,53,.1);
  border-color: var(--accent);
}
.nav-cta-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%,100% { opacity: 1; }
  50% { opacity: .3; }
}
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}
.nav-burger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--ink);
  transition: transform .3s, opacity .3s;
  border-radius: 2px;
  transition: transform .3s, opacity .3s;
}
.nav-burger.open span:first-child { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:last-child  { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  z-index: 99;
  background: rgba(248,247,245,.98);
  backdrop-filter: blur(20px);
  padding: 2rem clamp(1.25rem,4vw,3rem);
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  transform: translateY(-100vh);
  transition: transform .4s var(--ease-out);
  border-bottom: 1px solid var(--line);
}
.mobile-menu.open { transform: none; }
.mobile-menu a {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--ink-soft);
  transition: color .2s;
}
.mobile-menu a:hover { color: var(--ink); }
.mobile-cta {
  color: var(--accent) !important;
  font-weight: 600;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-body);
  font-size: .875rem;
  font-weight: 600;
  letter-spacing: .04em;
  padding: .75em 1.75em;
  border-radius: var(--radius);
  border: 1px solid transparent;
  transition: background .2s, color .2s, border-color .2s, transform .15s;
  cursor: pointer;
}
.btn:hover { transform: translateY(-1px); }
.btn-primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}
.btn-primary:hover {
  background: var(--accent-2);
  border-color: var(--accent-2);
}
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}
.btn-ghost:hover {
  border-color: var(--ink-soft);
  background: rgba(240,236,228,.05);
}
.btn-lg {
  font-size: 1rem;
  padding: .9em 2.2em;
}
.btn-full { width: 100%; justify-content: center; }

/* Quote button */
.btn-quote {
  display: inline-flex;
  align-items: center;
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--accent);
  transition: color .2s, gap .2s;
  gap: .25rem;
}
.btn-quote:hover { color: var(--ink); gap: .5rem; }

/* ============================================================
   CONTAINER
   ============================================================ */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
}

/* ============================================================
   SECTION COMMON
   ============================================================ */
.section-head {
  margin-bottom: 3rem;
}
.section-kicker {
  font-family: var(--font-mono);
  font-size: .75rem;
  letter-spacing: .15em;
  color: var(--accent);
  margin-bottom: .75rem;
}
.section-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1.05;
  color: var(--ink);
}
.section-title em {
  font-style: normal;
  color: var(--accent);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  padding-bottom: clamp(3rem, 8vh, 6rem);
  padding-top: var(--nav-h);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-tint {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(248,247,245,.97) 0%,
    rgba(248,247,245,.88) 55%,
    rgba(248,247,245,.45) 100%
  );
}
.hero-mesh {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle 600px at var(--mx,20%) var(--my,70%),
      rgba(232,85,32,.12) 0%, transparent 60%),
    radial-gradient(circle 400px at 80% 20%,
      rgba(192,138,32,.07) 0%, transparent 60%);
  pointer-events: none;
}
.hero-grain {
  position: absolute;
  inset: 0;
  z-index: 2;
  opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 256px;
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 3;
  padding: 0 clamp(1.25rem, 4vw, 3rem);
  max-width: 760px;
}
.hero-kicker {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-family: var(--font-mono);
  font-size: .75rem;
  letter-spacing: .14em;
  color: var(--ink-soft);
  margin-bottom: 1.5rem;
}
.kicker-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}
.hero-title {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 1.0;
  letter-spacing: .01em;
  color: var(--ink);
  margin-bottom: 1.25rem;
  text-wrap: balance;
}
.hero-title em {
  font-style: normal;
  color: var(--accent);
  display: block;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--ink-soft);
  max-width: 48ch;
  margin-bottom: 2.25rem;
  line-height: 1.7;
}
.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 3rem;
}
.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.stat { display: flex; align-items: baseline; gap: .35rem; }
.stat-num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.75rem;
  color: var(--ink);
}
.stat-plus {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--accent);
}
.stat-label {
  font-size: .75rem;
  letter-spacing: .06em;
  color: var(--mute);
  text-transform: uppercase;
}
.stat-sep {
  width: 1px; height: 28px;
  background: var(--line);
}
.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  right: clamp(1.25rem, 4vw, 3rem);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: .75rem;
  font-family: var(--font-mono);
  font-size: .65rem;
  letter-spacing: .14em;
  color: var(--mute);
  writing-mode: vertical-rl;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  animation: scrollDrop 2s ease-in-out infinite;
}
@keyframes scrollDrop {
  0%,100% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
}

/* ============================================================
   CATEGORIES
   ============================================================ */
.section-cats {
  padding: clamp(4rem, 10vh, 7rem) 0;
}
.cats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.cat-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  transition: border-color .3s, transform .3s var(--ease-out), box-shadow .3s;
  text-decoration: none;
}
@media (hover: hover) {
  .cat-card:hover {
    border-color: rgba(255,107,53,.4);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,.4), 0 0 0 1px rgba(255,107,53,.15);
  }
  .cat-card:hover .cat-img img {
    transform: scale(1.06);
    filter: saturate(1.1) brightness(1.05);
  }
  .cat-card:hover .cat-arrow {
    transform: translateX(4px);
    color: var(--accent);
  }
}
.cat-img {
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.cat-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease-out), filter .5s;
}
.cat-info {
  padding: 1.25rem 1.5rem 1rem;
  flex: 1;
}
.cat-icon {
  font-size: 1.4rem;
  display: block;
  margin-bottom: .5rem;
}
.cat-info h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: .04em;
  margin-bottom: .35rem;
}
.cat-info p {
  font-size: .8rem;
  color: var(--mute);
  line-height: 1.5;
}
.cat-arrow {
  display: block;
  padding: .75rem 1.5rem;
  font-size: .85rem;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
  transition: transform .2s, color .2s;
}

/* ============================================================
   MARQUEE
   ============================================================ */
.marquee-wrap {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: .9rem 0;
  background: var(--bg-2);
}
.marquee-track {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: max-content;
  animation: marqueeScroll 28s linear infinite;
  white-space: nowrap;
}
.marquee-track span {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .14em;
  color: var(--ink-soft);
}
.marquee-track .sep {
  color: var(--accent);
  font-size: 1rem;
}
@keyframes marqueeScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---- Admin link ---- */
.catalog-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.btn-admin-link {
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .04em;
  color: var(--mute);
  border: 1px solid var(--line);
  padding: .45em 1em;
  border-radius: var(--radius);
  transition: color .2s, border-color .2s;
}
.btn-admin-link:hover { color: var(--ink); border-color: var(--ink-soft); }

.empty-state {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--mute);
}
.empty-state p { margin-bottom: 1.25rem; font-size: .95rem; }

/* ============================================================
   CATALOG + FILTER
   ============================================================ */
.section-catalog {
  padding: clamp(4rem, 10vh, 7rem) 0;
}
.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 2.5rem;
}
.filter-btn {
  font-family: var(--font-mono);
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .1em;
  padding: .45em 1.1em;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  background: transparent;
  transition: background .2s, border-color .2s, color .2s;
}
.filter-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.filter-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: #fff;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
.product-card {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  cursor: pointer;
  transition: border-color .3s, transform .3s var(--ease-out), box-shadow .3s, opacity .3s;
}
.product-card.hidden {
  display: none;
}
@media (hover: hover) {
  .product-card:hover {
    border-color: rgba(255,107,53,.35);
    transform: translateY(-3px);
    box-shadow: 0 16px 48px rgba(0,0,0,.35);
  }
  .product-card:hover .product-img img {
    transform: scale(1.05);
  }
}
.product-img {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-4);
}
.product-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease-out);
}
.product-badge {
  position: absolute;
  top: .75rem; left: .75rem;
  font-family: var(--font-mono);
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .08em;
  padding: .25em .6em;
  border-radius: 4px;
  background: var(--accent);
  color: #fff;
}
.product-badge--blue  { background: #3b82f6; }
.product-badge--green { background: #22c55e; }
.product-badge--orange{ background: #f59e0b; }

.product-body {
  padding: 1rem 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .35rem;
}
.product-ref {
  font-family: var(--font-mono);
  font-size: .65rem;
  letter-spacing: .1em;
  color: var(--mute);
}
.product-body h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: .03em;
  line-height: 1.2;
}
.product-body p {
  font-size: .8rem;
  color: var(--ink-soft);
  line-height: 1.5;
  margin-top: .2rem;
  flex: 1;
}
.product-price {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.15rem;
  color: var(--accent);
  margin-top: .35rem;
}
.product-foot {
  padding: .75rem 1.25rem 1rem;
  border-top: 1px solid var(--line-2);
}

/* ============================================================
   BANNER CTA
   ============================================================ */
.banner-cta {
  background: var(--bg-2);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(3rem, 7vh, 5rem) 0;
}
.banner-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  flex-wrap: wrap;
}
.banner-kicker {
  font-family: var(--font-mono);
  font-size: .75rem;
  letter-spacing: .12em;
  color: var(--accent);
  margin-bottom: .75rem;
}
.banner-text h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  line-height: 1.15;
}
.banner-text h2 em {
  font-style: normal;
  color: var(--accent);
}
.banner-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* ============================================================
   WHY SECTION
   ============================================================ */
.section-why {
  padding: clamp(4rem, 10vh, 7rem) 0;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.why-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: border-color .3s, transform .3s var(--ease-out);
}
@media (hover: hover) {
  .why-card:hover {
    border-color: rgba(255,107,53,.3);
    transform: translateY(-3px);
  }
}
.why-num {
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .12em;
  color: var(--accent);
  display: block;
  margin-bottom: 1rem;
}
.why-card h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: .04em;
  margin-bottom: .6rem;
}
.why-card p {
  font-size: .875rem;
  color: var(--ink-soft);
  line-height: 1.65;
}

/* ============================================================
   CONTACT
   ============================================================ */
.section-contact {
  padding: clamp(4rem, 10vh, 7rem) 0;
  background: var(--bg-2);
  border-top: 1px solid var(--line);
}
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 4rem;
  align-items: start;
}
.contact-desc {
  font-size: 1rem;
  color: var(--ink-soft);
  line-height: 1.7;
  margin-bottom: 2rem;
}
.contact-items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.25rem;
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color .2s, background .2s;
}
a.contact-item:hover {
  border-color: rgba(255,107,53,.4);
  background: rgba(255,107,53,.05);
}
.contact-icon { font-size: 1.4rem; flex-shrink: 0; }
.contact-item div {
  display: flex;
  flex-direction: column;
  gap: .15rem;
}
.contact-item strong {
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .04em;
}
.contact-item span {
  font-family: var(--font-mono);
  font-size: .8rem;
  color: var(--accent);
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: .45rem;
}
.form-group label {
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .07em;
  color: var(--ink-soft);
  text-transform: uppercase;
}
.form-group input,
.form-group textarea {
  background: var(--bg-3);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: .9rem;
  padding: .75rem 1rem;
  outline: none;
  transition: border-color .2s;
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--mute); }
.form-group input:focus,
.form-group textarea:focus { border-color: var(--accent); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: clamp(3rem, 8vh, 5rem) 0 2rem;
}
.footer-top {
  margin-bottom: 2.5rem;
}
.footer-logo {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.6rem;
  letter-spacing: .08em;
  display: inline-block;
  margin-bottom: .75rem;
}
.footer-logo em { font-style: normal; color: var(--accent); }
.footer-tagline {
  font-size: .85rem;
  color: var(--mute);
  max-width: 48ch;
  line-height: 1.65;
}
.footer-mid {
  display: flex;
  gap: 4rem;
  padding: 2rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
.footer-col {
  display: flex;
  flex-direction: column;
  gap: .75rem;
}
.footer-col h4 {
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .12em;
  color: var(--mute);
  text-transform: uppercase;
  margin-bottom: .25rem;
}
.footer-col a {
  font-size: .875rem;
  color: var(--ink-soft);
  transition: color .2s;
}
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: .75rem;
}
.footer-bottom p {
  font-size: .75rem;
  color: var(--mute);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .cats-grid { grid-template-columns: repeat(2, 1fr); }
}

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

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

  .banner-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-wrap {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .footer-mid { gap: 2.5rem; }
}

@media (max-width: 520px) {
  .cats-grid     { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }
  .hero-actions  { flex-direction: column; align-items: flex-start; }
  .hero-stats    { gap: 1rem; }
}

/* ============================================================
   PRODUCT DRAWER
   ============================================================ */
.pdrawer-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(26,23,20,.45);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}
.pdrawer-overlay.is-active {
  opacity: 1;
  pointer-events: auto;
}

.pdrawer {
  position: fixed;
  top: 0; right: 0; bottom: 0;
  z-index: 201;
  width: min(520px, 92vw);
  background: var(--bg);
  box-shadow: -8px 0 40px rgba(0,0,0,.15);
  transform: translateX(100%);
  transition: transform .4s var(--ease-out);
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  display: flex;
  flex-direction: column;
}
.pdrawer.is-open {
  transform: none;
}

.pdrawer-close {
  position: absolute;
  top: 1rem; right: 1rem;
  z-index: 5;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(248,247,245,.85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--line);
  font-size: 1.25rem;
  color: var(--ink-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, color .2s;
  cursor: pointer;
}
.pdrawer-close:hover {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

/* Gallery */
.pdrawer-gallery {
  flex-shrink: 0;
}
.pdrawer-main-img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--bg-4);
}
.pdrawer-main-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: opacity .3s ease;
}
.pdrawer-thumbs {
  display: flex;
  gap: .5rem;
  padding: .75rem 1.25rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.pdrawer-thumbs:empty {
  display: none;
}
.pdrawer-thumb {
  flex-shrink: 0;
  width: 56px; height: 56px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  padding: 0;
  background: var(--bg-4);
  transition: border-color .2s;
}
.pdrawer-thumb.active,
.pdrawer-thumb:hover {
  border-color: var(--accent);
}
.pdrawer-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* Body */
.pdrawer-body {
  padding: 1.5rem 1.5rem 2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: .5rem;
}
.pdrawer-badge {
  display: inline-block;
  align-self: flex-start;
  font-family: var(--font-mono);
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .08em;
  padding: .25em .7em;
  border-radius: 4px;
  background: var(--accent);
  color: #fff;
}
.pdrawer-ref {
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .1em;
  color: var(--mute);
}
.pdrawer-name {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.6rem;
  line-height: 1.15;
  color: var(--ink);
  margin-top: .25rem;
}
.pdrawer-desc {
  font-size: .9rem;
  color: var(--ink-soft);
  line-height: 1.65;
  margin-top: .35rem;
}
.pdrawer-price-box {
  margin-top: .75rem;
}
.pdrawer-price {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--accent);
}

/* CTAs */
.pdrawer-ctas {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-top: 1.5rem;
}
.pdrawer-wa-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .04em;
  padding: .85em 1.5em;
  border-radius: var(--radius);
  background: #25d366;
  color: #fff;
  transition: background .2s, transform .15s;
}
.pdrawer-wa-btn:hover {
  background: #1fb855;
  transform: translateY(-1px);
}
.pdrawer-call-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .04em;
  padding: .75em 1.5em;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  color: var(--ink-soft);
  transition: border-color .2s, color .2s;
}
.pdrawer-call-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

/* Drawer responsive */
@media (max-width: 520px) {
  .pdrawer {
    width: 100vw;
  }
  .pdrawer-thumb {
    width: 48px; height: 48px;
  }
}
