:root{
  --bg:#0f2a1b;
  --text:#F9F8DA;          /* beige clair */
  --muted:rgba(249,248,218,.78);
  --accent:#007B3E;        /* vert profond */
  --accent2:#007B3E;
  --card:rgba(255,255,255,.06);
  --radius:22px;
  --max:1180px;
  --sans: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Apple Color Emoji","Segoe UI Emoji";
}

*{box-sizing:border-box}
html,body{
  margin:0;padding:0;
  font-family:var(--sans);
  background:linear-gradient(180deg,var(--bg),#06100b);
  color:var(--text)
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}

.container{max-width:var(--max);margin:0 auto;padding:0 20px}

.nav{
  position:sticky;top:0;z-index:40;
  backdrop-filter:saturate(160%) blur(12px);
  background:linear-gradient(180deg, rgba(6,16,11,.85), rgba(6,16,11,.55));
  border-bottom:1px solid rgba(255,255,255,.08);
}
.nav-inner{display:flex;align-items:center;justify-content:space-between;gap:14px;padding:14px 0}

/* Mobile menu */
.mobile-panel{display:none}
.mobile-panel.open{display:block}

.brand{display:flex;align-items:center;gap:12px;min-width:220px}
.brand img{width:42px;height:42px;border-radius:12px;background:rgba(255,255,255,.08);padding:6px}
.brand .name{font-weight:800}
.brand .tag{font-size:12px;color:var(--muted);margin-top:2px}

.menu{display:flex;gap:16px;align-items:center}
.menu a{font-size:14px;color:var(--muted);padding:10px 10px;border-radius:14px;transition:.18s}
.menu a:hover{color:var(--text);background:rgba(255,255,255,.06)}

.cta-row{display:flex;gap:10px;align-items:center}

.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:10px;
  padding:12px 16px;border-radius:16px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.06);
  color:var(--text);
  font-weight:700;
  transition:transform .12s ease, background .12s ease, border-color .12s ease;
  cursor:pointer
}
.btn:hover{transform:translateY(-1px);background:rgba(255,255,255,.09);border-color:rgba(255,255,255,.2)}
.btn.primary{background:linear-gradient(135deg,var(--accent),var(--accent2));color:#062013;border-color:transparent}
.btn.ghost{background:transparent}
.btn.danger{background:rgba(255,179,179,.14);border-color:rgba(255,179,179,.35)}

.badge{
  display:inline-flex;gap:8px;align-items:center;
  padding:8px 12px;border-radius:999px;
  background:rgba(124,255,178,.12);
  border:1px solid rgba(124,255,178,.18);
  font-size:13px;font-weight:700
}

/* Hero */
.hero{position:relative;min-height:78vh;display:flex;align-items:center;padding:52px 0 34px;overflow:hidden}
.hero-bg{position:absolute;inset:0;z-index:0;background:url("assets/pdc.jpg") center/cover no-repeat;transform:scale(1.02)}
.hero-overlay{
  position:absolute;inset:0;z-index:1;
  background: linear-gradient(180deg,
    rgba(6,16,11,.22),
    rgba(6,16,11,.68) 55%,
    rgba(6,16,11,.92)
  );
}
.hero .sub{
  font-size:20px;font-weight:600;line-height:1.6;
  max-width:950px;
  color:#F9F8DA;
}
.hero-content{position:relative;z-index:2;width:100%;max-width:none}

.h1{font-size:48px;line-height:1.05;letter-spacing:-.7px;margin:8px 0 12px;font-weight:900}
.sub{font-size:18px;color:var(--muted);max-width:860px}

.hero-bottom{
  margin-top:22px;
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:24px;
  flex-wrap:wrap;
}
.hero-actions{
  display:flex;
  justify-content:flex-end;
  gap:15px;
  flex-wrap:wrap;
  margin-top:0;
}
@media (max-width: 820px){
  .hero-bottom{flex-direction:column; align-items:flex-start;}
  .hero-actions{width:100%; justify-content:flex-start;}
}

/* Grid */
.grid{display:grid;gap:16px}
.cards-3{grid-template-columns:repeat(3,1fr)}
.cards-2{grid-template-columns:repeat(2,1fr)}
@media(max-width:980px){
  .cards-3{grid-template-columns:1fr}
  .cards-2{grid-template-columns:1fr}
  .h1{font-size:38px}
}

.section{padding:54px 0}
.section-title{display:flex;align-items:flex-end;justify-content:space-between;gap:18px;margin-bottom:18px}
.section-title h2{margin:0;font-size:28px;font-weight:900}
.section-title p{margin:0;color:var(--muted);max-width:680px}

.card{
  background:linear-gradient(180deg,var(--card),rgba(255,255,255,.03));
  border:1px solid rgba(255,255,255,.1);
  border-radius:var(--radius);
  padding:18px
}
.card h3{margin:0 0 8px;font-size:18px}
.card p{margin:0;color:var(--muted);line-height:1.6}
.card .meta{margin-top:12px;display:flex;gap:10px;flex-wrap:wrap}
.card .meta span{
  font-size:12px;color:var(--muted);
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
  padding:6px 10px;border-radius:999px
}

.split{display:grid;grid-template-columns:1.05fr .95fr;gap:18px;align-items:stretch}
@media(max-width:980px){.split{grid-template-columns:1fr}}

.gallery{display:grid;grid-template-columns:repeat(12,1fr);gap:12px}
.tile{border-radius:24px;overflow:hidden;position:relative;border:1px solid rgba(255,255,255,.1);background:rgba(255,255,255,.05)}
.tile img{width:100%;height:100%;object-fit:cover}
.tile .label{
  position:absolute;left:12px;bottom:12px;
  padding:8px 10px;border-radius:999px;
  background:rgba(6,16,11,.65);
  border:1px solid rgba(255,255,255,.12);
  font-size:12px;font-weight:800
}
.t1{grid-column:span 7;min-height:340px}
.t2{grid-column:span 5;min-height:340px}
.t3{grid-column:span 4;min-height:240px}
.t4{grid-column:span 4;min-height:240px}
.t5{grid-column:span 4;min-height:240px}
@media(max-width:980px){.t1,.t2,.t3,.t4,.t5{grid-column:span 12;min-height:240px}}

.notice{
  border-radius:24px;padding:18px;border:1px solid rgba(255,255,255,.12);
  background:linear-gradient(180deg, rgba(255,179,179,.12), rgba(255,255,255,.03))
}
.notice h3{margin:0 0 8px}
.notice p{margin:0;color:var(--muted);line-height:1.6}

.products{display:grid;grid-template-columns:repeat(3,1fr);gap:14px}
@media(max-width:980px){.products{grid-template-columns:1fr}}

.product{
  border-radius:24px;overflow:hidden;border:1px solid rgba(255,255,255,.1);
  background:linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  display:flex;flex-direction:column
}
.product .ph{height:170px;background:rgba(255,255,255,.05);display:flex;align-items:center;justify-content:center}
.product .ph img{width:100%;height:100%;object-fit:cover}
.product .body{padding:14px 14px 16px}
.product .name{font-weight:900}
.product .price{margin-top:8px;font-size:18px;font-weight:900}
.product .desc{margin-top:8px;color:var(--muted);line-height:1.55;font-size:14px}
.product .actions{margin-top:12px;display:flex;gap:10px;flex-wrap:wrap}

.footer{
  padding:34px 0;border-top:1px solid rgba(255,255,255,.08);
  background:linear-gradient(180deg, rgba(255,255,255,.02), rgba(0,0,0,.22));
  color:var(--muted)
}
.footer-grid{display:grid;grid-template-columns:1.1fr .9fr;gap:18px}
@media(max-width:980px){.footer-grid{grid-template-columns:1fr}}

.small{font-size:13px;color:var(--muted);line-height:1.6}
.hr{height:1px;background:rgba(255,255,255,.08);margin:18px 0}

.mobile-toggle{display:none}
@media(max-width:980px){
  .menu{display:none}
  .mobile-toggle{display:inline-flex}
  .mobile-panel{display:none;padding:10px 0 16px}
  .mobile-panel a{display:block;padding:10px 10px;border-radius:14px;color:var(--muted)}
  .mobile-panel a:hover{background:rgba(255,255,255,.06);color:var(--text)}
  .mobile-panel.open{display:block}
}

/* Cards 4 */
.cards-4{grid-template-columns:repeat(4,1fr)}
@media(max-width:1100px){.cards-4{grid-template-columns:repeat(2,1fr)}}
@media(max-width:600px){.cards-4{grid-template-columns:1fr}}
.highlight-small{max-width:750px;margin:0 auto}

/* tailles bois */
.size-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:10px;
  margin-top:12px;
}
.size-box{
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.1);
  padding:12px;
  border-radius:14px;
  text-align:center;
}
.size-box strong{display:block;font-size:15px;margin-bottom:6px;color:var(--text)}
.size-box span{font-weight:800;font-size:16px;color:var(--accent)}
@media(max-width:900px){.size-grid{grid-template-columns:1fr}}

