/* ═══════════════════════════════════════════════════
   IZNOGRAILLZ — style.css
   Style : Cyberpunk / Brutaliste / Cyber-Y2K
═══════════════════════════════════════════════════ */

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

:root {
  --black:   #000000;
  --white:   #ffffff;
  --silver:  #b0b0b0;
  --green:   #00ff41;
  --purple:  #bf00ff;
  --gold:    #ffd700;
  --red:     #ff0040;
  --dark:    #080808;
  --border:  rgba(255,255,255,.07);

  --font-display: 'Bebas Neue', sans-serif;
  --font-mono:    'Share Tech Mono', monospace;
  --font-body:    'Rajdhani', sans-serif;

  --ease: cubic-bezier(.4, 0, .2, 1);
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: var(--green) var(--dark);
}
html::-webkit-scrollbar { width: 4px; }
html::-webkit-scrollbar-track { background: var(--dark); }
html::-webkit-scrollbar-thumb { background: var(--green); }

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

a { color: inherit; }

/* ── BRUIT NUMÉRIQUE ── */
#noiseCanvas {
  position: fixed;
  inset: 0;
  width: 100%; height: 100%;
  pointer-events: none;
  z-index: 1;
  opacity: .032;
}

/* ── SCANLINES ── */
.scanlines {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,0,0,.07) 2px,
    rgba(0,0,0,.07) 4px
  );
}

/* ═══════════════════════════════════════════════════
   EFFETS GLITCH
═══════════════════════════════════════════════════ */
.glitch { position: relative; display: inline-block; }

.glitch::before,
.glitch::after {
  content: attr(data-text);
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: transparent;
  pointer-events: none;
}

.glitch::before {
  color: var(--green);
  animation: glitch-a 4s steps(1) infinite;
  opacity: 0;
}
.glitch::after {
  color: var(--purple);
  animation: glitch-b 4s steps(1) infinite;
  opacity: 0;
}

@keyframes glitch-a {
  0%, 88%, 100% { opacity: 0; }
  89%  { opacity: 1; clip-path: polygon(0 5%,  100% 5%,  100% 22%, 0 22%); transform: translate(-5px,  2px); }
  90%  { opacity: 1; clip-path: polygon(0 40%, 100% 40%, 100% 58%, 0 58%); transform: translate( 5px, -2px); }
  91%  { opacity: 1; clip-path: polygon(0 70%, 100% 70%, 100% 82%, 0 82%); transform: translate(-3px,  1px); }
  92%  { opacity: 0; }
}
@keyframes glitch-b {
  0%, 90%, 100% { opacity: 0; }
  91% { opacity: 1; clip-path: polygon(0 15%, 100% 15%, 100% 35%, 0 35%); transform: translate( 5px, -3px); }
  92% { opacity: 1; clip-path: polygon(0 55%, 100% 55%, 100% 75%, 0 75%); transform: translate(-5px,  3px); }
  93% { opacity: 0; }
}

/* Glitch agressif au survol */
.glitch:hover::before {
  opacity: 1;
  animation: glitch-hover-a .25s steps(1) infinite;
}
.glitch:hover::after {
  opacity: 1;
  animation: glitch-hover-b .25s steps(1) infinite;
}

@keyframes glitch-hover-a {
  0%   { clip-path: polygon(0 0%,  100% 0%,  100% 20%, 0 20%); transform: translate(-6px,  2px); }
  25%  { clip-path: polygon(0 35%, 100% 35%, 100% 55%, 0 55%); transform: translate( 6px, -2px); }
  50%  { clip-path: polygon(0 65%, 100% 65%, 100% 80%, 0 80%); transform: translate(-4px,  3px); }
  75%  { clip-path: polygon(0 10%, 100% 10%, 100% 42%, 0 42%); transform: translate( 4px, -1px); }
  100% { clip-path: polygon(0 78%, 100% 78%, 100% 95%, 0 95%); transform: translate(-6px,  0);   }
}
@keyframes glitch-hover-b {
  0%   { clip-path: polygon(0 45%, 100% 45%, 100% 68%, 0 68%); transform: translate( 6px,  0);   }
  33%  { clip-path: polygon(0 12%, 100% 12%, 100% 32%, 0 32%); transform: translate(-6px, -3px); }
  66%  { clip-path: polygon(0 72%, 100% 72%, 100% 88%, 0 88%); transform: translate( 4px,  2px); }
  100% { clip-path: polygon(0 22%, 100% 22%, 100% 48%, 0 48%); transform: translate(-4px,  0);   }
}

