:root{
  --blue:#87CEEB;
  --blue-2:#87CEEB;
  --red:#e1000f;
  --white:#ffffff;

  --text:#0f172a;
  --muted:#475569;
  --bg:#ffffff;
  --card:#ffffff;
  --ring: rgba(2,6,23,.08);
  --shadow: 0 18px 40px rgba(2,6,23,.14);
  --radius: 18px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
margin:0;
font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
color:var(--text);
background:var(--bg);
}
a{color:inherit;text-decoration:none}
.container{max-width:1200px;margin:0 auto;padding:0 20px}

/* Top warning bar */
.warning{
border-bottom:1px solid rgba(2,6,23,.08);
background:#fff;
}
.warning .inner{
padding:14px 0;
text-align:center;
font-weight:800;
letter-spacing:.2px;
text-transform:uppercase;
font-size:14px;
line-height:1.25;
}
.warning .inner span{
display:block;
text-transform:none;
font-weight:700;
letter-spacing:0;
margin-top:2px;
}

/* Navbar */
.nav{
  position:sticky; 
  top:0; 
  z-index:50;
  background: linear-gradient(180deg, var(--blue), #87CEEB);
  color:var(--white);
  
}

.nav .row{
display:flex; align-items:center; justify-content:revert;
height:64px;
gap:14px;
}




.brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand .logo {
  display: flex;
  align-items: center;
}

/* taille du logo */
.brand .logo img{
  height: 34px;   /* ajuste: 28-40px selon ton logo */
  width: auto;
  display: block;
}

.brand .word{font-size:18px}
.menu{
display:flex; align-items:center; gap:18px;
font-weight:700;
font-size:14px;
opacity:.95;
}
.menu a{
  padding:10px 8px;
  border-radius:0;
  font-weight:700;
  color:#fff;
}

.dropdown{ position:relative; display:inline-flex; align-items:center; }

.dropbtn{
  appearance:none;
  -webkit-appearance:none;
  background:transparent;      /* <-- enlève le fond gris */
  border:0;                    /* <-- enlève la bordure */
  color:#fff;                  /* <-- même couleur que le menu */
  font:inherit;
  font-weight:700;
  cursor:pointer;
  padding:10px 8px;
  border: radius 0;;
  display:inline-flex;
  align-items:center;
  gap:8px;
}
.dropbtn:hover{ background: rgba(255,255,255,.14); }

.dropdown-menu{
  position:absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 200px;
  background:#fff;
  color:#0f172a;
  border:1px solid rgba(2,6,23,.10);
  box-shadow: 0 18px 40px rgba(2,6,23,.18);
  padding:8px;
  display:none;
  z-index:999;
}

.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu,
.dropdown.open .dropdown-menu{
  display:block;
}

.dropdown-menu a{
  display:block;
  padding:10px 12px;
  border-radius:0;
  font-weight:700;
  color:#0f172a;
}
.dropdown-menu a:hover{
  background: rgba(0,0,145,.08);
}

.menu a:hover{ background: rgba(255,255,255,.14); }
.nav-actions{
margin-left:auto;
  display:flex;
  gap:10px;
}

.icon-btn{
width:40px;height:40px;border-radius:0;
display:grid;place-items:center;
background:rgba(255,255,255,.16);
border:1px solid rgba(255,255,255,.18);
cursor:pointer;
}
.icon-btn:hover{background:rgba(255,255,255,.22)}
.burger{display:none}

/* Mobile menu drawer */
.drawer{
display:none;
background:linear-gradient(0deg, var(--green), var(--green));
color:#fff;
border-top:1px solid rgba(255,255,255,.12);
padding:12px 0 18px;
}
.drawer a{
display:block;
padding:12px 14px;
border-radius:0;
font-weight:800;
}
.drawer a:hover{background:rgba(255,255,255,.14)}

/* HERO */
.hero{
position:relative;
overflow:hidden;
min-height: calc(100vh - 64px - 60px);
display:flex;
align-items:center;
padding:42px 0 64px;
}
/* “cloudy” orange/yellow background */
.hero::before{
  content:"";
  position:absolute; 
  inset:0;
  background:
    radial-gradient(1000px 600px at 40% 30%, rgba(255,255,255,.35), transparent 60%),
    radial-gradient(800px 500px at 75% 45%, rgba(255,255,255,.25), transparent 62%),
    linear-gradient(180deg, var(--blue) 0%, #001f6b 60%, var(--white) 100%);
}

/* subtle noise */
.hero::after{
content:"";
position:absolute; inset:-60px;
background-image:url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E");
opacity:.12;
mix-blend-mode:multiply;
pointer-events:none;
}

.hero .grid{
position:relative;
display:grid;
grid-template-columns: 1.1fr .9fr;
gap:38px;
align-items:center;
}

.kicker{
display:inline-flex;
gap:10px;
align-items:center;
background:rgba(255,255,255,.55);
border:1px solid rgba(2,6,23,.08);
padding:10px 14px;
border-radius:999px;
font-weight:800;
backdrop-filter: blur(6px);
}
.dot{
width:10px;height:10px;border-radius:99px;
background:var(--green-2);
box-shadow:0 0 0 5px rgba(11,177,74,.18);
}

h1{
margin:14px 0 12px;
font-size: clamp(38px, 4vw, 64px);
line-height:1.02;
letter-spacing:-1px;
text-transform:uppercase;
}
h1 .outline{
  -webkit-text-stroke: 6px rgba(255,255,255,.75);
  paint-order: stroke fill;
  color: var(--blue);
  text-shadow: 0 14px 32px rgba(0,0,145,.25);
}

.sub{
color:rgba(2,6,23,.72);
font-weight:700;
font-size:16px;
max-width:48ch;
line-height:1.6;
margin: 10px 0 20px;
}

.cta-row{display:flex;gap:12px;flex-wrap:wrap}
.btn{
display:inline-flex; align-items:center; justify-content:center;
height:48px; padding:0 18px;
border-radius:16px;
border:1px solid rgba(2,6,23,.08);
background:rgba(255,255,255,.72);
font-weight:900;
box-shadow: 0 14px 28px rgba(2,6,23,.12);
backdrop-filter: blur(8px);
}
.btn.primary{
  background: linear-gradient(180deg, var(--blue), #00006b);
  color: var(--white);
  border: none;
}
.btn.primary:hover{
  background: linear-gradient(180deg, var(--red), #a0000a);
}

.btn:hover{transform: translateY(-1px)}
.btn:active{transform: translateY(0px)}

/* Right visual card */
.showcase{
position:relative;
display:grid;
place-items:center;
}
.product-cluster{
width:min(420px, 100%);
aspect-ratio: 1 / 1;
position:relative;
filter: drop-shadow(0 22px 38px rgba(2,6,23,.22));
}
.device{
position:absolute;
width:56%;
height:72%;
border-radius: 28px;
background: linear-gradient(180deg, #1bd460, #0a8f3a);
box-shadow: inset 0 0 0 2px rgba(255,255,255,.16);
overflow:hidden;
}
.device::before{
content:"";
position:absolute; inset:12px 12px auto 12px;
height:18%;
border-radius: 18px;
background: rgba(255,255,255,.35);
filter: blur(.2px);
}
.screen{
position:absolute;
left:14%; top:34%;
width:72%; height:44%;
border-radius: 20px;
background: linear-gradient(180deg, rgba(2,6,23,.16), rgba(2,6,23,.28));
box-shadow: inset 0 0 0 2px rgba(255,255,255,.10);
}
.label{
position:absolute; left:14%; bottom:12%;
font-weight:1000;
text-transform:uppercase;
letter-spacing:.6px;
color:rgba(255,255,255,.92);
font-size:12px;
opacity:.95;
}
.device.one{transform: rotate(-16deg) translate(-16%, 6%)}
.device.two{transform: rotate(10deg) translate(16%, -2%); opacity:.96}
.device.three{transform: rotate(26deg) translate(30%, 20%); width:48%; height:64%; opacity:.92}

.ice{
position:absolute;
width:68px;height:68px;
border-radius:18px;
background: rgba(255,255,255,.55);
box-shadow: inset 0 0 0 2px rgba(255,255,255,.45);
backdrop-filter: blur(3px);
transform: rotate(16deg);
left:44%; top:42%;
}

/* Floating “fruit” bubbles */
.float{
position:absolute;
width:64px;height:64px;
border-radius:999px;
background: rgba(255,255,255,.55);
border:1px solid rgba(2,6,23,.08);
backdrop-filter: blur(6px);
display:grid;place-items:center;
font-size:28px;
box-shadow: 0 18px 40px rgba(2,6,23,.14);
animation: bob 5.5s ease-in-out infinite;
}
.float.f1{left:-12px; top:20%; animation-delay:.2s}
.float.f2{right:-10px; top:26%; animation-delay:1.1s}
.float.f3{left:26%; bottom:-12px; animation-delay:2.2s}
@keyframes bob{
0%,100%{transform: translateY(0)}
50%{transform: translateY(-10px)}
}

/* Section below hero */
.section{
padding:56px 0;
background:#fff;
}
.section h2{
margin:0 0 10px;
font-size:28px;
letter-spacing:-.2px;
}
.section p{margin:0 0 18px; color:var(--muted); font-weight:650; line-height:1.7}
.cards{
display:grid;
grid-template-columns: repeat(3, 1fr);
gap:16px;
}
.card{
background:var(--card);
border:1px solid rgba(2,6,23,.08);
border-radius: var(--radius);
padding:16px;
box-shadow: 0 10px 22px rgba(2,6,23,.06);
}
.card .tag{
display:inline-flex; align-items:center; gap:8px;
padding:8px 10px;
border-radius:999px;
background: rgba(10,143,58,.10);
color: var(--green);
font-weight:900;
font-size:12px;
border:1px solid rgba(10,143,58,.18);
}
.card h3{margin:10px 0 6px; font-size:16px}
.card .meta{color:var(--muted); font-weight:650; font-size:14px; line-height:1.55}
.card .row{
display:flex; align-items:center; justify-content:space-between;
margin-top:14px;
}
.price{font-weight:1000}
.mini{
height:40px; padding:0 12px; border-radius:14px;
font-weight:900;
border:1px solid rgba(2,6,23,.10);
background: #fff;
cursor:pointer;
}
.mini.primary{
  background: var(--red);
  color:#fff;
  border:none;
}
.mini.primary:hover{
  background:#b8000c;
}

footer{
padding:30px 0;
border-top:1px solid rgba(2,6,23,.08);
color:rgba(2,6,23,.68);
font-weight:650;
background:#fff;
}

/* Responsive */
@media (max-width: 940px){
.hero .grid{grid-template-columns: 1fr; gap:26px}
.showcase{order:-1}
.cards{grid-template-columns: 1fr}
.menu{display:none}
.burger{display:grid}
.drawer.open{display:block}
.hero{min-height:auto}
}

.warning-box {
  border: 3px solid var(--red);
  background-color: #fff5f5;
  color: var(--red);
  padding: 20px;
  border-radius: 12px;
  max-width: 600px;
  margin: 20px auto;
  font-weight: 700;
}

.warning-box strong {
  display: block;
  font-size: 18px;
  margin-bottom: 8px;
}


.warning-label {
    width: calc(100% - 40px); /* réduit la largeur */
    margin: 10px;             /* espace autour */
    background: #fff;
    border: 2px solid #101010;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 10px;
    box-sizing: border-box;
}

/* =========================================================
   ✅ COLLECTION (version simple sans toolbar/tri/avis/prix)
   ========================================================= */

.collection{
  background:#fff;
  padding: 36px 0 70px;
}

.collection-head{
  text-align:center;
  padding: 20px 0 26px;
  border-bottom: 1px solid rgba(2,6,23,.10);
  margin-bottom: 22px;
}

.collection-head h1{
  margin:0;
  font-size: 36px;
  letter-spacing: -0.6px;
  text-transform:none;
  color:#0f172a;
}

.collection-head p{
  margin:10px auto 0;
  max-width: 72ch;
  color: rgba(2,6,23,.70);
  font-weight: 600;
  line-height: 1.6;
}

/* ✅ on cache/neutralise l’ancienne toolbar si elle existe encore en HTML */
.collection-toolbar{ display:none !important; }

/* Product grid */
.product-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.product-card{.product-gallery img
  overflow: visible;
  background:#fff;
  padding: 12px 12px 14px;
  display:flex;
  flex-direction:column;
  min-height: 420px; /* plus petit car plus de prix/avis */
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

.product-card:hover{
  transform: translateY(-2px);
  border-color: rgba(0,0,145,.22);
  
}

/* Assure une zone image "relative" */
.product-image{
  position: relative;
  height: 380px; /* garde ta contrainte de taille */
  display:flex;
  align-items:center;
  justify-content:center;
  overflow: visible;
  background:#fff;
}

/* L'image produit au-dessus */
.product-image img{
  position: relative;
  z-index: 2;
  max-height: 100%;
  width: auto;
  object-fit: contain;
  transition: transform .25s ease, filter .25s ease;
}

.product-card:hover .product-image img{
  transform: scale(1.08);
}


.product-title{
  margin: 2px 0 10px;
  font-size: 15px;
  line-height: 1.25;
  font-weight: 900;
  letter-spacing: .2px;
  text-transform: uppercase;
  color:#0f172a;
  text-align: center;
}

/* ✅ bouton simple */
.product-cta{
  margin-top:auto;
  height:40px;

  display:flex;
  align-items:center;
  justify-content:center;

  width:100%;

  border-radius:999px;
  border:1px solid rgba(2,6,23,.14);
  background:#111;
  color:#fff;
  font-weight:900;
  cursor:pointer;
}

.product-cta:hover{
  filter:brightness(1.05);
}


/* ✅ Responsive */
@media (max-width: 1200px){
  .product-grid{grid-template-columns: repeat(4, 1fr);}
}
@media (max-width: 980px){
  .product-grid{grid-template-columns: repeat(2, 1fr);}
}
@media (max-width: 560px){
  .product-grid{grid-template-columns: 1fr;}
}

.breadcrumbs{
  background: #f4f5f7;
  border-bottom: 1px solid rgba(2,6,23,.08);
}

.breadcrumbs nav{
  height: 52px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: rgba(2,6,23,.65);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.breadcrumbs a{
  color: rgba(2,6,23,.65);
  font-weight: 650;
}

.breadcrumbs a:hover{
  color: var(--blue);
  text-decoration: underline;
}

.breadcrumbs .sep{
  opacity: .55;
}

.breadcrumbs .current{
  color: rgba(2,6,23,.80);
  font-weight: 800;
}

.view{ display:none; }
.view.active{ display:block; }

.view{ display:none; }
.view.active{ display:block; }

.product-page{
  padding-top: 14px;
}

.back-btn{
  background: transparent;
  border: 0;
  color: rgba(2,6,23,.70);
  font-weight: 800;
  cursor: pointer;
  padding: 10px 0;
  font-size: 14px;
  transition: color .2s ease, transform .2s ease;
}

.back-btn:hover{
  color: var(--blue);
  transform: translateX(-2px);
}

.product-layout{
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 28px;
  margin-top: 12px;
  align-items: center;
  background: #fff;
  border: 1px solid rgba(2,6,23,.08);
  border-radius: 22px;
  padding: 28px;
  box-shadow: 0 18px 40px rgba(2,6,23,.08);
}

.product-gallery{
  border: 1px solid rgba(2,6,23,.08);
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  display: grid;
  place-items: center;
  min-height: 460px;
  padding: 24px;
  overflow: hidden;
}

.product-gallery img{
  width: 100%;
  max-width: 420px;
  max-height: 460px;
  object-fit: contain;
  display: block;
  transition: transform .3s ease;
}

.product-gallery:hover img{
  transform: scale(1.03);
}

.product-info{
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.product-h1{
  margin: 0;
  font-size: 34px;
  line-height: 1.1;
  letter-spacing: -0.8px;
  text-transform: none;
  color: #0f172a;
}

.product-desc{
  margin: 0;
  color: rgba(2,6,23,.72);
  line-height: 1.75;
  font-weight: 650;
  font-size: 15px;
}

.contact-box{
  margin-top: 6px;
  padding: 18px;
  border: 1px solid rgba(2,6,23,.10);
  border-radius: 16px;
  background: #f8fafc;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-box p{
  margin: 0;
  color: rgba(2,6,23,.78);
  font-weight: 700;
  line-height: 1.6;
}

.contact-box a[href^="mailto:"]{
  color: var(--red);
  font-weight: 900;
}

.contact-box a[href^="mailto:"]:hover{
  text-decoration: underline;
}

.contact-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 14px;
  background: linear-gradient(180deg, #25D366, #1ebe5b);
  color: #fff;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 14px 28px rgba(37,211,102,.22);
  transition: transform .2s ease, box-shadow .2s ease, filter .2s ease;
}

.contact-btn:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 32px rgba(37,211,102,.28);
  filter: brightness(1.02);
}

@media (max-width: 980px){
  .product-layout{
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .product-gallery{
    min-height: 340px;
  }

  .product-h1{
    font-size: 28px;
  }
}

@media (max-width: 560px){
  .product-layout{
    gap: 18px;
    padding: 16px;
    border-radius: 16px;
  }

  .product-gallery{
    min-height: 260px;
    padding: 16px;
    border-radius: 14px;
  }

  .product-h1{
    font-size: 24px;
  }

  .product-desc{
    font-size: 14px;
  }

  .contact-box{
    padding: 14px;
    border-radius: 14px;
  }

  .contact-btn{
    width: 100%;
  }
}


/* ===== HOME LAYOUT ===== */
.home{
  background:#fff;
  padding: 26px 0 60px;
}

/* HERO BANNER */
.home-hero{
  position:relative;
  display:block;
  width:100%;
  border-radius: 14px;
  overflow:hidden;
  border: 1px solid rgba(2,6,23,.10);
  background:#fff;
  aspect-ratio: 16 / 6;              /* format wide comme la capture */
}

.home-hero img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}

.home-hero-overlay{
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding: 36px;
  color:#fff;
  background: linear-gradient(90deg, rgba(0,0,0,.45) 0%, rgba(0,0,0,.12) 55%, rgba(0,0,0,0) 75%);
}

.home-hero-overlay .pill{
  display:inline-flex;
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.22);
  border: 1px solid rgba(255,255,255,.22);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .4px;
  font-size: 12px;
}

.home-hero-overlay h2{
  margin: 12px 0 8px;
  font-size: clamp(28px, 3.2vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.6px;
}

.home-hero-overlay p{
  margin: 0 0 14px;
  font-weight: 700;
  opacity: .92;
}

.home-hero-overlay .cta{
  display:inline-flex;
  width: fit-content;
  margin-top: 4px;
  padding: 12px 18px;
  border-radius: 999px;
  background: #fff;
  color:#111;
  font-weight: 900;
}

/* 3 BLOCS */
.home-grid{
  margin-top: 16px;
  display:grid;
  grid-template-columns: 1.6fr 1fr 1fr; /* un grand + 2 petits */
  gap: 16px;
}

.home-card{
  position:relative;
  border-radius: 14px;
  overflow:hidden;
  border: 1px solid rgba(2,6,23,.10);
  background:#fff;
  aspect-ratio: 16 / 10;
  display:block;
}

.home-card.big{
  aspect-ratio: 16 / 9;
}

.home-card img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}

.home-card-overlay{
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding: 18px;
  background: linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(0,0,0,.45) 100%);
  color:#fff;
}

.home-card-overlay h3{
  margin:0 0 10px;
  font-size: 22px;
  font-weight: 1000;
  letter-spacing: -.2px;
}

.home-card-overlay .cta{
  display:inline-flex;
  width: fit-content;
  padding: 10px 16px;
  border-radius: 999px;
  background: #fff;
  color:#111;
  font-weight: 900;
}

/* Hover */
.home-hero, .home-card{
  transition: transform .18s ease, box-shadow .18s ease;
}
.home-hero:hover, .home-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(2,6,23,.12);
}

/* Responsive */
@media (max-width: 980px){
  .home-hero{aspect-ratio: 16 / 8;}
  .home-grid{grid-template-columns: 1fr; }
  .home-card, .home-card.big{aspect-ratio: 16 / 9;}
  .home-hero-overlay{padding: 20px;}
}


/* Page revendeurs */
.dealers{
  background:#fff;
  padding: 30px 0 70px;
}

.dealers-head{
  text-align:center;
  padding: 20px 0 20px;
}

.dealers-head h1{
  margin:0;
  font-size: 36px;
  letter-spacing:-.6px;
}

.dealers-head p{
  margin:10px auto 0;
  max-width: 80ch;
  color: rgba(2,6,23,.70);
  font-weight: 650;
  line-height: 1.6;
}

.dealers-layout{
  display:grid;
  grid-template-columns: 360px 1fr;
  gap: 16px;
  align-items: stretch;
  margin-top: 18px;
}

/* Panel */
.dealers-panel{
  border: 1px solid rgba(2,6,23,.10);
  border-radius: 14px;
  background:#fff;
  padding: 12px;
  box-shadow: 0 10px 22px rgba(2,6,23,.06);
  display:flex;
  flex-direction:column;
  min-height: 560px;
}

.search input{
  width:100%;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(2,6,23,.14);
  padding: 0 12px;
  font-weight: 700;
  outline: none;
}
.search input:focus{
  border-color: rgba(0,0,145,.45);
  box-shadow: 0 0 0 4px rgba(0,0,145,.12);
}

.filters{
  display:flex;
  gap:10px;
  padding: 12px 0;
  flex-wrap:wrap;
}

.chip{
  height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(2,6,23,.14);
  background:#fff;
  font-weight: 800;
  cursor:pointer;
}
.chip.active{
  border-color: rgba(0,0,145,.35);
  box-shadow: 0 0 0 4px rgba(0,0,145,.10);
}

/* Liste */
.dealers-list{
  margin-top: 6px;
  overflow:auto;
  padding-right: 4px;
}

.dealer-item{
  width:100%;
  text-align:left;
  border: 1px solid rgba(2,6,23,.10);
  background:#fff;
  border-radius: 14px;
  padding: 12px;
  cursor:pointer;
  margin-bottom: 10px;
}
.dealer-item:hover{
  box-shadow: 0 10px 18px rgba(2,6,23,.08);
}

.dealer-top{
  display:flex;
  gap:10px;
  align-items:center;
  justify-content:space-between;
}

.dealer-name{
  font-weight: 950;
}

.dealer-meta{
  color: rgba(2,6,23,.72);
  font-weight: 650;
  margin-top: 6px;
  font-size: 14px;
}

.dealer-badge{
  font-size: 12px;
  font-weight: 900;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(2,6,23,.12);
}
.dealer-badge.shop{
  color:#000091;
  background: rgba(0,0,145,.08);
  border-color: rgba(0,0,145,.18);
}
.dealer-badge.kiosk{
  color:#e1000f;
  background: rgba(225,0,15,.08);
  border-color: rgba(225,0,15,.18);
}

.dealer-empty{
  padding: 18px 10px;
  color: rgba(2,6,23,.65);
  font-weight: 700;
}

/* Map */
.dealers-map{
  border: 1px solid rgba(2,6,23,.10);
  border-radius: 14px;
  overflow:hidden;
  box-shadow: 0 10px 22px rgba(2,6,23,.06);
  min-height: 560px;
  background:#f8fafc;
}

#map{
  width:100%;
  height: 560px;
}

/* responsive */
@media (max-width: 980px){
  .dealers-layout{ grid-template-columns: 1fr; }
  #map{ height: 420px; }
  .dealers-panel{ min-height: auto; }
}

/* Age Gate */
.age-gate{
  position:fixed;
  inset:0;
  z-index:9999;
  display:none; /* affiché via JS */
}

.age-gate.is-open{ display:block; }

.age-gate__backdrop{
  position:absolute;
  inset:0;
  background: rgba(2,6,23,.65);
  backdrop-filter: blur(6px);
}

.age-gate__modal{
  position:relative;
  max-width: 520px;
  margin: 10vh auto;
  background:#fff;
  border-radius: 18px;
  padding: 18px 18px 14px;
  border: 1px solid rgba(2,6,23,.12);
  box-shadow: 0 24px 60px rgba(2,6,23,.35);
}

.age-gate__modal h2{
  margin:0 0 10px;
  font-size: 22px;
  letter-spacing: -.2px;
}

.age-gate__modal p{
  margin:0;
  color: rgba(2,6,23,.78);
  font-weight: 650;
  line-height: 1.6;
}

.age-gate__actions{
  display:flex;
  gap:10px;
  margin-top: 14px;
  flex-wrap: wrap;
}

.age-btn{
  height: 44px;
  padding: 0 14px;
  border-radius: 14px;
  border: 1px solid rgba(2,6,23,.14);
  background:#fff;
  font-weight: 900;
  cursor:pointer;
}

.age-btn.primary{
  background: #000091;
  border-color: rgba(0,0,145,.35);
  color:#fff;
}

.age-btn.primary:hover{ filter: brightness(1.05); }
.age-btn:hover{ background: rgba(2,6,23,.04); }

.age-gate__minor{
  margin-top: 12px;
  color: #e1000f;
  font-weight: 900;
}

.age-gate__footer{
  margin-top: 10px;
  color: rgba(2,6,23,.55);
  font-weight: 650;
}

/* Bloquer le scroll quand le popup est ouvert */
body.modal-open{
  overflow:hidden;
}


/* Fond fruit (pseudo-element) */
.product-card[data-fruit] .product-image::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;

  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: 100%;

  opacity: 0;
  transform: translateY(20px) scale(.95); /* état avant hover */
  transition: opacity .35s ease;          /* <-- opacité seulement */
}

/* CERISE */
.product-card[data-fruit="cerise"] .product-image::before{
  background-image: url("anim/cerise_anim.png");
}

/* FRAMBOISE */
.product-card[data-fruit="framboise"] .product-image::before{
  background-image: url("anim/framboise_anim.png");
}

/* MANGUE */
.product-card[data-fruit="mangue"] .product-image::before{
  background-image: url("anim/mangue_anim.png");
}

/* MYRTILLE */
.product-card[data-fruit="myrtille"] .product-image::before{
  background-image: url("anim/myrtille_anim.png");
}

/* PASTÈQUE */
.product-card[data-fruit="pasteque"] .product-image::before{
  background-image: url("anim/pasteque_anim.png");
}


/* Hover : on révèle le fond + petit effet sur le produit */
.product-card[data-fruit]:hover .product-image::before{
  opacity: 1;
  animation: floatFruit 2.8s ease-in-out infinite;
}

.product-card[data-fruit]:hover .product-image img{
  transform: scale(1); /* pas de zoom => plus de coupe */
  filter: drop-shadow(0 18px 22px rgba(2,6,23,.16));
}
/* Optionnel: petit voile blanc pour garder la lisibilité */
.product-card[data-fruit] .product-image::after{
  content:"";
  position:absolute;
  inset:0;
  z-index: 1;
  background: rgba(255,255,255,.0);
  transition: background .25s ease;
}

.product-card[data-fruit]:hover .product-image::after{
  background: rgba(255,255,255,.20); /* augmente si tu veux plus “soft” */
}

@keyframes floatFruit {
  0%   { transform: translateY(0) rotate(-2deg) scale(1); }
  50%  { transform: translateY(-10px) rotate(2deg)  scale(1.02); }
  100% { transform: translateY(0) rotate(-2deg) scale(1); }
}

.product-card[data-fruit]:hover .product-image img{
  animation: floatDevice 2.8s ease-in-out infinite;
  filter: drop-shadow(0 18px 22px rgba(2,6,23,.16));
}

.text-marquee{
  width:100%;
  overflow:hidden;
  background:#87CEEB;
  padding:22px 0;
}

.text-marquee-track{
  display:flex;
  width:max-content;
  animation:marqueeRight 25s linear infinite;
}

.text-marquee-track span{
  font-size:clamp(40px,6vw,90px);
  font-weight:900;
  font-style:italic;
  color:#ffffff;   /* couleur plus contrastée */
  padding-right:80px;
  white-space:nowrap;
  opacity:0.85;
}

@keyframes marqueeRight{
  from{transform:translateX(-50%)}
  to{transform:translateX(0)}
}
.home{
  background:#f3f4f6;
  padding:0 0 40px;
}

/* HERO */
.hero-home {
  width: 100%;
  overflow: hidden;
}

.hero-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.hero-slides {
  position: relative;
  width: 100%;
  height: 70vh; /* hauteur du banner */
  min-height: 400px;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease;
  display: block;
}

.hero-slide.active {
  opacity: 1;
  visibility: visible;
  z-index: 1;
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 40px;
  background: rgba(0, 0, 0, 0.25);
}

.hero-content {
  max-width: 600px;
  color: white;
  z-index: 2;
}

.hero-content h1,
.hero-content h2 {
  font-size: clamp(28px, 5vw, 56px);
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero-content p {
  font-size: clamp(14px, 2vw, 20px);
  line-height: 1.5;
}

.hero-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background: white;
  color: black;
  border-radius: 999px;
  font-weight: bold;
}

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
}

.hero-arrow.prev {
  left: 15px;
}

.hero-arrow.next {
  right: 15px;
}

.hero-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

@media (max-width: 768px) {
  .hero-slides {
    height: 55vh;
    min-height: 320px;
  }

  .hero-overlay {
    padding: 20px;
    align-items: flex-end;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-content h1,
  .hero-content h2 {
    font-size: 28px;
  }

  .hero-content p {
    font-size: 15px;
  }
}

/* sections */
.home-brand,
.home-collections,
.home-features,
.home-guide,
.home-faq{
  padding:72px 0 0;
}

.brand-card{
  max-width:920px;
  margin:0 auto;
  background:#fff;
  border:1px solid rgba(2,6,23,.08);
  border-radius:28px;
  padding:42px;
  text-align:center;
  box-shadow:0 16px 34px rgba(2,6,23,.06);
}

.section-head{
  text-align:center;
  margin-bottom:24px;
}

.section-tag{
  margin:0 0 10px;
  font-size:13px;
  font-weight:900;
  letter-spacing:2px;
  text-transform:uppercase;
  color:var(--blue);
}

.section-title{
  margin:0;
  font-size:clamp(28px, 3vw, 48px);
  line-height:1.12;
  letter-spacing:-.8px;
  color:#0f172a;
  text-transform:none;
}

.section-text{
  max-width:760px;
  margin:16px auto 0;
  color:rgba(2,6,23,.72);
  font-size:17px;
  line-height:1.8;
  font-weight:600;
}

.main-cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:220px;
  height:54px;
  margin-top:26px;
  padding:0 24px;
  border-radius:999px;
  background:linear-gradient(180deg, var(--blue), #5eb5d8);
  color:#fff;
  font-weight:900;
  text-decoration:none;
  box-shadow:0 14px 28px rgba(135,206,235,.28);
}

/* collections */
.collection-grid{
  display:grid;
  grid-template-columns:1.3fr 1fr 1fr;
  gap:18px;
}

.collection-card{
  position:relative;
  min-height:420px;
  border-radius:22px;
  overflow:hidden;
  display:block;
  box-shadow:0 16px 34px rgba(2,6,23,.10);
}

.collection-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  transition:transform .35s ease;
}

.collection-card:hover img{
  transform:scale(1.04);
}

.collection-overlay{
  position:absolute;
  inset:0;
  display:flex;
  flex-direction:column;
  justify-content:flex-end;
  padding:24px;
  color:#fff;
  background:linear-gradient(180deg, rgba(0,0,0,0) 35%, rgba(0,0,0,.60) 100%);
}

.collection-overlay h3{
  margin:0 0 8px;
  font-size:28px;
  font-weight:1000;
}

.collection-overlay p{
  margin:0 0 14px;
  font-weight:600;
  line-height:1.65;
  color:rgba(255,255,255,.92);
}

.collection-overlay span{
  display:inline-flex;
  width:fit-content;
  padding:10px 16px;
  border-radius:999px;
  background:#fff;
  color:#111;
  font-weight:900;
}

/* features */
.feature-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:18px;
}

