/* ════════════ FUTURY E-COMMERCE · Shared ════════════ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght,SOFT@0,9..144,300..700,30..100;1,9..144,300..700,30..100&family=Inter:wght@400;500;600;700&family=JetBrains+Mono:wght@400;500&family=Sora:wght@300;400;500;600;700&display=swap');

:root {
  --bg: #0E0D0B;
  --bg-elev: #141310;
  --bg-deep: #08070a;
  --bg-light: #fbf8f1;
  --bg-light-elev: #f3ede1;

  --ink: #F4EFE6;
  --ink-2: rgba(244,239,230,0.72);
  --ink-3: rgba(244,239,230,0.5);
  --ink-dark: #17160F;
  --ink-dark-2: rgba(23,22,15,0.7);
  --ink-dark-3: rgba(23,22,15,0.5);

  --hair: rgba(244,239,230,0.10);
  --hair-strong: rgba(244,239,230,0.22);
  --hair-dark: rgba(23,22,15,0.10);
  --hair-dark-strong: rgba(23,22,15,0.22);

  /* Brand colors */
  --byebad: #1d6fff;
  --byebad-glow: rgba(29,111,255,0.5);
  --reviv: #f4cc2f;
  --reviv-deep: #b88a18;
  --luminus: #e85aa8;
  --luminus-deep: #6b2fbf;

  /* Futury accent */
  --lime: #C8F26A;
  --violet: #7A4ED9;
  --violet-soft: #B68CFF;

  /* Type */
  --f-display: 'Fraunces', Georgia, serif;
  --f-body: 'Inter', system-ui, sans-serif;
  --f-mono: 'JetBrains Mono', ui-monospace, monospace;

  --maxw: 1280px;
  --pad-x: clamp(24px, 5vw, 48px);
  --shadow-card: 0 30px 60px -20px rgba(0,0,0,0.4), 0 0 0 1px rgba(255,255,255,0.06);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  font-family: var(--f-body);
  background: var(--bg);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: clip;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; touch-action: manipulation; -webkit-tap-highlight-color: transparent; }

/* ═══ PROMO BAR (top) ═══ */
.promo-bar {
  position: relative;
  background: var(--bg-elev);
  color: var(--ink-3);
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 400;
  padding: 8px 0;
  text-align: center;
  overflow: hidden;
  z-index: 60;
  border-bottom: 1px solid var(--hair);
}
.promo-bar__track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: marquee 38s linear infinite;
  width: max-content;
}
.promo-bar__track span { display: inline-flex; align-items: center; gap: 14px; }
.promo-bar__track i { display: inline-block; width: 4px; height: 4px; border-radius: 50%; background: var(--ink-3); opacity: 0.4; }
@keyframes marquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ═══ NAV ═══ */
.nav {
  position: sticky; top: 0;
  z-index: 50;
  background: rgba(14,13,11,0.78);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--hair);
  isolation: isolate;
}
.nav__inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 16px var(--pad-x);
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 32px;
  align-items: center;
}
.nav__logo {
  font-family: 'Sora', 'Arial', system-ui, sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: #fff;
}
.nav__logo span { color: #fff; opacity: 0.9; }
.nav__links { display: flex; gap: 28px; justify-content: center; }
.nav__links a {
  font-family: var(--f-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-2);
  position: relative;
  padding: 4px 2px;
  transition: color .25s;
}
.nav__links a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px; height: 1px;
  background: linear-gradient(90deg, var(--lime), var(--violet-soft));
  transform: scaleX(0); transform-origin: left;
  transition: transform .35s cubic-bezier(.3,1,.3,1);
}
.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { transform: scaleX(1); }
.nav__links a.is-active { color: var(--ink); }
.nav__links a.is-active::after { transform: scaleX(1); }
.nav__right { display: flex; gap: 14px; align-items: center; }
.nav__icon {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border: 1px solid var(--hair-strong);
  border-radius: 50%;
  color: var(--ink-2);
  transition: border-color .25s, color .25s, transform .25s;
  position: relative;
}
.nav__icon:hover { border-color: var(--lime); color: var(--ink); transform: translateY(-1px); }
.nav__icon svg { width: 16px; height: 16px; }
.nav__icon .badge {
  position: absolute; top: -4px; right: -4px;
  min-width: 18px; height: 18px; padding: 0 5px;
  background: linear-gradient(135deg, var(--lime), var(--violet-soft));
  color: #0E0D0B;
  font-family: var(--f-mono); font-size: 10px; font-weight: 700;
  border-radius: 999px;
  display: grid; place-items: center;
  border: 2px solid var(--bg);
}

