/* ==========================================================================
   Canebia — design system
   Palette : vert profond, blanc cassé, beige, noir doux, touches dorées
   ========================================================================== */

:root {
  --green-deep: #1e3a2f;
  --green: #2c5240;
  --green-soft: #3f6b54;
  --green-pale: #e7efe9;
  --gold: #c9a35c;
  --gold-soft: #e8d9bd;
  --cream: #faf7f0;
  --beige: #ede4d3;
  --ink: #1a1a18;
  --ink-soft: #4a4a44;
  --white: #ffffff;
  --danger: #a33d2e;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow: 0 2px 12px rgba(26, 26, 24, 0.08);
  --shadow-lg: 0 10px 34px rgba(30, 58, 47, 0.16);
  --font-body: "Segoe UI", system-ui, -apple-system, Roboto, sans-serif;
  --font-title: Georgia, "Times New Roman", serif;
  --maxw: 1200px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--green); text-decoration-color: var(--gold); text-underline-offset: 3px; }
a:hover { color: var(--green-deep); }
h1, h2, h3, h4 { font-family: var(--font-title); line-height: 1.25; color: var(--green-deep); margin: 0 0 0.6em; }
h1 { font-size: clamp(1.7rem, 4.5vw, 2.6rem); }
h2 { font-size: clamp(1.35rem, 3vw, 1.9rem); }
h3 { font-size: 1.2rem; }
p { margin: 0 0 1em; }
ul, ol { padding-left: 1.3em; }
.container { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
.visually-hidden { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--gold); color: var(--ink); padding: 8px 16px; z-index: 200; }
.skip-link:focus { left: 8px; }

/* ==========================================================================
   Boutons
   ========================================================================== */