.feature-card{
  background:#fff;
  border:1px solid rgba(2,6,23,.08);
  border-radius:22px;
  padding:26px;
  box-shadow:0 12px 28px rgba(2,6,23,.05);
}

.feature-card h3{
  margin:0 0 12px;
  font-size:20px;
  color:#0f172a;
}

.feature-card p{
  margin:0;
  color:rgba(2,6,23,.72);
  line-height:1.75;
  font-weight:600;
}

/* guide */
.guide-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:18px;
}

.guide-card{
  overflow:hidden;
  border-radius:22px;
  background:#fff;
  box-shadow:0 16px 34px rgba(2,6,23,.08);
}

.guide-card img{
  width:100%;
  height:260px;
  object-fit:cover;
  display:block;
}

.guide-card-body{
  padding:22px;
}

.guide-card-body h3{
  margin:0 0 16px;
  font-size:22px;
  line-height:1.4;
  color:#0f172a;
}

.guide-card-body a{
  font-weight:900;
  color:var(--blue);
}

/* faq */
.faq-list{
  max-width:900px;
  margin:0 auto;
  display:grid;
  gap:14px;
}

.faq-item{
  background:#fff;
  border:1px solid rgba(2,6,23,.08);
  border-radius:18px;
  padding:18px 20px;
  box-shadow:0 10px 22px rgba(2,6,23,.05);
}