/* Hamburger button */
.nav__hamburger {
  display: none;
  width: 36px; height: 36px;
  border: 1px solid var(--hair-strong);
  border-radius: 50%;
  place-items: center;
  cursor: pointer;
  color: var(--ink-2);
  background: none;
  transition: border-color .25s, color .25s;
}
.nav__hamburger:hover { border-color: var(--lime); color: var(--ink); }
.nav__hamburger svg { width: 18px; height: 18px; }

/* Mobile nav overlay */
.nav__mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(14,13,11,0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  opacity: 0;
  transition: opacity .3s;
}
.nav__mobile-menu.is-open { display: flex; opacity: 1; }
.nav__mobile-menu a {
  font-family: var(--f-display); font-weight: 300; font-style: italic;
  font-size: 28px; letter-spacing: -0.02em;
  color: var(--ink); transition: color .2s;
}
.nav__mobile-menu a:hover { color: var(--lime); }
.nav__mobile-close {
  position: absolute; top: 20px; right: 20px;
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border: 1px solid var(--hair-strong);
  border-radius: 50%;
  background: none; color: var(--ink);
  cursor: pointer;
}

@media (max-width: 800px) {
  .nav__links { display: none; }
  .nav__inner { grid-template-columns: auto 1fr auto; }
  .nav__right { justify-self: end; }
  .nav__hamburger { display: grid; }
}

/* ═══ FUTURY PARENT BAR (brand pages) ═══ */
.futury-bar {
  display: flex; align-items: center; justify-content: center;
  padding: 6px var(--pad-x);
  background: #0E0D0B;
  border-bottom: 1px solid var(--hair);
  gap: 8px;
}
.futury-bar__logo {
  font-family: 'Sora', system-ui, sans-serif;
  font-weight: 600; font-size: 11px;
  color: rgba(244,239,230,0.35);
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: color .2s;
}
.futury-bar__logo:hover { color: rgba(244,239,230,0.6); }
.futury-bar__sep { color: rgba(244,239,230,0.15); font-size: 10px; }
.futury-bar__brand {
  font-family: var(--f-mono); font-size: 9px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(244,239,230,0.5);
}