/* pellets */
.pellet-grid{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:10px;
  margin-top:12px;
}
.pellet-box{
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.1);
  padding:12px;
  border-radius:14px;
  text-align:center;
}
.pellet-box strong{display:block;font-size:15px;margin-bottom:6px;color:var(--text)}
.pellet-box span{font-weight:800;font-size:16px;color:var(--accent)}
@media(max-width:900px){.pellet-grid{grid-template-columns:1fr}}

/* (Option) limitation “soft” copier image (pas 100% bloquant) */
img{
  user-select:none;
  -webkit-user-drag:none;
}

/* ==========================================
   BOUTIQUE / PLANTES / PANIER (UNIQUE)
========================================== */

/* Champs */
.input, .select{
  width:100%;
  padding:12px 14px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.06);
  color:var(--text);
  outline:none;
  font-weight:700;
}
.input::placeholder{color:rgba(249,248,218,.60)}
.select{cursor:pointer}

/* Bouton panier dans la nav */
.cart-pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.06);
  color:var(--text);
  font-weight:900;
  font-size:13px;
}
.cart-pill .count{
  display:inline-flex;
  min-width:26px;
  height:26px;
  align-items:center;
  justify-content:center;
  border-radius:999px;
  background:linear-gradient(135deg,var(--accent),var(--accent2));
  color:#062013;
  font-weight:900;
  padding:0 8px;
}