.faq-item summary{
  cursor:pointer;
  font-weight:900;
  color:#0f172a;
  list-style:none;
}

.faq-item summary::-webkit-details-marker{
  display:none;
}

.faq-item p{
  margin:14px 0 0;
  color:rgba(2,6,23,.72);
  line-height:1.75;
  font-weight:600;
}

/* marquee */
.text-marquee{
  width:100%;
  overflow:hidden;
  background:#ffffff;
  padding:18px 0;
}

.text-marquee-track{
  display:flex;
  width:max-content;
  animation:marqueeRight 22s linear infinite;
}

.text-marquee-track span{
  white-space:nowrap;
  padding-right:70px;
  font-size:clamp(28px, 5vw, 74px);
  font-weight:900;
  font-style:italic;
  line-height:1;
  color:#5eb5d8;
  opacity:.95;
}

@keyframes marqueeRight{
  from{ transform:translateX(-50%); }
  to{ transform:translateX(0); }
}

/* responsive */
@media (max-width: 1100px){
  .collection-grid{
    grid-template-columns:1fr;
  }

  .feature-grid{
    grid-template-columns:repeat(2, 1fr);
  }

  .guide-grid{
    grid-template-columns:1fr;
  }
}

@media (max-width: 780px){
  .hero-slider{
    height:78vh;
    min-height:420px;
  }

  .hero-content{
    padding:0 24px;
  }

  .hero-content p{
    font-size:15px;
  }

  .brand-card{
    padding:28px 20px;
    border-radius:20px;
  }

  .feature-grid{
    grid-template-columns:1fr;
  }
}