/* Brand nav — logo img */
.brand-nav-logo { display: flex; align-items: center; }
.brand-nav-logo img {
  height: 48px; width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
@media (max-width: 720px) {
  .brand-nav-logo img { height: 36px; }
  .futury-bar { padding: 5px 16px; }
  .futury-bar__logo { font-size: 10px; }
}

/* ═══ Buttons & badges ═══ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px;
  border-radius: 999px;
  font-family: var(--f-mono); font-size: 12px;
  letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600;
  transition: transform .35s cubic-bezier(.3,1,.3,1), box-shadow .35s, background .25s;
  position: relative; overflow: hidden;
}
.btn--primary {
  background: linear-gradient(135deg, #1d6fff 0%, #7A4ED9 50%, #e85aa8 100%);
  background-size: 200% 200%;
  color: #fff;
  animation: btnFlow 6s ease-in-out infinite;
  box-shadow:
    0 24px 48px -20px rgba(122,78,217,0.55),
    0 12px 30px -10px rgba(29,111,255,0.45),
    inset 0 1px 0 rgba(255,255,255,0.25);
}
@keyframes btnFlow { 0%,100% { background-position: 0% 0%; } 50% { background-position: 100% 100%; } }
.btn--primary::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(110deg, transparent 30%, rgba(255,255,255,0.45) 50%, transparent 70%);
  transform: translateX(-130%); transition: transform 1s cubic-bezier(.3,1,.3,1);
}
.btn--primary:hover { transform: translateY(-3px); }
.btn--primary:hover::after { transform: translateX(130%); }
.btn--ghost {
  border: 1px solid var(--hair-strong);
  color: var(--ink);
  background: rgba(244,239,230,0.04);
}
.btn--ghost:hover { border-color: var(--lime); background: rgba(200,242,106,0.08); }
.btn svg { position: relative; z-index: 1; transition: transform .3s; }
.btn:hover svg { transform: translateX(4px); }

.tag {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px;
  background: rgba(244,239,230,0.06);
  backdrop-filter: blur(10px);
  border: 1px solid var(--hair-strong);
  border-radius: 999px;
  font-family: var(--f-mono);
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--ink-2);
}
.tag .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--lime); box-shadow: 0 0 10px var(--lime); }

@keyframes pulse { 0%,100% { opacity: 0.4; } 50% { opacity: 1; } }
@keyframes gemfloat { 0%,100% { transform: translateY(-2%) rotate(-3deg); } 50% { transform: translateY(2%) rotate(3deg); } }
@keyframes gemglow { 0%,100% { opacity: 0.6; } 50% { opacity: 1; } }
@keyframes gemring { to { transform: translate(-50%, -50%) rotate(360deg); } }

/* ═══ DIAMOND DIVIDER (reusable) ═══ */
.divider {
  position: relative;
  height: 240px;
  overflow: hidden;
  overflow: visible;
  display: flex;
  justify-content: flex-end;
}
.divider__top, .divider__bottom {
  position: absolute; left: 0; right: 0;
  height: 50%;
  z-index: 1;
}
.divider__top { top: 0; }
.divider__bottom { bottom: 0; }
.divider__gem {
  position: relative;
  right: -80px;
  left: auto;
  top: 50%;
  transform: translateY(-50%);
  width: clamp(160px, 18vw, 240px);
  aspect-ratio: 1;
  z-index: 5;
  pointer-events: none;
}
.divider__gem img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 30px 60px rgba(122,78,217,0.5)) drop-shadow(0 12px 30px rgba(200,242,106,0.25));
  animation: gemfloat 7s ease-in-out infinite;
}
.divider__glow {
  position: absolute; inset: -25%;
  background: radial-gradient(circle, rgba(182,140,255,0.45) 0%, transparent 60%);
  filter: blur(40px);
  animation: gemglow 4s ease-in-out infinite;
}
.divider__ring {
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  border: 1px dashed rgba(182,140,255,0.4);
  border-radius: 50%;
}
.divider__ring--r1 { width: 140%; aspect-ratio: 1; animation: gemring 40s linear infinite; }
.divider__ring--r2 { width: 175%; aspect-ratio: 1; border-color: rgba(200,242,106,0.3); animation: gemring 60s linear infinite reverse; }

