:root{
  --bg:#07070a;
  --panel:#0c0d12;
  --panel2:#0a0b10;
  --text:#ffffff;
  --muted:rgba(255,255,255,.65);
  --gold:#d4af37;
  --gold2:rgba(212,175,55,.18);
  --border:rgba(255,255,255,.08);
  --radius:18px;

  /* Réglages faciles */
  --price-bottom: -200px;   /* ✅ position du prix depuis le bas */
  --desc-bottom: -80px;   /* ✅ position de la description depuis le bas */
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial;
  background:
    radial-gradient(1200px 700px at 20% 0%, rgba(212,175,55,.10), transparent 55%),
    radial-gradient(1000px 600px at 80% 10%, rgba(255,255,255,.06), transparent 55%),
    var(--bg);
  color:var(--text);
}

a{color:inherit;text-decoration:none}
.wrap{max-width:1200px;margin:0 auto;padding:0 18px}

.muted{color:var(--muted)}
.link{color:var(--gold);opacity:.95}
.link:hover{opacity:1}

.btn{
  display:inline-flex;align-items:center;justify-content:center;
  padding:10px 16px;border-radius:999px;
  border:1px solid rgba(212,175,55,.40);
  background:rgba(212,175,55,.10);
  color:var(--text);
  backdrop-filter: blur(6px);
  transition:transform .15s ease, background .15s ease;
}
.btn:hover{background:rgba(212,175,55,.16);transform:translateY(-1px)}
.btn-ghost{background:transparent;border:1px solid rgba(255,255,255,.14)}
.btn-small{padding:7px 12px;font-size:13px}

.site-header{
  position:sticky;top:0;z-index:50;
  background:rgba(7,7,10,.55);
  border-bottom:1px solid var(--border);
  backdrop-filter: blur(10px);
}
.header-inner{display:flex;align-items:center;gap:14px;min-height:72px}
.brand{font-weight:800;letter-spacing:.3px}
.brand span{color:var(--gold)}

