:root {
  /* === Palette SCIERIE NICOD — reprise du design system abris-jardin (KOEHL) === */
  --brown: #88B53B;        /* primaire — vert abris (boutons, accents, prix) */
  --brown-dark: #20301A;   /* vert très foncé — sections sombres, dégradés, toast */
  --brown-light: #A8D05A;  /* vert clair — accents, survols */
  --beige: #F6F6F6;        /* fond doux — sections alternées */
  --beige-dark: #E8E8E8;   /* bordures / surfaces */
  --white: #FFFFFF;
  --text: #262626;         /* texte principal + titres (gris très foncé abris) */
  --muted: #666666;        /* texte secondaire */
  --green: #7EBD00;        /* vert vif — badges certif */
  --promo: #911E1E;        /* rouge promo abris */
  --shadow: 0 4px 16px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.16);
  --radius: 8px;
  --tr: 0.25s ease;
  --font-product: 'Plus Jakarta Sans', 'Helvetica Neue', Arial, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Plus Jakarta Sans', 'Helvetica Neue', Arial, sans-serif; color: var(--text); background: var(--white); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; }

/* ─── CONTAINER ─── */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }

/* ─── TYPOGRAPHY ─── */
h1,h2,h3,h4,h5 { font-family: 'Plus Jakarta Sans', 'Helvetica Neue', Arial, sans-serif; font-weight: 700; line-height: 1.2; }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
p  { line-height: 1.65; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 13px 26px; border-radius: 6px; font-weight: 500;
  cursor: pointer; transition: all var(--tr); border: 2px solid transparent;
  font-size: 0.94rem; font-family: 'Plus Jakarta Sans', 'Helvetica Neue', Arial, sans-serif; white-space: nowrap;
}
.btn-primary  { background: var(--brown); color: #fff; border-color: var(--brown); }
.btn-primary:hover  { background: var(--brown-dark); border-color: var(--brown-dark); }
.btn-outline  { background: transparent; color: var(--brown); border-color: var(--brown); }
.btn-outline:hover  { background: var(--brown); color: #fff; }
.btn-white    { background: #fff; color: var(--brown); border-color: #fff; }
.btn-white:hover    { background: var(--beige); }
.btn-sm { padding: 9px 18px; font-size: 0.85rem; }
.btn-lg { padding: 16px 34px; font-size: 1rem; }

/* ─── NAVBAR ─── */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  transition: background 0.35s, box-shadow 0.35s;
}
.navbar.scrolled {
  background: #fff;
  box-shadow: 0 2px 20px rgba(27,67,50,0.12);
}
.navbar-inner {
  height: 76px; display: flex; align-items: center;
  justify-content: space-between; gap: 32px;
}
.navbar-logo {
  display: flex; align-items: center; gap: 11px;
  font-family: 'Plus Jakarta Sans', 'Helvetica Neue', Arial, sans-serif; font-weight: 700; font-size: 1.2rem;
  color: #fff; flex-shrink: 0;
}
.navbar.scrolled .navbar-logo { color: var(--brown-dark); }
.navbar-logo-icon {
  width: 38px; height: 38px; background: var(--brown); border-radius: 8px;
  display: flex; align-items: center; justify-content: center; color: #fff; font-size: 1rem;
}
.navbar-logo-sub { font-size: 0.7rem; font-family: 'Plus Jakarta Sans', 'Helvetica Neue', Arial, sans-serif; font-weight: 400; opacity: 0.75; letter-spacing: 1px; }
.navbar-links { display: flex; align-items: center; gap: 32px; }
.navbar-links a { font-size: 0.92rem; font-weight: 500; color: rgba(255,255,255,0.9); transition: color var(--tr); }
.navbar.scrolled .navbar-links a { color: var(--text); }
.navbar-links a:hover, .navbar-links a.active { color: var(--brown-light); }
.navbar.scrolled .navbar-links a:hover, .navbar.scrolled .navbar-links a.active { color: var(--brown); }
.navbar-right { display: flex; align-items: center; gap: 12px; }
.navbar-cart {
  position: relative; width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; border: 2px solid rgba(255,255,255,0.4);
  color: #fff; transition: all var(--tr); cursor: pointer;
}
.navbar.scrolled .navbar-cart { border-color: var(--beige-dark); color: var(--brown); }
.navbar-cart:hover { background: var(--brown-light); border-color: var(--brown-light); color: #fff; }
.cart-badge {
  position: absolute; top: -7px; right: -7px;
  width: 20px; height: 20px; background: var(--brown); color: #fff;
  border-radius: 50%; font-size: 0.68rem; font-weight: 700;
  display: none; align-items: center; justify-content: center;
  border: 2px solid #fff;
}
.cart-badge.show { display: flex; }
.navbar-menu-btn {
  display: none; width: 42px; height: 42px; border: 2px solid rgba(255,255,255,0.4);
  border-radius: 8px; background: transparent; color: #fff; cursor: pointer;
  align-items: center; justify-content: center; font-size: 1rem; transition: all var(--tr);
}
.navbar.scrolled .navbar-menu-btn { border-color: var(--beige-dark); color: var(--brown); }

/* ─── MOBILE MENU ─── */
.overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.55); z-index: 150; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.overlay.active { opacity: 1; pointer-events: all; }
.mobile-menu {
  position: fixed; top: 0; right: 0; bottom: 0; width: 300px; background: #fff;
  z-index: 200; padding: 80px 24px 40px; display: flex; flex-direction: column; gap: 4px;
  transform: translateX(100%); transition: transform 0.35s ease; box-shadow: -8px 0 40px rgba(0,0,0,0.15);
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a { font-family: 'Plus Jakarta Sans', 'Helvetica Neue', Arial, sans-serif; font-size: 1.2rem; font-weight: 600; color: var(--brown-dark); padding: 14px 0; border-bottom: 1px solid var(--beige-dark); }
.mobile-menu-close { position: absolute; top: 20px; right: 20px; width: 38px; height: 38px; display: flex; align-items: center; justify-content: center; cursor: pointer; font-size: 1.2rem; color: var(--brown-dark); background: var(--beige); border-radius: 50%; border: none; }

/* ─── HERO ─── */
.hero {
  position: relative; min-height: 85vh;
  background: url('../images/hero-bg.jpg') 72% center / cover no-repeat;
  display: flex; align-items: center;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(10,5,2,0.96) 0%, rgba(10,5,2,0.92) 30%, rgba(10,5,2,0.60) 50%, rgba(10,5,2,0.10) 75%, transparent 100%);
}
.hero-content { position: relative; z-index: 1; max-width: 520px; padding-top: 76px; margin-left: clamp(24px, 5vw, 120px); }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.13); backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.28); color: #fff;
  padding: 8px 18px; border-radius: 30px; font-size: 0.82rem; font-weight: 500; margin-bottom: 22px;
}
.hero-title { color: #fff; margin-bottom: 18px; line-height: 1.15; }
.hero-title span { color: var(--brown-light); }
.hero-subtitle { color: rgba(255,255,255,0.82); font-size: 1.1rem; line-height: 1.7; margin-bottom: 38px; }
.hero-buttons { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hero-scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.65); font-size: 0.78rem; letter-spacing: 1px; cursor: pointer;
  animation: bobble 2s ease-in-out infinite;
}
@keyframes bobble { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(6px)} }

/* ─── TRUST BAR ─── */
.trust-bar { background: var(--brown); color: #fff; padding: 0; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item {
  display: flex; align-items: center; gap: 16px; padding: 24px 28px;
  border-right: 1px solid rgba(255,255,255,0.18);
}
.trust-item:last-child { border-right: none; }
.trust-icon {
  width: 46px; height: 46px; background: rgba(255,255,255,0.15); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; font-size: 1.15rem; flex-shrink: 0;
}
.trust-text strong { display: block; font-size: 0.95rem; font-weight: 600; margin-bottom: 2px; }
.trust-text span { font-size: 0.8rem; opacity: 0.78; }

/* ─── SECTIONS ─── */
.section { padding: 80px 0; }
.section-bg { background: var(--beige); }
.section-header { text-align: center; margin-bottom: 52px; }
.section-label { font-size: 0.75rem; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; color: var(--brown); margin-bottom: 12px; }
.section-title { color: var(--brown-dark); margin-bottom: 14px; }
.section-subtitle { color: var(--muted); font-size: 1.02rem; max-width: 540px; margin: 0 auto; }

/* ─── CATEGORIES ─── */
.categories-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.cat-card {
  position: relative; border-radius: 14px; overflow: hidden;
  height: 300px; cursor: pointer; display: block;
}
.cat-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.55s ease; }
.cat-card:hover img { transform: scale(1.06); }
.cat-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.06) 0%, rgba(13,31,23,0.76) 100%);
  transition: opacity var(--tr);
}
.cat-card:hover .cat-overlay { opacity: 0.92; }
.cat-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px; color: #fff; }
.cat-icon {
  width: 40px; height: 40px; background: rgba(136,181,59,0.95); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; font-size: 1.05rem; margin-bottom: 10px;
}
.cat-title { font-family: 'Plus Jakarta Sans', 'Helvetica Neue', Arial, sans-serif; font-size: 1.18rem; font-weight: 700; margin-bottom: 5px; }
.cat-desc { font-size: 0.78rem; opacity: 0.8; line-height: 1.4; }
.cat-arrow {
  position: absolute; top: 22px; right: 22px; width: 34px; height: 34px;
  background: rgba(255,255,255,0.18); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 0.82rem;
  opacity: 0; transform: translateX(-8px); transition: all 0.3s;
}
.cat-card:hover .cat-arrow { opacity: 1; transform: translateX(0); }