/* Barre filtres / recherche */
.shop-toolbar{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:14px;
  flex-wrap:wrap;
  margin:18px 0 14px;
}
.searchbar{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
  width:100%;
}
.searchbar input{
  flex:1;
  min-width:220px;
}

.filters{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin:0;
}
.chip{
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.06);
  color:var(--text);
  font-weight:900;
  font-size:13px;
  cursor:pointer;
  user-select:none;
}
.chip.active{
  background:rgba(124,255,178,.14);
  border-color:rgba(124,255,178,.22)
}

/* Tags */
.tag2{
  font-size:12px;
  font-weight:900;
  color:var(--muted);
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.10);
  padding:6px 10px;
  border-radius:999px;
}
.tag2.good{
  color:#eafff2;
  background:rgba(0,123,62,.18);
  border-color:rgba(0,123,62,.30);
}
.tag2.warn{
  color:#fff3db;
  background:rgba(255,183,77,.14);
  border-color:rgba(255,183,77,.28);
}

/* Grille boutique */
.shop-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
}
@media(max-width:980px){.shop-grid{grid-template-columns:1fr}}

/* Cartes produits (pcard) */
.pcard{
  border-radius:24px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.1);
  background:linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.03));
  display:flex;
  flex-direction:column;
}
.pcard .ph{
  height:170px;
  background:rgba(255,255,255,.05);
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:hidden;
}
.pcard .ph img{width:100%;height:100%;object-fit:cover}
.pcard .body{padding:14px 14px 16px}
.pcard .title{font-weight:950;font-size:16px;line-height:1.25}
.pcard .meta2{margin-top:10px;display:flex;flex-wrap:wrap;gap:8px}
.pcard .desc{margin-top:10px;color:var(--muted);line-height:1.55;font-size:14px}
.pcard .row{
  margin-top:12px;
  display:flex;
  justify-content:space-between;
  gap:10px;
  align-items:flex-end;
  flex-wrap:wrap;
}
.pcard .price{font-size:18px;font-weight:950}

/* Quantité +/- */
.qty{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 10px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.05);
}
.qty button{
  width:32px;height:32px;
  border-radius:12px;
  border:1px solid rgba(255,255,255,.14);
  background:rgba(255,255,255,.06);
  color:var(--text);
  font-weight:950;
  cursor:pointer;
}
.qty span{min-width:26px;text-align:center;font-weight:900}

/* Panier layout */
.cart-wrap{
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:16px;
  align-items:start;
}
@media(max-width:980px){.cart-wrap{grid-template-columns:1fr}}

.form-grid{display:grid;gap:10px;margin-top:10px}
.cart-actions{margin-top:14px;display:flex;gap:10px;flex-wrap:wrap}