/* ═══════════════════════════════════════════════════
   NAVIGATION
═══════════════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 100;
  transition: background .3s, border-color .3s;
}
#navbar.scrolled {
  background: rgba(0,0,0,.92);
  border-bottom: 1px solid rgba(0,255,65,.15);
  backdrop-filter: blur(12px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.3rem 2.5rem;
  max-width: 1440px;
  margin: 0 auto;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: .08em;
  text-decoration: none;
  color: var(--white);
}
.logo-bracket { color: rgba(0,255,65,.7); }
.logo-gold    { color: var(--gold); }

.nav-links {
  display: flex;
  list-style: none;
  gap: 2.8rem;
}
.nav-links a {
  font-family: var(--font-mono);
  font-size: .72rem;
  letter-spacing: .22em;
  color: var(--silver);
  text-decoration: none;
  position: relative;
  transition: color .2s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1px;
  background: var(--green);
  transition: width .3s var(--ease);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.cart-btn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--white);
  padding: .55rem .8rem;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  gap: .4rem;
  transition: border-color .2s, box-shadow .2s;
}
.cart-btn:hover {
  border-color: rgba(0,255,65,.5);
  box-shadow: 0 0 16px rgba(0,255,65,.15);
}
.cart-count {
  position: absolute;
  top: -7px; right: -7px;
  background: var(--green);
  color: var(--black);
  font-family: var(--font-mono);
  font-size: .58rem;
  font-weight: 700;
  width: 17px; height: 17px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 1px solid var(--border);
  padding: .5rem .6rem;
  cursor: pointer;
}
.burger span {
  display: block;
  width: 20px; height: 1px;
  background: var(--white);
  transition: transform .3s, opacity .3s;
}
.burger.open span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

.mob-nav {
  display: none;
  flex-direction: column;
  background: rgba(0,0,0,.98);
  border-top: 1px solid rgba(0,255,65,.12);
  padding: 1.2rem 2.5rem 2rem;
}
.mob-nav.open { display: flex; }
.mob-link {
  font-family: var(--font-mono);
  font-size: .82rem;
  letter-spacing: .2em;
  color: var(--silver);
  text-decoration: none;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  transition: color .2s;
}
.mob-link:hover { color: var(--green); }
.mob-cta {
  font-family: var(--font-mono);
  font-size: .75rem;
  letter-spacing: .15em;
  color: var(--black);
  background: var(--green);
  text-decoration: none;
  padding: .9rem 1.2rem;
  margin-top: 1.2rem;
  text-align: center;
  transition: background .2s;
}
.mob-cta:hover { background: var(--white); }

/* ═══════════════════════════════════════════════════
   PANIER
═══════════════════════════════════════════════════ */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.75);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
  backdrop-filter: blur(4px);
}
.cart-overlay.active { opacity: 1; pointer-events: all; }

.cart-panel {
  position: fixed;
  top: 0; right: 0;
  width: min(400px, 100vw);
  height: 100%;
  background: #060606;
  border-left: 1px solid rgba(0,255,65,.18);
  z-index: 201;
  transform: translateX(100%);
  transition: transform .4s var(--ease);
  display: flex;
  flex-direction: column;
}
.cart-panel.open { transform: translateX(0); }

.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.5rem 1.8rem;
  border-bottom: 1px solid var(--border);
}
.cart-title {
  font-family: var(--font-mono);
  font-size: .75rem;
  letter-spacing: .25em;
  color: var(--green);
}
.cart-close {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--silver);
  width: 32px; height: 32px;
  cursor: pointer;
  font-size: .85rem;
  transition: border-color .2s, color .2s;
}
.cart-close:hover { border-color: var(--red); color: var(--red); }

.cart-items {
  flex: 1;
  overflow-y: auto;
  padding: 1.2rem 1.8rem;
}
.cart-empty {
  font-family: var(--font-mono);
  font-size: .78rem;
  color: rgba(255,255,255,.25);
  text-align: center;
  margin-top: 3rem;
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}
.cart-item-name {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: .04em;
}
.cart-item-qty {
  font-family: var(--font-mono);
  font-size: .65rem;
  color: var(--silver);
  margin-top: .2rem;
}
.cart-item-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: .4rem;
  flex-shrink: 0;
}
.cart-item-price {
  font-family: var(--font-mono);
  font-size: .9rem;
  color: var(--gold);
}
.cart-item-remove {
  background: transparent;
  border: none;
  font-family: var(--font-mono);
  font-size: .62rem;
  letter-spacing: .1em;
  color: rgba(255,255,255,.25);
  cursor: pointer;
  transition: color .2s;
}
.cart-item-remove:hover { color: var(--red); }