@media (max-width: 560px){
  .hero-slider{
    height:72vh;
    min-height:360px;
  }

  .hero-arrow{
    width:42px;
    height:42px;
    font-size:28px;
  }

  .hero-arrow.prev{ left:10px; }
  .hero-arrow.next{ right:10px; }

  .hero-dots{
    bottom:14px;
  }

  .hero-content h1,
  .hero-content h2{
    font-size:30px;
  }

  .hero-btn{
    min-width:180px;
    height:48px;
    font-size:14px;
  }

  .collection-card{
    min-height:300px;
  }

  .guide-card img{
    height:220px;
  }

  .text-marquee{
    margin-top:44px;
    padding:14px 0;
  }

  .text-marquee-track span{
    font-size:clamp(24px, 8vw, 44px);
    padding-right:40px;
  }
}

.page{
  padding:80px 0;
}

.page-head{
  text-align:center;
  margin-bottom:40px;
}

.page-head h1{
  font-size:42px;
  margin-bottom:10px;
}

.page-head p{
  color:#666;
}

.team-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:30px;
}

.team-card{
  text-align:center;
  background:#fff;
  padding:25px;
  border-radius:12px;
  box-shadow:0 10px 30px rgba(0,0,0,0.05);
}

.team-card img{
  width:120px;
  height:120px;
  object-fit:cover;
  border-radius:50%;
  margin-bottom:15px;
}