.nav{display:flex;gap:18px;align-items:center;margin-left:18px}
.nav-link{color:rgba(255,255,255,.78)}
.nav-link:hover{color:#fff}
.nav-link.is-active{color:#fff;position:relative}
.nav-link.is-active:after{
  content:"";position:absolute;left:0;right:0;bottom:-10px;height:2px;
  background:linear-gradient(90deg, transparent, var(--gold), transparent);
}

.header-actions{margin-left:auto}
.burger{display:none;margin-left:auto;background:transparent;border:0;cursor:pointer}
.burger span{display:block;width:26px;height:2px;background:#fff;margin:5px 0;opacity:.8}
.mobile-nav{
  display:none;flex-direction:column;gap:10px;
  padding:12px 18px 16px;border-top:1px solid var(--border);
}
body.nav-open .mobile-nav{display:flex}

.hero{
  position:relative;
  min-height:42vh;
  display:flex;
  align-items:center;
  overflow:hidden;
  border-bottom:1px solid var(--border);
}
.hero-video{
  position:absolute;inset:0;width:100%;height:100%;
  object-fit:cover;
  filter:saturate(.95) contrast(1.05);
}
.hero-overlay{
  position:absolute;inset:0;
  background:linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.65));
}
.hero-content{position:relative;z-index:2;padding:70px 0}
.hero h1{font-size:clamp(26px,4vw,44px);margin:0 0 6px}
.hero h2{font-size:clamp(18px,2.3vw,26px);margin:0 0 10px;color:rgba(255,255,255,.92)}
.hero p{margin:0 0 18px;color:var(--muted);max-width:720px}
.hero-cta{display:flex;gap:10px;flex-wrap:wrap}

.section{padding:46px 0}
.section-soft{background:linear-gradient(180deg, rgba(255,255,255,.04), transparent)}
.section-head{display:flex;align-items:center;justify-content:space-between;gap:14px}
.section-title{margin:0 0 14px}

.cards{
  margin-top:16px;
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:16px;
}
.card{
  background:linear-gradient(180deg,var(--panel),var(--panel2));
  border:1px solid var(--border);
  border-radius:var(--radius);
  overflow:hidden;
}
.card-media{position:relative;display:block;height:210px;background:#0b0b0f}
.card-media img{width:100%;height:100%;object-fit:cover;display:block}
.pill{
  position:absolute;right:12px;top:12px;
  padding:6px 10px;border-radius:999px;
  background:rgba(0,0,0,.45);
  border:1px solid rgba(255,255,255,.12);
  font-size:12px;color:rgba(255,255,255,.9);
}
.card-body{padding:14px}
.card-title{font-weight:800;margin-bottom:10px}
.price-row{display:flex;align-items:baseline;gap:10px;margin-bottom:12px}
.price{color:var(--gold);font-weight:900}
.price-old{color:rgba(255,255,255,.55);text-decoration:line-through}

.features{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
  max-width:1100px;
  margin:16px auto 0;
}
.feature{
  display:flex;flex-direction:column;
  padding:18px;
  border:1px solid var(--border);
  border-radius:var(--radius);
  background:linear-gradient(180deg, var(--panel), var(--panel2));
  text-align:center;
}
.feature-icon{
  width:100px;height:100px;margin:0 auto 16px;
  display:flex;align-items:center;justify-content:center;
  background:none;box-shadow:none;border-radius:0;
}
.feature-icon img{width:45px;height:45px;filter:brightness(0) invert(1)}

.brands-section{padding:70px 0}
.brands-title{
  text-align:center;
  letter-spacing:.22em;
  font-weight:900;
  margin:0 0 26px;
  color:var(--gold);
  text-transform:uppercase;
  font-size:clamp(18px, 3vw, 34px);
}
.brands-row{
  display:flex;align-items:center;justify-content:center;
  flex-wrap:wrap;gap:44px;
  max-width:1200px;margin:0 auto;padding:18px 0;
}
.brands-row img{
  height:50px;width:auto;object-fit:contain;
  opacity:.92;
  filter:drop-shadow(0 12px 25px rgba(0,0,0,.45));
  transition:transform .18s ease, opacity .18s ease;
}
.brands-row img:hover{transform:translateY(-3px) scale(1.03);opacity:1}

.btn-discord{display:inline-flex;align-items:center;gap:10px}
.btn-discord::before{
  content:"";
  width:18px;height:18px;display:inline-block;
  background:url("/assets/icons/discord.svg") no-repeat center / contain;
}
.header-actions img{width:22px;height:22px}
.btn-ghost::before{display:none !important}

.site-footer{
  border-top:1px solid var(--border);
  padding:20px 0;
  background:rgba(0,0,0,.25);
}
.footer-inner{display:flex;justify-content:space-between;gap:12px;flex-wrap:wrap}

@media (max-width: 980px){
  .nav{display:none}
  .burger{display:block}
  .header-actions{display:none}
  .cards{grid-template-columns:repeat(2,minmax(0,1fr))}
  .features{grid-template-columns:repeat(2,1fr)}
}
@media (max-width: 620px){
  .cards{grid-template-columns:1fr}
  .features{grid-template-columns:1fr}
}

/* =========================
   SHOP HERO
   ========================= */
.shop-hero{
  position:relative;
  height:42vh;
  min-height:320px;
  overflow:hidden;
  border-bottom:1px solid var(--border);
}
.shop-hero-video{
  position:absolute;inset:0;
  width:100%;height:100%;
  object-fit:cover;
  z-index:0;
  filter:brightness(0.9) contrast(1.1) saturate(1.1);
  animation:shopHeroZoom 20s ease-in-out infinite alternate;
}
.shop-hero-overlay{
  position:absolute;inset:0;
  z-index:1;
  background:linear-gradient(180deg, rgba(0,0,0,0.35), rgba(0,0,0,0.65));
}
.shop-hero-content{
  position:relative;z-index:2;height:100%;
  display:flex;flex-direction:column;justify-content:center;
}
.shop-hero-content h1{margin:0 0 6px;font-size:clamp(28px, 4vw, 40px)}
.shop-hero-content p{margin:0;color:var(--muted)}
@keyframes shopHeroZoom{from{transform:scale(1)}to{transform:scale(1.06)}}
@media (max-width: 768px){
  .shop-hero{height:28vh;min-height:220px}
}

/* =========================
   VEHICULE
   ========================= */

.vehicle-desc{line-height:1.7}

/* Si ton panel utilise des specs */
.specs-title.big{font-size:36px}
.spec-line .label{font-size:18px}
.spec-line .value{font-size:18px;opacity:.9}

/* Form */
.field{display:flex;flex-direction:column;gap:6px;margin-bottom:16px}
.card .field label,
.card .field .muted{
  font-size:13px;
  font-weight:600;
  color:#ffffff !important;
  letter-spacing:.3px;
}

/* Colonne droite = repère */
.vehicle-right{
  position:relative;
  padding-bottom:190px; /* réserve place pour desc + prix */
}

/* PRIX en bas */
.vehicle-right .price.price-bottom{
  position:absolute;
  left:50%;
  bottom:var(--price-bottom);
  transform:translateX(-50%);
  margin:0 !important;
  width:100%;
  text-align:center !important;
  font-size:44px !important;
  font-weight:900 !important;
  color:var(--gold) !important;
  white-space:nowrap;
}

/* DESCRIPTION juste au-dessus du prix */
.vehicle-right .vehicle-desc{
  position:absolute;
  left:50%;
  bottom:var(--desc-bottom);
  transform:translateX(-50%);
  width:100%;
  text-align:center;
}

/* (optionnel) rendre le $ plus petit si tu utilises <span class="currency"> */
.price.price-bottom .currency{
  font-size:26px;
  font-weight:800;
  opacity:.9;
  margin-left:6px;
}

/* Agrandir le symbole $ */
.price.price-bottom .currency{
  font-size: 40px;      /* ← ajuste ici (38 / 42 / 44) */
  font-weight: 900;
  vertical-align: baseline;
  margin-left: -5px;
}

/* ===== SIDEBAR CATEGORIES ===== */
.shop-layout{
  display:grid;
  grid-template-columns: 220px 1fr;
  gap: 26px;
  align-items:start;
}

.shop-cats{
  position: sticky;
  top: 92px;
  padding: 18px 10px;
}

.cat-link{
  display:flex;
  align-items:baseline;
  gap: 8px;
  padding: 10px 8px;
  margin-bottom: 6px;
  color: var(--gold);
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
  opacity: .9;
  border-left: 2px solid transparent;
}

.cat-link:hover{ opacity:1; }

.cat-link.is-active{
  opacity:1;
  border-left-color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 6px;
}

.cat-count{
  color: rgba(212,175,55,.9);
  font-weight: 800;
}

/* Mobile */
@media (max-width: 980px){
  .shop-layout{ grid-template-columns: 1fr; }
  .shop-cats{
    position: relative;
    top: auto;
    display:flex;
    flex-wrap:wrap;
    gap: 10px;
    padding: 0;
    margin-bottom: 14px;
  }
  .cat-link{
    border-left: 0;
    border: 1px solid rgba(255,255,255,.14);
    border-radius: 999px;
    padding: 8px 12px;
    margin: 0;
  }
  .cat-link.is-active{
    border-color: rgba(212,175,55,.55);
    text-decoration: none;
  }
}
/* Barre de recherche boutique */
.search-input{
  width: 360px;        /* ← ajuste : 360 / 400 / 450 */
  max-width: 100%;
}
/* === Recherche boutique avec icône === */
.search-wrap{
  position: relative;
  display: inline-block;
}

.search-input{
  width: 480px;          /* ← plus large (ajuste si besoin) */
  max-width: 100%;
  padding-left: 44px;    /* espace pour l’icône */
  height: 44px;
  font-size: 15px;
}

.search-icon{
  position: absolute;
  left: 450px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  opacity: .75;
  pointer-events: none;
}

.location-box .location-title{
  color: #4e7408 !important;   /* ← mets la couleur que tu veux */
  margin-left: 70px;
}