.cart-footer {
  padding: 1.5rem 1.8rem;
  border-top: 1px solid var(--border);
  display: none;
}
.cart-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: .6rem;
}
.cart-total span:first-child {
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .2em;
  color: var(--silver);
}
.cart-total span:last-child {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold);
  letter-spacing: .04em;
}
.cart-note {
  font-family: var(--font-mono);
  font-size: .6rem;
  color: rgba(255,255,255,.2);
  margin-bottom: 1.2rem;
}
.cart-cta-btn {
  display: block;
  text-align: center;
}

/* ═══════════════════════════════════════════════════
   BOUTONS
═══════════════════════════════════════════════════ */
.btn-cta {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: .78rem;
  letter-spacing: .14em;
  color: var(--black);
  background: var(--green);
  border: none;
  padding: 1rem 2.2rem;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s, box-shadow .2s, transform .15s;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}
.btn-cta:hover {
  background: var(--white);
  box-shadow: 0 0 35px rgba(0,255,65,.35);
  transform: translateY(-1px);
}
.btn-cta:active { transform: translateY(0); }
.btn-bracket { opacity: .55; }

.btn-outline {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: .75rem;
  letter-spacing: .15em;
  color: var(--silver);
  background: transparent;
  border: 1px solid rgba(255,255,255,.18);
  padding: 1rem 2rem;
  cursor: pointer;
  text-decoration: none;
  transition: border-color .3s, color .3s;
}
.btn-outline:hover {
  border-color: var(--white);
  color: var(--white);
}

/* ═══════════════════════════════════════════════════
   SECTIONS COMMUNES
═══════════════════════════════════════════════════ */
section {
  max-width: 1440px;
  margin: 0 auto;
  padding: 9rem 2.5rem;
  position: relative;
}

.section-tag {
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .3em;
  color: var(--green);
  margin-bottom: 1.2rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(3.5rem, 9vw, 8rem);
  line-height: 1;
  letter-spacing: .04em;
  margin-bottom: 2rem;
}
.section-title::after {
  content: '';
  display: block;
  width: 50px; height: 2px;
  margin-top: .8rem;
  background: linear-gradient(to right, var(--green), transparent);
}

.section-sub {
  font-size: .98rem;
  color: var(--silver);
  max-width: 540px;
  margin-bottom: 4rem;
  line-height: 1.75;
}

/* Bordure de section asymétrique */
section:not(#hero) {
  border-top: 1px solid var(--border);
}
section:not(#hero)::before {
  content: '';
  position: absolute;
  top: -1px; left: 0;
  height: 2px;
  width: clamp(80px, 12vw, 140px);
}
#process::before { background: var(--green); }
#shop::before    { background: var(--purple); }
#contact::before { background: var(--gold); }

/* ═══════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════ */
#hero {
  max-width: none;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 0 2.5rem;
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: .32;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,.85) 0%, rgba(0,0,0,.45) 55%, rgba(0,0,0,.75) 100%);
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 860px;
  margin: 0 auto;
  padding-top: 6rem;
}