.btn {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 999px;
  border: 2px solid transparent;
  background: var(--green-deep);
  color: var(--cream);
  font-weight: 600;
  font-size: 0.98rem;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn:hover { background: var(--green); color: var(--white); transform: translateY(-1px); box-shadow: var(--shadow); }
.btn--gold { background: var(--gold); color: var(--green-deep); }
.btn--gold:hover { background: #b8924b; color: var(--green-deep); }
.btn--ghost { background: transparent; border-color: var(--green-deep); color: var(--green-deep); }
.btn--ghost:hover { background: var(--green-deep); color: var(--cream); }
.btn--sm { padding: 8px 16px; font-size: 0.88rem; }
.btn[disabled] { opacity: 0.5; cursor: not-allowed; transform: none; }

/* ==========================================================================
   Bandeau info + header sticky
   ========================================================================== */
.topbar {
  background: var(--green-deep);
  color: var(--gold-soft);
  font-size: 0.82rem;
  text-align: center;
  padding: 7px 12px;
}
.topbar strong { color: var(--gold); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 240, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--beige);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 12px 20px;
  max-width: var(--maxw);
  margin: 0 auto;
}
.brand { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.brand img { width: 46px; height: 46px; border-radius: 10px; object-fit: cover; }
.brand-name { font-family: var(--font-title); font-size: 1.45rem; font-weight: 700; color: var(--green-deep); letter-spacing: 0.5px; }
.brand-tag { display: block; font-size: 0.62rem; letter-spacing: 1.6px; text-transform: uppercase; color: var(--gold); font-family: var(--font-body); }

.search-form { flex: 1; display: flex; max-width: 430px; position: relative; }
.search-form input {
  width: 100%;
  padding: 10px 42px 10px 16px;
  border: 1.5px solid var(--beige);
  border-radius: 999px;
  background: var(--white);
  font-size: 0.95rem;
  font-family: inherit;
}
.search-form input:focus { outline: 2px solid var(--gold); border-color: var(--gold); }
.search-form button { position: absolute; right: 6px; top: 50%; transform: translateY(-50%); background: none; border: 0; cursor: pointer; font-size: 1.05rem; padding: 6px; }
.search-results {
  position: absolute; top: calc(100% + 6px); left: 0; right: 0;
  background: var(--white); border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg); max-height: 380px; overflow-y: auto; z-index: 120;
}
.search-results a { display: block; padding: 10px 14px; text-decoration: none; border-bottom: 1px solid var(--cream); font-size: 0.92rem; }
.search-results a:hover { background: var(--green-pale); }
.search-results .sr-type { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 1px; color: var(--gold); display: block; }

.header-actions { display: flex; align-items: center; gap: 10px; margin-left: auto; }
.cart-btn {
  position: relative; display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 18px; border-radius: 999px; background: var(--green-deep);
  color: var(--cream); text-decoration: none; font-weight: 600; font-size: 0.92rem;
}
.cart-btn:hover { background: var(--green); color: var(--white); }
.cart-count {
  background: var(--gold); color: var(--green-deep); border-radius: 999px;
  min-width: 21px; height: 21px; display: inline-flex; align-items: center; justify-content: center;
  font-size: 0.75rem; font-weight: 700; padding: 0 5px;
}
.nav-toggle { display: none; background: none; border: 0; font-size: 1.6rem; cursor: pointer; color: var(--green-deep); }

/* ==========================================================================
   Navigation + mega-menu
   ========================================================================== */
.main-nav { border-top: 1px solid var(--beige); background: var(--white); }
.main-nav > ul {
  display: flex; gap: 4px; list-style: none; margin: 0; padding: 0 20px;
  max-width: var(--maxw); margin-inline: auto; flex-wrap: wrap;
}
.main-nav > ul > li { position: relative; }
.main-nav > ul > li > a {
  display: block; padding: 12px 14px; text-decoration: none;
  font-weight: 600; font-size: 0.92rem; color: var(--ink);
  border-bottom: 3px solid transparent;
}
.main-nav > ul > li > a:hover { color: var(--green-deep); border-bottom-color: var(--gold); }
.mega {
  position: absolute; left: 0; top: 100%; min-width: 520px;
  background: var(--white); border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow-lg); padding: 22px 26px;
  display: none; grid-template-columns: 1fr 1fr; gap: 4px 30px; z-index: 110;
}
.main-nav li:hover .mega, .main-nav li:focus-within .mega { display: grid; }
.mega h4 { grid-column: 1 / -1; margin: 0 0 4px; font-size: 0.78rem; text-transform: uppercase; letter-spacing: 1.4px; color: var(--gold); font-family: var(--font-body); }
.mega a { display: block; padding: 6px 0; font-size: 0.9rem; text-decoration: none; color: var(--ink-soft); }
.mega a:hover { color: var(--green-deep); text-decoration: underline; }
.mega .mega-cta { grid-column: 1 / -1; margin-top: 10px; font-weight: 700; color: var(--green-deep); }

/* ==========================================================================
   Hero
   ========================================================================== */
.hero {
  position: relative;
  background: linear-gradient(100deg, var(--green-deep) 0%, var(--green) 60%, var(--green-soft) 100%);
  color: var(--cream);
  overflow: hidden;
}
.hero-inner {
  max-width: var(--maxw); margin: 0 auto; padding: 60px 20px;
  display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center;
}
.hero h1 { color: var(--cream); font-size: clamp(1.9rem, 5vw, 3rem); margin-bottom: 0.4em; }
.hero h1 em { color: var(--gold); font-style: normal; }
.hero p { color: var(--gold-soft); font-size: 1.08rem; max-width: 55ch; }
.hero-ctas { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 22px; }
.hero-img { border-radius: var(--radius); box-shadow: var(--shadow-lg); aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.hero-badges { display: flex; gap: 18px; flex-wrap: wrap; margin-top: 28px; font-size: 0.85rem; color: var(--gold-soft); }
.hero-badges span::before { content: "✓ "; color: var(--gold); font-weight: 700; }

/* ==========================================================================
   Sections & grilles
   ========================================================================== */
.section { padding: 52px 0; }
.section--tint { background: var(--white); }
.section--beige { background: var(--beige); }
.section--green { background: var(--green-deep); color: var(--cream); }
.section--green h2, .section--green h3 { color: var(--cream); }
.section-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; margin-bottom: 26px; flex-wrap: wrap; }
.section-head .link-more { font-weight: 600; font-size: 0.92rem; white-space: nowrap; }
.kicker { display: block; font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; font-weight: 700; }

