/*
Theme Name: BVL Store
Theme URI: https://bvlstore.fr
Author: BVL Store
Author URI: https://bvlstore.fr
Description: Concept store éditorial pour BVL Store — sneakers, streetwear, dépôt-vente et nettoyage. Annecy, vieille ville. Direction Editorial Noir, optimisé Alma 3×.
Version: 1.0.56
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GPLv2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: bvl
Tags: e-commerce, woocommerce, editorial, sneakers
*/

/* ============================================================
   BVL STORE — THEME STYLES
   Direction A · Editorial Noir
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter+Tight:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400;1,500;1,600&family=JetBrains+Mono:wght@400;500;600&display=swap');

:root {
  --ink: #0A0A0A;
  --paper: #FAFAF7;
  --paper-pure: #FFFFFF;
  --ash: #8C8C88;
  --fog: #E6E5E0;
  --acid: #D8FF3D;
  --display: 'Inter Tight', 'Helvetica Neue', Arial, sans-serif;
  --mono: 'JetBrains Mono', ui-monospace, 'SF Mono', Menlo, monospace;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; background: var(--paper); color: var(--ink); overflow-x: hidden; }
body {
  font-family: var(--display);
  font-size: 15px;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
img { max-width: 100%; display: block; height: auto; }

/* Utilities */
.eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(10,10,10,0.55);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.eyebrow .dot { width: 6px; height: 6px; border-radius: 99px; background: var(--acid); display: inline-block; }
.mono { font-family: var(--mono); letter-spacing: 0.06em; }
.italic { font-style: italic; font-weight: 400; color: rgba(10,10,10,0.55); }
.hairline { height: 1px; background: var(--fog); border: 0; margin: 0; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 0.92;
  margin: 0;
}
h1 { font-size: clamp(64px, 12vw, 220px); letter-spacing: -0.05em; line-height: 0.84; }
h2 { font-size: clamp(40px, 7vw, 96px); letter-spacing: -0.04em; }
h3 { font-size: clamp(28px, 4vw, 56px); letter-spacing: -0.03em; }
h4 { font-size: clamp(20px, 2.4vw, 28px); letter-spacing: -0.02em; }

/* Buttons */
.btn, button.btn, a.btn, input[type="submit"], button[type="submit"], .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 52px;
  padding: 0 22px;
  background: var(--ink);
  color: var(--paper);
  border: 1px solid var(--ink);
  border-radius: 0;
  font-family: var(--display);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background .15s, color .15s, border-color .15s;
}
.btn:hover, .button:hover { background: var(--paper); color: var(--ink); }
.btn.btn--ghost, a.btn--ghost, .button.alt-button { background: transparent !important; color: var(--ink) !important; }
.btn.btn--ghost:hover, a.btn--ghost:hover { background: var(--ink) !important; color: var(--paper) !important; }
.btn.btn--acid, a.btn--acid { background: var(--acid) !important; color: var(--ink) !important; border-color: var(--acid) !important; }
.btn.btn--acid:hover, a.btn--acid:hover { background: var(--ink) !important; color: var(--acid) !important; border-color: var(--ink) !important; }
.btn--sm { height: 38px; padding: 0 14px; font-size: 11px; }
.btn--lg { height: 60px; padding: 0 28px; font-size: 14px; }
.btn-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em;
  text-transform: uppercase; border-bottom: 1px solid currentColor; padding-bottom: 2px;
}

/* Container */
.wrap { width: 100%; max-width: 100%; margin: 0 auto; padding: 0 24px; }
@media (max-width: 768px) { .wrap { padding: 0 16px; } }

/* Topbar */
.topbar {
  padding: 10px 48px;
  border-bottom: 1px solid var(--fog);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(10,10,10,0.55);
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
@media (max-width: 768px) {
  .topbar { padding: 8px 20px; font-size: 9px; }
  .topbar > span:nth-child(2) { display: none; }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(250,250,247,0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--fog);
  padding: 18px 48px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}
@media (max-width: 1024px) { .site-header { padding: 14px 20px; } }
.header-nav { display: flex; gap: 22px; font-size: 13px; font-weight: 500; letter-spacing: 0.04em; align-items: center; }
.header-nav a { padding-bottom: 4px; }
.header-nav a.current-menu-item,
.header-nav a.current_page_item,
.header-nav li.current-menu-item > a,
.header-nav li.current_page_item > a { border-bottom: 1px solid var(--ink); }
.header-nav ul { list-style: none; margin: 0; padding: 0; display: flex; gap: 22px; }

.header-logo { display: flex; align-items: center; gap: 10px; justify-content: center; }
.header-logo-mark {
  width: 26px; height: 26px;
  border: 2px solid var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--display); font-weight: 800; font-size: 11px; letter-spacing: -0.03em;
}
.header-logo-text { font-weight: 700; letter-spacing: 0.18em; font-size: 13px; }

.header-utils { display: flex; gap: 18px; justify-content: flex-end; align-items: center; font-size: 13px; }
.header-utils button {
  width: 36px; height: 36px; background: transparent; border: 0;
  display: inline-flex; align-items: center; justify-content: center; color: var(--ink);
  position: relative;
}
.header-cart-count {
  position: absolute; top: 4px; right: 2px;
  background: var(--acid); color: var(--ink);
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.06em;
  padding: 1px 4px;
  min-width: 14px;
}
.menu-btn { display: none; width: 36px; height: 36px; background: transparent; border: 0; color: var(--ink); }
@media (max-width: 1024px) {
  .header-nav, .header-utils > a { display: none; }
  .header-utils { gap: 4px; }
  .menu-btn { display: inline-flex; align-items: center; justify-content: center; }
}

/* Sections */
section { padding: 0; }
.sec-pad { padding: 96px 48px 0; }
@media (max-width: 768px) { .sec-pad { padding: 56px 20px 0; } }

/* Hero */
.hero { padding: 60px 48px 80px; position: relative; }
@media (max-width: 768px) { .hero { padding: 28px 20px 40px; } }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 64px;
  align-items: flex-end;
  margin-top: 40px;
}
@media (max-width: 1024px) { .hero-grid { grid-template-columns: 1fr; gap: 32px; margin-top: 24px; } }
.hero h1 .a { display: block; }
.hero p { margin: 36px 0 0; font-size: 17px; line-height: 1.5; color: rgba(10,10,10,0.72); max-width: 460px; }
.hero-actions { display: flex; gap: 10px; margin-top: 36px; flex-wrap: wrap; }

.hero-media {
  position: relative;
  background: var(--fog);
  aspect-ratio: 4/5;
  overflow: hidden;
}
.hero-media-overlay {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 18px;
}
.stripes { position: absolute; inset: 0; background: repeating-linear-gradient(135deg, var(--fog) 0 14px, rgba(10,10,10,0.03) 14px 15px); }
.ph-label {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em;
  color: rgba(10,10,10,0.45);
  text-transform: uppercase; flex-direction: column; gap: 6px;
}

/* Stat strip */
.stats {
  margin-top: 80px;
  padding-top: 28px;
  border-top: 1px solid var(--fog);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) { .stats { grid-template-columns: repeat(2, 1fr); margin-top: 40px; gap: 18px; } }
.stat { padding-left: 24px; border-left: 1px solid var(--fog); }
.stat:first-child { padding-left: 0; border-left: 0; }
@media (max-width: 1024px) { .stat { padding-left: 0; border-left: 0; } }
.stat-k { font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em; color: rgba(10,10,10,0.55); text-transform: uppercase; }
.stat-v { margin-top: 8px; font-size: 28px; font-weight: 500; letter-spacing: -0.02em; }
@media (max-width: 768px) { .stat-v { font-size: 22px; } }

/* Marquee */
.marquee {
  margin: 96px 0 0;
  border-top: 1px solid var(--fog);
  border-bottom: 1px solid var(--fog);
  overflow: hidden;
  background: var(--paper);
}
.marquee-dark { background: var(--ink); color: var(--paper); border-color: rgba(255,255,255,0.12); }
.marquee-track {
  display: flex;
  white-space: nowrap;
  padding: 14px 0;
  font-family: var(--mono); font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase;
  animation: marquee 40s linear infinite;
  width: max-content;
}
.marquee-track > span { display: inline-flex; align-items: center; gap: 22px; padding: 0 22px; }
.marquee-track .sep { color: var(--acid); }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-33.333%); } }

/* Pull-quote */
.pullquote { padding: 40px 48px 0; }
.pullquote-grid {
  padding: 40px 0;
  border-top: 1px solid var(--fog);
  border-bottom: 1px solid var(--fog);
  display: grid;
  grid-template-columns: 120px 1fr 1fr;
  gap: 32px;
  align-items: flex-start;
}
@media (max-width: 1024px) { .pullquote-grid { grid-template-columns: 1fr; gap: 18px; } }
.pullquote p { margin: 0; font-size: clamp(20px, 2.6vw, 32px); line-height: 1.18; letter-spacing: -0.02em; max-width: 540px; }

/* Products grid */
.grid-products {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  list-style: none;
  padding: 0;
}
@media (max-width: 1024px) { .grid-products { grid-template-columns: repeat(2, 1fr); gap: 16px; } }
.product, .product-card {
  cursor: pointer;
  display: block;
  color: inherit;
  position: relative;
}
.product-media {
  position: relative;
  aspect-ratio: 1/1;
  background: var(--fog);
  overflow: hidden;
}
.product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.product:hover .product-media img { transform: scale(1.04); }
.product-tag {
  position: absolute; top: 12px; left: 12px;
  font-family: var(--mono); font-size: 9px; letter-spacing: 0.18em;
  padding: 4px 8px;
  background: var(--paper); border: 1px solid var(--ink);
  text-transform: uppercase;
}
.product-tag.is-filled { background: var(--ink); color: var(--paper); border: 0; }
.product-fav {
  position: absolute; top: 12px; right: 12px;
  width: 30px; height: 30px;
  background: var(--paper); border: 1px solid var(--fog);
  display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer;
}
.product-quickadd {
  position: absolute; left: 12px; right: 12px; bottom: 12px;
  background: var(--paper); padding: 8px 12px;
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em;
  transform: translateY(20px); opacity: 0;
  transition: transform .25s, opacity .25s;
  text-transform: uppercase;
}
.product:hover .product-quickadd { transform: translateY(0); opacity: 1; }
.product-info { margin-top: 14px; display: flex; justify-content: space-between; align-items: baseline; }
.product-brand { font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em; color: rgba(10,10,10,0.5); text-transform: uppercase; }
.product-name, .product-card .name { font-size: 15px; font-weight: 500; margin-top: 4px; letter-spacing: -0.01em; color: var(--ink); }
.product-price, .product-card .price { font-size: 15px; font-weight: 500; color: var(--ink); }
.product-price del { color: rgba(10,10,10,.4); margin-right: 6px; }
.product-meta {
  margin-top: 12px; padding-top: 8px; border-top: 1px solid var(--fog);
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; color: rgba(10,10,10,0.55);
  display: flex; justify-content: space-between; text-transform: uppercase;
}

/* WooCommerce reset / overrides */
.woocommerce ul.products,
.woocommerce-page ul.products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  list-style: none;
  margin: 40px 0;
  padding: 0;
}
@media (max-width: 1024px) {
  .woocommerce ul.products, .woocommerce-page ul.products { grid-template-columns: repeat(2, 1fr); gap: 16px; }
}
.woocommerce ul.products li.product { width: 100% !important; margin: 0 !important; }
.woocommerce ul.products li.product .button { width: 100%; margin-top: 8px; }
.woocommerce ul.products li.product a img { margin: 0; }
.woocommerce .star-rating { color: var(--ink); }
.woocommerce-notices-wrapper .woocommerce-message,
.woocommerce-notices-wrapper .woocommerce-info,
.woocommerce-notices-wrapper .woocommerce-error {
  background: var(--ink); color: var(--paper);
  border-radius: 0; border-left: 4px solid var(--acid);
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.04em;
  padding: 14px 20px;
}
.woocommerce-notices-wrapper a { color: var(--acid); }