.hero-badge {
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .32em;
  color: var(--green);
  margin-bottom: 1.6rem;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(5rem, 16vw, 13rem);
  line-height: .95;
  letter-spacing: .02em;
  margin-bottom: 1.6rem;
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--silver);
  line-height: 1.85;
  margin-bottom: 2.8rem;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 1.4rem;
  flex-wrap: wrap;
  margin-bottom: 5rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  flex-wrap: wrap;
}
.hstat { display: flex; flex-direction: column; gap: .25rem; }
.hstat-val {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--gold);
  letter-spacing: .04em;
  line-height: 1;
}
.hstat-lbl {
  font-family: var(--font-mono);
  font-size: .62rem;
  letter-spacing: .18em;
  color: var(--silver);
}
.hstat-sep {
  color: rgba(255,255,255,.12);
  font-size: 1.8rem;
  line-height: 1;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem; right: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .6rem;
  font-family: var(--font-mono);
  font-size: .58rem;
  letter-spacing: .22em;
  color: rgba(255,255,255,.25);
}
.scroll-line {
  width: 1px; height: 42px;
  background: linear-gradient(to bottom, rgba(0,255,65,.4), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}
@keyframes scroll-pulse {
  0%, 100% { opacity: .3; transform: scaleY(.6); }
  50%       { opacity: 1;  transform: scaleY(1);   }
}

/* ═══════════════════════════════════════════════════
   PROCESSUS
═══════════════════════════════════════════════════ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.05);
}

.process-step {
  background: var(--black);
  padding: 2.8rem 2rem;
  position: relative;
  overflow: hidden;
  transition: background .3s;
  animation-delay: var(--delay, 0s);
}
.process-step::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  height: 2px; width: 0;
  background: var(--green);
  transition: width .5s var(--ease);
}
.process-step:hover { background: #060606; }
.process-step:hover::before { width: 100%; }

.step-num {
  font-family: var(--font-display);
  font-size: 5rem;
  color: rgba(255,255,255,.04);
  line-height: 1;
  position: absolute;
  top: .8rem; right: 1.2rem;
  user-select: none;
}
.step-icon {
  font-size: 2rem;
  color: var(--green);
  margin-bottom: 1.6rem;
  display: block;
}
.step-title {
  font-family: var(--font-display);
  font-size: 1.25rem;
  letter-spacing: .06em;
  margin-bottom: 1rem;
}
.step-desc {
  font-size: .82rem;
  color: var(--silver);
  line-height: 1.75;
}

/* ═══════════════════════════════════════════════════
   BOUTIQUE
═══════════════════════════════════════════════════ */
#shop .section-title::after { background: linear-gradient(to right, var(--purple), transparent); }

.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1px;
  background: rgba(255,255,255,.05);
}

.product-card {
  background: var(--black);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
  transition: border-color .3s, box-shadow .3s;
}
.product-card:hover {
  border-color: rgba(191,0,255,.3);
  box-shadow: 0 0 50px rgba(191,0,255,.08), inset 0 0 50px rgba(191,0,255,.04);
}

/* Image produit */
.product-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  position: relative;
}
.product-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .65s var(--ease), filter .35s;
  filter: saturate(.75) brightness(.95);
}
.product-card:hover .product-img img {
  transform: scale(1.07);
  filter: saturate(1.15) brightness(1.05);
}

/* Overlay glitch au survol */
.product-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,255,65,.06), transparent 50%, rgba(191,0,255,.06));
  opacity: 0;
  transition: opacity .3s;
  pointer-events: none;
}
.product-card:hover .product-img::after { opacity: 1; }

/* Ligne RGB glitch sur hover */
.product-card:hover .product-img::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  animation: img-scan .6s steps(1) infinite;
  pointer-events: none;
}
@keyframes img-scan {
  0%   { background: linear-gradient(transparent 0%,   rgba(0,255,65,.08) 2%,  transparent 4%); }
  20%  { background: linear-gradient(transparent 30%,  rgba(0,255,65,.1)  32%, transparent 34%); }
  40%  { background: linear-gradient(transparent 58%,  rgba(191,0,255,.08) 60%, transparent 62%); }
  60%  { background: linear-gradient(transparent 75%,  rgba(0,255,65,.06) 77%, transparent 79%); }
  80%  { background: linear-gradient(transparent 12%,  rgba(191,0,255,.1) 14%, transparent 16%); }
  100% { background: transparent; }
}