/* ─── PRODUCT CARDS ─── */
.products-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.product-card {
  background: #fff; border: 1px solid var(--beige-dark); border-radius: 12px;
  overflow: hidden; transition: all 0.32s; cursor: pointer;
}
.product-card:hover {
  box-shadow: var(--shadow-lg); transform: translateY(-5px); border-color: var(--brown-light);
}
.product-img { position: relative; height: 210px; overflow: hidden; background: var(--beige); }
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s; }
.product-card:hover .product-img img { transform: scale(1.08); }
.product-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--brown); color: #fff; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.5px; padding: 4px 10px; border-radius: 4px; text-transform: uppercase;
}
.product-badge.cert { background: var(--green); }
.product-badge.massif { background: #6b4226; }
.product-body { padding: 18px; }
.product-category { font-size: 0.74rem; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: 1.2px; margin-bottom: 7px; }
.product-title {
  font-family: var(--font-product); font-size: 0.97rem; font-weight: 600;
  color: var(--brown-dark); line-height: 1.4; margin-bottom: 7px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.product-desc {
  font-size: 0.83rem; color: var(--muted); line-height: 1.5; margin-bottom: 14px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.product-footer { border-top: 1px solid var(--beige-dark); padding-top: 14px; }
.product-price { font-family: 'Plus Jakarta Sans', 'Helvetica Neue', Arial, sans-serif; font-size: 1.15rem; font-weight: 700; color: var(--brown); display: block; margin-bottom: 12px; }
.product-actions { display: flex; gap: 8px; }
.btn-add-cart, .btn-buy-now {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 5px;
  padding: 9px 10px; border-radius: 6px; font-size: 0.8rem; font-weight: 600;
  font-family: 'Plus Jakarta Sans', 'Helvetica Neue', Arial, sans-serif; cursor: pointer; transition: all var(--tr); border: 2px solid var(--brown);
  white-space: nowrap; min-height: 44px;
}
.btn-add-cart { background: transparent; color: var(--brown); }
.btn-add-cart:hover { background: var(--brown); color: #fff; }
.btn-buy-now { background: var(--brown); color: #fff; }
.btn-buy-now:hover { background: var(--brown-dark); border-color: var(--brown-dark); }
.btn-full-width { flex: unset; width: 100%; text-decoration: none; }
.variant-badge { right: 12px; left: auto; background: var(--brown-dark); }

/* ─── ABOUT ─── */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.about-img-wrap { position: relative; }
.about-img-main { border-radius: 16px; overflow: hidden; height: 500px; }
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-badge {
  position: absolute; bottom: -28px; right: -28px;
  background: #fff; border-radius: 14px; padding: 22px 26px;
  box-shadow: var(--shadow-lg); display: flex; align-items: center; gap: 14px; min-width: 200px;
}
.about-img-badge-icon {
  width: 50px; height: 50px; background: var(--beige); border-radius: 12px;
  display: flex; align-items: center; justify-content: center; font-size: 1.35rem; color: var(--brown); flex-shrink: 0;
}
.about-img-badge strong { display: block; font-size: 1.5rem; font-weight: 700; color: var(--brown-dark); line-height: 1; }
.about-img-badge span { font-size: 0.78rem; color: var(--muted); margin-top: 4px; display: block; }
.about-features { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin: 28px 0 32px; }
.about-feature { display: flex; gap: 13px; align-items: flex-start; }
.about-feature-icon {
  width: 42px; height: 42px; background: var(--beige); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; color: var(--brown); flex-shrink: 0;
}
.about-feature h4 { font-size: 0.9rem; font-weight: 600; color: var(--brown-dark); margin-bottom: 3px; font-family: 'Plus Jakarta Sans', 'Helvetica Neue', Arial, sans-serif; }
.about-feature p { font-size: 0.82rem; color: var(--muted); line-height: 1.4; }

/* ─── CERTS STRIP ─── */
.certs-strip { background: var(--beige); padding: 40px 0; border-top: 1px solid var(--beige-dark); border-bottom: 1px solid var(--beige-dark); }
.certs-grid { display: flex; align-items: center; justify-content: center; gap: 52px; flex-wrap: wrap; }
.cert-item { display: flex; flex-direction: column; align-items: center; gap: 10px; text-align: center; }
.cert-icon {
  width: 68px; height: 68px; background: #fff; border: 2px solid var(--beige-dark); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 1.7rem; color: var(--brown);
}
.cert-name { font-weight: 700; font-size: 0.88rem; color: var(--brown-dark); }
.cert-desc { font-size: 0.76rem; color: var(--muted); }

/* ─── TESTIMONIALS ─── */
.testi-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; }
.testi-card { background: #fff; border: 1px solid var(--beige-dark); border-radius: 12px; padding: 18px; }
.testi-stars { color: #F5A623; margin-bottom: 10px; font-size: 0.78rem; letter-spacing: 1px; }
.testi-text { color: var(--text); font-size: 0.82rem; line-height: 1.6; font-style: italic; margin-bottom: 14px; display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; }
.testi-author { display: flex; align-items: center; gap: 10px; }
.testi-avatar {
  width: 40px; height: 40px; border-radius: 50%; overflow: hidden;
  flex-shrink: 0; border: 2px solid var(--beige-dark);
}
.testi-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.testi-name { font-weight: 600; font-size: 0.84rem; color: var(--brown-dark); }
.testi-location { font-size: 0.72rem; color: var(--muted); margin-top: 1px; }

/* ─── BANNER ─── */
.banner {
  background: linear-gradient(135deg, var(--brown-dark) 0%, var(--brown) 60%, #52A07A 100%);
  padding: 64px 0; position: relative; overflow: hidden;
}
.banner::before {
  content: ''; position: absolute; top: -120px; right: -80px;
  width: 420px; height: 420px; border-radius: 50%; background: rgba(255,255,255,0.045);
}
.banner::after {
  content: ''; position: absolute; bottom: -80px; left: -60px;
  width: 280px; height: 280px; border-radius: 50%; background: rgba(255,255,255,0.03);
}
.banner-content { text-align: center; color: #fff; position: relative; z-index: 1; }
.banner-content h2 { margin-bottom: 12px; }
.banner-content p { font-size: 1.05rem; opacity: 0.83; margin-bottom: 30px; }

/* ─── NEWSLETTER ─── */
.newsletter { background: var(--beige); padding: 60px 0; }
.newsletter-inner {
  display: flex; align-items: center; gap: 40px;
  background: #fff; border-radius: 18px; padding: 44px 48px;
  box-shadow: var(--shadow);
}
.newsletter-icon {
  width: 68px; height: 68px; background: var(--beige); border-radius: 14px;
  display: flex; align-items: center; justify-content: center; font-size: 1.7rem; color: var(--brown); flex-shrink: 0;
}
.newsletter-text h3 { font-size: 1.3rem; margin-bottom: 6px; color: var(--brown-dark); }
.newsletter-text p { color: var(--muted); font-size: 0.88rem; }
.newsletter-form { display: flex; gap: 10px; flex: 1; max-width: 440px; margin-left: auto; }
.newsletter-input {
  flex: 1; padding: 13px 18px; border: 2px solid var(--beige-dark); border-radius: 8px;
  font-family: 'Plus Jakarta Sans', 'Helvetica Neue', Arial, sans-serif; font-size: 0.9rem; outline: none; transition: border-color var(--tr);
}
.newsletter-input:focus { border-color: var(--brown); }

/* ─── FOOTER ─── */
.footer { background: #0D1F17; color: #fff; padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-logo { display: flex; align-items: center; gap: 11px; font-family: 'Plus Jakarta Sans', 'Helvetica Neue', Arial, sans-serif; font-weight: 700; font-size: 1.15rem; margin-bottom: 14px; }
.footer-logo-icon { width: 34px; height: 34px; background: var(--brown); border-radius: 7px; display: flex; align-items: center; justify-content: center; font-size: 0.9rem; }
.footer-about { font-size: 0.85rem; line-height: 1.65; color: rgba(255,255,255,0.55); margin-bottom: 22px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 34px; height: 34px; background: rgba(255,255,255,0.1); border-radius: 7px;
  display: flex; align-items: center; justify-content: center; font-size: 0.85rem;
  color: rgba(255,255,255,0.65); transition: all var(--tr);
}
.footer-social a:hover { background: var(--brown); color: #fff; }
.footer-col h4 { font-size: 0.78rem; font-weight: 700; letter-spacing: 1.8px; text-transform: uppercase; color: var(--brown-light); margin-bottom: 18px; font-family: 'Plus Jakarta Sans', 'Helvetica Neue', Arial, sans-serif; }
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: 0.85rem; color: rgba(255,255,255,0.55); transition: color var(--tr); }
.footer-links a:hover { color: var(--brown-light); }
.footer-contact-item { display: flex; gap: 11px; margin-bottom: 11px; align-items: flex-start; }
.footer-contact-item i { color: var(--brown-light); margin-top: 2px; width: 14px; text-align: center; }
.footer-contact-item span { font-size: 0.83rem; color: rgba(255,255,255,0.55); line-height: 1.5; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding: 22px 0;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-bottom-text { font-size: 0.78rem; color: rgba(255,255,255,0.38); }
.footer-bottom-links { display: flex; gap: 22px; }
.footer-bottom-links a { font-size: 0.78rem; color: rgba(255,255,255,0.38); transition: color var(--tr); }
.footer-bottom-links a:hover { color: rgba(255,255,255,0.7); }

/* ─── PAGE HEADER ─── */
.page-header { background: linear-gradient(135deg, #0D2B1D, var(--brown)); padding: 110px 0 50px; color: #fff; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.83rem; color: rgba(255,255,255,0.65); margin-bottom: 14px; }
.breadcrumb a { color: rgba(255,255,255,0.65); transition: color var(--tr); }
.breadcrumb a:hover { color: #fff; }
.breadcrumb i { font-size: 0.6rem; }
.page-header h1 { font-size: 2.4rem; margin-bottom: 10px; }
.page-header p { font-size: 0.98rem; opacity: 0.78; }

/* ─── SHOP LAYOUT ─── */
.shop-layout { display: grid; grid-template-columns: 260px 1fr; gap: 36px; padding: 96px 0 80px; }
.shop-sidebar { align-self: start; position: sticky; top: 88px; max-height: calc(100vh - 108px); overflow-y: auto; scrollbar-width: thin; scrollbar-color: var(--beige-dark) transparent; }
.filter-block { background: #fff; border: 1px solid var(--beige-dark); border-radius: 12px; padding: 22px; margin-bottom: 20px; }
.filter-title { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--brown-dark); margin-bottom: 16px; }
.filter-option { display: flex; align-items: center; justify-content: space-between; padding: 9px 0; border-bottom: 1px solid var(--beige); cursor: pointer; }
.filter-option:last-child { border-bottom: none; }
.filter-option label { display: flex; align-items: center; gap: 9px; cursor: pointer; font-size: 0.88rem; color: var(--text); }
.filter-option input[type=checkbox] { width: 16px; height: 16px; accent-color: var(--brown); cursor: pointer; }
.filter-count { font-size: 0.74rem; color: var(--muted); background: var(--beige); padding: 2px 8px; border-radius: 20px; }
.reset-filter { font-size: 0.82rem; color: var(--brown); cursor: pointer; display: flex; align-items: center; gap: 6px; margin-top: 12px; }
.reset-filter:hover { text-decoration: underline; }
.essence-group-label { font-size: 0.7rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--brown); background: var(--beige); padding: 4px 8px; border-radius: 4px; margin-bottom: 4px; display: inline-block; }

.shop-content { min-width: 0; }

/* Category quick tabs */
.cat-tabs { display: flex; gap: 8px; margin-bottom: 20px; overflow-x: auto; padding-bottom: 4px; scrollbar-width: none; }
.cat-tabs::-webkit-scrollbar { display: none; }
.cat-tab { display: inline-flex; align-items: center; gap: 6px; padding: 8px 16px; border-radius: 24px; border: 2px solid var(--beige-dark); background: #fff; font-size: 0.82rem; font-weight: 600; color: var(--muted); cursor: pointer; white-space: nowrap; transition: all .2s; }
.cat-tab:hover { border-color: var(--brown-light); color: var(--brown); }
.cat-tab.active { background: var(--brown); border-color: var(--brown); color: #fff; }
.cat-tab.active .cat-tab-count { background: rgba(255,255,255,.25); color: #fff; }
.cat-tab-count { font-size: 0.72rem; background: var(--beige); color: var(--muted); padding: 1px 7px; border-radius: 12px; font-weight: 700; }

/* Active filter pills */
.active-filters { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; padding: 10px 14px; background: var(--beige); border-radius: 10px; margin-bottom: 18px; }
.active-filters-inner { display: flex; flex-wrap: wrap; gap: 6px; flex: 1; }
.filter-pill { display: inline-flex; align-items: center; gap: 5px; background: var(--brown); color: #fff; font-size: 0.78rem; font-weight: 600; padding: 4px 10px 4px 9px; border-radius: 20px; }
.filter-pill i:first-child { opacity: .7; font-size: .7rem; }
.filter-pill button { background: none; border: none; color: rgba(255,255,255,.8); cursor: pointer; padding: 0 0 0 4px; font-size: .75rem; line-height: 1; display: flex; align-items: center; }
.filter-pill button:hover { color: #fff; }
.active-filters-clear { background: none; border: 1px solid var(--brown-light); color: var(--brown); font-size: .78rem; font-weight: 600; padding: 4px 10px; border-radius: 20px; cursor: pointer; white-space: nowrap; display: flex; align-items: center; gap: 5px; }
.active-filters-clear:hover { background: var(--brown); color: #fff; border-color: var(--brown); }

/* Badge filtre mobile */
.filter-active-badge { display: inline-flex; align-items: center; justify-content: center; min-width: 18px; height: 18px; background: #fff; color: var(--brown); font-size: .72rem; font-weight: 700; border-radius: 10px; padding: 0 4px; margin-left: 4px; }

/* Essence toggle */
.essence-toggle-btn { display: none; align-items: center; gap: 6px; background: none; border: 1px solid var(--beige-dark); color: var(--brown); font-size: .82rem; font-weight: 600; padding: 7px 14px; border-radius: 8px; cursor: pointer; width: 100%; justify-content: center; margin: 8px 0 4px; transition: all .2s; }
.essence-toggle-btn:hover { background: var(--beige); }

/* Load more */
.load-more-wrap { display: flex; flex-direction: column; align-items: center; gap: 10px; padding: 32px 0 16px; }
.btn-load-more { display: inline-flex; align-items: center; gap: 8px; padding: 12px 32px; background: #fff; border: 2px solid var(--brown); color: var(--brown); border-radius: 10px; font-size: .9rem; font-weight: 600; cursor: pointer; transition: all .2s; font-family: 'Plus Jakarta Sans', 'Helvetica Neue', Arial, sans-serif; }
.btn-load-more:hover { background: var(--brown); color: #fff; }
.load-more-info { font-size: .82rem; color: var(--muted); }

/* Scroll to top */
.scroll-top-btn { position: fixed; bottom: 28px; right: 28px; width: 46px; height: 46px; background: var(--brown); color: #fff; border: none; border-radius: 50%; font-size: 1rem; cursor: pointer; box-shadow: 0 4px 16px rgba(0,0,0,.18); opacity: 0; transform: translateY(12px); transition: opacity .25s, transform .25s; pointer-events: none; z-index: 100; display: flex; align-items: center; justify-content: center; }
.scroll-top-btn.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.scroll-top-btn:hover { background: var(--brown-dark); }

.shop-toolbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 16px; gap: 14px; flex-wrap: wrap; }
.shop-search {
  display: flex; align-items: center; gap: 10px;
  background: #fff; border: 2px solid var(--beige-dark); border-radius: 10px;
  padding: 10px 18px; flex: 1; max-width: 380px; transition: border-color var(--tr);
}
.shop-search:focus-within { border-color: var(--brown); }
.shop-search i { color: var(--muted); }
.shop-search input { border: none; outline: none; font-family: 'Plus Jakarta Sans', 'Helvetica Neue', Arial, sans-serif; font-size: 0.88rem; flex: 1; color: var(--text); background: transparent; }
.shop-sort { display: flex; align-items: center; gap: 10px; }
.shop-sort label { font-size: 0.83rem; color: var(--muted); white-space: nowrap; }
.shop-sort select {
  padding: 10px 14px; border: 2px solid var(--beige-dark); border-radius: 8px;
  font-family: 'Plus Jakarta Sans', 'Helvetica Neue', Arial, sans-serif; font-size: 0.87rem; color: var(--text);
  background: #fff; cursor: pointer; outline: none; transition: border-color var(--tr);
}
.shop-sort select:focus { border-color: var(--brown); }
.shop-count { font-size: 0.87rem; color: var(--muted); white-space: nowrap; }
.products-grid-shop { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.no-results { text-align: center; padding: 60px 0; color: var(--muted); }
.no-results i { font-size: 2.5rem; margin-bottom: 12px; display: block; }

/* ─── CART PAGE ─── */
.cart-layout { display: grid; grid-template-columns: 1fr 360px; gap: 36px; padding: 48px 0 80px; }
.cart-items-hd { display: flex; align-items: center; justify-content: space-between; padding-bottom: 14px; border-bottom: 2px solid var(--beige-dark); margin-bottom: 20px; }
.cart-items-hd h2 { font-size: 1.25rem; color: var(--brown-dark); }
.clear-cart-btn { font-size: 0.83rem; color: var(--muted); cursor: pointer; display: flex; align-items: center; gap: 6px; transition: color var(--tr); background: none; border: none; font-family: inherit; }
.clear-cart-btn:hover { color: #c53030; }
.cart-item { display: flex; gap: 18px; padding: 18px 0; border-bottom: 1px solid var(--beige-dark); align-items: flex-start; }
.cart-item-img { width: 90px; height: 72px; border-radius: 8px; overflow: hidden; flex-shrink: 0; background: var(--beige); }
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-body { flex: 1; min-width: 0; }
.cart-item-cat { font-size: 0.72rem; color: var(--muted); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 4px; }
.cart-item-title { font-family: 'Plus Jakarta Sans', 'Helvetica Neue', Arial, sans-serif; font-size: 0.93rem; font-weight: 600; color: var(--brown-dark); line-height: 1.35; margin-bottom: 8px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.cart-item-variant { font-size: 0.75rem; color: var(--brown); font-weight: 600; margin-bottom: 5px; display: flex; align-items: center; gap: 5px; }
.cart-item-price { font-weight: 700; color: var(--brown); font-size: 0.98rem; }
.cart-item-actions { display: flex; align-items: center; gap: 10px; margin-top: 8px; }
.qty-ctrl { display: flex; align-items: center; border: 1px solid var(--beige-dark); border-radius: 8px; overflow: hidden; }
.qty-btn { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; cursor: pointer; background: var(--beige); border: none; color: var(--brown); font-size: 0.95rem; transition: background var(--tr); }
.qty-btn:hover { background: var(--beige-dark); }
.qty-val { width: 38px; text-align: center; font-size: 0.88rem; font-weight: 600; color: var(--text); }
.remove-item-btn { width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--muted); border: 1px solid var(--beige-dark); border-radius: 8px; background: #fff; transition: all var(--tr); }
.remove-item-btn:hover { color: #c53030; border-color: #fc8181; background: #fff5f5; }
.cart-empty { text-align: center; padding: 70px 20px; }
.cart-empty i { font-size: 3rem; color: var(--beige-dark); margin-bottom: 16px; display: block; }
.cart-empty h3 { font-size: 1.3rem; color: var(--brown-dark); margin-bottom: 8px; }
.cart-empty p { color: var(--muted); margin-bottom: 24px; font-size: 0.9rem; }

/* Order Summary */
.order-summary { background: #fff; border: 1px solid var(--beige-dark); border-radius: 16px; padding: 26px; align-self: start; position: sticky; top: 96px; }
.order-summary h3 { font-size: 1.15rem; color: var(--brown-dark); margin-bottom: 22px; padding-bottom: 14px; border-bottom: 2px solid var(--beige-dark); }
.sum-line { display: flex; justify-content: space-between; align-items: center; padding: 9px 0; font-size: 0.88rem; }
.sum-label { color: var(--muted); }
.sum-val { font-weight: 600; color: var(--text); }
.sum-total { border-top: 2px solid var(--beige-dark); padding-top: 14px; margin-top: 6px; font-size: 1.05rem; font-weight: 700; color: var(--brown-dark); }
.sum-total .sum-val { color: var(--brown); font-family: 'Plus Jakarta Sans', 'Helvetica Neue', Arial, sans-serif; font-size: 1.2rem; }
.sum-note { font-size: 0.78rem; color: var(--muted); margin-top: 10px; line-height: 1.5; }
.sum-cta { margin-top: 20px; }
.sum-cta .btn { width: 100%; justify-content: center; }

/* Checkout Form */
.checkout-form { background: #fff; border: 1px solid var(--beige-dark); border-radius: 16px; padding: 30px; margin-top: 28px; }
.checkout-form h3 { font-size: 1.15rem; color: var(--brown-dark); margin-bottom: 24px; }
.form-section-hd { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: var(--brown); margin-bottom: 14px; margin-top: 22px; display: flex; align-items: center; gap: 8px; }
.form-section-hd:first-child { margin-top: 0; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
.form-row.full { grid-template-columns: 1fr; }
.form-group { display: flex; flex-direction: column; gap: 5px; }
.form-group label { font-size: 0.83rem; font-weight: 500; color: var(--text); }
.form-group input, .form-group select, .form-group textarea {
  padding: 11px 14px; border: 2px solid var(--beige-dark); border-radius: 7px;
  font-family: 'Plus Jakarta Sans', 'Helvetica Neue', Arial, sans-serif; font-size: 0.88rem; color: var(--text);
  outline: none; transition: border-color var(--tr); background: #fff;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--brown); }
.form-group textarea { min-height: 90px; resize: vertical; }
.payment-opts { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 14px; }
.pay-opt {
  border: 2px solid var(--beige-dark); border-radius: 10px; padding: 14px;
  cursor: pointer; transition: all var(--tr); display: flex; align-items: center; gap: 10px;
}
.pay-opt:hover { border-color: var(--brown-light); }
.pay-opt.active { border-color: var(--brown); background: var(--beige); }
.pay-opt i { font-size: 1.2rem; color: var(--brown); }
.pay-opt span { font-size: 0.87rem; font-weight: 500; }
/* Modes de livraison */
.delivery-opts { display: flex; flex-direction: column; gap: 10px; margin-bottom: 6px; }
.delivery-opt {
  display: flex; align-items: center; gap: 12px; padding: 13px 15px;
  border: 2px solid var(--beige-dark); border-radius: 10px; cursor: pointer; transition: all var(--tr);
}
.delivery-opt:hover { border-color: var(--brown-light); }
.delivery-opt.active { border-color: var(--brown); background: var(--beige); }
.delivery-opt .do-radio { width: 20px; height: 20px; border: 2px solid var(--beige-dark); border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.delivery-opt.active .do-radio { border-color: var(--brown); }
.delivery-opt.active .do-radio::after { content: ''; width: 10px; height: 10px; border-radius: 50%; background: var(--brown); }
.delivery-opt .do-icon { width: 60px; height: 48px; flex-shrink: 0; border-radius: 9px; background: var(--beige); display: flex; align-items: center; justify-content: center; }
.delivery-opt .do-icon svg { width: 82%; height: auto; display: block; }
.delivery-opt .do-body { flex: 1; display: flex; flex-direction: column; }
.delivery-opt .do-label { font-weight: 700; font-size: 0.9rem; color: var(--brown-dark); line-height: 1.3; }
.delivery-opt .do-desc { font-size: 0.76rem; color: var(--muted); line-height: 1.4; margin-top: 3px; }
.delivery-opt .do-price { font-weight: 700; color: var(--brown); white-space: nowrap; font-size: 0.95rem; align-self: flex-start; padding-top: 2px; }
.order-confirm { display: none; text-align: center; padding: 32px 20px; background: #f0fdf4; border-radius: 12px; border: 1px solid #86efac; margin-top: 20px; }
.order-confirm.show { display: block; }
.order-confirm i { font-size: 2.5rem; color: #22c55e; margin-bottom: 12px; }
.order-confirm h4 { font-size: 1.2rem; color: #166534; margin-bottom: 8px; }
.order-confirm p { color: #166534; font-size: 0.88rem; }

/* ─── CONTACT PAGE ─── */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; padding: 80px 0; }
.contact-info-item { display: flex; gap: 18px; margin-bottom: 26px; align-items: flex-start; }
.c-info-icon { width: 50px; height: 50px; background: var(--beige); border-radius: 12px; display: flex; align-items: center; justify-content: center; color: var(--brown); font-size: 1.05rem; flex-shrink: 0; }
.c-info-body h4 { font-size: 0.97rem; font-weight: 600; color: var(--brown-dark); margin-bottom: 4px; font-family: 'Plus Jakarta Sans', 'Helvetica Neue', Arial, sans-serif; }
.c-info-body p { font-size: 0.87rem; color: var(--muted); line-height: 1.55; }
.c-hours { background: var(--beige); border-radius: 12px; padding: 22px; margin-top: 30px; }
.c-hours h4 { font-size: 0.9rem; font-weight: 600; color: var(--brown-dark); margin-bottom: 14px; display: flex; align-items: center; gap: 8px; font-family: 'Plus Jakarta Sans', 'Helvetica Neue', Arial, sans-serif; }
.c-hours-row { display: flex; justify-content: space-between; font-size: 0.85rem; padding: 7px 0; border-bottom: 1px solid var(--beige-dark); color: var(--text); }
.c-hours-row:last-child { border-bottom: none; }
.c-hours-row .closed { color: var(--muted); font-style: italic; }
.contact-form-wrap { background: #fff; border: 1px solid var(--beige-dark); border-radius: 16px; padding: 38px; }
.contact-form-wrap > h3 { font-size: 1.4rem; color: var(--brown-dark); margin-bottom: 6px; }
.contact-form-wrap > p { color: var(--muted); font-size: 0.88rem; margin-bottom: 26px; }
.form-success { display: none; text-align: center; padding: 24px; background: #f0fdf4; border-radius: 10px; border: 1px solid #86efac; margin-top: 16px; }
.form-success.show { display: block; }
.form-success i { font-size: 2rem; color: #22c55e; margin-bottom: 8px; }
.form-success p { color: #166534; font-size: 0.88rem; margin-top: 4px; }

/* ─── TOAST ─── */
.toast {
  position: fixed; bottom: 24px; right: 24px; z-index: 500;
  background: var(--brown-dark); color: #fff; padding: 14px 20px; border-radius: 10px;
  font-size: 0.88rem; display: flex; align-items: center; gap: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.22);
  transform: translateY(80px); opacity: 0; transition: all 0.32s ease;
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast i { color: var(--brown-light); font-size: 1.05rem; }

/* ─── FADE IN ANIMATION ─── */
.fade-in { opacity: 0; transform: translateY(22px); transition: opacity 0.55s ease, transform 0.55s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1100px) {
  .products-grid, .products-grid-shop { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(3, 1fr); gap: 28px; }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-img-wrap { display: none; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: none; }
  .trust-item { border-bottom: 1px solid rgba(255,255,255,0.18); }
  .trust-item:nth-child(3), .trust-item:nth-child(4) { border-bottom: none; }
  .newsletter-inner { flex-direction: column; text-align: center; }
  .newsletter-form { margin: 0; max-width: 100%; width: 100%; }
  .categories-grid { grid-template-columns: 1fr 1fr; }
}
/* ── Shop mobile bar & filter drawer ── */
.shop-mobile-bar { display: none; }
.sidebar-close-btn { display: none; }
.filter-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.4); z-index: 199; }
.filter-overlay.active { display: block; }

@media (max-width: 900px) {
  .shop-layout { grid-template-columns: 1fr; }
  .shop-mobile-bar {
    display: flex; align-items: center; padding: 16px 0 0;
  }
  .filter-toggle-btn {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--brown); color: #fff;
    border: none; border-radius: 8px; padding: 10px 20px;
    font-family: 'Plus Jakarta Sans', 'Helvetica Neue', Arial, sans-serif; font-size: .88rem; font-weight: 600;
    cursor: pointer; transition: background .2s;
  }
  .filter-toggle-btn:hover { background: var(--brown-dark); }
  .shop-sidebar {
    display: block;
    position: fixed; top: 0; left: -100%; height: 100vh;
    width: 300px; max-width: 88vw;
    overflow-y: auto; z-index: 200;
    background: #fff; padding: 20px 20px 80px;
    transition: left .28s cubic-bezier(.4,0,.2,1);
    box-shadow: none;
    /* Annuler le sticky sur mobile — le drawer remplace */
    max-height: none;
  }
  .shop-sidebar.open { left: 0; box-shadow: 4px 0 32px rgba(0,0,0,.18); }
  .cat-tabs { margin-top: 12px; }
  .sidebar-close-btn {
    display: flex; align-items: center; justify-content: flex-end;
    width: 100%; background: none; border: none; cursor: pointer;
    font-size: 1.3rem; color: var(--brown); padding: 0 0 16px; margin-bottom: 4px;
  }
  .cart-layout { grid-template-columns: 1fr; }
  .order-summary { position: static; }
  .contact-layout { grid-template-columns: 1fr; }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .navbar-links { display: none; }
  .navbar-menu-btn { display: flex; }
  .categories-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.2rem; }
  .products-grid, .products-grid-shop { grid-template-columns: 1fr 1fr; }
  .newsletter-inner { padding: 28px 22px; gap: 24px; }
  .newsletter-form { flex-direction: column; }
  .newsletter-form .btn, .newsletter-input { width: 100%; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > div:not(:first-child) { display: none; }
  .footer-grid > div:first-child + div { display: block; }
}
@media (max-width: 520px) {
  .container { padding: 0 16px; }
  .products-grid, .products-grid-shop { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; align-items: flex-start; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { border-right: none; }
  .payment-opts { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .page-header h1 { font-size: 1.9rem; }
  .testi-grid { grid-template-columns: 1fr; }
  .scroll-top-btn { bottom: 16px; right: 16px; width: 40px; height: 40px; font-size: .88rem; }
  .cat-tab { padding: 6px 12px; font-size: .78rem; }
}

/* ============================================================
   REFONTE SCIERIE NICOD — finitions style abris-jardin (KOEHL)
   Titres sombres neutres + accents verts, boutons gras avec lift
   ============================================================ */

/* Titres percutants façon abris : poids fort + couleur sombre neutre
   (le vert est réservé aux accents, pas aux titres) */
h1, h2, h3, h4, h5, h6 { font-weight: 800; letter-spacing: -0.01em; }
.section-title, .product-title, .cart-item-title, .order-summary h3,
.checkout-form h3, .contact-form-wrap > h3, .cart-items-hd h2,
.cart-empty h3, .newsletter-text h3, .about-feature h4, .c-info-body h4,
.c-hours h4, .filter-title, .about-img-badge strong, .sum-total,
.page-header h1, .navbar.scrolled .navbar-logo { color: var(--text); }
.page-header h1 { color: #fff; } /* exception : header sur fond sombre */

/* Boutons façon abris : gras, lettrage léger, lift + ombre au survol */
.btn { font-weight: 700; letter-spacing: 0.02em; }
.btn-primary:hover, .btn-buy-now:hover { background: #6E9A2E; border-color: #6E9A2E; }
.btn-primary:hover, .btn-outline:hover, .btn-white:hover {
  transform: translateY(-2px); box-shadow: var(--shadow);
}

/* Surfaces nettes (cards) sur fond gris clair abris */
.product-card, .testi-card, .filter-block, .order-summary,
.checkout-form, .contact-form-wrap { border-color: var(--beige-dark); }

/* Bannière CTA : dégradé vert abris */
.banner {
  background: linear-gradient(135deg, #20301A 0%, var(--brown) 60%, var(--brown-light) 100%);
}

/* Badge certification en vert vif abris */
.product-badge.cert { background: var(--green); }

/* ============================================================
   FICHES PRODUIT — style abris (label vert, prix sombre, bouton pilule)
   ============================================================ */
.product-card .product-desc { display: none; }
.product-card .product-category { color: var(--brown); }
.product-card .product-price { color: var(--text); font-weight: 800; }
.product-card .product-footer { border-top: none; padding-top: 4px; }
.product-card .product-actions { display: block; }
.pc-btn-cart {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .45rem;
  background: var(--brown);
  color: #fff;
  border: none;
  border-radius: 9999px;
  padding: .65rem 1rem;
  font-size: .84rem;
  font-weight: 700;
  font-family: 'Plus Jakarta Sans', 'Helvetica Neue', Arial, sans-serif;
  cursor: pointer;
  transition: background .15s, transform .1s, box-shadow .15s;
  white-space: nowrap;
  text-decoration: none;
  min-height: 44px;
}
.pc-btn-cart:hover { background: #6E9A2E; transform: translateY(-1px); box-shadow: 0 3px 10px rgba(136,181,59,.35); color: #fff; }
.pc-btn-cart.is-added { background: #5a9020; }

/* ============================================================
   TEMPLATE ABRIS-JARDIN — TOPBAR + HEADER SOMBRE + NAV MÉGA-MENU
   ============================================================ */
#header-topbar { background: #fff; border-bottom: 1px solid var(--beige-dark); padding: 7px 0; }
.topbar-inner { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; row-gap: 2px; overflow: visible; }
.topbar-item { display: flex; align-items: center; gap: 6px; font-size: 0.72rem; font-weight: 900; color: var(--text); text-transform: uppercase; letter-spacing: 0.03em; padding: 0 10px; white-space: nowrap; position: relative; }
.topbar-item + .topbar-item::before { content: ''; position: absolute; left: 0; top: 50%; transform: translateY(-50%); height: 14px; width: 1px; background: var(--beige-dark); }
.topbar-item i { font-size: 0.85rem; color: var(--brown); }
.topbar-rating { gap: 4px; }
.topbar-rating i { color: #F5A623; font-size: 0.7rem; }
.topbar-rating span { font-weight: 900; margin-left: 4px; }

/* Header sombre */
#site-header { background: #262626; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 8px rgba(0,0,0,.25); }
.header-inner { display: flex; align-items: center; gap: 1.5rem; padding: 14px 0; }
.header-logo { display: flex; align-items: center; gap: 11px; text-decoration: none; flex-shrink: 0; }
.header-logo .logo-mark { width: 42px; height: 42px; flex-shrink: 0; }
.header-logo .logo-mark svg { width: 100%; height: 100%; display: block; }
.logo-wrap { line-height: 1; }
.logo-row1 { display: block; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.45rem; font-weight: 900; color: #fff; letter-spacing: 0.18em; text-transform: uppercase; line-height: 1; }
.logo-row2 { display: block; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.82rem; font-weight: 900; color: var(--brown); letter-spacing: 0.34em; text-transform: uppercase; margin-top: 4px; line-height: 1; }

/* Recherche */
.header-search { flex: 1; display: flex; align-items: center; background: #fff; border-radius: 50px; overflow: hidden; height: 48px; }
.header-search-input { flex: 1; border: none; outline: none; padding: 0 1.25rem; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.95rem; color: var(--text); background: transparent; height: 100%; }
.header-search-input::placeholder { color: #aaa; }
.header-search-btn { width: 52px; height: 100%; background: var(--brown); border: none; color: #fff; font-size: 1rem; cursor: pointer; display: flex; align-items: center; justify-content: center; flex-shrink: 0; transition: background .2s; }
.header-search-btn:hover { background: #6E9A2E; }

/* Icônes droite */
.header-right { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.header-icon-btn { position: relative; display: flex; align-items: center; justify-content: center; width: 48px; height: 48px; background: var(--brown); border-radius: 50%; color: #fff; font-size: 1.1rem; text-decoration: none; transition: background .2s; border: none; cursor: pointer; }
.header-icon-btn:hover { background: #6E9A2E; color: #fff; }
.header-cart-btn { width: auto; border-radius: 50px; padding: 0 16px; gap: 8px; }
.header-cart-label { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.75rem; font-weight: 700; white-space: nowrap; line-height: 1; }
#site-header .cart-badge { position: absolute; top: -4px; right: -4px; min-width: 18px; height: 18px; background: var(--promo); color: #fff; border-radius: 50%; font-size: 0.62rem; font-weight: 700; display: none; align-items: center; justify-content: center; padding: 0 3px; border: none; }
#site-header .cart-badge.show { display: flex; }
.header-hamburger { display: none; flex-direction: column; gap: 5px; width: 42px; height: 42px; align-items: center; justify-content: center; cursor: pointer; background: rgba(255,255,255,.1); border: none; border-radius: 8px; padding: 8px; }
.header-hamburger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; }

/* Navigation / méga-menu */
#site-nav { background: #1e1e1e; border-top: 1px solid rgba(255,255,255,.08); position: sticky; top: 76px; z-index: 999; }
.site-nav-list { display: flex; align-items: center; flex-wrap: wrap; list-style: none; padding: 0; margin: 0; }
.site-nav-item { position: relative; }
.site-nav-link { display: flex; align-items: center; gap: 7px; padding: 13px 18px; font-family: 'Plus Jakarta Sans', sans-serif; font-size: 0.82rem; font-weight: 700; letter-spacing: 0.04em; color: rgba(255,255,255,.85); text-decoration: none; white-space: nowrap; transition: color .15s, background .15s; }
.site-nav-link:hover { color: #fff; background: rgba(255,255,255,.07); }
.site-nav-link--main { background: var(--brown); color: #fff; border-radius: 4px; margin: 6px 8px 6px 0; padding: 8px 16px; }
.site-nav-link--main:hover { background: #6E9A2E; color: #fff; }
.site-nav-link--light { color: rgba(255,255,255,.55); }
.site-nav-link--light:hover { color: #fff; }
.site-nav-right { margin-left: auto; }
.mega-menu { display: none; position: absolute; top: 100%; left: 0; background: #fff; box-shadow: 0 8px 32px rgba(0,0,0,.18); border-radius: 0 0 12px 12px; min-width: 260px; z-index: 998; padding: 1rem; }
.site-nav-has-mega:hover .mega-menu, .site-nav-has-mega.open .mega-menu { display: block; }
.mega-menu-grid { display: flex; flex-direction: column; gap: 4px; }
.mega-menu-item { display: block; padding: 10px 14px; font-size: 0.9rem; font-weight: 600; color: var(--text); border-radius: 8px; text-decoration: none; transition: background .15s, color .15s; }
.mega-menu-item:hover { background: var(--beige); color: var(--brown); }

/* ============================================================
   ACCUEIL — HERO MOSAÏQUE (slider 2/3 + 2 cartes 1/3)
   ============================================================ */
#home-top { padding: 1.25rem 0 2rem; background: var(--beige); }
#home-top > .container { max-width: none; padding: 0 24px; }
.home-top-inner { display: grid; grid-template-columns: 2fr 1fr; gap: 1rem; align-items: stretch; }
.home-slider-wrap { position: relative; border-radius: 15px; overflow: hidden; height: 540px; }
.home-slider { position: relative; width: 100%; height: 540px; background: #1a1a1a; border-radius: 15px; overflow: hidden; }
.home-slide { position: absolute; inset: 0; opacity: 0; transition: opacity .7s ease; pointer-events: none; }
.home-slide.active { opacity: 1; pointer-events: auto; }
.home-slide img { width: 100%; height: 100%; object-fit: cover; display: block; }
.slider-txt { position: absolute; bottom: 30px; left: 60px; background: rgba(0,0,0,.4); padding: 14px 24px; border-radius: 15px; color: #fff; max-width: 70%; }
.slider-title { color: #fff; font-size: clamp(2rem, 4.5vw, 3.5rem); font-weight: 900; line-height: 1.05; margin-bottom: 0.85rem; }
.slider-btn { display: inline-block; background: var(--brown); color: #fff; padding: 0.6rem 1.5rem; border-radius: 8px; font-weight: 700; font-size: 0.9rem; text-decoration: none; transition: all .25s ease; }
.slider-btn:hover { background: #6E9A2E; color: #fff; transform: translateY(-2px); }
.slider-dots { position: absolute; bottom: 14px; right: 20px; display: flex; gap: 7px; z-index: 10; }
.slider-dot { width: 10px; height: 10px; border-radius: 50%; border: 2px solid rgba(255,255,255,.7); background: transparent; cursor: pointer; transition: all .15s; padding: 0; }
.slider-dot.active { background: #fff; border-color: #fff; }
.home-top-sidebar { display: flex; flex-direction: column; gap: 0.75rem; }
.home-side-card { position: relative; border-radius: 15px; overflow: hidden; flex: 1; min-height: 0; transition: all .25s ease; background: #fff; display: block; }
.home-side-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.home-side-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block; z-index: 0; }
.home-side-card-body { position: absolute; bottom: 0; left: 0; right: 0; z-index: 1; padding: 1.25rem 1.25rem 1.1rem; background: linear-gradient(to top, rgba(0,0,0,.78) 0%, rgba(0,0,0,.3) 60%, transparent 100%); display: flex; flex-direction: column; }
.home-side-card-body h3 { color: #fff; font-size: 1.2rem; font-weight: 900; margin-bottom: 0.2rem; }
.home-side-card-body p { color: rgba(255,255,255,.85); font-size: 0.82rem; margin-bottom: 0.7rem; }
.home-side-btn { display: inline-block; background: #fff; color: var(--text); padding: 0.4rem 1.1rem; border-radius: 8px; font-weight: 700; font-size: 0.82rem; text-decoration: none; align-self: flex-start; transition: all .25s ease; }
.home-side-btn:hover { background: var(--brown); color: #fff; }

/* Bande catégories rondes */
#home-cat { padding: 2rem 0; background: #fff; }
.home-cat-track { display: flex; gap: 1.5rem; overflow-x: auto; justify-content: center; padding-bottom: 0.5rem; scrollbar-width: thin; }
.home-cat-item { display: flex; flex-direction: column; align-items: center; gap: 0.75rem; flex-shrink: 0; text-decoration: none; transition: transform .25s ease; }
.home-cat-item:hover { transform: translateY(-4px); }
.home-cat-img-wrap { width: 200px; height: 132px; background: var(--beige); border-radius: 200px 200px 0 0; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.home-cat-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.home-cat-label { font-size: 1rem; text-transform: uppercase; font-weight: 900; color: var(--muted); text-align: center; letter-spacing: 0.03em; }

.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }

/* ============================================================
   TEMPLATE ABRIS — RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) { .topbar-item:nth-child(n+5) { display: none; } }
@media (max-width: 980px) {
  .home-top-inner { grid-template-columns: 1fr; }
  .home-top-sidebar { flex-direction: row; }
  .home-slider-wrap, .home-slider { height: 420px; }
}
@media (max-width: 900px) {
  #header-topbar { display: none; }
  .header-search { display: none; }
  .header-hamburger { display: flex; }
  .header-cart-label { display: none; }
  .header-cart-btn { width: 48px; padding: 0; border-radius: 50%; }
  #site-nav { top: 0; }
}
@media (max-width: 768px) {
  #site-nav { display: none; }
  #site-nav.open { display: block; position: absolute; top: 76px; left: 0; right: 0; }
  .site-nav-list { flex-direction: column; align-items: stretch; }
  .site-nav-item { border-bottom: 1px solid rgba(255,255,255,.07); }
  .site-nav-link { padding: 14px 20px; }
  .site-nav-right { margin-left: 0; }
  .site-nav-link--main { margin: 10px 16px; border-radius: 8px; }
  .home-top-sidebar { flex-direction: column; }
  .home-slider-wrap, .home-slider { height: 340px; }
}

/* ============================================================
   ACCUEIL — ORGANISATION STYLE DISRUPTDEAL.DE
   ============================================================ */
.section--surface { background: var(--beige); }
.section--sm { padding: 56px 0; }
.section__label { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--brown); margin-bottom: .6rem; }
.section__title { font-size: clamp(1.75rem, 3.2vw, 2.6rem); margin-bottom: .6rem; color: var(--text); }
.section__sub { font-size: 1rem; color: var(--muted); max-width: 52ch; line-height: 1.65; }
.btn-outline-white { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.45); }
.btn-outline-white:hover { background: rgba(255,255,255,.18); border-color: #fff; color: #fff; }

/* Hero split (texte sur image) */
.hero-split { position: relative; display: block; min-height: 560px; overflow: hidden; background: #14201a; }
.hero-split__right { position: absolute; inset: 0; z-index: 0; }
.hero-split__right img { width: 100%; height: 100%; object-fit: cover; object-position: center right; }
.hero-split__left { position: relative; z-index: 1; padding: 5rem 4rem 5rem 2.5rem; display: flex; flex-direction: column; justify-content: center; max-width: 660px; min-height: 560px; background: linear-gradient(100deg, rgba(14,20,14,.93) 40%, rgba(14,20,14,.6) 65%, rgba(14,20,14,.15) 85%, transparent 100%); }
.hero-split__badge { display: inline-flex; align-items: center; gap: .45rem; font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.6); margin-bottom: 1.4rem; }
.hero-split__badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--brown); }
.hero-split__title { font-size: clamp(2.2rem, 4.5vw, 3.8rem); color: #fff; margin-bottom: 1.25rem; font-weight: 800; line-height: 1.08; }
.hero-split__title em { font-style: normal; color: var(--brown-light); }
.hero-split__sub { font-size: .98rem; color: rgba(255,255,255,.7); line-height: 1.7; max-width: 42ch; margin-bottom: 2.25rem; }
.hero-split__actions { display: flex; gap: .65rem; flex-wrap: wrap; margin-bottom: 3rem; }
.hero-split__stats { display: flex; gap: 2.25rem; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,.14); }
.hero-split__stat-val { display: block; font-size: 1.45rem; font-weight: 800; color: #fff; line-height: 1; }
.hero-split__stat-lbl { font-size: .72rem; color: rgba(255,255,255,.5); margin-top: .2rem; }

/* Cartes catégories portrait (façon brand-card) */
.cat-grid-dd { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.cat-card-dd { position: relative; border-radius: 16px; overflow: hidden; aspect-ratio: 3/4; display: block; transition: transform .25s, box-shadow .25s; }
.cat-card-dd:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.22); }
.cat-card-dd img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.cat-card-dd:hover img { transform: scale(1.05); }
.cat-card-dd__overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(10,17,10,.85) 0%, rgba(10,17,10,.35) 55%, rgba(10,17,10,.05) 100%); }
.cat-card-dd__body { position: absolute; bottom: 0; left: 0; right: 0; padding: 1.4rem 1.25rem; }
.cat-card-dd__name { font-weight: 800; font-size: 1.05rem; letter-spacing: .04em; text-transform: uppercase; color: #fff; margin-bottom: .25rem; }
.cat-card-dd__sub { font-size: .78rem; color: rgba(255,255,255,.75); margin-bottom: .75rem; line-height: 1.45; }
.cat-card-dd__cta { color: var(--brown-light); font-size: .8rem; font-weight: 700; display: inline-flex; align-items: center; gap: .3rem; }

/* Bénéfices */
.benefits-header { text-align: center; margin-bottom: 1.75rem; }
.benefits-header__title { font-size: clamp(1.9rem, 3.5vw, 2.8rem); margin-bottom: .6rem; color: var(--text); }
.benefits-header__sub { color: var(--muted); max-width: 50ch; margin-inline: auto; font-size: .97rem; }
.benefits-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.benefit-card { background: #fff; border-radius: 12px; padding: 1.75rem 1.5rem 1.5rem; border-left: 4px solid var(--brown); box-shadow: var(--shadow); position: relative; overflow: hidden; transition: transform .22s, box-shadow .22s; }
.benefit-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.benefit-card__num { position: absolute; top: -.5rem; right: .75rem; font-size: 4.5rem; font-weight: 800; color: var(--brown); opacity: .08; line-height: 1; pointer-events: none; }
.benefit-card__icon { width: 48px; height: 48px; border-radius: 8px; background: rgba(136,181,59,.14); display: grid; place-items: center; margin-bottom: 1rem; }
.benefit-card__icon i { font-size: 1.3rem; color: var(--brown); }
.benefit-card__stat { font-size: 1.6rem; font-weight: 800; color: var(--brown); margin-bottom: .25rem; line-height: 1; }
.benefit-card__title { font-size: .95rem; font-weight: 700; color: var(--text); margin-bottom: .4rem; }
.benefit-card__desc { font-size: .8rem; color: var(--muted); line-height: 1.55; }

/* Bande de statistiques pleine largeur — rendu « premium artisanal » */
.stats-band {
  position: relative;
  padding: 3.5rem 0;
  margin-top: 2.5rem;
  overflow: hidden;
  border-top: 1px solid var(--beige-dark);
  border-bottom: 1px solid var(--beige-dark);
  background: linear-gradient(180deg, #FCFCFA 0%, var(--beige) 100%);
}
.stats-band .container { position: relative; z-index: 1; }
.stats-band__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }
.stats-band__item {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: .8rem;
  padding: 1.85rem 1rem 1.6rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--beige-dark);
  box-shadow: 0 4px 14px rgba(32,48,26,.05);
  transition: transform .28s ease, opacity .55s ease, border-color .28s ease, box-shadow .28s ease;
}
.stats-band__item:hover {
  transform: translateY(-6px);
  border-color: rgba(136,181,59,.45);
  box-shadow: 0 16px 34px rgba(32,48,26,.12);
}
.stats-band__icon {
  width: 56px; height: 56px; border-radius: 50%;
  display: grid; place-items: center;
  background: rgba(136,181,59,.12);
  border: 1px solid rgba(136,181,59,.22);
  color: var(--brown);
  font-size: 1.35rem;
  transition: background .28s ease, transform .28s ease, box-shadow .28s ease, color .28s ease;
}
.stats-band__item:hover .stats-band__icon {
  background: var(--brown);
  color: #fff;
  transform: scale(1.08);
  box-shadow: 0 8px 18px rgba(136,181,59,.35);
}
.stats-band__val {
  display: inline-flex; align-items: baseline; justify-content: center;
  font-size: 2.7rem; font-weight: 800; line-height: 1; color: var(--text); letter-spacing: -.02em;
  font-variant-numeric: tabular-nums;
}
.stats-band__num { color: var(--text); }
.stats-band__val sup { font-size: .48em; color: var(--brown); font-weight: 700; vertical-align: super; margin-left: 2px; }
.stats-band__val .star { color: var(--brown); font-size: .55em; margin-left: 3px; }
.stats-band__lbl {
  font-size: .74rem; color: var(--muted);
  text-transform: uppercase; letter-spacing: .1em; font-weight: 700;
}

/* Bannière feature (split) */
.feature-banner { display: grid; grid-template-columns: 1fr 1fr; border-radius: 16px; overflow: hidden; background: #20301A; min-height: 360px; }
.feature-banner__content { padding: 3.25rem; display: flex; flex-direction: column; justify-content: center; gap: 1rem; }
.feature-banner__label { font-size: .7rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--brown-light); }
.feature-banner__title { font-size: clamp(1.5rem, 2.8vw, 2.1rem); color: #fff; line-height: 1.1; }
.feature-banner__desc { font-size: .88rem; color: rgba(255,255,255,.6); max-width: 40ch; line-height: 1.65; }
.feature-banner__actions { display: flex; gap: .65rem; flex-wrap: wrap; padding-top: .25rem; }
.feature-banner__img { position: relative; overflow: hidden; min-height: 280px; }
.feature-banner__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.feature-banner:hover .feature-banner__img img { transform: scale(1.04); }

/* Témoignages (grille disruptdeal) */
.testimonials-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; }
.tcard { background: #fff; border: 1px solid var(--beige-dark); border-radius: 12px; padding: 1.25rem; display: flex; flex-direction: column; gap: .75rem; }
.tcard__stars { display: flex; gap: 2px; }
.tcard__star { color: #f59e0b; font-size: .85rem; }
.tcard__text { font-size: .82rem; color: var(--text); line-height: 1.6; flex: 1; }
.tcard__author { display: flex; align-items: center; gap: .65rem; }
.tcard__avatar { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; border: 2px solid rgba(136,181,59,.2); flex-shrink: 0; }
.tcard__name { font-size: .82rem; font-weight: 600; color: var(--text); }
.tcard__role { font-size: .7rem; color: var(--muted); }

@media (max-width: 980px) {
  .cat-grid-dd { grid-template-columns: repeat(2, 1fr); }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-band__grid { grid-template-columns: repeat(2, 1fr); }
  .stats-band__val { font-size: 2.4rem; }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-banner { grid-template-columns: 1fr; }
  .hero-split__left { padding: 4rem 2rem; max-width: none; background: linear-gradient(180deg, rgba(14,20,14,.86), rgba(14,20,14,.72)); }
}
@media (max-width: 560px) {
  .cat-grid-dd, .benefits-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .stats-band { padding: 2.75rem 0; }
  .stats-band__grid { grid-template-columns: 1fr 1fr; gap: .8rem; }
  .stats-band__item { padding: 1.25rem .65rem 1.15rem; gap: .55rem; }
  .stats-band__icon { width: 46px; height: 46px; font-size: 1.1rem; }
  .stats-band__val { font-size: 2.1rem; }
  .stats-band__lbl { font-size: .68rem; letter-spacing: .07em; }
  .feature-banner__content { padding: 2.25rem; }
}

/* ============================================================
   ACCUEIL — EN-TÊTES DE SECTION HARMONISÉS (centrés, rythme régulier)
   Tous les blocs de titre de la home partagent désormais .sec-head :
   label + titre + sous-titre, centrés, avec un espacement vertical cohérent.
   ============================================================ */
.sec-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.75rem;
}
.sec-head .section__label { margin-bottom: .65rem; }
.sec-head .section__title { margin-bottom: .65rem; }
.sec-head .section__sub {
  margin-inline: auto;   /* centre le sous-titre malgré son max-width en ch */
}

/* Lien "voir tout" centré sous une grille de produits */
.sec-more {
  display: flex;
  justify-content: center;
  margin-top: 2.25rem;
}
.sec-more__link {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .8rem 1.9rem;
  border: 2px solid var(--brown);
  border-radius: 9999px;
  color: var(--brown);
  font-weight: 700;
  font-size: .9rem;
  transition: background .18s, color .18s, transform .18s, box-shadow .18s;
}
.sec-more__link i { font-size: .8rem; transition: transform .18s; }
.sec-more__link:hover {
  background: var(--brown);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.sec-more__link:hover i { transform: translateX(3px); }

/* Rythme vertical régulier entre sections de la home + grilles mieux centrées */
.cat-grid-dd, .products-grid, .benefits-grid, .testimonials-grid {
  margin-inline: auto;
}
/* Gaps légèrement harmonisés pour un alignement plus net */
.benefits-grid { gap: 1.5rem; }
.testimonials-grid { gap: 1.25rem; }

@media (max-width: 768px) {
  .sec-head { margin-bottom: 2rem; }
  .sec-more { margin-top: 1.75rem; }
  .sec-more__link { width: 100%; max-width: 320px; justify-content: center; }
}


/* ===== FICHE PRODUIT — Description riche (points forts + specs + accordéon) ===== */
.pd-lead-list ul { list-style: none; margin: 0; padding: 0; }
.pd-lead-list li { position: relative; padding: 7px 0 7px 26px; font-size: 0.95rem; line-height: 1.5; border-bottom: 1px solid var(--beige-dark); }
.pd-lead-list li:last-child { border-bottom: 0; }
.pd-lead-list li::before { content: "\2713"; color: var(--brown); font-weight: 800; position: absolute; left: 2px; top: 7px; }
.pd-lead-list strong { color: var(--text); }

.pd-spec-table { width: 100%; border-collapse: collapse; margin-top: 10px; font-size: 0.92rem; border: 1px solid var(--beige-dark); border-radius: 10px; overflow: hidden; }
.pd-spec-table th, .pd-spec-table td { text-align: left; padding: 10px 14px; border-bottom: 1px solid var(--beige-dark); vertical-align: top; }
.pd-spec-table th { font-weight: 600; color: var(--muted); width: 46%; background: var(--beige); }
.pd-spec-table td { color: var(--text); font-weight: 600; }
.pd-spec-table tr:last-child th, .pd-spec-table tr:last-child td { border-bottom: 0; }

.pd-acc { margin-top: 10px; border: 1px solid var(--beige-dark); border-radius: 10px; overflow: hidden; }
.pd-acc__item { border-bottom: 1px solid var(--beige-dark); }
.pd-acc__item:last-child { border-bottom: 0; }
.pd-acc__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; cursor: pointer; padding: 14px 16px; font-weight: 700; color: var(--text); list-style: none; user-select: none; transition: background .15s; }
.pd-acc__head::-webkit-details-marker { display: none; }
.pd-acc__head::marker { content: ""; }
.pd-acc__head:hover { background: var(--beige); }
.pd-acc__head i { color: var(--brown); transition: transform .2s; flex-shrink: 0; font-size: 0.85rem; }
.pd-acc__item[open] > .pd-acc__head { background: var(--beige); }
.pd-acc__item[open] > .pd-acc__head i { transform: rotate(180deg); }
.pd-acc__body { padding: 4px 16px 18px; font-size: 0.94rem; line-height: 1.7; color: var(--muted); }
.pd-acc__body h2, .pd-acc__body h3, .pd-acc__body h4 { font-size: 1rem; color: var(--text); margin: 14px 0 6px; }
.pd-acc__body p { margin: 0 0 10px; }
.pd-acc__body ul, .pd-acc__body ol { margin: 6px 0 12px; padding-left: 20px; }
.pd-acc__body li { margin: 4px 0; }
.pd-acc__body strong { color: var(--text); }


/* ===== FICHE PRODUIT — Mise en page Electroland (fil d'Ariane blanc + lead + full-width) ===== */
.pd-breadcrumb-bar { background: #fff; padding: 22px 0 2px; }
.pd-breadcrumb-bar .breadcrumb, .pd-breadcrumb-bar .breadcrumb a, .pd-breadcrumb-bar .breadcrumb span { color: var(--muted); }
.pd-breadcrumb-bar .breadcrumb a:hover { color: var(--brown); }
.pd-breadcrumb-bar .breadcrumb i { color: var(--beige-dark); }
.product-detail-wrap { padding-top: 6px; }
.pd-lead-list { margin: 2px 0 20px; }
.pd-lead { font-size: 1rem; color: var(--muted); line-height: 1.65; margin: 4px 0 20px; }
.pd-full { margin-top: 46px; padding-top: 34px; border-top: 1px solid var(--beige-dark); }
.pd-full > .pd-desc-label:first-child { margin-top: 0; }


/* ===== FICHE PRODUIT — Buy-box (stock + quantité + réassurance) ===== */
.pd-stock { display: flex; align-items: center; gap: 8px; color: var(--brown); font-weight: 700; font-size: 0.9rem; margin: 0 0 22px; }
.pd-stock i { color: var(--brown); }
.pd-buy-row { display: flex; gap: 12px; margin-bottom: 12px; align-items: stretch; }
.pd-qty { display: flex; align-items: center; border: 1.5px solid var(--beige-dark); border-radius: 8px; overflow: hidden; flex-shrink: 0; }
.pd-qty button { width: 44px; align-self: stretch; border: none; background: var(--beige); color: var(--text); font-size: 1.25rem; line-height: 1; cursor: pointer; transition: background .15s; }
.pd-qty button:hover { background: var(--beige-dark); }
.pd-qty input { width: 48px; text-align: center; border: none; background: #fff; font-size: 1rem; font-weight: 700; color: var(--text); -moz-appearance: textfield; }
.pd-qty input::-webkit-outer-spin-button, .pd-qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.pd-btn-buy--full { width: 100%; margin-bottom: 24px; }
.pd-trust { list-style: none; margin: 0 0 4px; padding: 20px 0 0; border-top: 1px solid var(--beige-dark); display: flex; flex-direction: column; gap: 13px; }
.pd-trust li { display: flex; align-items: center; gap: 11px; font-size: 0.88rem; color: var(--muted); line-height: 1.4; }
.pd-trust li i { color: var(--brown); width: 18px; text-align: center; flex-shrink: 0; font-size: 0.95rem; }


/* ===== FOOTER (style Sommerhäuser adapté Nicod) ===== */
.footer { background: #16181a; color: rgba(255,255,255,.62); font-size: .9rem; }
.footer .container { max-width: 1240px; }
.footer a { color: rgba(255,255,255,.62); text-decoration: none; transition: color .15s; }
.footer a:hover { color: var(--brown); }
.footer__nl { border-bottom: 1px solid rgba(255,255,255,.08); background: #1c1e21; }
.footer__nl-inner { display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; padding: 2rem 0; }
.footer__nl-title { font-size: 1.35rem; font-weight: 800; color: #fff; }
.footer__nl-sub { color: rgba(255,255,255,.55); font-size: .9rem; margin-top: .25rem; }
.footer__nl-form { display: flex; gap: .6rem; flex: 1; min-width: 300px; max-width: 460px; }
.footer__nl-input { flex: 1; padding: .85rem 1rem; border-radius: 8px; border: 1px solid rgba(255,255,255,.15); background: rgba(255,255,255,.06); color: #fff; font-size: .9rem; }
.footer__nl-input::placeholder { color: rgba(255,255,255,.4); }
.footer__grid { display: grid; grid-template-columns: 1.7fr 1fr 1.3fr 1fr; gap: 2.5rem; padding: 3.5rem 0 1rem; }
.footer__brand { font-size: 1.5rem; font-weight: 800; color: #fff; letter-spacing: .02em; }
.footer__brand span { color: var(--brown); }
.footer__desc { margin: 1rem 0 0; line-height: 1.7; color: rgba(255,255,255,.55); font-size: .88rem; max-width: 340px; }
.footer__col-title { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.42); font-weight: 700; margin-bottom: 1.1rem; }
.footer__contact { color: rgba(255,255,255,.6); }
.footer__links { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .75rem; }
.footer__links a { font-size: .9rem; }
.footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; border-top: 1px solid rgba(255,255,255,.08); margin-top: 1.5rem; padding: 1.5rem 0 2rem; font-size: .82rem; color: rgba(255,255,255,.45); }
.footer__legal { display: flex; gap: 1.4rem; flex-wrap: wrap; }
.footer__legal a { font-size: .82rem; color: rgba(255,255,255,.55); }
@media (max-width: 900px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer__nl-inner { flex-direction: column; align-items: flex-start; }
  .footer__nl-form { max-width: none; width: 100%; }
}
@media (max-width: 560px) {
  .footer__grid { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; align-items: flex-start; }
}


/* ===== CARROUSEL PRODUITS (accueil) ===== */
.pcar { position: relative; }
.pcar-track { display: flex !important; grid-template-columns: none !important; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; scroll-behavior: smooth; padding: 6px 2px 14px; scrollbar-width: none; }
.pcar-track::-webkit-scrollbar { display: none; }
.pcar-track > * { flex: 0 0 clamp(240px, 25vw, 288px); scroll-snap-align: start; }
.pcar-arrow { position: absolute; top: 44%; transform: translateY(-50%); z-index: 6; width: 48px; height: 48px; border-radius: 50%; border: 1px solid var(--beige-dark); background: #fff; color: var(--text); box-shadow: 0 6px 18px rgba(0,0,0,.14); cursor: pointer; display: flex; align-items: center; justify-content: center; font-size: 1rem; transition: background .15s, color .15s, border-color .15s; }
.pcar-arrow:hover { background: var(--brown); color: #fff; border-color: var(--brown); }
.pcar-arrow:disabled { opacity: 0; pointer-events: none; }
.pcar-prev { left: -14px; }
.pcar-next { right: -14px; }
.pcar-dots { display: flex; justify-content: center; gap: 8px; margin-top: 16px; }
.pcar-dot { width: 9px; height: 9px; border-radius: 50%; background: var(--beige-dark); border: none; cursor: pointer; padding: 0; transition: all .2s; }
.pcar-dot.active { background: var(--brown); width: 26px; border-radius: 5px; }
@media (max-width: 640px) { .pcar-prev { left: -6px; } .pcar-next { right: -6px; } .pcar-arrow { width: 40px; height: 40px; } }


/* ===== AUTOCOMPLÉTION RECHERCHE (suggestions) ===== */
.header-search-results { position: absolute; z-index: 1200; background: #fff; border: 1px solid var(--beige-dark); border-radius: 10px; box-shadow: 0 16px 40px rgba(0,0,0,.22); overflow: hidden; max-height: 440px; overflow-y: auto; }
.hsr-item { display: flex; align-items: center; gap: 12px; padding: 10px 14px; text-decoration: none; color: var(--text); border-bottom: 1px solid var(--beige); }
.hsr-item:last-of-type { border-bottom: none; }
.hsr-item:hover { background: var(--beige); }
.hsr-item img { width: 46px; height: 46px; object-fit: cover; border-radius: 7px; flex-shrink: 0; background: var(--beige); border: 1px solid var(--beige-dark); }
.hsr-t { flex: 1; font-size: 0.9rem; line-height: 1.3; color: var(--text); }
.hsr-t mark { background: transparent; color: var(--brown); font-weight: 700; padding: 0; }
.hsr-p { font-weight: 700; color: var(--brown-dark); font-size: 0.9rem; white-space: nowrap; }
.hsr-all { display: flex; align-items: center; justify-content: center; gap: 8px; padding: 12px 14px; text-align: center; font-weight: 600; font-size: 0.85rem; color: var(--brown); text-decoration: none; background: var(--beige); border-top: 1px solid var(--beige-dark); }
.hsr-all:hover { background: var(--beige-dark); color: var(--brown-dark); }
.hsr-empty { padding: 18px 14px; text-align: center; color: var(--muted); font-size: 0.9rem; }

/* BDH: topbar pleine largeur + selecteur de langue */
#header-topbar .container { max-width: 100%; padding-left: 18px; padding-right: 18px; }
.bdh-lang { display:flex; gap:4px; align-items:center; margin-right:12px; }
.bdh-lang button { background:transparent; border:1px solid rgba(255,255,255,.28); color:#e8f0e9; font-weight:800; font-size:.72rem; line-height:1; padding:6px 8px; border-radius:6px; cursor:pointer; text-transform:uppercase; letter-spacing:.03em; transition:all .15s; font-family:inherit; }
.bdh-lang button:hover { border-color:#88B53B; color:#fff; }
.bdh-lang button.active { background:#88B53B; color:#fff; border-color:transparent; }
@media (max-width:600px){ .bdh-lang button{ padding:5px 6px; font-size:.68rem; } .bdh-lang{ margin-right:6px; } }
/* Masquer la barre Google Translate */
.goog-te-banner-frame, .goog-te-gadget-icon, .goog-logo-link, .goog-te-gadget span { display:none !important; }
body { top:0 !important; position:static !important; }
#goog-gt-tt, .goog-te-balloon-frame, .goog-tooltip { display:none !important; }
.goog-text-highlight { background:none !important; box-shadow:none !important; }