.grid { display: grid; gap: 22px; }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

/* ==========================================================================
   Cartes produit
   ========================================================================== */
.product-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); display: flex; flex-direction: column;
  transition: transform 0.18s, box-shadow 0.18s; position: relative;
}
.product-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.product-card .pc-img { aspect-ratio: 1/1; object-fit: cover; width: 100%; background: var(--beige); }
.pc-badge {
  position: absolute; top: 12px; left: 12px; background: var(--gold); color: var(--green-deep);
  font-size: 0.72rem; font-weight: 700; padding: 4px 10px; border-radius: 999px; letter-spacing: 0.5px;
}
.pc-badge--stock { background: var(--danger); color: var(--white); }
.pc-body { padding: 16px 18px 18px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
.pc-title { font-size: 1.05rem; margin: 0; }
.pc-title a { text-decoration: none; color: var(--green-deep); }
.pc-title a::after { content: ""; position: absolute; inset: 0; }
.pc-meta { font-size: 0.8rem; color: var(--ink-soft); display: flex; gap: 10px; flex-wrap: wrap; }
.pc-meta span { background: var(--green-pale); border-radius: 999px; padding: 2px 9px; }
.pc-desc { font-size: 0.86rem; color: var(--ink-soft); flex: 1; }
.pc-foot { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 8px; }
.pc-price { font-weight: 700; font-size: 1.15rem; color: var(--green-deep); }
.pc-price small { font-weight: 400; font-size: 0.72rem; color: var(--ink-soft); display: block; }
.pc-add { position: relative; z-index: 2; }

/* Cartes catégorie */
.cat-card {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background: var(--green-deep); color: var(--cream); text-decoration: none;
  aspect-ratio: 16/10; display: flex; align-items: flex-end;
  box-shadow: var(--shadow); transition: transform 0.18s;
}
.cat-card:hover { transform: translateY(-4px); }
.cat-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; opacity: 0.55; }
.cat-card span {
  position: relative; padding: 16px 18px; font-family: var(--font-title);
  font-size: 1.2rem; font-weight: 700; color: var(--cream);
  text-shadow: 0 1px 8px rgba(0,0,0,0.5); width: 100%;
  background: linear-gradient(transparent, rgba(30,58,47,0.85));
}

/* Cartes article */
.article-card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow); display: flex; flex-direction: column; position: relative;
  transition: transform 0.18s;
}
.article-card:hover { transform: translateY(-4px); }
.article-card img { aspect-ratio: 16/9; object-fit: cover; width: 100%; background: var(--beige); }
.ac-body { padding: 16px 18px 20px; }
.ac-body h3 { font-size: 1.02rem; margin-bottom: 6px; }
.ac-body h3 a { text-decoration: none; color: var(--green-deep); }
.ac-body h3 a::after { content: ""; position: absolute; inset: 0; }
.ac-excerpt { font-size: 0.87rem; color: var(--ink-soft); margin: 0; }
.ac-meta { font-size: 0.76rem; color: var(--gold); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; display: block; font-weight: 700; }

/* ==========================================================================
   Badges confiance / réassurance
   ========================================================================== */
.trust-strip { display: grid; grid-template-columns: repeat(5, 1fr); gap: 16px; }
.trust-item { text-align: center; padding: 18px 12px; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); }
.trust-item .ti-icon { font-size: 1.7rem; display: block; margin-bottom: 8px; }
.trust-item strong { display: block; font-size: 0.92rem; color: var(--green-deep); margin-bottom: 4px; }
.trust-item p { font-size: 0.79rem; color: var(--ink-soft); margin: 0; }

