:root{
  /* Lighter / less contrast */
  --bg0:#0c1411;
  --bg1:#0f1c17;
  --card:rgba(255,255,255,.075);
  --border:rgba(255,255,255,.14);
  --text:rgba(255,255,255,.88);
  --muted:rgba(255,255,255,.70);
  --green:#2fbf71;
  --green2:#0ea45b;
  --orange:#f5a623;
  --shadow: 0 18px 50px rgba(0,0,0,.45);
  --radius: 20px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:"Manrope",system-ui,-apple-system,Segoe UI,Roboto,Ubuntu,"Helvetica Neue",Arial,sans-serif;
  color:var(--text);
  background:
    radial-gradient(1100px 760px at 18% 12%, rgba(47,191,113,.18), transparent 62%),
    radial-gradient(1100px 760px at 84% 30%, rgba(245,166,35,.14), transparent 60%),
    linear-gradient(180deg,var(--bg0),var(--bg1));
  overflow-x:hidden;
}

a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}

.container{
  width:min(1120px, calc(100% - 40px));
  margin-inline:auto;
}

/* Fix native select dropdown options (some browsers show white-on-white options) */
.shop-body select option,
select.input option,
.input option{
  color:#111827;
  background-color:#ffffff;
}

/* Background layers */
.bg{position:fixed;inset:0;pointer-events:none;z-index:-1}
.bg__grid{
  position:absolute;inset:-2px;
  background-image:
    linear-gradient(to right, rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size:64px 64px;
  mask-image: radial-gradient(450px 450px at 50% 20%, black 0, transparent 70%);
  opacity:.45;
}
.bg__blob{
  position:absolute;filter: blur(50px);opacity:.85;
  width:520px;height:520px;border-radius:50%;
}
.bg__blob--green{
  left:-180px;top:-140px;
  background: radial-gradient(circle at 30% 30%, rgba(47,191,113,.85), rgba(14,164,91,.12) 65%, transparent 75%);
}
.bg__blob--orange{
  right:-220px;top:40px;
  background: radial-gradient(circle at 40% 40%, rgba(245,166,35,.75), rgba(245,166,35,.10) 60%, transparent 75%);
}

/* Topbar */
.topbar{
  position:sticky;top:0;z-index:10;
  backdrop-filter: blur(12px);
  background: linear-gradient(180deg, rgba(15,28,23,.70), rgba(15,28,23,.20));
  border-bottom:1px solid rgba(255,255,255,.08);
}
.topbar__inner{
  display:flex;align-items:center;justify-content:space-between;
  padding:14px 0;
  gap:16px;
}
.brand{display:flex;align-items:center;gap:16px;min-width:0}
.brand__logo{
  width:110px;height:110px;border-radius:20px;
  border:1px solid rgba(255,255,255,.10);
  box-shadow: 0 10px 30px rgba(0,0,0,.35);
  object-fit:cover;background:#fff;
}
.brand__text{display:flex;flex-direction:column;line-height:1.05;min-width:0}
.brand__name{font-weight:800;letter-spacing:.06em}
.brand__tag{color:var(--muted);font-size:.92rem;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}
.topbar__cta{display:flex;gap:10px;align-items:center;flex-wrap:wrap}
.topbar__cta .btn--cart{
  display:flex;
  align-items:center;
  gap:6px;
  margin-left:auto;
}
.btn--cart svg{
  flex-shrink:0;
}
.btn--cart__text{
  display:inline;
}

/* WhatsApp order button (product page) */
.btn--whatsapp{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  width:100%;
  padding:14px 18px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.14);
  background: linear-gradient(135deg, var(--green), var(--green2));
  color:#fff;
  font-weight:800;
  letter-spacing:.06em;
  text-transform:uppercase;
  box-shadow: 0 12px 30px rgba(14,164,91,.22);
}
.btn--whatsapp:hover{
  filter: brightness(1.02);
  transform: translateY(-1px);
}
.btn--whatsapp__icon{
  display:inline-flex;
}
.btn--whatsapp__text{
  font-size:1.02rem;
}