/* ═══ FOOTER ═══ */
.foot {
  background: var(--bg-deep);
  border-top: 1px solid var(--hair);
  padding: 80px 0 32px;
  margin-top: 100px;
}
.foot__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad-x);
}
.foot__top {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 60px;
  padding-bottom: 56px;
  border-bottom: 1px solid var(--hair);
}
@media (max-width: 800px) { .foot__top { grid-template-columns: 1fr 1fr; gap: 36px; } }
.foot__brand {
  font-family: 'Sora', 'Arial', system-ui, sans-serif;
  font-weight: 600;
  font-size: 44px; line-height: 1; letter-spacing: -0.03em;
  color: #fff;
  margin-bottom: 16px;
}
.foot__tag { font-size: 14px; color: var(--ink-2); max-width: 320px; line-height: 1.55; }
.foot__col h5 {
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-3); margin-bottom: 18px; font-weight: 500;
}
.foot__col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.foot__col a { font-size: 14px; color: var(--ink-2); transition: color .2s; }
.foot__col a:hover { color: var(--lime); }
.foot__bottom {
  display: flex; justify-content: space-between; align-items: flex-start;
  flex-wrap: wrap; gap: 32px;
  padding-top: 32px;
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--ink-3);
}
.foot__bottom > div:first-child {
  display: flex; flex-direction: column; gap: 16px;
}
.foot__bottom > div:last-child {
  text-align: right;
}
@media (max-width: 700px) {
  .foot__bottom { flex-direction: column; gap: 24px; }
  .foot__bottom > div:last-child { text-align: left; }
}
.foot__pay { display: flex; gap: 8px; align-items: center; flex-wrap: wrap; }
.foot__pay img {
  height: 28px; width: auto;
  border-radius: 4px;
  background: #fff;
  padding: 3px 5px;
  opacity: 0.85;
  transition: opacity .2s;
}
.foot__pay img:hover { opacity: 1; }
.foot__hours {
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.08em; color: var(--ink-3);
  line-height: 1.7; text-transform: none;
}
.foot__hours strong {
  display: block; color: var(--ink-2);
  font-size: 10px; letter-spacing: 0.16em;
  text-transform: uppercase; margin-bottom: 4px;
}

/* ═══ Trust strip ═══ */
.trust {
  background: rgba(244,239,230,0.03);
  border-top: 1px solid var(--hair);
  border-bottom: 1px solid var(--hair);
  padding: 28px 0;
}
.trust__inner {
  max-width: var(--maxw); margin: 0 auto; padding: 0 var(--pad-x);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: center;
}
@media (max-width: 700px) { .trust__inner { grid-template-columns: repeat(2, 1fr); gap: 18px; } }
.trust__it {
  display: flex; align-items: center; gap: 12px;
  font-family: var(--f-mono); font-size: 10px;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-2);
}
.trust__it svg { width: 22px; height: 22px; color: var(--lime); flex-shrink: 0; }
.trust__it strong { color: var(--ink); display: block; font-size: 12px; letter-spacing: 0.08em; font-weight: 600; margin-bottom: 2px; }

/* ═══ Reveal ═══ */
[data-reveal] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .9s cubic-bezier(.3,1,.3,1), transform .9s cubic-bezier(.3,1,.3,1);
}
[data-reveal-side="left"] { transform: translateX(-40px); }
[data-reveal-side="right"] { transform: translateX(40px); }
[data-reveal].is-revealed,
[data-reveal-side="left"].is-revealed,
[data-reveal-side="right"].is-revealed { opacity: 1 !important; transform: none !important; }

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

/* Container wide */
.container--wide { max-width: 1480px; }