.cart-list{display:flex;flex-direction:column;gap:12px;margin-top:10px}
.cart-item{
  display:flex;
  gap:12px;
  padding:12px;
  border-radius:20px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
  align-items:center;
  flex-wrap:wrap;
}
.cart-item img{
  width:82px;height:82px;
  border-radius:18px;
  object-fit:cover;
  border:1px solid rgba(255,255,255,.10);
}
.cart-item .info{flex:1;min-width:220px}
.cart-item .info .t{font-weight:950}
.cart-item .info .s{color:var(--muted);font-size:13px;margin-top:2px}
.cart-item .right{
  display:flex;
  gap:10px;
  align-items:center;
  flex-wrap:wrap;
  justify-content:flex-end;
}
.cart-item .right input{
  width:88px;
  padding:10px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.06);
  color:var(--text);
  font-weight:900;
}
.cart-empty{
  padding:16px;
  border-radius:22px;
  border:1px dashed rgba(255,255,255,.18);
  color:var(--muted);
}

/* Fix dropdown (select/options) : texte visible */
.select{
  background: rgba(6,16,11,.85);
  color: var(--text);
  border: 1px solid rgba(255,255,255,.16);
}

.select option{
  background: #06100b;   /* fond sombre dans la liste */
  color: #F9F8DA;        /* texte clair */
}

/* (optionnel) si tu veux aussi le survol */
.select option:checked{
  background: #0f2a1b;
}

.btn.disabled{
  opacity:.55;
  pointer-events:none;
  filter:saturate(.7);
}

/* ===== INPUT NUMBER (Quantité) ===== */
input[type="number"] {
  background: rgba(255,255,255,0.06);
  color: var(--text);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 6px 8px;
}

input[type="number"]::placeholder {
  color: var(--muted);
}

/* Flèches Chrome */
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  filter: invert(1);
}

/* ===== SHOP GRID ALIGN FIX ===== */

.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  align-items: stretch; /* IMPORTANT */
}

.pcard {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pcard .body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.pcard .desc {
  min-height: 60px; /* ajuste si besoin */
}

.pcard .row {
  margin-top: auto; /* pousse le bouton en bas */
}

/* ===== SHOP GRID ALIGN FIX ===== */

.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  align-items: stretch; /* IMPORTANT */
}

.pcard {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.pcard .body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.pcard .desc {
  min-height: 60px; /* ajuste si besoin */
}

.pcard .row {
  margin-top: auto; /* pousse le bouton en bas */
}

/* ===== MENU BURGER MOBILE PRO ===== */

/* Icône cachée sur desktop */
.menu-icon {
  display: none;
  font-size: 18px;
  line-height: 1;
}

/* Version mobile */
@media (max-width: 520px){

  .menu-text {
    display: none; /* cache le mot Menu */
  }

  .menu-icon {
    display: inline-block;
  }

  .cta-row .btn.ghost {
    width: 44px;
    height: 44px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
  }

}

-.shop-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
}

.pcard{
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  border-radius:22px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,.18);
  display:flex;
  flex-direction:column;
}

.pcard .ph{
  height:220px;
  overflow:hidden;
  background:rgba(255,255,255,.03);
}

.pcard .ph img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.pcard .body{
  padding:18px;
  display:flex;
  flex-direction:column;
  gap:14px;
  flex:1;
}

.pcard .title{
  font-size:1.15rem;
  font-weight:800;
  line-height:1.25;
  color:var(--text);
}

.pcard .desc{
  color:var(--muted);
  line-height:1.55;
  font-size:.97rem;
}

.pcard .meta2{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

.tag2{
  display:inline-flex;
  align-items:center;
  padding:6px 10px;
  border-radius:999px;
  font-size:.82rem;
  font-weight:700;
  background:rgba(255,255,255,.08);
  color:var(--text);
  border:1px solid rgba(255,255,255,.08);
}

.pcard .row{
  margin-top:auto;
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:14px;
  flex-wrap:wrap;
}

.pcard .price{
  font-size:1.2rem;
  font-weight:900;
  color:var(--text);
}

.qty{
  display:flex;
  align-items:center;
  gap:8px;
}

.qty input{
  width:72px;
}

@media (max-width: 980px){
  .shop-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
}

@media (max-width: 720px){
  .shop-grid{
    grid-template-columns:1fr;
  }

  .pcard .row{
    flex-direction:column;
    align-items:stretch;
  }

  .qty{
    justify-content:space-between;
  }
}