/* Feature 2-col */
.feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--fog);
}
@media (max-width: 1024px) { .feature { grid-template-columns: 1fr; } }
.feature-media { aspect-ratio: 4/5; background: var(--fog); position: relative; }
.feature-body {
  padding: 56px;
  display: flex; flex-direction: column; justify-content: space-between; gap: 28px;
}
@media (max-width: 768px) { .feature-body { padding: 28px; } }
.feature-body p { font-size: 16px; line-height: 1.55; color: rgba(10,10,10,0.7); max-width: 460px; }

/* Categories mosaic */
.cats {
  margin-top: 40px;
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  grid-template-rows: repeat(2, 1fr);
  gap: 16px;
  height: 720px;
}
@media (max-width: 1024px) { .cats { grid-template-columns: 1fr 1fr; grid-template-rows: auto; height: auto; } .cat-big { grid-row: span 1 !important; } }
.cat { position: relative; overflow: hidden; background: var(--fog); cursor: pointer; }
.cat-big { grid-row: span 2; }
.cat-alt { background: var(--paper-pure); }
.cat-body {
  position: absolute; inset: 0;
  padding: 24px;
  display: flex; flex-direction: column; justify-content: space-between;
  pointer-events: none;
}
.cat-num { font-family: var(--mono); font-size: 11px; letter-spacing: 0.2em; color: rgba(10,10,10,0.55); }
.cat-name { font-size: clamp(20px, 3vw, 32px); font-weight: 500; letter-spacing: -0.03em; line-height: 1; display: flex; justify-content: space-between; align-items: flex-end; }
.cat-big .cat-name { font-size: clamp(28px, 4vw, 56px); }

/* Services cards */
.services { margin-top: 96px; }
.services-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 40px;
}
@media (max-width: 1024px) { .services-grid { grid-template-columns: 1fr; } }
.service {
  background: var(--paper-pure);
  border: 1px solid var(--fog);
  padding: 32px;
  min-height: 360px;
  display: flex; flex-direction: column; justify-content: space-between;
  transition: background .2s, color .2s, border-color .2s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.service:hover { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.service:hover .eyebrow, .service:hover .service-meta-k { color: rgba(255,255,255,0.55); }
.service-head { display: flex; justify-content: space-between; }
.service h3 { margin-top: 64px; }
.service p { margin: 18px 0 0; font-size: 14px; line-height: 1.55; color: rgba(10,10,10,0.65); }
.service:hover p { color: rgba(255,255,255,0.7); }
.service-meta {
  margin-top: 32px; padding-top: 16px;
  border-top: 1px solid var(--fog);
  display: flex; justify-content: space-between; align-items: baseline;
}
.service:hover .service-meta { border-color: rgba(255,255,255,0.15); }
.service-meta-k { font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em; color: rgba(10,10,10,0.55); text-transform: uppercase; }
.service-meta-v { font-size: 22px; font-weight: 500; letter-spacing: -0.01em; }

/* Brand list */
.brands {
  margin-top: 28px;
  border-top: 1px solid var(--fog);
  border-bottom: 1px solid var(--fog);
  display: grid;
  grid-template-columns: repeat(6, 1fr);
}
@media (max-width: 768px) { .brands { grid-template-columns: repeat(3, 1fr); } }
.brands > div,
.brands > a.brand-cell {
  padding: 36px 0;
  text-align: center;
  font-size: 14px; font-weight: 500; letter-spacing: 0.16em;
  color: rgba(10,10,10,0.8);
  border-right: 1px solid var(--fog);
  display: block;
  text-decoration: none;
  transition: background .15s ease, color .15s ease;
  cursor: pointer;
}
.brands > a.brand-cell:hover {
  background: var(--fog);
  color: var(--ink);
}
.brands > div:nth-child(6n),
.brands > a.brand-cell:nth-child(6n) { border-right: 0; }
.brands > div:nth-child(n+7),
.brands > a.brand-cell:nth-child(n+7) { border-top: 1px solid var(--fog); }
@media (max-width: 768px) {
  .brands > div,
  .brands > a.brand-cell { font-size: 11px; padding: 22px 0; }
  .brands > div:nth-child(6n),
  .brands > a.brand-cell:nth-child(6n) { border-right: 1px solid var(--fog); }
  .brands > div:nth-child(3n),
  .brands > a.brand-cell:nth-child(3n) { border-right: 0; }
  .brands > div:nth-child(n+4),
  .brands > a.brand-cell:nth-child(n+4) { border-top: 1px solid var(--fog); }
}

/* Store map */
.store { margin-top: 96px; display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
@media (max-width: 1024px) { .store { grid-template-columns: 1fr; gap: 32px; } }
.store-info-list {
  margin-top: 36px;
  display: grid; grid-template-columns: auto 1fr; gap: 14px 28px;
  font-family: var(--mono); font-size: 12px; letter-spacing: 0.06em;
}
.store-info-list dt { color: rgba(10,10,10,0.5); }
.store-info-list dd { margin: 0; border-bottom: 1px solid var(--fog); padding-bottom: 10px; }
.store-map { position: relative; min-height: 480px; background: var(--fog); border: 1px solid var(--fog); }
@media (max-width: 1024px) { .store-map { min-height: 320px; } }
.store-map iframe { width: 100%; height: 100%; border: 0; position: absolute; inset: 0; }
.store-pin-card {
  position: absolute; left: 20px; bottom: 20px;
  background: var(--paper); padding: 16px; border: 1px solid var(--fog);
  z-index: 2;
}

/* Footer */
.site-footer { margin-top: 96px; padding: 80px 48px 32px; border-top: 1px solid var(--fog); background: var(--paper); }
@media (max-width: 768px) { .site-footer { padding: 48px 20px 24px; } }
.footer-mast { font-size: clamp(72px, 16vw, 200px); font-weight: 500; letter-spacing: -0.05em; line-height: 0.82; }
.footer-mast em { font-style: italic; font-weight: 400; color: rgba(10,10,10,0.32); }
.footer-cols { margin-top: 56px; display: grid; grid-template-columns: repeat(5, 1fr); gap: 32px; }
@media (max-width: 1024px) { .footer-cols { grid-template-columns: repeat(2, 1fr); gap: 24px; } }
.footer-col { display: flex; flex-direction: column; gap: 8px; }
.footer-col-title { font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em; color: rgba(10,10,10,0.5); text-transform: uppercase; }
.footer-col ul { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.footer-col a { font-size: 14px; padding: 2px 0; }
.footer-bottom {
  margin-top: 48px; padding-top: 24px; border-top: 1px solid var(--fog);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 16px;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em; color: rgba(10,10,10,0.55); text-transform: uppercase;
}

/* Cart drawer */
.drawer-bg {
  position: fixed; inset: 0; background: rgba(10,10,10,0.5);
  backdrop-filter: blur(6px); z-index: 100;
  opacity: 0; pointer-events: none; transition: opacity .3s;
}
.drawer-bg.is-open { opacity: 1; pointer-events: auto; }
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(420px, 92vw); background: var(--paper);
  box-shadow: -16px 0 40px rgba(0,0,0,0.18);
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  z-index: 101;
  display: flex; flex-direction: column;
}
.drawer.is-open { transform: translateX(0); }
.drawer-head { padding: 16px 20px; border-bottom: 1px solid var(--fog); display: flex; justify-content: space-between; align-items: center; }
.drawer-items { flex: 1; overflow-y: auto; }
.drawer-foot { border-top: 1px solid var(--ink); padding: 16px 20px; }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; background: var(--paper); z-index: 200;
  transform: translateY(-100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  padding: 24px 20px; display: flex; flex-direction: column; overflow-y: auto;
}
.mobile-menu.is-open { transform: translateY(0); }
.mobile-menu-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 32px; }
.mobile-menu nav { display: flex; flex-direction: column; }
.mobile-menu nav ul { list-style: none; margin: 0; padding: 0; }
.mobile-menu nav a {
  padding: 18px 0; display: block;
  font-size: 28px; font-weight: 500; letter-spacing: -0.02em;
  border-bottom: 1px solid var(--fog);
}

/* PLP filter bar */
.filter-bar {
  margin-top: 24px; padding-top: 18px;
  border-top: 1px solid var(--ink);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px;
}
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 12px;
  border: 1px solid var(--fog);
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.14em;
  background: transparent; color: var(--ink); cursor: pointer;
  text-transform: uppercase;
  text-decoration: none;
}
.pill.is-active { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.pill-group { display: flex; gap: 8px; flex-wrap: wrap; }

/* Service page hero */
.svc-hero { padding: 60px 48px 0; display: grid; grid-template-columns: 1.1fr 1fr; gap: 56px; align-items: flex-end; }
@media (max-width: 1024px) { .svc-hero { grid-template-columns: 1fr; gap: 32px; padding: 28px 20px 0; } }
.badge-commission {
  position: absolute; right: 32px; top: 36px;
  background: var(--paper); border: 1px solid var(--ink);
  padding: 22px 26px;
}
.badge-commission .v { font-size: clamp(48px, 6vw, 80px); font-weight: 500; letter-spacing: -0.04em; line-height: 1; }

/* Steps grid */
.steps { margin-top: 48px; display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--ink); }
@media (max-width: 1024px) { .steps { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .steps { grid-template-columns: 1fr; } }
.step { padding: 28px 24px; border-right: 1px solid var(--fog); }
.step:last-child { border-right: 0; }
@media (max-width: 1024px) { .step:nth-child(2n) { border-right: 0; } .step:nth-child(n+3) { border-top: 1px solid var(--fog); } }
@media (max-width: 600px) { .step { border-right: 0 !important; } .step:not(:first-child) { border-top: 1px solid var(--fog); } }
.step-n { font-family: var(--mono); font-size: 24px; font-weight: 500; letter-spacing: 0.02em; }
.step-t { margin-top: 22px; font-size: 22px; font-weight: 500; letter-spacing: -0.02em; line-height: 1.15; }
.step-d { margin-top: 10px; font-size: 13px; color: rgba(10,10,10,0.65); line-height: 1.55; }

/* Tier cards */
.tiers { margin-top: 40px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
@media (max-width: 1024px) { .tiers { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .tiers { grid-template-columns: 1fr; } }
.tier { position: relative; border: 1px solid var(--fog); background: var(--paper-pure); padding: 28px 24px; display: flex; flex-direction: column; min-height: 420px; }
.tier.is-featured { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.tier.is-featured .eyebrow { color: rgba(255,255,255,0.55); }
.tier-name { margin-top: 16px; font-size: 28px; font-weight: 500; letter-spacing: -0.02em; }
.tier-price { margin-top: 6px; font-size: 48px; font-weight: 500; letter-spacing: -0.04em; line-height: 1; }
.tier-desc { margin: 14px 0 0; font-size: 13px; line-height: 1.5; color: rgba(10,10,10,0.65); }
.tier.is-featured .tier-desc { color: rgba(255,255,255,0.7); }
.tier-includes { list-style: none; margin: 20px 0 0; padding: 0; display: flex; flex-direction: column; gap: 8px; font-family: var(--mono); font-size: 11px; letter-spacing: 0.04em; }
.tier-includes li::before { content: '✓'; color: var(--acid); margin-right: 8px; }
.tier-featured-tag { position: absolute; top: -10px; right: 18px; background: var(--acid); color: var(--ink); font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em; padding: 4px 10px; }

/* Before/after */
.before-after { position: relative; aspect-ratio: 4/5; background: var(--fog); overflow: hidden; }
.before-after .ba-before { position: absolute; inset: 0; clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%); }
.before-after .ba-after  { position: absolute; inset: 0; clip-path: polygon(50% 0, 100% 0, 100% 100%, 50% 100%); background: var(--paper-pure); }
.before-after .ba-line { position: absolute; top: 0; bottom: 0; left: 50%; width: 1px; background: var(--ink); }
.before-after .ba-tag { position: absolute; top: 14px; font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em; color: var(--ink); }
.before-after .ba-tag.is-left { left: 14px; }
.before-after .ba-tag.is-right { right: 14px; }

/* Timeline */
.timeline { margin-top: 48px; display: grid; grid-template-columns: repeat(5, 1fr); border-top: 1px solid var(--ink); }
@media (max-width: 1024px) { .timeline { grid-template-columns: 1fr 1fr; } }
@media (max-width: 600px) { .timeline { grid-template-columns: 1fr; } }
.timeline > div { padding: 28px 20px; border-right: 1px solid var(--fog); }
.timeline > div:last-child { border-right: 0; }

/* CTA dark band */
.cta-dark { margin-top: 120px; padding: 64px 48px; background: var(--ink); color: var(--paper); }
@media (max-width: 768px) { .cta-dark { padding: 40px 20px; margin-top: 64px; } }
.cta-dark-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 56px; align-items: flex-end; }
@media (max-width: 1024px) { .cta-dark-grid { grid-template-columns: 1fr; gap: 28px; } }
.cta-dark h2 { font-size: clamp(48px, 8vw, 144px); letter-spacing: -0.05em; line-height: 0.88; color: var(--paper); }
.cta-dark h2 em { color: var(--acid); font-style: italic; font-weight: 400; }
.cta-dark .eyebrow { color: rgba(255,255,255,0.55); }
.btn-paper { background: var(--paper); color: var(--ink); border-color: var(--paper); }
.btn-paper:hover { background: transparent; color: var(--paper); }
.btn-paper-ghost { background: transparent; color: var(--paper); border-color: rgba(255,255,255,0.4); }
.btn-paper-ghost:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }

/* WooCommerce single product */
.woocommerce-product-gallery { background: var(--fog); }
.woocommerce div.product .product_title { font-size: clamp(28px, 4vw, 56px); font-weight: 500; letter-spacing: -0.03em; line-height: 1; }
.woocommerce div.product .price { font-size: 36px; font-weight: 500; letter-spacing: -0.02em; color: var(--ink); margin-top: 18px; }
.woocommerce div.product .woocommerce-tabs ul.tabs { border: 0; padding: 0; }
.woocommerce div.product .woocommerce-tabs ul.tabs::before { display: none; }
.woocommerce div.product .woocommerce-tabs ul.tabs li {
  background: transparent; border: 0; border-bottom: 1px solid var(--fog);
  border-radius: 0; margin: 0; padding: 0;
  font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a { padding: 12px 16px; color: rgba(10,10,10,0.55); }
.woocommerce div.product .woocommerce-tabs ul.tabs li.active { background: transparent; border-bottom: 2px solid var(--ink); }
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a { color: var(--ink); }
.woocommerce div.product form.cart .variations select,
.woocommerce div.product .quantity .qty { border: 1px solid var(--fog); border-radius: 0; height: 52px; font-family: var(--display); padding: 0 12px; }
.woocommerce table.shop_table { border-radius: 0; border: 1px solid var(--ink); }
.woocommerce table.shop_table th, .woocommerce table.shop_table td { border-color: var(--fog); padding: 14px; }

/* Cart page */
.woocommerce .cart-collaterals .cart_totals { border: 1px solid var(--ink); padding: 28px; }
.woocommerce .cart-collaterals .cart_totals h2 { font-family: var(--mono); font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase; color: rgba(10,10,10,0.55); margin-bottom: 14px; }
.woocommerce .cart-collaterals .cart_totals .order-total .amount { font-size: 32px; font-weight: 500; letter-spacing: -0.02em; }

/* Forms */
input[type="text"], input[type="email"], input[type="tel"], input[type="search"], input[type="password"], input[type="number"], textarea, select {
  background: var(--paper); border: 1px solid var(--fog); border-radius: 0;
  font-family: var(--display); font-size: 14px; color: var(--ink);
  padding: 12px 14px; box-shadow: none;
}
input:focus, textarea:focus, select:focus { border-color: var(--ink); outline: none; }

/* Alma plugin */
.alma-payment-plan, .alma-eligibility-message {
  border-radius: 0 !important; border: 1px solid var(--ink) !important;
  background: var(--ink) !important; color: var(--paper) !important;
  font-family: var(--mono);
}
.alma-payment-plan strong, .alma-eligibility-message strong { color: var(--acid) !important; }

/* Misc */
.icon-btn-outline {
  width: 44px; height: 44px;
  border: 1px solid var(--fog); background: var(--paper);
  display: inline-flex; align-items: center; justify-content: center;
}
.blink { animation: blink 1.4s steps(2) infinite; }
@keyframes blink { 0%, 49% { opacity: 1; } 50%, 100% { opacity: 0.3; } }
@keyframes reveal-up { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.reveal { animation: reveal-up .8s cubic-bezier(.2,.8,.2,1) both; }

.clickable { cursor: pointer; }

/* Formule page (réservation) */
.formule-hero-grid { display: grid; grid-template-columns: 1.3fr 1fr; gap: 56px; align-items: flex-end; }
@media (max-width: 900px) { .formule-hero-grid { grid-template-columns: 1fr; gap: 32px; } }
.formule-includes {
  margin-top: 32px;
  list-style: none;
  padding: 0;
  border-top: 1px solid var(--ink);
}
.formule-includes li {
  display: grid;
  grid-template-columns: 32px 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--fog);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.formule-includes__check {
  display: inline-flex; align-items: center; justify-content: center;
  width: 28px; height: 28px;
  background: var(--acid);
}
.formule-steps {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  border-top: 1px solid var(--ink);
}
.formule-step {
  padding: 28px 24px;
  border-right: 1px solid var(--fog);
}
.formule-step:last-child { border-right: 0; }
@media (max-width: 900px) {
  .formule-steps { grid-template-columns: 1fr; }
  .formule-step { border-right: 0; border-bottom: 1px solid var(--fog); }
  .formule-step:last-child { border-bottom: 0; }
}
.formule-reserve {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 1024px) { .formule-reserve { grid-template-columns: 1fr; } }
.formule-reserve__opt {
  background: var(--paper-pure);
  border: 1px solid var(--fog);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  min-height: 360px;
  transition: border-color .15s ease, background .15s ease;
}
.formule-reserve__opt:hover { border-color: var(--ink); }
.formule-others {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
@media (max-width: 900px) { .formule-others { grid-template-columns: 1fr; } }
.formule-other {
  display: flex;
  flex-direction: column;
  background: var(--paper-pure);
  border: 1px solid var(--fog);
  padding: 28px 24px;
  min-height: 220px;
  color: var(--ink);
  text-decoration: none;
  transition: background .15s ease, color .15s ease;
}
.formule-other:hover { background: var(--ink); color: var(--paper); }
.formule-other:hover .eyebrow { color: rgba(255,255,255,.55); }
.formule-other:hover .mono { color: rgba(255,255,255,.55) !important; }

/* ============================================================
   PDP — Single Product Page · Editorial Noir
   ============================================================ */

/* Breadcrumb */
.pdp-breadcrumb {
  margin-top: 24px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ash);
}
.pdp-sep { margin: 0 4px; }
.pdp-breadcrumb-current { color: var(--ink); }
.pdp-breadcrumb a:hover { color: var(--ink); }

/* Layout grid */
.pdp-wrap {
  margin-top: 32px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
  padding-bottom: 80px;
}
@media (max-width: 1024px) {
  .pdp-wrap { grid-template-columns: 1fr; gap: 32px; }
}

/* ── Galerie ──────────────────────────────────────────────── */
.pdp-gallery { display: flex; flex-direction: column; gap: 12px; position: sticky; top: 80px; }

.pdp-main-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--fog);
  overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.pdp-main-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}
.pdp-main-img:hover img { transform: scale(1.03); }

.pdp-no-img {
  width: 100%; aspect-ratio: 1 / 1;
  background: var(--fog);
  display: flex; align-items: center; justify-content: center;
}
.pdp-no-img-inner { text-align: center; }
.pdp-no-img-inner span { font-size: 48px; opacity: .3; }
.pdp-no-img-inner p { margin: 12px 0 0; font-size: 10px; letter-spacing: 0.2em; opacity: .4; }

.pdp-thumbs {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.pdp-thumb {
  width: 72px; height: 72px;
  border: 2px solid transparent;
  background: var(--fog);
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  transition: border-color .15s;
  flex-shrink: 0;
}
.pdp-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pdp-thumb.is-active { border-color: var(--ink); }
.pdp-thumb:hover { border-color: var(--ash); }

/* ── Info colonne ─────────────────────────────────────────── */
.pdp-info { display: flex; flex-direction: column; gap: 0; }

.pdp-meta-top {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 14px;
}

.pdp-stock-badge {
  font-family: var(--mono);
  font-size: 9px; font-weight: 600;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 4px 10px;
}
.pdp-stock-in { background: var(--acid); color: var(--ink); }
.pdp-stock-out { background: var(--fog); color: var(--ash); }

.pdp-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: 20px;
}

.pdp-price {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}
.pdp-price .woocommerce-Price-amount { font-size: inherit; font-weight: inherit; }
.pdp-price del { opacity: .4; font-size: .7em; }
.pdp-price ins { text-decoration: none; color: var(--ink); }

/* Attributs clés */
.pdp-attrs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--fog);
  margin-bottom: 24px;
}
.pdp-attr {
  background: var(--paper);
  padding: 14px 16px;
  display: flex; flex-direction: column; gap: 4px;
}
.pdp-attr-k {
  font-family: var(--mono);
  font-size: 9px; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--ash);
}
.pdp-attr-v { font-size: 14px; font-weight: 500; }