/* Section head */
.sec-head {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 56px;
  align-items: baseline;
  margin-bottom: clamp(40px, 6vw, 80px);
}
@media (max-width: 800px) { .sec-head { grid-template-columns: 1fr; gap: 14px; } }
.sec-head__num {
  font-family: var(--f-mono); font-size: 11px;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-3);
  padding-top: 16px;
  border-top: 1px solid var(--hair-strong);
  display: flex; align-items: center; gap: 10px;
}
.sec-head__num::before { content:''; width: 6px; height: 6px; border-radius: 50%; background: linear-gradient(135deg, var(--lime), var(--violet-soft)); }
.sec-head h2 {
  font-family: var(--f-display); font-weight: 300;
  font-size: clamp(32px, 5vw, 64px);
  letter-spacing: -0.03em; line-height: 1.02;
  color: var(--ink);
  font-variation-settings: 'opsz' 144, 'SOFT' 50;
}
.sec-head h2 em {
  font-style: italic; font-weight: 400;
  background: linear-gradient(135deg, var(--violet-soft), var(--lime));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* ═══ SEARCH OVERLAY — premium experience ═══ */
.search-overlay {
  position: fixed; inset: 0; z-index: 9999;
  opacity: 0; pointer-events: none;
  transition: opacity .4s cubic-bezier(.2,.7,.2,1);
}
.search-overlay.is-open { opacity: 1; pointer-events: auto; }
.search-overlay__bg {
  position: absolute; inset: 0;
  background: rgba(8,7,10,0.88);
  backdrop-filter: blur(30px) saturate(140%);
  -webkit-backdrop-filter: blur(30px) saturate(140%);
}
.search-overlay__card {
  position: absolute; top: 0; left: 0; right: 0;
  max-width: 680px; margin: 0 auto;
  padding: clamp(80px, 12vh, 140px) 24px 40px;
  transform: translateY(-30px);
  transition: transform .4s cubic-bezier(.2,.7,.2,1);
}
.search-overlay.is-open .search-overlay__card { transform: translateY(0); }
.search-input-wrap {
  position: relative; margin-bottom: 32px;
}
.search-input-wrap::before {
  content: ''; position: absolute; inset: -2px; border-radius: 18px;
  background: linear-gradient(135deg, var(--violet), var(--lime), var(--violet));
  background-size: 300% 300%;
  animation: searchGlow 4s ease-in-out infinite;
  z-index: 0; opacity: 0.6;
  filter: blur(4px);
}
@keyframes searchGlow { 0%,100% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } }
.search-input {
  position: relative; z-index: 1;
  width: 100%; padding: 18px 24px 18px 52px;
  background: rgba(20,19,16,0.95);
  border: 1px solid rgba(244,239,230,0.12);
  border-radius: 16px;
  color: #fff; font-family: var(--f-body); font-size: 17px;
  outline: none;
}
.search-input::placeholder { color: var(--ink-3); }
.search-input-wrap .search-icon {
  position: absolute; left: 20px; top: 50%; transform: translateY(-50%);
  z-index: 2; width: 18px; height: 18px;
  stroke: var(--violet-soft); fill: none; stroke-width: 2;
}
.search-close {
  position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
  z-index: 2; width: 32px; height: 32px; border-radius: 50%;
  background: rgba(244,239,230,0.06); border: none; cursor: pointer;
  display: grid; place-items: center; color: var(--ink-3);
  transition: background .2s;
}
.search-close:hover { background: rgba(244,239,230,0.12); }
.search-close svg { width: 14px; height: 14px; stroke: currentColor; stroke-width: 2; fill: none; }
.search-results {
  display: flex; flex-direction: column; gap: 4px;
  max-height: 50vh; overflow-y: auto;
}
.search-item {
  display: flex; align-items: center; gap: 16px;
  padding: 14px 18px; border-radius: 14px;
  background: rgba(244,239,230,0.06);
  border: 1px solid rgba(244,239,230,0.04);
  cursor: pointer; transition: background .2s, border-color .2s;
  text-decoration: none; color: var(--ink);
  animation: searchFadeIn .3s ease forwards;
  opacity: 0;
}
.search-item:hover { background: rgba(244,239,230,0.08); border-color: rgba(182,140,255,0.2); }
.search-item__img {
  width: 52px; height: 52px; border-radius: 12px;
  overflow: hidden; flex-shrink: 0; background: rgba(244,239,230,0.06);
}
.search-item__img img { width: 100%; height: 100%; object-fit: cover; }
.search-item__info { flex: 1; }
.search-item__name { font-family: var(--f-display); font-style: italic; font-size: 16px; margin-bottom: 2px; }
.search-item__brand { font-family: var(--f-mono); font-size: 9px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--ink-3); }
.search-item__price { font-family: var(--f-display); font-size: 18px; font-weight: 400; flex-shrink: 0; }
@keyframes searchFadeIn { to { opacity: 1; transform: translateY(0); } }
.search-item:nth-child(1) { animation-delay: 0s; transform: translateY(10px); }
.search-item:nth-child(2) { animation-delay: .05s; transform: translateY(10px); }
.search-item:nth-child(3) { animation-delay: .1s; transform: translateY(10px); }
.search-item:nth-child(4) { animation-delay: .15s; transform: translateY(10px); }
.search-item:nth-child(5) { animation-delay: .2s; transform: translateY(10px); }
.search-item:nth-child(6) { animation-delay: .25s; transform: translateY(10px); }
.search-label { font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ink-3); padding: 8px 18px; }