/* WhatsApp customer phone modal */
.wa-modal{
  display:none;
  position:fixed;
  inset:0;
  z-index:100;
}
.wa-modal.is-open{display:block}
.wa-modal__backdrop{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(6px);
}
.wa-modal__panel{
  position:absolute;
  left:50%;
  top:50%;
  transform: translate(-50%, -50%);
  width:min(560px, calc(100% - 24px));
  background: rgba(15,28,23,.98);
  border:1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  box-shadow: 0 18px 60px rgba(0,0,0,.55);
  padding:16px;
}
.wa-modal__head{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:12px;
  margin-bottom:10px;
}
.wa-modal__title{
  margin:0;
  font-size:1.1rem;
  font-weight:900;
}
.wa-modal__close{
  appearance:none;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: var(--text);
  border-radius: 12px;
  width:40px;
  height:40px;
  display:grid;
  place-items:center;
  cursor:pointer;
}
.wa-modal__hint{
  color: var(--muted);
  margin: 0 0 12px;
  line-height:1.45;
}
.wa-phone{
  display:grid;
  grid-template-columns: 1fr;
  gap: 10px;
}
.wa-phone__row{
  display:grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 10px;
}
@media (max-width: 420px){
  .wa-phone__row{grid-template-columns:1fr}
}
.wa-modal__error{
  display:none;
  margin-top:8px;
  padding:10px 12px;
  border-radius: 14px;
  border:1px solid rgba(245,166,35,.35);
  background: rgba(245,166,35,.12);
  color: rgba(255,255,255,.92);
  font-weight:800;
}
.wa-modal__error.is-show{display:block}
.wa-modal__actions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-end;
  margin-top:12px;
}
.btn--danger{
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.86);
  border:1px solid rgba(255,255,255,.12);
  box-shadow:none;
}
.btn--danger:hover{background: rgba(255,255,255,.09)}

/* Sticky WhatsApp bar on mobile (like PCMarket) */
.whatsapp-orderbar{
  display:none;
}
@media (max-width: 768px){
  .whatsapp-orderbar{
    display:flex;
    position: fixed;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 50;
    gap: 12px;
    align-items:center;
    justify-content:space-between;
    padding: 12px 12px;
    border-radius: 18px;
    background: rgba(15,28,23,.92);
    border: 1px solid rgba(255,255,255,.12);
    backdrop-filter: blur(12px);
    box-shadow: 0 18px 50px rgba(0,0,0,.45);
  }
  .whatsapp-orderbar__price{
    display:flex;
    flex-direction:column;
    gap:2px;
    min-width: 0;
  }
  .whatsapp-orderbar__label{
    color: var(--muted);
    font-size: .82rem;
  }
  .whatsapp-orderbar__btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    padding: 12px 14px;
    border-radius: 16px;
    border:1px solid rgba(255,255,255,.14);
    background: linear-gradient(135deg, var(--green), var(--green2));
    color:#fff;
    font-weight:800;
    letter-spacing:.02em;
    cursor:pointer;
    white-space:nowrap;
  }
  .whatsapp-orderbar__btn svg{flex-shrink:0}
  /* prevent content hidden behind fixed bar */
  .main{ padding-bottom: 92px; }
}
.nav-toggle{
  display:none;
  width:40px;
  height:40px;
  border-radius:10px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color:var(--text);
  align-items:center;
  justify-content:center;
  cursor:pointer;
}
.nav-menu.is-open{display:flex !important}
.topbar__social{
  display:flex;align-items:center;justify-content:center;
  width:40px;height:40px;
  border-radius:10px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  color:rgba(255,255,255,.8);
  transition:all .2s ease;
  text-decoration:none;
}
.topbar__social:hover{
  background:rgba(59,89,152,.2);
  border-color:rgba(59,89,152,.4);
  color:#3b5998;
  transform:translateY(-2px);
}
.topbar__social svg{
  width:20px;height:20px;
}