/* Description courte */
.pdp-short-desc {
  font-size: 14px; line-height: 1.6;
  color: rgba(10,10,10,.7);
  margin-bottom: 24px;
}

/* Add to cart */
.pdp-add-to-cart { margin: 24px 0; }
.pdp-add-to-cart .cart { display: flex; gap: 12px; align-items: center; }
.pdp-add-to-cart .quantity { display: flex; align-items: center; gap: 0; }
.pdp-add-to-cart .qty {
  width: 56px; height: 52px; text-align: center;
  border: 1px solid var(--fog); background: var(--paper);
  font-family: var(--mono); font-size: 14px;
  appearance: none; -moz-appearance: textfield;
}
.pdp-add-to-cart .qty::-webkit-outer-spin-button,
.pdp-add-to-cart .qty::-webkit-inner-spin-button { -webkit-appearance: none; }

.pdp-btn-cart {
  flex: 1; height: 52px;
  background: var(--ink); color: var(--paper);
  border: none; cursor: pointer;
  font-family: var(--mono); font-size: 11px;
  font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 20px; gap: 12px;
  transition: background .15s;
}
.pdp-btn-cart:hover { background: #1a1a1a; }
.pdp-btn-cart.pdp-btn-disabled { background: var(--fog); color: var(--ash); cursor: not-allowed; justify-content: center; }
.pdp-btn-price { opacity: .6; }

/* Garanties — exactement comme l'aperçu */
.pdp-guarantees {
  display: flex; flex-direction: column; gap: 10px;
  margin: 20px 0 24px;
}
.pdp-guarantee {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: rgba(10,10,10,.65);
  list-style: none;
}
.pdp-guarantee-ic {
  width: 20px; height: 20px;
  background: var(--acid); color: var(--ink);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 800; flex-shrink: 0;
  line-height: 1;
}

/* Details accordion */
.pdp-desc {
  margin: 16px 0 0;
}
.pdp-desc summary {
  list-style: none; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 0;
  font-family: var(--mono); font-size: 10px;
  font-weight: 600; letter-spacing: 0.18em;
  text-transform: uppercase;
  border-top: 1px solid var(--fog);
  user-select: none;
}
.pdp-desc summary::-webkit-details-marker { display: none; }
.pdp-desc[open] .pdp-desc-arrow { transform: rotate(180deg); }
.pdp-desc-arrow { transition: transform .2s; display: inline-block; font-size: 14px; }
.pdp-desc-content {
  padding: 16px 0 20px;
  font-size: 14px; line-height: 1.65;
  color: rgba(10,10,10,.7);
}
.pdp-attrs-full { display: flex; flex-direction: column; gap: 0; padding: 8px 0 20px; }
.pdp-attr-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0; border-bottom: 1px solid var(--fog);
  font-size: 13px;
}
.pdp-attr-row:last-child { border-bottom: none; }
.pdp-attr-row .pdp-attr-k { color: var(--ash); font-size: 9px; }