/* ═══ CART DRAWER — slides from right ═══ */
.cart-drawer-overlay {
  position: fixed; inset: 0; z-index: 9998;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0; pointer-events: none;
  transition: opacity .35s;
}
.cart-drawer-overlay.is-open { opacity: 1; pointer-events: auto; }
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(420px, 90vw); z-index: 9999;
  background: var(--bg-light);
  color: var(--ink-dark);
  display: flex; flex-direction: column;
  box-shadow: -20px 0 60px rgba(0,0,0,0.3);
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.2,.7,.2,1);
}
.cart-drawer.is-open { transform: translateX(0); }
.cart-drawer__header {
  padding: 20px 24px; border-bottom: 1px solid rgba(23,22,15,0.08);
  display: flex; align-items: center; justify-content: space-between; flex-shrink: 0;
}
.cart-drawer__header h3 {
  font-family: var(--f-display); font-style: italic; font-weight: 400; font-size: 22px; margin: 0;
}
.cart-drawer__count {
  font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(23,22,15,0.4);
}
.cart-drawer__close {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(23,22,15,0.06); border: none; cursor: pointer;
  display: grid; place-items: center; transition: background .2s;
}
.cart-drawer__close:hover { background: rgba(23,22,15,0.12); }
.cart-drawer__close svg { width: 16px; height: 16px; stroke: var(--ink-dark); stroke-width: 2; fill: none; }
.cart-drawer__body {
  flex: 1; overflow-y: auto; padding: 16px 24px;
}
.cart-drawer__empty {
  text-align: center; padding: 60px 0; color: rgba(23,22,15,0.35);
  font-style: italic; font-size: 14px;
}
.cart-d-item {
  display: flex; gap: 14px; padding: 16px 0;
  border-bottom: 1px solid rgba(23,22,15,0.06); align-items: flex-start;
}
.cart-d-item:last-child { border-bottom: 0; }
.cart-d-item__img {
  width: 64px; height: 64px; border-radius: 12px; overflow: hidden; flex-shrink: 0;
  background: rgba(23,22,15,0.04);
}
.cart-d-item__img img { width: 100%; height: 100%; object-fit: cover; }
.cart-d-item__info { flex: 1; display: flex; flex-direction: column; gap: 4px; }
.cart-d-item__name { font-family: var(--f-display); font-style: italic; font-size: 15px; color: var(--ink-dark); }
.cart-d-item__price { font-family: var(--f-mono); font-size: 12px; color: rgba(23,22,15,0.5); }
.cart-d-item__prices { display: flex; flex-direction: column; align-items: flex-end; gap: 2px; flex-shrink: 0; }
.cart-d-item__old { font-family: var(--f-mono); font-size: 11px; color: rgba(23,22,15,0.35); text-decoration: line-through; }
.cart-d-item__final { font-family: var(--f-display); font-size: 18px; font-weight: 400; color: var(--ink-dark); }
.cart-d-item__qty {
  display: flex; align-items: center; gap: 0; margin-top: 4px;
  border: 1px solid rgba(23,22,15,0.12); border-radius: 8px; width: fit-content;
}
.cart-d-item__qty button {
  width: 30px; height: 30px; background: transparent; border: none;
  font-size: 15px; cursor: pointer; color: var(--ink-dark); display: grid; place-items: center;
}
.cart-d-item__qty button:hover { background: rgba(23,22,15,0.06); }
.cart-d-item__qty span {
  width: 26px; text-align: center; font-family: var(--f-mono); font-size: 13px; font-weight: 500;
}
.cart-d-item__remove {
  align-self: flex-start; margin-top: 4px;
  width: 28px; height: 28px; border-radius: 50%; background: transparent; border: none;
  cursor: pointer; color: rgba(23,22,15,0.3); display: grid; place-items: center; transition: color .2s;
}
.cart-d-item__remove:hover { color: #e05a5a; }
.cart-d-item__remove svg { width: 14px; height: 14px; stroke: currentColor; stroke-width: 2; fill: none; }
.cart-drawer__footer {
  padding: 20px 24px; border-top: 1px solid rgba(23,22,15,0.08); flex-shrink: 0;
}
.cart-drawer__summary {
  display: flex; flex-direction: column; gap: 8px; margin-bottom: 16px;
}
.cart-drawer__row {
  display: flex; justify-content: space-between; align-items: baseline;
}
.cart-drawer__row .label {
  font-family: var(--f-mono); font-size: 10px; letter-spacing: 0.16em;
  text-transform: uppercase; color: rgba(23,22,15,0.4);
}
.cart-drawer__row .value {
  font-family: var(--f-mono); font-size: 13px; color: rgba(23,22,15,0.6);
}
.cart-drawer__row--discount .value {
  color: #2a9d3e; font-weight: 600;
}
.cart-drawer__row--total {
  padding-top: 10px; border-top: 1px solid rgba(23,22,15,0.06);
}
.cart-drawer__row--total .label {
  font-size: 11px; color: var(--ink-dark); font-weight: 600;
}
.cart-drawer__row--total .value {
  font-family: var(--f-display); font-style: italic; font-weight: 400;
  font-size: 24px; color: var(--ink-dark);
}
.cart-drawer__actions {
  display: flex; flex-direction: column; gap: 10px;
}
.cart-drawer__checkout {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  width: 100%; padding: 16px; border-radius: 14px;
  background: var(--ink-dark); color: #fff; border: none;
  font-family: var(--f-mono); font-size: 12px; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  cursor: pointer; transition: background .3s, transform .3s;
}
.cart-drawer__checkout:hover { background: var(--violet); transform: translateY(-2px); }
.cart-drawer__checkout svg { width: 16px; height: 16px; stroke: currentColor; fill: none; stroke-width: 2; }
.cart-drawer__continue {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 12px; border-radius: 12px;
  background: transparent; color: rgba(23,22,15,0.5);
  border: 1px solid rgba(23,22,15,0.10);
  font-family: var(--f-mono); font-size: 11px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  cursor: pointer; transition: color .2s, border-color .2s;
}
.cart-drawer__continue:hover { color: var(--ink-dark); border-color: rgba(23,22,15,0.25); }

/* ═══ MOBILE OPTIMIZATIONS ═══ */

@media (max-width: 768px) {
  .nav__icon { width: 44px; height: 44px; }
  .nav__icon svg { width: 18px; height: 18px; }
}

@media (max-width: 600px) {
  .nav__inner { padding: 12px var(--pad-x); gap: 16px; }
  .nav__logo { font-size: 18px; }
  .btn { padding: 14px 20px; font-size: 11px; }
  .search-overlay__card { padding: 60px 16px 32px; }
  .search-input { padding: 14px 16px 14px 44px; font-size: 16px; }
  .promo-bar { padding: 6px 0; }
  .promo-bar__track { gap: 32px; }
  .promo-bar__track span { font-size: 9px; }
  .sec-head { gap: 10px; margin-bottom: clamp(28px, 5vw, 60px); }
  .sec-head h2 { font-size: clamp(26px, 7vw, 48px); }
}

@media (max-width: 500px) {
  .foot__top { grid-template-columns: 1fr; gap: 28px; }
  .foot__brand { font-size: 32px; }
  .trust__inner { grid-template-columns: 1fr; gap: 12px; }
}

@media (max-width: 480px) {
  .cart-drawer { width: 100vw; }
  .futury-bar { padding: 4px 12px; }
  .futury-bar__logo { font-size: 10px; }

  /* Respiros maiores entre seções */
  .container { padding: 0 16px; }

  /* Footer mais respirado */
  .foot { padding: 48px 0 24px; margin-top: 60px; }
  .foot__col ul { gap: 14px; }
  .foot__col a { font-size: 15px; }
  .foot__col h5 { margin-bottom: 14px; }
  .foot__bottom { gap: 28px; padding-top: 24px; }
  .foot__pay { gap: 6px; }
  .foot__pay img { height: 24px; }

  /* Cart drawer items mais respirados */
  .cart-d-item { padding: 18px 0; gap: 16px; }
  .cart-d-item__img { width: 72px; height: 72px; }
  .cart-d-item__name { font-size: 16px; }
  .cart-drawer__body { padding: 16px 20px; }
  .cart-drawer__header { padding: 18px 20px; }
  .cart-drawer__footer { padding: 18px 20px; }
  .cart-drawer__checkout { padding: 18px; font-size: 13px; }
  .cart-drawer__continue { padding: 14px; }
}

/* Hide old mobile menu — replaced by new mnav */
@media (max-width: 800px) {
  .nav__mobile-menu { display: none !important; }
}

/* ═══ MOBILE POLISH — Touch, Animations, Safe Areas ═══ */

/* Active/tap states for touch devices */
.nav__icon:active { transform: scale(0.92); }
.nav__links a:active { color: var(--ink); }
.btn:active { transform: translateY(-1px) scale(0.96); }
.btn--ghost:active { background: rgba(200,242,106,0.12); }
.foot__col a:active { color: var(--lime); }
.search-item:active { background: rgba(244,239,230,0.12); transform: scale(0.98); }
.cart-drawer__checkout:active { transform: translateY(-1px) scale(0.96); }
.cart-drawer__continue:active { transform: scale(0.97); background: rgba(23,22,15,0.08); }
.cart-d-item__qty button:active { background: rgba(23,22,15,0.12); transform: scale(0.9); }
.nav__hamburger:active { transform: scale(0.92); }
.pcard:active { transform: translateY(-2px); }
.qcard:active { transform: translateY(-2px); }

/* Haptic-like tap feedback for product cards */
.pcard__btn:active, .qcard__btn:active, .lm-cta:active {
  transform: scale(0.96);
}

/* Disabled button states */
.btn:disabled, .qcard__btn:disabled, .pcard__btn:disabled {
  opacity: 0.6; pointer-events: none;
}

/* Input focus styling */
.search-input:focus {
  border-color: var(--lime);
  box-shadow: 0 0 0 2px rgba(200,242,106,0.15);
}

/* Search overlay smoother animation */
.search-overlay__card {
  transform: translateY(-20px) scale(0.97);
  opacity: 0;
}
.search-overlay.is-open .search-overlay__card {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* Scrollbar styling for mobile */
.search-results, .cart-drawer__body { scrollbar-width: thin; scrollbar-color: rgba(200,242,106,0.2) transparent; }
.search-results::-webkit-scrollbar, .cart-drawer__body::-webkit-scrollbar { width: 4px; }
.search-results::-webkit-scrollbar-thumb, .cart-drawer__body::-webkit-scrollbar-thumb { background: rgba(200,242,106,0.2); border-radius: 2px; }

@media (max-width: 768px) {
  /* Faster animations on mobile */
  .promo-bar__track { animation-duration: 25s; }
  .cart-drawer { transition: transform .25s cubic-bezier(.2,.7,.2,1); }
  .cart-drawer-overlay { transition: opacity .25s; }
  .search-overlay { transition: opacity .25s cubic-bezier(.2,.7,.2,1); }

  /* Scroll snap for carousels */
  .prod-strip__scroll { scroll-snap-type: x mandatory; scroll-behavior: smooth; }
  .prod-strip__scroll .pcard { scroll-snap-align: start; }
}

/* Safe area insets for notched phones */
@supports (padding: max(0px)) {
  .nav__inner {
    padding-left: max(var(--pad-x), env(safe-area-inset-left));
    padding-right: max(var(--pad-x), env(safe-area-inset-right));
  }
  .cart-drawer { padding-bottom: env(safe-area-inset-bottom); }
  .foot__inner {
    padding-left: max(var(--pad-x), env(safe-area-inset-left));
    padding-right: max(var(--pad-x), env(safe-area-inset-right));
  }
}