.contact-layout{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
  margin-top:40px;
}

.contact-form{
  display:flex;
  flex-direction:column;
  gap:15px;
}

.contact-form input,
.contact-form textarea{
  padding:12px;
  border:1px solid #ddd;
  border-radius:6px;
}

.contact-form button{
  background:#1b1b1b;
  color:#fff;
  border:none;
  padding:12px;
  border-radius:6px;
  cursor:pointer;
}

@media (max-width:800px){
  .contact-layout{
    grid-template-columns:1fr;
  }
}

/* TOP WARNING */
.top-warning{
  background:#000;
  color:#d7ff00;
  text-align:center;
  font-size:14px;
  font-weight:800;
  padding:10px 16px;
  line-height:1.4;
}

/* TOP INFO BAR */
.top-info{
  background:#f3f3f3;
  border-bottom:1px solid rgba(0,0,0,.08);
}

.top-info-row{
  min-height:40px;
  display:grid;
  grid-template-columns: 1fr auto 1fr;
  align-items:center;
  gap:16px;
}

.top-info-left,
.top-info-center,
.top-info-right{
  font-size:14px;
  color:#111;
  font-weight:600;
}

.top-info-left{
  display:flex;
  align-items:center;
  gap:8px;
}

.top-info-center{
  text-align:center;
}

.top-info-right{
  display:flex;
  justify-content:flex-end;
}

.top-info-right a,
.top-info-left a{
  color:#111;
  text-decoration:none;
}

.top-info-right a:hover,
.top-info-left a:hover{
  text-decoration:underline;
}

.top-mail-icon{
  font-size:14px;
  line-height:1;
}

/* MOBILE */
@media (max-width: 900px){
  .top-info-row{
    grid-template-columns: 1fr;
    text-align:center;
    padding:10px 0;
  }

  .top-info-left,
  .top-info-right{
    justify-content:center;
  }

  .top-info-center{
    order:-1;
  }
}

@media (max-width: 560px){
  .top-warning{
    font-size:12px;
    padding:8px 12px;
  }

  .top-info-left,
  .top-info-center,
  .top-info-right{
    font-size:13px;
  }
}