/* Produits similaires */
/* Produits similaires grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--fog);
  margin-top: 24px;
}
.products-grid .product-card {
  background: var(--paper);
  display: flex; flex-direction: column;
  text-decoration: none; color: var(--ink);
  transition: background .15s;
}
.products-grid .product-card:hover { background: var(--fog); }
.products-grid .product-img { aspect-ratio: 1/1; overflow: hidden; background: var(--fog); }
.products-grid .product-img img { width: 100%; height: 100%; object-fit: cover; }
.products-grid .product-info { padding: 14px 16px; }
.products-grid .product-name { font-size: 14px; font-weight: 500; margin-bottom: 4px; }
.products-grid .product-price { font-family: var(--mono); font-size: 12px; color: var(--ash); }
@media (max-width: 768px) { .products-grid { grid-template-columns: repeat(2, 1fr); } }

.pdp-related {
  padding: 64px 0;
  border-top: 1px solid var(--fog);
}
.pdp-related-head { margin-bottom: 32px; }

/* JS galerie */
@media (max-width: 768px) {
  .pdp-gallery { position: static; }
  .pdp-thumbs { gap: 6px; }
  .pdp-thumb { width: 56px; height: 56px; }
  .pdp-attrs { grid-template-columns: repeat(2, 1fr); }
  .pdp-btn-cart { font-size: 10px; }
}

/* ============================================================
   BVL · PDP — Sélecteur de tailles + Délai + Retrait boutique
   v1.0.3
   ============================================================ */

/* Sélecteur de tailles ─────────────────────────────────── */
.bvl-sizes { margin: 8px 0 4px; }

.bvl-sizes-head {
  display: flex; justify-content: space-between; align-items: baseline;
  margin: 0 0 12px;
}
.bvl-sizes-lbl {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.16em;
  color: var(--ink);
}
.bvl-sizes-picked {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.12em;
  color: var(--ash, #5F5E5A);
}
.bvl-sizes-picked-v {
  background: var(--ink); color: var(--paper);
  padding: 2px 6px; font-weight: 600;
}

.bvl-size-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 6px;
}