/* Buttons */
.btn{
  appearance:none;border:0;cursor:pointer;
  display:inline-flex;align-items:center;justify-content:center;
  padding:12px 16px;border-radius:14px;
  color:#07120d;
  background: linear-gradient(135deg, var(--green), var(--green2));
  box-shadow: 0 12px 30px rgba(47,191,113,.25);
  font-weight:700;
  transition: transform .18s ease, filter .18s ease, box-shadow .18s ease;
  user-select:none;
}
.btn:hover{transform: translateY(-1px);filter:saturate(1.05)}
.btn:active{transform: translateY(0)}
.btn--ghost{
  background: rgba(255,255,255,.06);
  color:var(--text);
  border:1px solid rgba(255,255,255,.12);
  box-shadow:none;
}
.btn--ghost:hover{background: rgba(255,255,255,.08)}
.btn--small{padding:10px 12px;border-radius:12px;font-weight:800}

/* Hero */
.main{padding-bottom: 40px}
.hero{padding: 52px 0 18px}
.hero__grid{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 26px;
  align-items:stretch;
}
.pill{
  display:inline-flex;align-items:center;gap:10px;
  padding:8px 12px;border-radius:999px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  color:var(--muted);
  font-weight:700;
}
.pill__dot{
  width:10px;height:10px;border-radius:50%;
  background: radial-gradient(circle at 30% 30%, var(--orange), rgba(245,166,35,.15));
  box-shadow: 0 0 0 6px rgba(245,166,35,.12);
}
.hero__title{
  margin: 16px 0 10px;
  font-size: clamp(2.05rem, 3vw, 3.05rem);
  letter-spacing:-.02em;
  line-height:1.05;
}
.hero__titleAccent{
  display:block;
  background: linear-gradient(90deg, rgba(255,255,255,.92), rgba(47,191,113,.92));
  -webkit-background-clip:text;background-clip:text;color:transparent;
}
.hero__subtitle{
  margin:0;
  color:var(--muted);
  font-size:1.02rem;
  line-height:1.55;
  max-width: 62ch;
}
.hero__actions{display:flex;gap:12px;margin-top:18px;flex-wrap:wrap}
.hero__badges{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 18px;
}
.hero-banner{
  position:relative;
  border-radius: 22px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  box-shadow: 0 18px 45px rgba(0,0,0,.38);
}
.hero-banner__image{
  width:100%;
  height:420px;
  object-fit:cover;
  display:block;
  transform:scale(1.03);
}
.hero-banner__overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(120deg, rgba(10,18,15,.85), rgba(10,18,15,.35) 55%, rgba(10,18,15,.05));
}
.hero-banner__content{
  position:absolute;
  inset:0;
  padding:32px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:10px;
}
@media (max-width: 720px){
  /* Make hero text fully visible on mobile */
  /* Le contenu du hero (titre + paragraphe + boutons) est plus haut sur mobile => eviter que les boutons soient coupes */
  .hero-banner__image{height:600px}
  .hero-banner__overlay{
    background:
      linear-gradient(120deg, rgba(10,18,15,.78), rgba(10,18,15,.30) 55%, rgba(10,18,15,.06));
  }
  .hero-banner__content{
    padding:22px;
    justify-content:flex-start;
    padding-top:28px;
  }
  .hero__title{
    /* reduire un peu le titre pour garder les CTA visibles */
    font-size: clamp(1.75rem, 8vw, 2.35rem);
    line-height:1.08;
    margin: 14px 0 8px;
  }
  .hero__subtitle{
    order:4;
    font-size:1.08rem;
    line-height:1.62;
    max-width: 70ch;
  }
  .hero__actions{
    order:3; /* boutons juste apres le titre sur mobile (toujours visibles) */
    margin-top:14px;
  }
}
.badge{
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.14);
  border-radius: 16px;
  padding: 12px 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,.25);
}
.badge__k{color:var(--muted);font-weight:700;font-size:.92rem;margin-bottom:4px}
.badge__v{font-weight:800}
.badge__v .sep{opacity:.5;margin: 0 6px}
.badge__v a{border-bottom:1px dashed rgba(255,255,255,.25)}
.badge__v a:hover{border-bottom-color: rgba(255,255,255,.6)}