/* Avis */
.review-card { background: var(--white); border-radius: var(--radius); padding: 20px 22px; box-shadow: var(--shadow); }
.review-card .stars { color: var(--gold); letter-spacing: 2px; font-size: 0.95rem; }
.review-card strong { display: block; margin: 6px 0 4px; color: var(--green-deep); }
.review-card p { font-size: 0.88rem; color: var(--ink-soft); margin: 0 0 8px; }
.review-card .rv-author { font-size: 0.78rem; color: var(--gold); font-weight: 600; }
.rv-verified { font-size: 0.72rem; background: var(--green-pale); color: var(--green); border-radius: 999px; padding: 2px 8px; margin-left: 6px; }

/* FAQ accordéon */
.faq-list { max-width: 820px; margin: 0 auto; }
.faq-item { background: var(--white); border-radius: var(--radius-sm); margin-bottom: 10px; box-shadow: var(--shadow); overflow: hidden; }
.faq-item summary {
  cursor: pointer; padding: 16px 20px; font-weight: 600; color: var(--green-deep);
  list-style: none; display: flex; justify-content: space-between; align-items: center; gap: 12px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 1.4rem; color: var(--gold); flex-shrink: 0; }
.faq-item[open] summary::after { content: "–"; }
.faq-item .faq-a { padding: 0 20px 16px; color: var(--ink-soft); font-size: 0.93rem; }

/* ==========================================================================
   Breadcrumbs, pagination, pills
   ========================================================================== */
.breadcrumbs { font-size: 0.8rem; color: var(--ink-soft); padding: 14px 0; }
.breadcrumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 4px; margin: 0; padding: 0; }
.breadcrumbs li + li::before { content: "›"; margin: 0 6px; color: var(--gold); }
.breadcrumbs a { color: var(--ink-soft); }

.pill-row { display: flex; flex-wrap: wrap; gap: 8px; margin: 14px 0; }
.pill {
  display: inline-block; background: var(--white); border: 1.5px solid var(--beige);
  border-radius: 999px; padding: 6px 15px; font-size: 0.85rem; text-decoration: none;
  color: var(--ink); font-weight: 600;
}
.pill:hover, .pill.active { border-color: var(--gold); background: var(--gold-soft); color: var(--green-deep); }

/* ==========================================================================
   Page catégorie : filtres + listing
   ========================================================================== */
.cat-toolbar {
  display: flex; flex-wrap: wrap; gap: 12px; align-items: center;
  background: var(--white); padding: 14px 18px; border-radius: var(--radius);
  box-shadow: var(--shadow); margin-bottom: 24px;
}
.cat-toolbar label { font-size: 0.85rem; font-weight: 600; color: var(--ink-soft); }
.cat-toolbar select, .cat-toolbar input[type="number"] {
  padding: 8px 12px; border: 1.5px solid var(--beige); border-radius: var(--radius-sm);
  font-family: inherit; font-size: 0.88rem; background: var(--cream);
}
.cat-toolbar .result-count { margin-left: auto; font-size: 0.85rem; color: var(--ink-soft); }
.seo-text { max-width: 860px; }
.seo-text h3 { margin-top: 1.4em; }

/* ==========================================================================
   Fiche produit
   ========================================================================== */