.bvl-size {
  position: relative;
  height: 54px;
  border: 1px solid var(--fog, #E6E5E0);
  background: var(--paper-pure, #FFFFFF);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 14px; font-weight: 600; letter-spacing: 0.02em;
  cursor: pointer;
  transition: border-color .15s, background .15s, color .15s;
  display: flex; align-items: center; justify-content: center;
  padding: 0;
}
.bvl-size:hover { border-color: var(--ink); }
.bvl-size.is-active {
  background: var(--ink); color: var(--paper); border-color: var(--ink);
}
.bvl-size.is-oos {
  background: var(--paper);
  color: var(--ash, #5F5E5A);
}
.bvl-size.is-oos:hover { border-color: var(--ink); color: var(--ink); }
.bvl-size.is-oos.is-active { background: var(--ink); color: var(--paper); }

.bvl-size-dot {
  position: absolute; top: 7px; right: 7px;
  width: 6px; height: 6px; border-radius: 99px;
}
.bvl-size-dot--in  { background: var(--acid); }
.bvl-size-dot--oos { background: transparent; border: 1px solid #B4B2A9; }

/* Légende */
.bvl-sizes-legend {
  display: flex; gap: 18px; margin: 14px 0 4px;
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.14em;
  color: var(--ash, #5F5E5A);
}
.bvl-lg { display: inline-flex; align-items: center; gap: 6px; }
.bvl-lg-dot { width: 6px; height: 6px; border-radius: 99px; }
.bvl-lg-dot--in  { background: var(--acid); }
.bvl-lg-dot--oos { background: transparent; border: 1px solid #B4B2A9; }

/* Bloc délai dynamique ─────────────────────────────────── */
.bvl-dlv {
  margin: 18px 0 4px;
  padding: 14px 16px;
  border: 1px solid var(--fog, #E6E5E0);
  background: var(--paper-pure, #FFFFFF);
  display: flex; align-items: center; gap: 12px;
}
.bvl-dlv-ic {
  width: 30px; height: 30px; border-radius: 99px;
  display: flex; align-items: center; justify-content: center;
  font-size: 15px; font-weight: 600; flex-shrink: 0;
  transition: background .2s, color .2s;
}
.bvl-dlv-ic--in  { background: var(--acid); color: var(--ink); }
.bvl-dlv-ic--oos { background: #FAEEDA;     color: #854F0B; }
.bvl-dlv-k {
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.18em;
  color: var(--ash, #5F5E5A);
  text-transform: uppercase;
}
.bvl-dlv-v {
  font-size: 14px; font-weight: 500;
  margin-top: 3px;
  color: var(--ink);
}

/* Bloc retrait boutique ────────────────────────────────── */
.bvl-pickup {
  margin: 24px 0 8px;
  border: 1px solid var(--ink);
  background: var(--paper-pure, #FFFFFF);
  padding: 16px 18px;
}
.bvl-pickup-head {
  display: flex; align-items: center; justify-content: space-between;
}
.bvl-pickup-h {
  font-family: var(--mono);
  font-size: 11px; letter-spacing: 0.18em;
  text-transform: uppercase;
  display: inline-flex; align-items: center; gap: 8px;
}
.bvl-pickup-pin {
  width: 8px; height: 8px; background: var(--acid); border-radius: 99px;
}
.bvl-pickup-free {
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.18em;
  background: var(--acid); color: var(--ink);
  padding: 3px 8px;
}
.bvl-pickup-body {
  margin-top: 10px;
  font-size: 14px; line-height: 1.55;
  color: var(--ink);
}
.bvl-pickup-addr strong { font-weight: 500; }
.bvl-pickup-meta {
  color: var(--ash, #5F5E5A);
  font-size: 13px;
  margin-top: 4px;
}
.bvl-pickup-cta {
  margin-top: 12px;
  display: flex; gap: 10px;
}
.bvl-pickup-cta a {
  flex: 1;
  padding: 11px 12px;
  text-align: center;
  text-decoration: none;
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  color: var(--ink);
  transition: background .15s, color .15s;
}
.bvl-pickup-cta .bvl-pickup-wa {
  background: var(--ink); color: var(--paper);
}
.bvl-pickup-cta a:hover {
  background: var(--ink); color: var(--paper);
}
.bvl-pickup-cta .bvl-pickup-wa:hover {
  background: var(--paper); color: var(--ink);
}

/* Responsive ───────────────────────────────────────────── */
@media (max-width: 720px) {
  .bvl-size-grid { grid-template-columns: repeat(4, 1fr); gap: 6px; }
  .bvl-size { height: 50px; font-size: 13px; }
  .bvl-sizes-legend { font-size: 9px; gap: 14px; }
  .bvl-pickup-cta { flex-direction: column; }
}

/* v1.0.4 — Si la grille de tailles BVL est présente, masque le dropdown natif Woo
   (mais le garder dans le DOM pour que le JS puisse le piloter) */
body.single-product .bvl-sizes ~ form.variations_form .variations,
body.single-product .bvl-sizes ~ .pdp-add-to-cart .variations,
body.single-product:has(.bvl-sizes) form.variations_form table.variations {
  display: none !important;
}
/* Masque aussi le bloc "Pointure EU XXS, XS, S, L, M, XL, XXL" en lecture seule
   (l'ancien bloc .pdp-attrs avec un attribut taille) — on ne le veut plus quand
   la grille interactive est là */
body.single-product:has(.bvl-sizes) .pdp-attrs .pdp-attr:has(.pdp-attr-k:not(:empty)) {
  /* on n'utilise pas ce sélecteur, on laisse la logique PHP gérer */
}

/* v1.0.8 — Masquer l'affichage natif du stock Woo sur PDP
   (on a déjà le bloc bvl-dlv qui communique l'info de stock) */
.woocommerce-variation-availability,
.woocommerce div.product p.stock,
.woocommerce .stock {
  display: none !important;
}

/* v1.0.11 — Masquer le bouton "Payer avec Link" sur la PDP
   En réalité c'est PayPal Express Checkout (et non Stripe Link).
   Classes ciblées : p-ExpressCheckoutButtonGroup et conteneurs PayPal. */
.p-ExpressCheckoutButtonGroup,
.p-ExpressCheckoutItem,
div[class*="p-ExpressCheckout"],
button[name="pay_with_link_arrow"],
.LinkButton,
/* Conteneurs PayPal Express dans Woo */
.woocommerce div.product .ppc-button-wrapper,
.woocommerce div.product #ppc-button-ppcp-gateway,
.woocommerce div.product .ppcp-button-apm,
.woocommerce div.product .ppcp-buttons,
.woocommerce div.product .ppcp-messages,
/* Stripe Link (au cas où) */
.woocommerce div.product .wc-stripe-product-checkout-container,
.wc-stripe-payment-request-button-separator,
#wc-stripe-payment-request-button {
  display: none !important;
}

/* ============================================================
   BVL · Mini-cart — Editorial Ticket (v1.0.14, refonte propre)
   Layout flex 2 colonnes : image fixe + contenu fluide
   ============================================================ */

/* Drawer container */
.bvl-minicart {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(380px, 100vw);
  background: var(--paper);
  border-left: 1px solid var(--ink);
  box-shadow: -16px 0 40px rgba(0,0,0,0.18);
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  z-index: 101;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.bvl-minicart.is-open { transform: translateX(0); }
.bvl-minicart, .bvl-minicart * { box-sizing: border-box; }

/* Header — style ticket d'imprimerie */
.bvl-minicart-head {
  flex-shrink: 0;
  padding: 18px 20px 12px;
  border-bottom: 1px dashed var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
}
.bvl-minicart-eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink);
}
.bvl-minicart-ticket {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  color: var(--ash);
  margin-top: 4px;
  text-transform: uppercase;
}
.bvl-minicart-close {
  background: transparent;
  border: 0;
  font-family: var(--mono);
  font-size: 13px;
  cursor: pointer;
  color: var(--ink);
  padding: 2px 4px;
  line-height: 1;
}
.bvl-minicart-close:hover { color: var(--ash); }

/* Body scrollable */
.bvl-minicart-body {
  flex: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

/* Items list */
.bvl-minicart-items,
.bvl-minicart ul.cart_list,
.bvl-minicart ul.product_list_widget {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* Item — flex 2 zones : image fixe + bloc fluide */
.bvl-minicart-item {
  padding: 14px 20px;
  border-bottom: 1px dashed var(--fog);
  display: flex;
  gap: 14px;
  align-items: stretch;
}
.bvl-minicart-item-img {
  width: 56px;
  height: 72px;
  flex-shrink: 0;
  background: var(--fog);
  overflow: hidden;
}
.bvl-minicart-item-img a,
.bvl-minicart-item-img img,
.bvl-minicart-item-img a img {
  display: block;
  width: 56px;
  height: 72px;
  object-fit: cover;
  margin: 0;
  padding: 0;
  border: 0;
  max-width: 100%;
}

/* Bloc texte de l'item */
.bvl-minicart-item-body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.bvl-minicart-item-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
}
.bvl-minicart-item-cat {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ash);
}
.bvl-minicart-item-name {
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
  margin-top: 4px;
  letter-spacing: -0.01em;
  color: var(--ink);
  word-wrap: break-word;
  overflow-wrap: break-word;
}
.bvl-minicart-item-name a {
  color: var(--ink);
  text-decoration: none;
}
.bvl-minicart-item-name a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.bvl-minicart-item-foot {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: auto;
  padding-top: 8px;
  gap: 10px;
}
.bvl-minicart-item-meta {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  color: var(--ash);
  text-transform: uppercase;
}
.bvl-minicart-item-price {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.bvl-minicart-item-price .woocommerce-Price-amount,
.bvl-minicart-item-price .amount {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}

/* Croix de suppression — neutralise le rouge Woo natif */
.bvl-minicart-remove,
.bvl-minicart a.remove,
.bvl-minicart .remove_from_cart_button {
  background: transparent;
  border: 0;
  color: var(--ash);
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 400;
  text-decoration: none;
  padding: 0;
  width: auto;
  height: auto;
  line-height: 1;
  cursor: pointer;
  box-shadow: none;
  border-radius: 0;
}
.bvl-minicart-remove:hover,
.bvl-minicart a.remove:hover {
  background: transparent;
  color: var(--ink);
}

/* Bloc totaux */
.bvl-minicart-totals {
  flex-shrink: 0;
  padding: 14px 20px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: auto; /* pousse vers le bas quand peu d'items */
}
.bvl-minicart-total-row {
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ash);
}
.bvl-minicart-total-row--ship {
  font-size: 9px;
  letter-spacing: 0.06em;
  color: var(--ash);
}
.bvl-minicart-total-row .woocommerce-Price-amount,
.bvl-minicart-total-row .amount {
  font-family: var(--mono);
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}

/* Grand total */
.bvl-minicart-grand {
  flex-shrink: 0;
  padding: 12px 20px 14px;
  border-top: 1px solid var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.bvl-minicart-grand-lbl {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.bvl-minicart-grand-val {
  font-size: 24px;
  font-weight: 500;
  letter-spacing: -0.03em;
}
.bvl-minicart-grand-val .woocommerce-Price-amount,
.bvl-minicart-grand-val .amount {
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}

/* Alma mention */
.bvl-minicart-alma {
  flex-shrink: 0;
  padding: 0 20px 12px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  color: var(--ash);
}

/* CTAs */
.bvl-minicart-cta {
  flex-shrink: 0;
  padding: 6px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bvl-minicart-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: var(--mono);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .15s, color .15s, border-color .15s;
  border-radius: 0;
  border: 0;
}
.bvl-minicart-btn--primary {
  height: 46px;
  background: var(--acid);
  color: var(--ink);
  border: 1px solid var(--acid);
  font-size: 11px;
  font-weight: 600;
}
.bvl-minicart-btn--primary:hover {
  background: var(--ink);
  color: var(--acid);
  border-color: var(--ink);
}
.bvl-minicart-btn--ghost {
  height: 38px;
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
  font-size: 10px;
}
.bvl-minicart-btn--ghost:hover {
  background: var(--ink);
  color: var(--paper);
}

/* Empty state */
.bvl-minicart-empty {
  padding: 60px 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.bvl-minicart-empty-ic {
  font-size: 36px;
  color: var(--ash);
  opacity: .4;
}
.bvl-minicart-empty-txt {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--ash);
  text-transform: uppercase;
  margin: 0;
}

/* Neutralise les classes Woo natives qu'on n'utilise pas */
.bvl-minicart .woocommerce-mini-cart__buttons,
.bvl-minicart .woocommerce-mini-cart__total,
.bvl-minicart .woocommerce-mini-cart__empty-message {
  display: none;
}
.bvl-minicart .product_list_widget li {
  padding: 0;
  border: 0;
}
.bvl-minicart .product_list_widget li img {
  float: none;
}

/* Responsive : mobile = panneau plein écran */
@media (max-width: 480px) {
  .bvl-minicart {
    width: 100vw;
    border-left: 0;
  }
  .bvl-minicart-grand-val {
    font-size: 22px;
  }
}

/* ============================================================
   BVL · Page Panier (Cart) — Style ticket / facture (v1.0.15)
   ============================================================ */

/* Container principal — utilise le .wrap natif 1440px du thème
   (depuis page-cart.php on a un layout pleine largeur sans le wrapper 780px) */
.bvl-cart {
  max-width: 1280px;
  margin: 0 auto;
  padding: 32px 24px 80px;
}
.bvl-cart, .bvl-cart * { box-sizing: border-box; }

/* Breadcrumb */
.bvl-cart-breadcrumb {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ash);
  margin-bottom: 16px;
}
.bvl-cart-breadcrumb a:hover { color: var(--ink); }
.bvl-cart-sep { margin: 0 4px; }
.bvl-cart-breadcrumb-current { color: var(--ink); }

/* Cart form wrapper */
.bvl-cart-form {
  background: var(--paper-pure);
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  padding: 32px 36px;
}

/* Header style facture */
.bvl-cart-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-bottom: 20px;
  border-bottom: 1px dashed var(--ink);
}
.bvl-cart-eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  color: var(--ash);
  text-transform: uppercase;
}
.bvl-cart-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 500;
  letter-spacing: -0.03em;
  margin: 6px 0 0;
  line-height: 1;
}
.bvl-cart-head-right {
  text-align: right;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.14em;
  color: var(--ash);
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

/* Table header */
.bvl-cart-table-head {
  display: grid;
  grid-template-columns: 80px 2fr 80px 110px 90px 28px;
  gap: 14px;
  padding: 22px 0 12px;
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--ash);
  text-transform: uppercase;
}
.bvl-cart-th-right { text-align: right; }
.bvl-cart-th-center { text-align: center; }

/* Items list */
.bvl-cart-items { display: flex; flex-direction: column; }

.bvl-cart-item {
  display: grid;
  grid-template-columns: 80px 2fr 80px 110px 90px 28px;
  gap: 14px;
  padding: 18px 0;
  border-top: 1px dashed var(--fog);
  align-items: center;
}
.bvl-cart-item:last-child { border-bottom: 1px dashed var(--fog); }

.bvl-cart-item-img {
  width: 80px;
  height: 104px;
  background: var(--fog);
  overflow: hidden;
}
.bvl-cart-item-img a,
.bvl-cart-item-img img {
  display: block;
  width: 80px;
  height: 104px;
  object-fit: cover;
  margin: 0;
  padding: 0;
  border: 0;
  max-width: 100%;
}

.bvl-cart-item-info { min-width: 0; }
.bvl-cart-item-cat {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--ash);
  text-transform: uppercase;
}
.bvl-cart-item-name {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  margin-top: 3px;
  line-height: 1.3;
}
.bvl-cart-item-name a {
  color: var(--ink);
  text-decoration: none;
}
.bvl-cart-item-name a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.bvl-cart-item-meta {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  color: var(--ash);
  margin-top: 6px;
  text-transform: uppercase;
}

.bvl-cart-item-pu {
  font-family: var(--mono);
  font-size: 13px;
  text-align: right;
}
.bvl-cart-item-pu .woocommerce-Price-amount,
.bvl-cart-item-pu .amount {
  font-family: inherit;
  font-size: inherit;
}

/* Quantité — neutralise le style Woo natif */
.bvl-cart-item-qty {
  display: flex;
  justify-content: center;
}
.bvl-cart-item-qty .quantity {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--fog);
  background: var(--paper);
  height: 36px;
}
.bvl-cart-item-qty input.qty {
  width: 44px;
  height: 36px;
  border: 0;
  background: transparent;
  text-align: center;
  font-family: var(--mono);
  font-size: 12px;
  padding: 0;
  appearance: textfield;
  -moz-appearance: textfield;
  margin: 0;
}
.bvl-cart-item-qty input.qty::-webkit-outer-spin-button,
.bvl-cart-item-qty input.qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
/* Spinners custom −/+ ajoutés via JS, fallback : input nu reste fonctionnel */

.bvl-cart-item-total {
  font-family: var(--mono);
  font-size: 14px;
  font-weight: 600;
  text-align: right;
  letter-spacing: 0.02em;
}
.bvl-cart-item-total .woocommerce-Price-amount,
.bvl-cart-item-total .amount {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

/* Croix de suppression — kill du rouge Woo */
.bvl-cart-item-remove {
  display: flex;
  justify-content: center;
}
.bvl-cart-remove,
.bvl-cart-item a.remove,
.bvl-cart-item .remove {
  background: transparent !important;
  border: 0 !important;
  color: var(--ash) !important;
  font-family: var(--mono) !important;
  font-size: 13px !important;
  font-weight: 400 !important;
  text-decoration: none !important;
  padding: 0 !important;
  width: auto !important;
  height: auto !important;
  line-height: 1 !important;
  cursor: pointer;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.bvl-cart-remove:hover,
.bvl-cart-item a.remove:hover {
  color: var(--ink) !important;
  background: transparent !important;
}

/* Bottom : coupon + totaux */
.bvl-cart-bottom {
  background: var(--paper-pure);
  border: 2px solid var(--ink);
  border-top: 0;
  padding: 32px 36px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

/* Coupon */
.bvl-cart-coupon-inner {
  display: flex;
  gap: 10px;
  align-items: center;
}
.bvl-cart-coupon-lbl {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--ash);
  text-transform: uppercase;
  white-space: nowrap;
}
.bvl-cart-coupon-input {
  flex: 1;
  height: 42px;
  border: 1px solid var(--fog);
  background: var(--paper);
  padding: 0 12px;
  font-family: var(--display);
  font-size: 13px;
}
.bvl-cart-coupon-input:focus {
  outline: none;
  border-color: var(--ink);
}
.bvl-cart-coupon-btn {
  height: 42px;
  padding: 0 18px;
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--ink);
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .15s, color .15s;
}
.bvl-cart-coupon-btn:hover {
  background: var(--ink);
  color: var(--paper);
}

/* Totaux à droite */
.bvl-cart-totals {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bvl-cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--ash);
  text-transform: uppercase;
  padding: 4px 0;
}
.bvl-cart-total-row .woocommerce-Price-amount,
.bvl-cart-total-row .amount {
  font-family: var(--mono);
  font-size: 13px;
  color: var(--ink);
  font-weight: 500;
}
.bvl-cart-total-row--ship .amount,
.bvl-cart-total-row--ship .woocommerce-Price-amount {
  font-size: 11px;
  color: var(--ash);
}
.bvl-cart-total-row--coupon { color: #5F5E5A; }
.bvl-cart-total-row--coupon .amount { color: var(--ink); }

.bvl-cart-grand {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 16px 0 6px;
  border-top: 1px solid var(--ink);
  margin-top: 10px;
}
.bvl-cart-grand-lbl {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.bvl-cart-grand-val {
  font-size: 32px;
  font-weight: 500;
  letter-spacing: -0.03em;
}
.bvl-cart-grand-val .woocommerce-Price-amount,
.bvl-cart-grand-val .amount {
  font-family: var(--display);
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}
.bvl-cart-alma {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ash);
  letter-spacing: 0.06em;
  text-align: right;
  margin-top: 4px;
}

/* Bandeau retrait */
.bvl-cart-pickup {
  margin-top: 24px;
  background: var(--paper-pure);
  border: 1px solid var(--ink);
  padding: 16px 20px;
}
.bvl-cart-pickup-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.bvl-cart-pickup-h {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.bvl-cart-pickup-pin {
  width: 8px;
  height: 8px;
  background: var(--acid);
  border-radius: 99px;
}
.bvl-cart-pickup-free {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  background: var(--acid);
  color: var(--ink);
  padding: 3px 8px;
}
.bvl-cart-pickup-body {
  margin-top: 8px;
  font-size: 14px;
}
.bvl-cart-pickup-body strong { font-weight: 500; }
.bvl-cart-pickup-meta {
  color: var(--ash);
  font-size: 11px;
  letter-spacing: 0.08em;
  margin-top: 4px;
}

/* CTAs principaux */
.bvl-cart-actions {
  margin-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}
.bvl-cart-continue {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ash);
  text-decoration: underline;
  text-underline-offset: 5px;
}
.bvl-cart-continue:hover { color: var(--ink); }
.bvl-cart-checkout {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 0 36px;
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  transition: background .15s, color .15s;
}
.bvl-cart-checkout:hover {
  background: var(--acid);
  color: var(--ink);
}

/* Garanties bas de page */
.bvl-cart-guarantees {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px dashed var(--fog);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.bvl-cart-guarantee {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--ash);
  line-height: 1.4;
}
.bvl-cart-guarantee-ic {
  width: 20px;
  height: 20px;
  background: var(--acid);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  flex-shrink: 0;
}

/* Panier vide */
.bvl-cart-empty-wrap { padding: 80px 0 120px; }
.bvl-cart-empty {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
}
.bvl-cart-empty-ic {
  font-size: 48px;
  color: var(--ash);
  opacity: .4;
}
.bvl-cart-empty-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 500;
  letter-spacing: -0.03em;
  margin: 0;
}
.bvl-cart-empty-sub {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--ash);
  text-transform: uppercase;
  margin: 0;
}
.bvl-cart-empty-cta { margin-top: 18px; }
.bvl-cart-empty-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 28px;
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: background .15s, color .15s;
}
.bvl-cart-empty-btn:hover {
  background: var(--acid);
  color: var(--ink);
}

/* Neutralise les styles Woo natifs résiduels */
.bvl-cart .woocommerce-cart-form__cart-item.cart_item,
.bvl-cart table.shop_table {
  border: 0;
  background: transparent;
}
.bvl-cart .woocommerce-cart-form button[name="update_cart"],
.bvl-cart .cart-collaterals {
  display: none !important;
}

/* Responsive */
@media (max-width: 900px) {
  .bvl-cart-form { padding: 20px 18px; }
  .bvl-cart-bottom { padding: 20px 18px; grid-template-columns: 1fr; gap: 24px; }
  .bvl-cart-table-head { display: none; }
  .bvl-cart-item {
    grid-template-columns: 70px 1fr;
    gap: 12px;
  }
  .bvl-cart-item-img { width: 70px; height: 90px; }
  .bvl-cart-item-img a, .bvl-cart-item-img img { width: 70px; height: 90px; }
  .bvl-cart-item-info { grid-column: 2; }
  .bvl-cart-item-pu { display: none; }
  .bvl-cart-item-qty { grid-column: 2; justify-content: flex-start; margin-top: 8px; }
  .bvl-cart-item-total {
    grid-column: 2;
    text-align: left;
    margin-top: 8px;
    font-size: 16px;
  }
  .bvl-cart-item-remove {
    grid-column: 1;
    grid-row: 1;
    justify-content: flex-start;
    align-self: flex-start;
  }
  .bvl-cart-actions { flex-direction: column-reverse; align-items: stretch; }
  .bvl-cart-checkout { width: 100%; }
  .bvl-cart-continue { text-align: center; }
  .bvl-cart-guarantees { grid-template-columns: 1fr; }
  .bvl-cart-head { flex-direction: column; align-items: flex-start; gap: 12px; }
  .bvl-cart-head-right { text-align: left; }
  .bvl-cart-coupon-inner { flex-wrap: wrap; }
}

/* v1.0.16 — Corrections page panier */

/* Cache le titre de page WordPress sur la page Cart (on a notre propre header) */
body.woocommerce-cart .entry-title,
body.page-template-page .entry-title:not(.bvl-cart-title),
.woocommerce-cart header.entry-header,
.woocommerce-cart .page-header,
.woocommerce-cart .wp-block-post-title,
body.woocommerce-cart h1.entry-title {
  display: none !important;
}

/* Image item : force la contrainte stricte sans débordement */
.bvl-cart-item-img {
  position: relative;
  flex-shrink: 0;
}
.bvl-cart-item-img,
.bvl-cart-item-img a,
.bvl-cart-item-img img {
  width: 80px !important;
  height: 104px !important;
  max-width: 80px !important;
  max-height: 104px !important;
  min-width: 80px;
  display: block;
  overflow: hidden;
}
.bvl-cart-item-img img {
  object-fit: cover !important;
  object-position: center;
}

/* Sélecteur de quantité — encadré propre */
.bvl-cart-item-qty .quantity {
  display: inline-flex !important;
  align-items: center;
  border: 1px solid var(--ink);
  background: var(--paper-pure);
  height: 38px;
  padding: 0;
  width: auto;
}
.bvl-cart-item-qty input.qty {
  width: 50px !important;
  height: 36px !important;
  border: 0 !important;
  background: transparent !important;
  text-align: center;
  font-family: var(--mono);
  font-size: 13px;
  font-weight: 500;
  padding: 0 !important;
  margin: 0 !important;
  outline: none;
  box-shadow: none !important;
  -moz-appearance: textfield;
  appearance: textfield;
}
.bvl-cart-item-qty input.qty:focus { border-color: transparent; outline: none; }
.bvl-cart-item-qty input.qty::-webkit-outer-spin-button,
.bvl-cart-item-qty input.qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}


/* ============================================================
   BVL · Mega-Menu — éditorial hero (v1.0.21)
   Hover desktop / sous-panneau mobile
   ============================================================ */

/* ---- Navigation principale (override de .header-nav ul) ---- */
.header-nav .bvl-mm-nav {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 32px;
  align-items: center;
}
.bvl-mm-nav-item {
  position: relative; /* anchor pour le panel desktop */
}
.bvl-mm-nav-link {
  display: inline-block;
  padding: 6px 0;
  color: var(--ink);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: color .15s;
  border-bottom: 1px solid transparent;
}
.bvl-mm-nav-item:hover > .bvl-mm-nav-link,
.bvl-mm-nav-item.is-open > .bvl-mm-nav-link {
  border-bottom-color: var(--ink);
}

/* ---- Panneau desktop : full-width sous le header ---- */
.bvl-mm-panel {
  position: fixed;
  top: var(--bvl-header-h, 130px); /* sera ajusté en JS */
  left: 0;
  right: 0;
  width: 100vw;
  background: var(--paper);
  border-top: 1px solid var(--fog);
  border-bottom: 1px solid var(--ink);
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity .25s ease, transform .25s ease, visibility .25s;
  pointer-events: none;
  max-height: calc(100vh - var(--bvl-header-h, 130px));
  overflow-y: auto;
}
.bvl-mm-nav-item.is-open > .bvl-mm-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.bvl-mm-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 28px 24px 36px;
}
.bvl-mm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1.6fr;
  gap: 0;
  min-height: 320px;
}
.bvl-mm-col {
  padding: 12px 28px;
}
.bvl-mm-col-cats { border-right: 1px dashed var(--fog); padding-left: 0; }
.bvl-mm-col-brands { border-right: 1px dashed var(--fog); }

.bvl-mm-col-h {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--ash);
  text-transform: uppercase;
  margin-bottom: 18px;
}
.bvl-mm-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.bvl-mm-list li {
  font-size: 14px;
}
.bvl-mm-list a {
  color: var(--ink);
  text-decoration: none;
  transition: color .15s;
}
.bvl-mm-list a:hover {
  color: var(--ash);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.bvl-mm-list-all {
  margin-top: 8px;
}
.bvl-mm-list-all a {
  font-size: 10px !important;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ash) !important;
}