/* Card */
.card{
  height:100%;
  background: rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.12);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow:hidden;
  position:relative;
}
.card:before{
  content:"";
  position:absolute;inset:-2px;
  background:
    radial-gradient(520px 300px at 18% 10%, rgba(47,191,113,.22), transparent 65%),
    radial-gradient(560px 380px at 90% 20%, rgba(245,166,35,.18), transparent 70%);
  pointer-events:none;
}
.card__header,.card__body,.card__footer{position:relative}
.card__header{
  display:flex;justify-content:space-between;align-items:center;
  padding:18px 18px 0;
  gap:14px;
}
.card__title{font-weight:900;letter-spacing:-.01em}
.card__chip{
  padding:8px 10px;border-radius:999px;
  background: rgba(245,166,35,.14);
  border:1px solid rgba(245,166,35,.22);
  color: rgba(255,255,255,.88);
  font-weight:800;font-size:.88rem;
}
.card__body{padding:14px 18px 16px}
.card__hint{margin-top:10px;color:var(--muted);line-height:1.55}
.card__footer{
  display:flex;gap:10px;flex-wrap:wrap;
  padding: 0 18px 18px;
}

.progress{
  width:100%;height:12px;border-radius:999px;
  background: rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.10);
  overflow:hidden;
}
.progress__bar{
  height:100%;
  width: var(--p, 70%);
  background: linear-gradient(90deg, var(--orange), var(--green));
  border-radius:999px;
  transform-origin:left;
  animation: loadBar 1.2s ease both;
}
@keyframes loadBar{from{transform:scaleX(.18)}to{transform:scaleX(1)}}