.product-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; align-items: start; }
.product-gallery img { border-radius: var(--radius); box-shadow: var(--shadow-lg); width: 100%; aspect-ratio: 1/1; object-fit: cover; background: var(--beige); }
.product-info h1 { margin-bottom: 8px; }
.product-price { font-size: 1.9rem; font-weight: 700; color: var(--green-deep); margin: 10px 0 2px; }
.product-price small { font-size: 0.85rem; font-weight: 400; color: var(--ink-soft); }
.stock-dot { display: inline-flex; align-items: center; gap: 6px; font-size: 0.85rem; font-weight: 600; margin: 6px 0 14px; }
.stock-dot::before { content: ""; width: 10px; height: 10px; border-radius: 50%; background: #3d8b5f; }
.stock-dot.low::before { background: var(--gold); }
.stock-dot.out::before { background: var(--danger); }
.spec-table { width: 100%; border-collapse: collapse; margin: 18px 0; font-size: 0.9rem; }
.spec-table th, .spec-table td { text-align: left; padding: 9px 12px; border-bottom: 1px solid var(--beige); }
.spec-table th { color: var(--ink-soft); font-weight: 600; width: 45%; }
.qty-row { display: flex; align-items: center; gap: 12px; margin: 18px 0; }
.qty-row input { width: 74px; padding: 10px; border: 1.5px solid var(--beige); border-radius: var(--radius-sm); font-size: 1rem; text-align: center; }
.lab-link {
  display: flex; gap: 12px; align-items: center; background: var(--green-pale);
  border-left: 4px solid var(--gold); padding: 14px 16px; border-radius: var(--radius-sm);
  font-size: 0.88rem; margin: 18px 0;
}

/* ==========================================================================
   Article / prose
   ========================================================================== */
.article-layout { display: grid; grid-template-columns: minmax(0, 760px) 300px; gap: 44px; }
.prose { font-size: 1.02rem; }
.prose h2 { margin-top: 1.6em; }
.prose img { border-radius: var(--radius); }
.prose blockquote { border-left: 4px solid var(--gold); margin: 1.4em 0; padding: 0.4em 0 0.4em 1.2em; color: var(--ink-soft); font-style: italic; }
.article-hero { border-radius: var(--radius); box-shadow: var(--shadow-lg); aspect-ratio: 16/7; object-fit: cover; width: 100%; margin-bottom: 26px; background: var(--beige); }
.article-meta { font-size: 0.85rem; color: var(--ink-soft); margin-bottom: 20px; }
.article-meta .am-author { color: var(--gold); font-weight: 700; }
.sidebar .side-box { background: var(--white); border-radius: var(--radius); padding: 20px 22px; box-shadow: var(--shadow); margin-bottom: 22px; }
.sidebar h3 { font-size: 1rem; }
.sidebar ul { list-style: none; padding: 0; margin: 0; }
.sidebar li { padding: 7px 0; border-bottom: 1px solid var(--cream); font-size: 0.9rem; }
.sidebar li:last-child { border-bottom: 0; }
.toc { position: sticky; top: 130px; }
.sources-box { background: var(--green-pale); border-radius: var(--radius-sm); padding: 16px 20px; font-size: 0.85rem; margin: 26px 0; }
.sources-box ul { margin: 6px 0 0; }

/* Disclaimer */
.disclaimer {
  background: var(--gold-soft); border-left: 4px solid var(--gold);
  border-radius: var(--radius-sm); padding: 16px 20px; font-size: 0.88rem;
  color: var(--ink); margin: 28px 0;
}
.disclaimer strong { color: var(--green-deep); }

/* ==========================================================================
   Panier & checkout
   ========================================================================== */
.cart-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.cart-table th { background: var(--green-deep); color: var(--cream); text-align: left; padding: 13px 16px; font-size: 0.85rem; }
.cart-table td { padding: 13px 16px; border-bottom: 1px solid var(--cream); font-size: 0.92rem; vertical-align: middle; }
.cart-table img { width: 60px; height: 60px; object-fit: cover; border-radius: var(--radius-sm); }
.cart-table .ct-remove { background: none; border: 0; color: var(--danger); cursor: pointer; font-size: 1.1rem; }
.cart-table input { width: 64px; padding: 7px; text-align: center; border: 1.5px solid var(--beige); border-radius: var(--radius-sm); }
.cart-summary { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow); padding: 24px 26px; }
.cart-summary .row { display: flex; justify-content: space-between; padding: 7px 0; font-size: 0.95rem; }
.cart-summary .row.total { border-top: 2px solid var(--beige); margin-top: 8px; padding-top: 14px; font-weight: 700; font-size: 1.15rem; color: var(--green-deep); }
.cart-layout { display: grid; grid-template-columns: 1fr 340px; gap: 30px; align-items: start; }
.free-ship-note { font-size: 0.82rem; background: var(--green-pale); padding: 10px 14px; border-radius: var(--radius-sm); margin-top: 12px; }
.checkout-note { background: var(--gold-soft); border-radius: var(--radius); padding: 22px 26px; text-align: center; font-weight: 600; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-grid label { display: block; font-size: 0.85rem; font-weight: 600; margin-bottom: 4px; }
.form-grid input { width: 100%; padding: 11px 13px; border: 1.5px solid var(--beige); border-radius: var(--radius-sm); font-family: inherit; background: var(--white); }
.form-grid .full { grid-column: 1 / -1; }

/* Toast panier */
.toast {
  position: fixed; bottom: 24px; right: 24px; z-index: 300;
  background: var(--green-deep); color: var(--cream); padding: 14px 22px;
  border-radius: var(--radius-sm); box-shadow: var(--shadow-lg); font-size: 0.92rem;
  opacity: 0; transform: translateY(12px); transition: opacity 0.25s, transform 0.25s;
  pointer-events: none;
}
.toast.show { opacity: 1; transform: translateY(0); }

/* ==========================================================================
   Footer
   ========================================================================== */
.site-footer { background: var(--green-deep); color: var(--gold-soft); margin-top: 60px; font-size: 0.88rem; }
.footer-grid {
  max-width: var(--maxw); margin: 0 auto; padding: 48px 20px 30px;
  display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr 1fr; gap: 30px;
}
.site-footer h4 { color: var(--gold); font-size: 0.82rem; text-transform: uppercase; letter-spacing: 1.6px; font-family: var(--font-body); margin-bottom: 12px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { padding: 4px 0; }
.site-footer a { color: var(--gold-soft); text-decoration: none; }
.site-footer a:hover { color: var(--white); text-decoration: underline; }
.footer-brand p { font-size: 0.85rem; }
.footer-disclaimer {
  border-top: 1px solid rgba(201, 163, 92, 0.25);
  max-width: var(--maxw); margin: 0 auto; padding: 20px; font-size: 0.76rem;
  color: rgba(232, 217, 189, 0.75); line-height: 1.6;
}
.footer-legal { text-align: center; padding: 0 20px 24px; font-size: 0.76rem; color: rgba(232, 217, 189, 0.6); }

/* ==========================================================================
   Divers
   ========================================================================== */
.notice-418, .page-404 { text-align: center; padding: 80px 20px; }
.rating-summary { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; margin: 4px 0 10px; }
.map-table { width: 100%; border-collapse: collapse; background: var(--white); font-size: 0.85rem; }
.map-table th, .map-table td { border: 1px solid var(--beige); padding: 8px 10px; text-align: left; vertical-align: top; }
.map-table th { background: var(--green-pale); }
.map-table .warn { color: var(--danger); font-weight: 700; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .grid--4 { grid-template-columns: repeat(3, 1fr); }
  .trust-strip { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: repeat(3, 1fr); }
  .article-layout { grid-template-columns: 1fr; }
  .sidebar { order: 2; }
}
@media (max-width: 780px) {
  .hero-inner { grid-template-columns: 1fr; padding: 42px 20px; }
  .grid--4, .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .product-layout, .cart-layout { grid-template-columns: 1fr; }
  .header-inner { flex-wrap: wrap; }
  .search-form { order: 3; max-width: none; flex-basis: 100%; }
  .nav-toggle { display: block; }
  .main-nav { display: none; }
  .main-nav.open { display: block; }
  .main-nav > ul { flex-direction: column; padding: 8px 20px; }
  .mega { position: static; min-width: 0; box-shadow: none; padding: 0 0 8px 16px; grid-template-columns: 1fr; display: none; }
  .main-nav li.open-sub .mega { display: grid; }
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .form-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .grid--4, .grid--3, .grid--2 { grid-template-columns: 1fr; }
  .trust-strip { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .cart-table th:nth-child(3), .cart-table td:nth-child(3) { display: none; }
}