/* ---- Hero (colonne droite) — Direction F · Beige sable chaud ---- */
.bvl-mm-hero {
  background-color: #E8DCC4; /* beige sable doré, chaleur naturelle */
  background-size: cover;
  background-position: center;
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 320px;
  position: relative;
  overflow: hidden;
  color: var(--ink);
}
.bvl-mm-hero-overlay {
  display: none; /* activé si image présente pour lisibilité */
}
.bvl-mm-hero[style*="background-image"] .bvl-mm-hero-overlay {
  display: block;
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.35) 100%);
}
.bvl-mm-hero-top,
.bvl-mm-hero-bottom {
  position: relative;
  z-index: 2;
}
.bvl-mm-hero-tag {
  display: inline-block;
  background: var(--ink); /* tag noir contrasté sur beige */
  color: var(--paper);
  padding: 5px 11px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
}
.bvl-mm-hero-title {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--ink); /* titre noir lisible sur beige */
}
.bvl-mm-hero[style*="background-image"] .bvl-mm-hero-title,
.bvl-mm-hero[style*="background-image"] .bvl-mm-hero-meta {
  color: var(--paper);
}
.bvl-mm-hero-meta {
  font-size: 11px;
  letter-spacing: 0.14em;
  color: var(--ash);
  margin-top: 8px;
  text-transform: uppercase;
}
.bvl-mm-hero-cta {
  display: inline-flex;
  align-items: center;
  margin-top: 16px;
  height: 42px;
  padding: 0 22px;
  background: var(--ink); /* CTA noir sur beige */
  color: var(--paper);
  text-decoration: none;
  font-size: 10px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  transition: background .15s, color .15s;
}
.bvl-mm-hero-cta:hover {
  background: var(--acid); /* hover passe en vert acide (signature BVL) */
  color: var(--ink);
}

/* ---- Background overlay derrière le panel desktop ---- */
.bvl-mm-bg {
  position: fixed;
  top: var(--bvl-header-h, 130px);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 10, 10, 0.35);
  opacity: 0;
  visibility: hidden;
  transition: opacity .25s, visibility .25s;
  z-index: 98;
  pointer-events: none;
}
.bvl-mm-bg.is-open {
  opacity: 1;
  visibility: visible;
}

/* ---- Mobile header du panel (caché desktop) ---- */
.bvl-mm-mobile-head { display: none; }

/* ============================================================
   MOBILE — sous-panneau plein écran qui glisse de droite
   ============================================================ */
@media (max-width: 900px) {
  /* Le menu desktop est caché sur mobile (le menu burger existant prend le relais) */
  /* Mais on veut quand même que ça fonctionne SI le mega-nav s'affiche */

  .bvl-mm-panel {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    max-height: 100vh;
    height: 100vh;
    border: 0;
    transform: translateX(100%);
    opacity: 1;
    visibility: hidden;
    transition: transform .3s cubic-bezier(.4,0,.2,1), visibility .3s;
    z-index: 200;
  }
  .bvl-mm-nav-item.is-open > .bvl-mm-panel {
    transform: translateX(0);
    visibility: visible;
  }
  .bvl-mm-nav-item:hover > .bvl-mm-panel {
    /* PAS de hover sur mobile */
    transform: translateX(100%);
    visibility: hidden;
  }
  .bvl-mm-nav-item.is-open > .bvl-mm-panel {
    transform: translateX(0) !important;
    visibility: visible !important;
  }

  .bvl-mm-inner {
    padding: 0;
    max-width: 100%;
  }

  /* Header mobile du sous-panneau */
  .bvl-mm-mobile-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 18px;
    border-bottom: 1px solid var(--ink);
    background: var(--paper-pure);
    position: sticky;
    top: 0;
    z-index: 5;
  }
  .bvl-mm-mobile-back,
  .bvl-mm-mobile-close {
    background: transparent;
    border: 0;
    font-size: 18px;
    cursor: pointer;
    padding: 4px 8px;
    color: var(--ink);
  }
  .bvl-mm-mobile-eyebrow {
    font-size: 9px;
    letter-spacing: 0.18em;
    color: var(--ash);
    text-transform: uppercase;
  }
  .bvl-mm-mobile-name {
    font-size: 18px;
    font-weight: 500;
    letter-spacing: -0.01em;
    margin-top: 2px;
    text-align: center;
  }

  /* Layout mobile : tout empilé */
  .bvl-mm-grid {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }
  .bvl-mm-col {
    padding: 18px 18px;
    border-right: 0 !important;
    border-bottom: 1px dashed var(--fog);
  }
  .bvl-mm-col-cats { padding-left: 18px; }

  .bvl-mm-list {
    gap: 14px;
  }
  .bvl-mm-list li {
    font-size: 15px;
  }

  /* Hero en bandeau plein largeur */
  .bvl-mm-hero {
    min-height: 200px;
    order: -1; /* hero en premier sur mobile */
    border-bottom: 1px dashed var(--fog);
  }
  .bvl-mm-hero-title {
    font-size: 22px;
  }
  .bvl-mm-hero-cta {
    height: 40px;
    padding: 0 18px;
  }

  /* Pas de background overlay mobile */
  .bvl-mm-bg { display: none; }
}

/* Désactive le mega-menu nav sur mobile (le menu burger existant prend le relais) */
@media (max-width: 900px) {
  .header-nav .bvl-mm-nav {
    display: none;
  }
}

/* ============================================================
   BVL · PLP — Page liste produits (v1.0.34)
   Direction M × L : hero desktop + filtres dropdowns + grille éditoriale
   ============================================================ */

.bvl-plp { max-width: 100%; margin: 0 auto; padding: 0 24px; }