.kpis{
  margin-top:14px;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.kpi{
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  border-radius: 16px;
  padding: 12px 12px;
}
.kpi__n{font-weight:900}
.kpi__t{color:var(--muted);font-weight:700;font-size:.92rem;margin-top:2px}

/* Sections */
.section{padding: 44px 0}
.section__head{max-width: 70ch}
.section__title{margin:0;font-size:1.7rem;letter-spacing:-.02em}
.section__desc{margin:10px 0 0;color:var(--muted);line-height:1.6}

.grid{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.tile{
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 12px 40px rgba(0,0,0,.20);
  transition: transform .18s ease, background .18s ease;
}
.tile:hover{transform: translateY(-2px);background: rgba(255,255,255,.075)}
.tile__icon{font-size:1.45rem}
.tile__title{margin-top:10px;font-weight:900}
.tile__desc{margin-top:6px;color:var(--muted);line-height:1.55}

/* Contact */
.section--contact{
  padding-top: 52px;
}
.contact__info{
  margin: 24px 0;
}
.contact__details{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-bottom: 32px;
}
.contact__detail-item{
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  padding: 18px;
}
.contact__detail-label{
  font-weight: 800;
  font-size: .95rem;
  color: var(--green);
  margin-bottom: 10px;
}
.contact__detail-value{
  color: var(--text);
  line-height: 1.6;
  font-size: .92rem;
}
.contact__detail-value a{
  color: var(--text);
  text-decoration: none;
  transition: color .2s;
}
.contact__detail-value a:hover{
  color: var(--green);
}
.hours-list{
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.hours-item{
  display: flex;
  justify-content: space-between;
  gap: 12px;
}
.hours-item span{
  font-weight: 700;
  color: var(--muted);
}
.contact__form-wrapper{
  max-width: 600px;
  margin: 32px auto 0;
}
.contact__list{margin-top:16px;display:grid;gap:10px}
.contact__item{
  display:flex;align-items:center;gap:10px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  padding: 12px 14px;
}
.contact__badge{
  width:36px;height:36px;border-radius:12px;
  display:grid;place-items:center;
  background: rgba(47,191,113,.16);
  border:1px solid rgba(47,191,113,.22);
}
.contact__txt{font-weight:900}
.form{
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 12px 40px rgba(0,0,0,.20);
}
.form__row{display:grid;gap:8px;margin-bottom:12px}
.label{color:var(--muted);font-weight:800;font-size:.92rem}
.input{
  width:100%;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  color:var(--text);
  padding: 12px 12px;
  outline:none;
  transition: border-color .18s ease, background .18s ease;
}
.input:focus{border-color: rgba(47,191,113,.55); background: rgba(255,255,255,.085)}
.input--area{resize: vertical; min-height: 110px}
.form__actions{
  display:flex;align-items:center;gap:10px;flex-wrap:wrap;
  margin-top: 4px;
}
.form__status{color:var(--muted);font-weight:800}
.form__note{margin-top:10px;color:rgba(255,255,255,.52);line-height:1.45;font-size:.92rem}

/* Footer */
.footer{padding: 26px 0 34px;border-top:1px solid rgba(255,255,255,.08)}
.footer__inner{display:flex;align-items:center;justify-content:space-between;gap:14px}
.footer__left{display:flex;align-items:center;gap:12px}
.footer__logo{
  width:90px;height:90px;border-radius:20px;
  border:1px solid rgba(255,255,255,.10);
  object-fit:cover;background:#fff;
}
.footer__brand{font-weight:900}
.footer__muted{color:var(--muted);font-weight:700;font-size:.92rem}
.footer__right{display:flex;gap:14px;flex-wrap:wrap}
.footer__link{color:var(--muted);font-weight:800;display:inline-flex;align-items:center;gap:4px}
.footer__link:hover{color:rgba(255,255,255,.9)}
.footer__link--social{color:var(--green);font-weight:900}
.footer__link--social:hover{color:var(--green2);text-decoration:underline}

/* Shop/Vitrine layout additions */
.section__grid{
  display:grid;
  gap:18px;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  margin-top:18px;
}
.panel{
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  padding:18px;
  box-shadow: 0 10px 28px rgba(0,0,0,.28);
}
.panel__media{
  border-radius: 16px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  box-shadow: 0 12px 30px rgba(0,0,0,.30);
  margin-bottom:14px;
  position:relative;
}
.panel__media img{
  width:100%;
  height:220px;
  object-fit:cover;
  transform:scale(1.02);
  transition: transform .35s ease, filter .35s ease;
  filter:saturate(1.05) contrast(1.02);
}
.panel:hover .panel__media img{
  transform:scale(1.06);
  filter:saturate(1.1) contrast(1.08);
}
.data-table{
  width:100%;
  border-collapse:collapse;
  font-size:.95rem;
  color:var(--muted);
}
.data-table th,
.data-table td{
  border-bottom:1px solid rgba(255,255,255,.12);
  padding:10px 8px;
  text-align:left;
}
.data-table th{
  color:var(--text);
  font-weight:800;
}
.data-table tr:hover td{
  color:rgba(255,255,255,.92);
}

/* Image gallery */
.image-gallery{
  display:grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap:16px;
  margin-top:18px;
}
.image-gallery__item{
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  padding:12px;
  overflow:hidden;
}
.image-gallery__item img{
  width:100%;
  height:180px;
  object-fit:cover;
  border-radius: 12px;
  margin-bottom:8px;
}
.image-gallery__actions{
  display:flex;
  gap:6px;
  flex-wrap:wrap;
  justify-content:center;
}

/* Product listing */
.product-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap:18px;
  margin-top:18px;
}
@media (max-width: 980px){
  .product-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}
.product-card{
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  overflow:hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,.28);
  transition: transform .2s ease, box-shadow .2s ease;
}
.product-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(0,0,0,.35);
}
.product-card__image{
  height:200px;
  background:#0f1c17;
  overflow:hidden;
}
.product-card__image img{
  width:100%;
  height:100%;
  object-fit:cover;
  transform:scale(1.02);
  transition: transform .3s ease;
}
.product-card:hover .product-card__image img{
  transform:scale(1.06);
}
.product-card__body{
  padding:14px 16px 16px;
}
.product-card__title{
  font-weight:800;
  margin:0 0 6px;
}
.product-card__meta{
  color:var(--muted);
  font-size:.92rem;
  margin-bottom:10px;
}
.product-card__price{
  font-weight:900;
  font-size:1.05rem;
}
.shop-filters{
  display:grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap:12px;
  margin-top:14px;
  margin-bottom:16px;
  padding:14px;
  background: rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.12);
  border-radius:16px;
}
.shop-filters .form__row{margin-bottom:0}
.shop-filters__actions{
  grid-column: 1 / -1;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.shop-products-results{position:relative;min-height:80px}
.shop-pagination{
  margin-top:16px;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:8px;
  flex-wrap:wrap;
}
.shop-pagination__item{
  min-width:38px;
  height:38px;
  padding:0 12px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border-radius:10px;
  border:1px solid rgba(255,255,255,.14);
  background: rgba(255,255,255,.06);
  color:var(--text);
  font-weight:800;
}
.shop-pagination__item.is-active{
  background: linear-gradient(135deg, var(--green), var(--green2));
  color:#07120d;
  border-color: transparent;
}
.shop-loader{
  position:fixed;
  inset:auto 12px 12px auto;
  z-index:70;
  display:none;
  align-items:center;
  gap:10px;
  background: rgba(15,28,23,.95);
  border:1px solid rgba(255,255,255,.14);
  border-radius:14px;
  padding:10px 12px;
  box-shadow: 0 16px 40px rgba(0,0,0,.4);
}
.shop-loader.is-show{display:flex}
.shop-loader__spinner{
  width:18px;
  height:18px;
  border-radius:50%;
  border:2px solid rgba(255,255,255,.3);
  border-top-color: var(--green);
  animation: spinLoader .7s linear infinite;
}
@keyframes spinLoader{
  to{transform:rotate(360deg)}
}
@media (max-width: 980px){
  .shop-filters{
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
}
@media (max-width: 560px){
  .shop-filters{
    grid-template-columns: 1fr;
  }
}
.panel__title{font-weight:800;margin:0 0 8px}
.panel__text{color:var(--muted);margin:0;line-height:1.6}
.crud-toolbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:10px;
  margin:14px 0 12px;
  flex-wrap:wrap;
}
.crud-toolbar__title{
  color:var(--text);
  font-weight:800;
}
.crud-toolbar__actions{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}
.crud-layout{
  display:flex;
  flex-direction:column;
  gap:14px;
}
.crud-block{
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.1);
  border-radius:16px;
  padding:14px;
}
.crud-block--list{order:1}
.crud-block--form{order:2}
.crud-block__title{
  margin:0 0 10px;
  font-size:1rem;
  font-weight:800;
  color:var(--text);
}
.crud-subtitle{
  margin:0 0 8px;
  color:var(--muted);
  font-weight:700;
}
.story{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:20px;
  align-items:stretch;
}
.story__image{
  border-radius: 18px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  box-shadow: 0 12px 32px rgba(0,0,0,.32);
}
.story__image--framed{
  padding:10px;
  background: linear-gradient(135deg, rgba(255,255,255,.18), rgba(255,255,255,.04));
  box-shadow: 0 18px 40px rgba(0,0,0,.35);
}
.story__image--framed img{
  border-radius: 14px;
  height: 320px;
}
.story__image img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* Historique mobile: intro -> image pleine largeur -> reste */
@media (max-width: 720px){
  .story{
    grid-template-columns: 1fr;
  }
  .story__image{
    order: 1;
  }
  .story .panel{
    order: 2;
  }
  .story__image--framed{
    padding: 0;
    background: none;
    border: none;
    box-shadow: none;
    border-radius: 18px;
  }
  .story__image--framed img{
    height: 240px;
    border-radius: 18px;
  }
}
.taglist{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:12px;
}
.tag{
  padding:8px 12px;
  border-radius:999px;
  background: rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.14);
  font-weight:700;
  display:inline-block;
  font-size:.85rem;
  text-transform:uppercase;
}
.tag--pending{
  background:rgba(245,166,35,.15);
  border-color:rgba(245,166,35,.3);
  color:#f5a623;
}
.tag--paid{
  background:rgba(47,191,113,.15);
  border-color:rgba(47,191,113,.3);
  color:var(--green);
}
.tag--shipped{
  background:rgba(47,191,113,.2);
  border-color:rgba(47,191,113,.4);
  color:var(--green2);
}
.tag--completed{
  background:rgba(47,191,113,.25);
  border-color:rgba(47,191,113,.5);
  color:var(--green2);
  font-weight:800;
}
.tag--cancelled{
  background:rgba(255,255,255,.05);
  border-color:rgba(255,255,255,.1);
  color:var(--muted);
  text-decoration:line-through;
  font-size:.9rem;
}
.list{
  margin:0;
  padding-left:18px;
  color:var(--muted);
  line-height:1.6;
}
.cta{
  margin-top:18px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

/* Image gallery */
.image-gallery{
  display:grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap:16px;
  margin-top:18px;
}
.image-gallery__item{
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  padding:12px;
  overflow:hidden;
}
.image-gallery__item img{
  width:100%;
  height:180px;
  object-fit:cover;
  border-radius: 12px;
  margin-bottom:10px;
}
.image-gallery__actions{
  display:flex;
  gap:6px;
  flex-wrap:wrap;
  justify-content:center;
}

/* Responsive */
@media (max-width: 980px){
  .hero__grid{grid-template-columns:1fr;gap:16px}
  .hero__badges{grid-template-columns:1fr}
  .grid{grid-template-columns:1fr 1fr}
}
@media (max-width: 560px){
  .topbar__cta{display:none;gap:6px;flex-direction:column;align-items:stretch;width:100%}
  .nav-toggle{display:inline-flex}
  .topbar__cta .btn{font-size:.8rem;padding:8px 10px;white-space:nowrap}
  .topbar__cta .btn--cart{
    margin-left:0;
    margin-top:auto;
    order:999;
    width:100%;
    justify-content:center;
  }
  .btn--cart__text{
    display:inline;
  }
  .topbar__social{width:32px;height:32px;flex-shrink:0}
  .topbar__social svg{width:16px;height:16px}
  .grid{grid-template-columns:1fr}
  .brand__tag{display:none}
  .brand__name{display:none}
  .brand{min-width:auto}
  .brand__logo{width:80px;height:80px}
  .section__grid{grid-template-columns:1fr}
  .data-table{display:block;overflow-x:auto}
  .nav-menu{display:none}
  .nav-menu.is-open{display:flex;flex-direction:column}
}

/* Page détail produit */
.product-detail{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:32px;
  margin-top:24px;
}
.product-detail__gallery{
  display:flex;
  flex-direction:column;
  gap:12px;
}
.product-detail__main-image{
  width:100%;
  aspect-ratio:1;
  background:var(--bg1);
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid var(--border);
}
.product-detail__main-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.product-detail__thumbnails{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}
.product-detail__thumb{
  width:80px;
  height:80px;
  padding:0;
  border:2px solid transparent;
  background:var(--bg1);
  border-radius:12px;
  overflow:hidden;
  cursor:pointer;
  transition:border-color .2s ease;
}
.product-detail__thumb:hover,
.product-detail__thumb:focus{
  border-color:var(--green);
  outline:none;
}
.product-detail__thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.product-detail__info{
  display:flex;
  flex-direction:column;
  gap:18px;
}
.product-detail__title{
  font-size:2rem;
  font-weight:800;
  margin:0;
  line-height:1.2;
}
.product-detail__meta{
  display:flex;
  gap:8px;
  flex-wrap:wrap;
}
.product-detail__price{
  display:flex;
  flex-direction:column;
  gap:4px;
}
.product-detail__price-label{
  font-size:.9rem;
  color:var(--muted);
}
.product-detail__price-value{
  font-size:2rem;
  font-weight:900;
  color:var(--green);
}
.product-detail__description{
  padding:18px;
  background:var(--card);
  border-radius:var(--radius);
  border:1px solid var(--border);
}
.product-detail__description h3{
  margin:0 0 12px;
  font-weight:700;
}
.product-detail__description p{
  margin:0;
  color:var(--muted);
  line-height:1.7;
}
.product-detail__form{
  display:flex;
  flex-direction:column;
  gap:16px;
}

/* Panier */
.cart{
  display:grid;
  grid-template-columns:1fr 320px;
  gap:32px;
  margin-top:24px;
}
.cart__items{
  display:flex;
  flex-direction:column;
  gap:16px;
}
.cart-item{
  display:grid;
  grid-template-columns:1fr auto auto;
  gap:16px;
  padding:18px;
  background:var(--card);
  border-radius:var(--radius);
  border:1px solid var(--border);
  align-items:start;
}
.cart-item__info{
  display:flex;
  flex-direction:column;
  gap:6px;
}
.cart-item__title{
  font-weight:700;
  margin:0;
  font-size:1.1rem;
}
.cart-item__meta{
  font-size:.9rem;
  color:var(--muted);
}
.cart-item__price{
  font-weight:600;
  color:var(--green);
}
.cart-item__actions{
  display:flex;
  flex-direction:column;
  gap:8px;
  align-items:flex-end;
}
.cart-item__total{
  font-weight:900;
  font-size:1.2rem;
  text-align:right;
  white-space:nowrap;
}
.cart__summary{
  position:sticky;
  top:24px;
  height:fit-content;
}
.cart-summary{
  padding:20px;
  background:var(--card);
  border-radius:var(--radius);
  border:1px solid var(--border);
}
.cart-summary__title{
  font-weight:800;
  margin:0 0 16px;
  font-size:1.3rem;
}
.cart-summary__row{
  display:flex;
  justify-content:space-between;
  padding:12px 0;
  border-bottom:1px solid var(--border);
  font-size:1.1rem;
}
.cart-summary__row:last-child{
  border-bottom:none;
}
.cart-summary__actions{
  display:flex;
  flex-direction:column;
  gap:10px;
  margin-top:20px;
}

/* Commande */
.checkout{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:32px;
  margin-top:24px;
}
.checkout__items{
  display:flex;
  flex-direction:column;
  gap:16px;
}
.checkout__section-title{
  font-weight:800;
  margin:0 0 16px;
  font-size:1.3rem;
}
.checkout-item{
  display:flex;
  justify-content:space-between;
  gap:16px;
  padding:14px;
  background:var(--card);
  border-radius:12px;
  border:1px solid var(--border);
}
.checkout-item__info{
  display:flex;
  flex-direction:column;
  gap:4px;
  flex:1;
}
.checkout-item__title{
  font-weight:700;
  margin:0;
}
.checkout-item__meta{
  font-size:.9rem;
  color:var(--muted);
}
.checkout-item__total{
  font-weight:900;
  white-space:nowrap;
}
.checkout__total{
  padding:16px;
  background:var(--card);
  border-radius:12px;
  border:1px solid var(--border);
  font-size:1.3rem;
  text-align:right;
}
.checkout__form{
  display:flex;
  flex-direction:column;
  gap:16px;
}

@media (max-width: 980px){
  .product-detail{grid-template-columns:1fr}
  .cart{grid-template-columns:1fr}
  .cart__summary{position:static}
  .checkout{grid-template-columns:1fr}
  .cart-item{grid-template-columns:1fr;gap:12px}
  .cart-item__actions{flex-direction:row;align-items:center}
  .cart-item__total{text-align:left;margin-top:8px}
}

/* Product detail tabs */
.product-detail__tabs{
  margin-top:40px;
}
.tabs{
  display:flex;
  gap:0;
  border-bottom:1px solid var(--border);
  margin-bottom:24px;
}
.tab-btn{
  padding:12px 24px;
  background:none;
  border:none;
  border-bottom:2px solid transparent;
  color:var(--text);
  font-weight:400;
  cursor:pointer;
  transition:all .2s ease;
}
.tab-btn:hover{
  color:var(--primary);
}
.tab-btn.active{
  border-bottom-color:var(--primary);
  color:var(--primary);
  font-weight:600;
}
.tab-content{
  display:none;
}
.tab-content.active{
  display:block;
}
@media (max-width: 980px){
  .tab-btn{
    padding:10px 16px;
    font-size:.9rem;
  }
}