/* Badge */
.product-badge {
  position: absolute;
  top: .9rem; left: .9rem;
  font-family: var(--font-mono);
  font-size: .58rem;
  letter-spacing: .15em;
  padding: .28rem .75rem;
  z-index: 3;
  backdrop-filter: blur(6px);
}
.badge-gold   { background: rgba(255,215,0,.12); border: 1px solid rgba(255,215,0,.4); color: var(--gold);   }
.badge-silver { background: rgba(192,192,192,.1); border: 1px solid rgba(192,192,192,.3); color: #d0d0d0;    }
.badge-vvs    { background: rgba(191,0,255,.14); border: 1px solid rgba(191,0,255,.45); color: #d97bff;     }

/* Infos produit */
.product-info {
  padding: 1.6rem;
  border-top: 1px solid var(--border);
}
.product-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: .05em;
  margin-bottom: .5rem;
  transition: color .2s;
}
.product-card:hover .product-name { color: #d97bff; }

.product-desc {
  font-size: .8rem;
  color: var(--silver);
  line-height: 1.68;
  margin-bottom: 1.2rem;
}
.product-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
}
.product-price {
  font-family: var(--font-mono);
  font-size: .95rem;
  color: var(--gold);
  line-height: 1.3;
}
.product-price-note {
  display: block;
  font-size: .58rem;
  color: var(--silver);
  letter-spacing: .06em;
  margin-top: .2rem;
}

.add-btn {
  font-family: var(--font-mono);
  font-size: .65rem;
  letter-spacing: .12em;
  color: var(--black);
  background: var(--green);
  border: none;
  padding: .55rem 1.1rem;
  cursor: pointer;
  transition: background .2s, box-shadow .2s, transform .15s;
  clip-path: polygon(0 0, calc(100% - 6px) 0, 100% 6px, 100% 100%, 6px 100%, 0 calc(100% - 6px));
  white-space: nowrap;
}
.add-btn:hover {
  background: var(--white);
  box-shadow: 0 0 22px rgba(0,255,65,.45);
  transform: translateY(-1px);
}
.add-btn:active { transform: translateY(0); }

/* Flash d'ajout au panier */
.add-btn.added {
  background: var(--purple);
  color: var(--white);
}

/* ═══════════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════════ */
#contact .section-title::after { background: linear-gradient(to right, var(--gold), transparent); }

.contact-form {
  max-width: 700px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.fg {
  display: flex;
  flex-direction: column;
  gap: .55rem;
  margin-bottom: 1.1rem;
}
.fg label {
  font-family: var(--font-mono);
  font-size: .62rem;
  letter-spacing: .22em;
  color: var(--green);
}
.fg input,
.fg select,
.fg textarea {
  background: #060606;
  border: 1px solid rgba(255,255,255,.09);
  border-bottom-color: rgba(255,255,255,.18);
  color: var(--white);
  padding: .95rem 1.1rem;
  font-family: var(--font-body);
  font-size: .92rem;
  outline: none;
  transition: border-color .25s, box-shadow .25s;
  width: 100%;
}
.fg select { cursor: pointer; }
.fg select option { background: #0a0a0a; }
.fg input:focus,
.fg select:focus,
.fg textarea:focus {
  border-color: rgba(0,255,65,.5);
  box-shadow: 0 0 0 1px rgba(0,255,65,.12);
}
.fg textarea { resize: vertical; min-height: 130px; }

.form-success {
  font-family: var(--font-mono);
  font-size: .78rem;
  color: var(--green);
  margin-top: 1rem;
  display: none;
  letter-spacing: .05em;
}

/* ═══════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════ */
footer {
  max-width: none;
  border-top: 1px solid var(--border);
  padding: 5rem 2.5rem 3rem;
  text-align: center;
  position: relative;
}
footer::before {
  content: '';
  position: absolute;
  top: -1px; left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 2px;
  background: var(--green);
}

.foot-logo {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 7vw, 6rem);
  letter-spacing: .1em;
  margin-bottom: 2.5rem;
  display: block;
  cursor: default;
}

.foot-links {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.8rem;
}
.foot-links a {
  font-family: var(--font-mono);
  font-size: .68rem;
  letter-spacing: .22em;
  color: var(--silver);
  text-decoration: none;
  transition: color .2s;
}
.foot-links a:hover { color: var(--green); }

.foot-social {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3.5rem;
}
.foot-social a {
  font-family: var(--font-mono);
  font-size: .7rem;
  letter-spacing: .18em;
  color: var(--silver);
  text-decoration: none;
  border: 1px solid var(--border);
  padding: .45rem .9rem;
  transition: border-color .2s, color .2s;
}
.foot-social a:hover { border-color: var(--green); color: var(--green); }

.foot-bottom {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: .62rem;
  color: rgba(255,255,255,.2);
  letter-spacing: .06em;
}
.foot-bottom a {
  color: rgba(255,255,255,.35);
  text-decoration: none;
  transition: color .2s;
}
.foot-bottom a:hover { color: var(--green); }

/* ═══════════════════════════════════════════════════
   REVEAL AU SCROLL
═══════════════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .65s var(--ease), transform .65s var(--ease);
  transition-delay: var(--delay, 0s);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ═══════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .process-grid { grid-template-columns: repeat(2, 1fr); }
}

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

  #hero { padding: 0 1.5rem; }
  .hero-title { font-size: clamp(4rem, 18vw, 7rem); }
  .hero-stats { gap: 1.2rem; }
  .hstat-sep { display: none; }

  section { padding: 5.5rem 1.5rem; }

  .process-grid { grid-template-columns: 1fr; }

  .shop-grid { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }

  .foot-links { gap: 1.5rem; }
  .foot-bottom { gap: 1rem; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn-cta, .btn-outline { text-align: center; width: 100%; }

  .product-footer { flex-direction: column; align-items: flex-start; }
  .add-btn { width: 100%; text-align: center; }
}