/* ── BREADCRUMB MOBILE ────────────────────────────────────── */
.bvl-plp-mobile-head {
  display: none;
  padding: 12px 20px;
  border-bottom: 1px solid var(--fog);
}
.bvl-plp-bc { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--ash); }
.bvl-plp-bc a { color: var(--ash); text-decoration: none; }
.bvl-plp-bc a:hover { color: var(--ink); }
.bvl-plp-bc-sep { margin: 0 6px; }
.bvl-plp-bc-cur { color: var(--ink); }

/* ── HERO DESKTOP ─────────────────────────────────────────── */
.bvl-plp-hero {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  min-height: 260px;
  border-bottom: 1px solid var(--ink);
}
.bvl-plp-hero-left {
  padding: 28px 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--paper);
}
.bvl-plp-hero-vol {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--ash);
  text-transform: uppercase;
}
.bvl-plp-hero-h1 {
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.92;
  margin: 0;
}
.bvl-plp-hero-h1 em {
  font-style: italic;
  font-weight: 400;
  color: var(--ash);
}
.bvl-plp-hero-meta {
  display: flex;
  gap: 36px;
}
.bvl-plp-hero-meta-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.bvl-plp-hero-meta-lbl {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--ash);
  text-transform: uppercase;
}
.bvl-plp-hero-meta-val {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--ink);
  font-family: var(--mono);
}
.bvl-plp-hero-right {
  background-color: var(--fog);
  background-size: cover;
  background-position: center;
  position: relative;
}
.bvl-plp-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 40%, rgba(0,0,0,0.4) 100%);
}
.bvl-plp-hero-tag {
  position: absolute;
  top: 24px;
  left: 24px;
  background: var(--ink);
  color: var(--paper);
  font-size: 10px;
  letter-spacing: 0.18em;
  padding: 6px 12px;
  text-transform: uppercase;
  z-index: 2;
}
.bvl-plp-hero-shot {
  position: absolute;
  bottom: 24px;
  right: 24px;
  font-size: 9px;
  letter-spacing: 0.18em;
  color: var(--ink);
  text-transform: uppercase;
  z-index: 2;
}
.bvl-plp-hero-right[style*="background-image"] .bvl-plp-hero-tag,
.bvl-plp-hero-right[style*="background-image"] .bvl-plp-hero-shot {
  color: var(--paper);
}

/* ── SOUS-CATÉGORIES LIENS ────────────────────────────────── */
.bvl-plp-catlinks {
  padding: 16px 40px;
  display: flex;
  gap: 28px;
  align-items: center;
  border-bottom: 1px solid var(--fog);
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  white-space: nowrap;
}
.bvl-plp-catlink {
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--ash);
  text-transform: uppercase;
  text-decoration: none;
  padding: 3px 0;
  flex-shrink: 0;
  transition: color .15s;
}
.bvl-plp-catlink:hover { color: var(--ink); }
.bvl-plp-catlink--active {
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
}

/* ── BARRE FILTRES ────────────────────────────────────────── */
.bvl-plp-filterbar {
  padding: 14px 40px;
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--fog);
  background: var(--paper);
  position: sticky;
  top: 0;
  z-index: 20;
}
.bvl-plp-filters-desktop { display: flex; gap: 10px; flex-wrap: wrap; }
.bvl-plp-filter-mobile-btn { display: none; }

/* Dropdown */
.bvl-plp-fdrop { position: relative; }
.bvl-plp-fdrop-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border: 1px solid var(--fog);
  background: transparent;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  color: var(--ink);
  transition: border-color .15s, background .15s;
  white-space: nowrap;
}
.bvl-plp-fdrop-btn:hover { border-color: var(--ink); }
.bvl-plp-fdrop-btn.is-active {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.bvl-plp-fdrop-count {
  background: var(--acid);
  color: var(--ink);
  font-size: 9px;
  padding: 1px 5px;
  font-weight: 700;
  margin-left: 2px;
}
.bvl-plp-fdrop-panel {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: var(--paper);
  border: 1px solid var(--ink);
  padding: 16px 18px;
  min-width: 240px;
  z-index: 30;
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}
.bvl-plp-fdrop-opt {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  padding: 5px 0;
  cursor: pointer;
}
.bvl-plp-fdrop-count { margin-left: auto; color: var(--ash); background: none; font-weight: 400; font-size: 12px; padding: 0; }
.bvl-plp-fdrop-actions {
  display: flex;
  gap: 8px;
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--fog);
}
.bvl-plp-fdrop-clear,
.bvl-plp-fdrop-apply {
  flex: 1;
  height: 36px;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  border: 0;
  font-weight: 600;
}
.bvl-plp-fdrop-apply { background: var(--ink); color: var(--paper); }
.bvl-plp-fdrop-clear { background: transparent; color: var(--ash); text-decoration: underline; }

/* Prix range */
.bvl-plp-price-range { display: flex; flex-direction: column; gap: 6px; margin: 8px 0; }
.bvl-plp-price-range input[type="range"] { width: 100%; accent-color: var(--ink); }
.bvl-plp-price-vals { display: flex; justify-content: space-between; font-size: 11px; color: var(--ash); letter-spacing: 0.1em; }

/* TRI */
.bvl-plp-sort { position: relative; margin-left: auto; }
.bvl-plp-sort-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border: 1px solid var(--fog);
  background: transparent;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  color: var(--ink);
  white-space: nowrap;
}
.bvl-plp-sort-btn:hover { border-color: var(--ink); }
.bvl-plp-sort-panel {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  background: var(--paper);
  border: 1px solid var(--ink);
  min-width: 200px;
  z-index: 30;
  box-shadow: 0 12px 32px rgba(0,0,0,0.12);
}
.bvl-plp-sort-opt {
  display: block;
  padding: 10px 16px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ash);
  transition: color .15s, background .15s;
}
.bvl-plp-sort-opt:hover { color: var(--ink); background: var(--fog); }
.bvl-plp-sort-opt.is-active { color: var(--ink); font-weight: 600; }

/* TAGS ACTIFS */
.bvl-plp-active-tags {
  padding: 12px 40px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
  background: var(--fog);
  border-bottom: 1px solid var(--fog);
}
.bvl-plp-active-tags-lbl {
  font-size: 9px;
  letter-spacing: 0.16em;
  color: var(--ash);
  text-transform: uppercase;
  margin-right: 4px;
}
.bvl-plp-active-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--ink);
  color: var(--paper);
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.14em;
  padding: 4px 10px;
  text-transform: uppercase;
  cursor: pointer;
}
.bvl-plp-active-tags-clear {
  font-size: 9px;
  letter-spacing: 0.16em;
  color: var(--ash);
  text-decoration: underline;
  text-transform: uppercase;
  cursor: pointer;
  background: transparent;
  border: 0;
  margin-left: 4px;
}

/* ── GRILLE PRODUITS ──────────────────────────────────────── */
.bvl-plp-grid-wrap { padding: 28px 40px 40px; }
.bvl-plp-grid,
.bvl-plp ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 16px !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  width: 100% !important;
}

/* ── CARTE PRODUIT ────────────────────────────────────────── */
.bvl-card { width: 100% !important; margin: 0 !important; }
.bvl-card-inner {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: var(--ink);
}
.bvl-card-media {
  position: relative;
  aspect-ratio: 1/1;
  background: var(--fog);
  overflow: hidden;
}
.bvl-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform .5s ease, opacity .3s ease;
}

/* Neutralise les styles WooCommerce sur les li.product dans notre grille */
.bvl-plp ul.products li.product,
.bvl-plp .bvl-plp-grid li.product {
  background: transparent !important;
  border: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}
.bvl-card-img-alt {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity .3s ease;
}
.bvl-card-inner:hover .bvl-card-media img:not(.bvl-card-img-alt) {
  transform: scale(1.04);
}
.bvl-card-inner:hover .bvl-card-img-alt { opacity: 1; }

/* Badges */
.bvl-card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 9px;
  letter-spacing: 0.16em;
  padding: 4px 10px;
  text-transform: uppercase;
  font-weight: 600;
  z-index: 2;
}
.bvl-card-badge--new { background: var(--acid); color: var(--ink); }
.bvl-card-badge--sale { background: var(--ink); color: var(--paper); }
.bvl-card-badge--oos { background: var(--ash); color: var(--paper); }

/* Favori */
.bvl-card-fav {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  background: rgba(250,250,247,.92);
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: background .15s;
}
.bvl-card-fav:hover { background: var(--acid); }

/* Tailles desktop — overlay au hover */
.bvl-card-sizes--hover {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10,10,10,0.75);
  padding: 8px 10px;
  display: flex;
  gap: 4px;
  flex-wrap: wrap;
  align-items: center;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity .2s, transform .2s;
  z-index: 2;
  backdrop-filter: blur(4px);
}
.bvl-card-inner:hover .bvl-card-sizes--hover {
  opacity: 1;
  transform: translateY(0);
}
.bvl-card-size {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: 0.08em;
  color: var(--paper);
  border: 1px solid rgba(250,250,247,.3);
  padding: 3px 6px;
  cursor: pointer;
  transition: background .15s, border-color .15s;
  line-height: 1;
}
}
.bvl-card-size:hover { background: var(--paper); color: var(--ink); }
.bvl-card-size.is-oos {
  color: rgba(250,250,247,.3);
  border-color: rgba(250,250,247,.15);
  text-decoration: line-through;
  cursor: default;
}

/* Tailles mobile — masquées par défaut sur desktop */
.bvl-card-sizes-btn { display: none; }
.bvl-card-sizes-overlay { display: none; }

/* Infos produit */
.bvl-card-info { padding: 14px 4px 0; }
.bvl-card-brand {
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--ash);
  text-transform: uppercase;
}
.bvl-card-name {
  font-size: 14px;
  font-weight: 500;
  margin-top: 4px;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.bvl-card-foot {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 8px;
}
.bvl-card-price { font-size: 14px; font-weight: 500; }
.bvl-card-price del { color: var(--ash); font-size: 12px; margin-right: 6px; }
.bvl-card-price ins { text-decoration: none; }
.bvl-card-alma {
  font-size: 9px;
  letter-spacing: 0.12em;
  color: var(--ash);
  text-transform: uppercase;
}

/* ── PAGINATION ───────────────────────────────────────────── */
.bvl-plp-pagination {
  margin-top: 32px;
  display: flex;
  justify-content: center;
}
.bvl-plp-pagination .woocommerce-pagination ul {
  display: flex;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.bvl-plp-pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 10px;
  border: 1px solid var(--fog);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-decoration: none;
  color: var(--ink);
  transition: background .15s, border-color .15s;
}
.bvl-plp-pagination .page-numbers:hover { border-color: var(--ink); }
.bvl-plp-pagination .page-numbers.current { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.bvl-plp-pagination .page-numbers.dots { border: 0; }

/* ── EMPTY STATE ──────────────────────────────────────────── */
.bvl-plp-empty {
  padding: 80px 0 120px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}
.bvl-plp-empty-ic { font-size: 48px; color: var(--ash); opacity: .4; }
.bvl-plp-empty-title { font-size: 28px; font-weight: 500; letter-spacing: -0.02em; }
.bvl-plp-empty-sub { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; color: var(--ash); text-transform: uppercase; }
.bvl-plp-empty-btn {
  margin-top: 10px;
  height: 48px;
  padding: 0 24px;
  background: var(--ink);
  color: var(--paper);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  transition: background .15s;
}
.bvl-plp-empty-btn:hover { background: var(--acid); color: var(--ink); }

/* ── DRAWER FILTRES MOBILE ────────────────────────────────── */
.bvl-plp-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.45);
  z-index: 98;
}
.bvl-plp-drawer-overlay[hidden] { display: none !important; }
.bvl-plp-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(380px, 92vw);
  background: var(--paper);
  z-index: 99;
  display: flex;
  flex-direction: column;
  box-shadow: -12px 0 32px rgba(0,0,0,0.15);
}
.bvl-plp-drawer[hidden] { display: none !important; }
.bvl-plp-drawer-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid var(--ink);
  flex-shrink: 0;
}
.bvl-plp-drawer-h { font-family: var(--mono); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; font-weight: 600; }
.bvl-plp-drawer-close { background: transparent; border: 0; font-size: 18px; cursor: pointer; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; }
.bvl-plp-drawer-body { flex: 1; overflow-y: auto; padding: 20px; }
.bvl-plp-drawer-section { padding-bottom: 18px; margin-bottom: 18px; border-bottom: 1px solid var(--fog); }
.bvl-plp-drawer-section:last-child { border-bottom: 0; margin-bottom: 0; }
.bvl-plp-drawer-section-h { font-family: var(--mono); font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600; margin-bottom: 12px; }
.bvl-plp-drawer-opt { display: flex; align-items: center; gap: 8px; font-size: 13px; padding: 6px 0; cursor: pointer; }
.bvl-plp-drawer-count { color: var(--ash); font-size: 11px; margin-left: auto; }
.bvl-plp-drawer-sizes { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 4px; }
.bvl-plp-drawer-size {
  font-family: var(--mono);
  font-size: 11px;
  border: 1px solid var(--fog);
  padding: 6px 12px;
  cursor: pointer;
  background: transparent;
  color: var(--ink);
  transition: background .15s, border-color .15s;
}
.bvl-plp-drawer-size:hover { border-color: var(--ink); }
.bvl-plp-drawer-size.is-active { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.bvl-plp-drawer-size.is-oos { color: var(--ash); border-color: var(--fog); }
.bvl-plp-drawer-colors { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.bvl-plp-drawer-color {
  width: 28px; height: 28px;
  border-radius: 99px;
  border: 1px solid var(--fog);
  cursor: pointer;
  transition: transform .15s, box-shadow .15s;
}
.bvl-plp-drawer-color:hover { transform: scale(1.15); }
.bvl-plp-drawer-color.is-active { border: 2px solid var(--ink); box-shadow: 0 0 0 2px var(--paper) inset; }
.bvl-plp-drawer-foot {
  display: flex;
  gap: 10px;
  padding: 14px 20px;
  border-top: 1px solid var(--ink);
  flex-shrink: 0;
}
.bvl-plp-drawer-reset,
.bvl-plp-drawer-apply {
  flex: 1;
  height: 46px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  font-weight: 600;
  border: 0;
}
.bvl-plp-drawer-apply { background: var(--ink); color: var(--paper); }
.bvl-plp-drawer-reset { background: transparent; color: var(--ink); border: 1px solid var(--ink); }

/* Overlay tailles sur carte mobile */
.bvl-card-sizes-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10,10,10,0.92);
  z-index: 5;
  flex-direction: column;
  justify-content: space-between;
  padding: 12px;
}
.bvl-card-sizes-overlay[hidden] { display: none; }
.bvl-card-sizes-overlay:not([hidden]) { display: flex; }
.bvl-card-sizes-overlay-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.bvl-card-sizes-overlay-head span { font-family: var(--mono); font-size: 9px; letter-spacing: 0.16em; color: var(--paper); text-transform: uppercase; }
.bvl-card-sizes-overlay-head button { background: transparent; border: 0; color: var(--paper); font-size: 14px; cursor: pointer; width: 24px; height: 24px; }
.bvl-card-sizes-overlay-grid { display: flex; flex-wrap: wrap; gap: 5px; align-content: center; flex: 1; align-items: center; }
.bvl-card-sizes-overlay-foot { font-family: var(--mono); font-size: 9px; letter-spacing: 0.12em; color: rgba(250,250,247,.6); text-transform: uppercase; text-align: center; }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1100px) {
  .bvl-plp-grid,
  .bvl-plp ul.products { grid-template-columns: repeat(3, 1fr) !important; gap: 12px !important; }
  .bvl-plp-grid-wrap { padding: 20px 24px 32px; }
  .bvl-plp-filterbar { padding: 12px 24px; }
  .bvl-plp-catlinks { padding: 14px 24px; }
  .bvl-plp-hero-left { padding: 28px 24px; }
  .bvl-plp-active-tags { padding: 12px 24px; }
}

@media (max-width: 900px) {
  /* Hero masqué sur mobile */
  .bvl-plp-hero { display: none; }

  /* Breadcrumb mobile visible */
  .bvl-plp-mobile-head { display: block; }

  /* Filtres : plus de dropdowns desktop, on garde juste le bouton mobile */
  .bvl-plp-filters-desktop { display: none; }
  .bvl-plp-filter-mobile-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    height: 44px;
    padding: 0 18px;
    border: 1px solid var(--fog);
    background: transparent;
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    cursor: pointer;
    color: var(--ink);
  }
  .bvl-plp-filter-count {
    background: var(--acid);
    color: var(--ink);
    font-size: 9px;
    padding: 1px 5px;
    font-weight: 700;
    border-radius: 2px;
  }

  /* Grille 2 colonnes */
  .bvl-plp-grid,
  .bvl-plp ul.products { grid-template-columns: repeat(2, 1fr) !important; gap: 10px !important; }
  .bvl-plp-grid-wrap { padding: 14px 14px 28px; }
  .bvl-plp-catlinks { padding: 12px 14px; gap: 16px; }
  .bvl-plp-filterbar { padding: 10px 14px; }
  .bvl-plp-active-tags { padding: 10px 14px; }

  /* Tailles mobile : bouton au tap, overlay */
  .bvl-card-sizes--hover { display: none !important; }
  .bvl-card-sizes-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 8px;
    right: 8px;
    bottom: 8px;
    background: rgba(10,10,10,0.82);
    color: var(--paper);
    font-size: 9px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    padding: 7px 10px;
    border: 0;
    cursor: pointer;
    z-index: 2;
  }

  /* Carte : infos un peu plus compactes */
  .bvl-card-info { padding: 8px 2px 0; }
  .bvl-card-brand { font-size: 8px; letter-spacing: 0.14em; }
  .bvl-card-name { font-size: 12px; }
  .bvl-card-price { font-size: 12px; }
  .bvl-card-alma { font-size: 8px; }
}

/* ============================================================
   BVL · Page Marques — Éditorial (v1.0.35)
   ============================================================ */

.bvl-brands-page { max-width: 100%; margin: 0 auto; padding: 0 24px; }

/* Hero */
.bvl-brands-hero {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  min-height: 320px;
  border-bottom: 1px solid var(--ink);
}
.bvl-brands-hero-left {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.bvl-brands-eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--ash);
  text-transform: uppercase;
}
.bvl-brands-h1 {
  font-size: clamp(52px, 7vw, 88px);
  font-weight: 500;
  letter-spacing: -0.04em;
  line-height: 0.92;
  margin: 0;
}
.bvl-brands-h1 em { font-style: italic; font-weight: 400; color: var(--ash); }
.bvl-brands-meta { display: flex; gap: 32px; }
.bvl-brands-meta-block { display: flex; flex-direction: column; gap: 4px; }
.bvl-brands-meta-lbl { font-family: var(--mono); font-size: 10px; letter-spacing: 0.18em; color: var(--ash); text-transform: uppercase; }
.bvl-brands-meta-val { font-family: var(--mono); font-size: 14px; font-weight: 500; letter-spacing: 0.06em; color: var(--ink); }

.bvl-brands-hero-right {
  background-color: #E8DCC4;
  background-size: cover;
  background-position: center;
  position: relative;
}
.bvl-brands-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 40%, rgba(0,0,0,0.35) 100%);
}
.bvl-brands-hero-tag {
  position: absolute; top: 24px; left: 24px;
  background: var(--acid); color: var(--ink);
  font-size: 10px; letter-spacing: 0.18em; padding: 6px 12px; text-transform: uppercase; font-weight: 600;
  z-index: 2;
}
.bvl-brands-hero-shot {
  position: absolute; bottom: 24px; right: 24px;
  font-size: 9px; letter-spacing: 0.18em; color: var(--ink);
  text-transform: uppercase; z-index: 2;
}
.bvl-brands-hero-right[style*="background-image"] .bvl-brands-hero-shot { color: var(--paper); }

/* Filtre alpha */
.bvl-brands-alpha {
  padding: 14px 40px;
  display: flex;
  gap: 4px;
  align-items: center;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--fog);
}
.bvl-brands-alpha-lbl {
  font-size: 10px; letter-spacing: 0.16em; color: var(--ash);
  text-transform: uppercase; margin-right: 8px;
}
.bvl-brands-alpha-btn {
  font-size: 11px; letter-spacing: 0.12em; color: var(--ash);
  padding: 4px 8px; text-transform: uppercase;
  background: transparent; border: 0; cursor: pointer;
  transition: color .15s;
}
.bvl-brands-alpha-btn:hover { color: var(--ink); }
.bvl-brands-alpha-btn.is-active { color: var(--ink); font-weight: 600; border-bottom: 1px solid var(--ink); }

/* Liste éditoriale */
.bvl-brands-list { }
.bvl-brand-row {
  display: grid;
  grid-template-columns: 48px 1.4fr 2fr auto;
  gap: 28px;
  padding: 24px 40px;
  border-bottom: 1px solid var(--fog);
  align-items: center;
  text-decoration: none;
  color: var(--ink);
  transition: background .15s;
}
.bvl-brand-row:hover { background: var(--fog); }
.bvl-brand-row:hover .bvl-brand-arrow {
  opacity: 1;
  transform: translateX(6px);
}
.bvl-brand-row.is-hidden { display: none; }

.bvl-brand-letter {
  font-size: 11px; letter-spacing: 0.14em; color: var(--ash); text-transform: uppercase;
}
.bvl-brand-name {
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 500; letter-spacing: -0.02em; line-height: 1;
}
.bvl-brand-desc {
  font-size: 13px; line-height: 1.6; color: var(--ash); max-width: 480px;
}
.bvl-brand-meta-col {
  text-align: right;
  display: flex; flex-direction: column; align-items: flex-end; gap: 6px;
}
.bvl-brand-badge {
  font-size: 9px; letter-spacing: 0.16em; text-transform: uppercase;
  background: var(--acid); color: var(--ink); padding: 3px 8px; font-weight: 600;
}
.bvl-brand-count {
  font-size: 10px; letter-spacing: 0.14em; color: var(--ash); text-transform: uppercase;
}
.bvl-brand-arrow {
  font-size: 18px; color: var(--ink);
  opacity: 0.25; transition: opacity .2s, transform .2s;
}

/* Empty state */
.bvl-brands-empty {
  padding: 80px 40px;
  text-align: center;
}
.bvl-brands-empty-title { font-size: 24px; font-weight: 500; letter-spacing: -0.02em; }
.bvl-brands-empty-sub { font-family: var(--mono); font-size: 11px; letter-spacing: 0.14em; color: var(--ash); text-transform: uppercase; margin-top: 12px; line-height: 1.8; }

/* Responsive */
@media (max-width: 900px) {
  .bvl-brands-hero { grid-template-columns: 1fr; min-height: auto; }
  .bvl-brands-hero-left { padding: 24px 20px; }
  .bvl-brands-hero-right { height: 180px; }
  .bvl-brands-alpha { padding: 12px 20px; }
  .bvl-brand-row {
    grid-template-columns: 32px 1fr;
    grid-template-rows: auto auto auto;
    gap: 8px 14px;
    padding: 18px 20px;
  }
  .bvl-brand-desc { grid-column: 2; font-size: 12px; }
  .bvl-brand-meta-col { grid-column: 2; flex-direction: row; align-items: center; justify-content: flex-start; gap: 10px; }
  .bvl-brand-arrow { display: none; }
  .bvl-brand-name { font-size: 20px; }
}

/* ============================================================
   BVL · YITH / Filtres WooCommerce — couleurs BVL
   ============================================================ */

/* Drawer fermé par défaut */
.bvl-plp-drawer[hidden],
.bvl-plp-drawer-overlay[hidden] { display: none !important; }

/* Compteur résultats */
.bvl-plp-results-count {
  margin-left: auto;
  font-size: 10px;
  letter-spacing: 0.16em;
  color: var(--ash);
  text-transform: uppercase;
}

