/* ============================================
   RESET & BASE
============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  min-height: 100vh;
}

img, video { display: block; max-width: 100%; height: auto; }

a { color: inherit; text-decoration: none; transition: color var(--transition); }

ul, ol { list-style: none; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-secondary);
}

/* ============================================
   UTILITAIRES
============================================ */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  text-align: center;
  margin-bottom: .5rem;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--color-primary);
  margin: .75rem auto 0;
  border-radius: var(--radius-full);
}

.section-subtitle {
  text-align: center;
  color: var(--color-text-light);
  font-size: 1rem;
  margin-bottom: 3rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: .9rem;
  font-weight: 600;
  letter-spacing: .05em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}
.btn-primary:hover {
  background: var(--color-secondary);
  border-color: var(--color-secondary);
  color: var(--color-white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--color-secondary);
  border-color: var(--color-secondary);
}
.btn-outline:hover {
  background: var(--color-secondary);
  color: var(--color-white);
}

/* ============================================
   HEADER
============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--color-white);
  border-bottom: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  padding-block: 1rem;
}

.site-logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--color-secondary);
  letter-spacing: .02em;
  justify-self: start;
}
.site-logo span { color: var(--color-primary); }

/* Navigation principale */
.main-nav { justify-self: center; }

.main-nav ul {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.main-nav a {
  font-size: .9rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--color-text);
  position: relative;
  padding-bottom: 2px;
}
.main-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--color-primary);
  transition: width var(--transition);
}
.main-nav a:hover::after,
.main-nav .current-menu-item a::after { width: 100%; }

/* Actions header */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  justify-self: end;
}

.header-icon {
  position: relative;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--radius-full);
  transition: background var(--transition);
  color: var(--color-secondary);
}
.header-icon:hover { background: var(--color-bg-alt); }

.cart-count {
  position: absolute;
  top: 0; right: 0;
  width: 18px; height: 18px;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: .65rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  display: flex; align-items: center; justify-content: center;
}

/* Hamburger mobile */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}
.menu-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--color-secondary);
  transition: all var(--transition);
}

/* ============================================
   HERO BANNER
============================================ */
.hero-section {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #1a1a1a 0%, #2C2C2C 50%, #3d3d3d 100%);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1483985988355-763728e1935b?w=1600&q=80');
  background-size: cover;
  background-position: center top;
  opacity: .45;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero-section:hover .hero-bg { transform: scale(1); }

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
  padding-block: 6rem;
}

.hero-badge {
  display: inline-block;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  padding: .35rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
}

.hero-title {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  color: var(--color-white);
  line-height: 1.05;
  margin-bottom: 1.25rem;
}
.hero-title em {
  font-style: italic;
  color: var(--color-primary);
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255,255,255,.8);
  margin-bottom: 2.5rem;
  max-width: 480px;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ============================================
   CARROUSEL PRODUITS
============================================ */
.carousel-section {
  padding-block: 5rem;
  background: var(--color-white);
}

.swiper-container {
  position: relative;
  padding-bottom: 3.5rem;
}

.swiper {
  overflow: hidden;
  border-radius: var(--radius-md);
}

.swiper-slide { height: auto; }

/* Card produit */
.product-card {
  background: var(--color-white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--color-border);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.product-card-image {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--color-bg-alt);
}
.product-card-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.product-card:hover .product-card-image img { transform: scale(1.06); }

.product-badge {
  position: absolute;
  top: .75rem; left: .75rem;
  background: var(--color-primary);
  color: var(--color-white);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: .25rem .75rem;
  border-radius: var(--radius-full);
}

.product-wishlist {
  position: absolute;
  top: .75rem; right: .75rem;
  width: 36px; height: 36px;
  background: var(--color-white);
  border-radius: var(--radius-full);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  color: var(--color-text-light);
}
.product-wishlist:hover { background: var(--color-primary); color: var(--color-white); }

.product-card-body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-category {
  font-size: .75rem;
  color: var(--color-primary);
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: .35rem;
}

.product-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--color-secondary);
  margin-bottom: .5rem;
  line-height: 1.3;
}

.product-desc {
  font-size: .85rem;
  color: var(--color-text-light);
  line-height: 1.5;
  flex: 1;
  margin-bottom: 1rem;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
  margin-top: auto;
}

.product-price {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--color-secondary);
}
.product-price .old-price {
  font-size: .85rem;
  font-weight: 400;
  color: var(--color-text-light);
  text-decoration: line-through;
  margin-left: .35rem;
}

.add-to-cart-btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--color-secondary);
  color: var(--color-white);
  border: none;
  padding: .6rem 1.1rem;
  border-radius: var(--radius-full);
  font-size: .8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
}
.add-to-cart-btn:hover { background: var(--color-primary); transform: translateY(-1px); }

/* Navigation Swiper */
.swiper-button-prev,
.swiper-button-next {
  width: 44px; height: 44px;
  background: var(--color-white);
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--color-secondary);
  transition: all var(--transition);
  top: 38%;
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: var(--color-primary);
  color: var(--color-white);
}
.swiper-button-prev::after,
.swiper-button-next::after { font-size: 1rem; font-weight: 700; }

.swiper-pagination-bullet {
  width: 8px; height: 8px;
  background: var(--color-border);
  opacity: 1;
  transition: all var(--transition);
}
.swiper-pagination-bullet-active {
  background: var(--color-primary);
  width: 24px;
  border-radius: var(--radius-full);
}

/* ============================================
   SECTION CATÉGORIES
============================================ */
.categories-section {
  padding-block: 5rem;
  background: var(--color-bg);
}

.categories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 3rem;
}

.category-card {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}
.category-card:hover .category-img { transform: scale(1.08); }
.category-card:hover .category-overlay { opacity: .7; }

.category-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.category-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.8) 0%, rgba(0,0,0,.1) 60%);
  opacity: .5;
  transition: opacity var(--transition);
}

.category-label {
  position: absolute;
  bottom: 1.25rem; left: 1.25rem; right: 1.25rem;
}
.category-label h3 {
  color: var(--color-white);
  font-size: 1.1rem;
  font-weight: 600;
}
.category-label span {
  display: block;
  color: rgba(255,255,255,.7);
  font-size: .8rem;
  margin-top: .2rem;
}

/* ============================================
   SECTION AVANTAGES
============================================ */
.benefits-section {
  padding-block: 4rem;
  background: var(--color-secondary);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 2rem;
  text-align: center;
}

.benefit-item { color: var(--color-white); }

.benefit-icon {
  width: 56px; height: 56px;
  background: rgba(201,169,110,.2);
  border-radius: var(--radius-full);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.4rem;
  border: 1px solid rgba(201,169,110,.3);
}

.benefit-item h4 {
  color: var(--color-white);
  font-size: 1rem;
  font-family: var(--font-body);
  font-weight: 600;
  margin-bottom: .35rem;
}
.benefit-item p {
  font-size: .85rem;
  color: rgba(255,255,255,.6);
}

/* ============================================
   SECTION NEWSLETTER
============================================ */
.newsletter-section {
  padding-block: 5rem;
  background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-bg-alt) 100%);
}

.newsletter-inner {
  text-align: center;
  max-width: 560px;
  margin: 0 auto;
}

.newsletter-inner h2 {
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  margin-bottom: .75rem;
}

.newsletter-inner p {
  color: var(--color-text-light);
  margin-bottom: 2rem;
}

.newsletter-form {
  display: flex;
  gap: .75rem;
  max-width: 440px;
  margin: 0 auto;
}

.newsletter-input {
  flex: 1;
  padding: .85rem 1.25rem;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: .95rem;
  background: var(--color-white);
  outline: none;
  transition: border-color var(--transition);
}
.newsletter-input:focus { border-color: var(--color-primary); }

/* ============================================
   SECTION TAG (badge titre de section)
============================================ */
.section-head { text-align: center; margin-bottom: 3rem; }

.section-tag {
  display: inline-block;
  background: var(--color-accent);
  color: var(--color-primary);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .35rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
}

/* ============================================
   GRILLE CATÉGORIES (nouveau layout)
============================================ */
.cat-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 1.25rem;
}

.cat-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  display: block;
}
.cat-card:first-child { grid-row: span 2; }

.cat-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.cat-card:hover img { transform: scale(1.06); }

.cat-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.72) 0%, rgba(0,0,0,.05) 60%);
}

.cat-info {
  position: absolute;
  bottom: 1.5rem; left: 1.5rem; right: 1.5rem;
  z-index: 1;
}
.cat-info h3 {
  color: var(--color-white);
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 600;
}
.cat-info > span {
  display: block;
  color: rgba(255,255,255,.65);
  font-size: .8rem;
  margin-top: .15rem;
}
.cat-pill {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  background: rgba(255,255,255,.15);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.25);
  color: var(--color-white);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .3rem .75rem;
  border-radius: var(--radius-full);
  margin-top: .5rem;
  transition: background var(--transition);
}
.cat-card:hover .cat-pill { background: var(--color-primary); border-color: var(--color-primary); }

@media (max-width: 768px) {
  .cat-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
    height: auto;
  }
  .cat-card:first-child { grid-row: auto; grid-column: span 1; aspect-ratio: 3/4; }
  .cat-card { aspect-ratio: 4/5; }
}

/* ============================================
   LOOKBOOK
============================================ */
.lookbook-section {
  background: var(--color-secondary);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.lookbook-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1600&q=80') center/cover no-repeat;
  opacity: .12;
}

.lookbook-inner {
  position: relative; z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.lookbook-text h2 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--color-white);
  line-height: 1.1;
  margin-top: 1rem;
  margin-bottom: 1.25rem;
}
.lookbook-text h2 em { color: var(--color-primary); font-style: italic; }
.lookbook-text p {
  color: rgba(255,255,255,.65);
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 2rem;
}

.lookbook-imgs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}
.lookbook-imgs img {
  border-radius: var(--radius-md);
  aspect-ratio: 3/4;
  object-fit: cover;
  transition: transform var(--transition);
}
.lookbook-imgs img:nth-child(2) { margin-top: 2rem; }
.lookbook-imgs img:hover { transform: scale(1.03); }

@media (max-width: 768px) {
  .lookbook-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .lookbook-imgs img:nth-child(2) { margin-top: 0; }
}

/* ============================================
   TÉMOIGNAGES
============================================ */
.reviews-section {
  padding: 5rem 0;
  background: var(--color-white);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

.review-card {
  background: var(--color-bg);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--color-border);
  position: relative;
  transition: transform var(--transition), box-shadow var(--transition);
}
.review-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.review-card::before {
  content: '\201C';
  position: absolute; top: 1.25rem; right: 1.5rem;
  font-family: var(--font-heading);
  font-size: 4rem;
  color: var(--color-accent);
  line-height: 1;
}

.stars { color: #F5A623; font-size: .9rem; margin-bottom: .75rem; }

.review-text {
  font-size: .9rem;
  color: var(--color-text);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.reviewer { display: flex; align-items: center; gap: .75rem; }

.reviewer-av {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-primary);
}

.reviewer-name { font-weight: 700; font-size: .9rem; color: var(--color-secondary); }
.reviewer-loc  { font-size: .75rem; color: var(--color-text-light); }

@media (max-width: 768px) {
  .reviews-grid { grid-template-columns: 1fr; }
}
@media (max-width: 1024px) and (min-width: 769px) {
  .reviews-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   PAGE PRODUIT UNIQUE — ProtoWP Femme
============================================================ */

/* Breadcrumb */
.breadcrumb { background:var(--color-bg-alt);padding:.75rem 0;border-bottom:1px solid var(--color-border) }
.breadcrumb-inner { max-width:1280px;margin:0 auto;padding:0 var(--gutter);display:flex;align-items:center;gap:.5rem;font-size:.8rem;color:var(--color-text-light) }
.breadcrumb a { color:var(--color-text-light);transition:color var(--transition) }
.breadcrumb a:hover { color:var(--color-primary) }
.breadcrumb-sep { color:var(--color-border) }
.breadcrumb span { color:var(--color-primary);font-weight:600 }

/* Layout produit — style apercu-produit.html */

/* ── Variables produit (palette or/beige/dark) ── */
.single-product-page {
  --gold    : #C9A96E;
  --gold-dk : #b8924f;
  --dark    : #1E1E1E;
  --mid     : #2C2C2C;
  --nude    : #E8D5C0;
  --pbg     : #FAF8F5;
  --pbg2    : #F2EDE8;
  --pborder : #E8E0D8;
  --ptext   : #333;
  --pmuted  : #888;
  --r       : 9999px;
  --r-lg    : 16px;
  --r-md    : 10px;
  --pshadow : 0 4px 24px rgba(0,0,0,.09);
  --pshadow-lg : 0 12px 48px rgba(0,0,0,.15);
  --ptrans  : .3s cubic-bezier(.4,0,.2,1);
  --serif   : 'Playfair Display', Georgia, serif;
  --sans    : 'Lato', 'Helvetica Neue', sans-serif;
}

/* ── Page wrapper ── */
.woocommerce-page.single-product-page {
  background: #FAF8F5;
}

/* ── Breadcrumb ── */
.breadcrumb { background:#F2EDE8; padding:.75rem 0; border-bottom:1px solid #E8E0D8 }
.breadcrumb-inner {
  max-width:1280px; margin:0 auto; padding:0 var(--gutter);
  display:flex; align-items:center; gap:.5rem;
  font-size:.8rem; color:#888; flex-wrap:wrap;
}
.breadcrumb a { color:#888; transition:color .3s cubic-bezier(.4,0,.2,1) }
.breadcrumb a:hover { color:#C9A96E }
.breadcrumb-sep { color:#E8E0D8 }
.breadcrumb-inner > span:last-child { color:#C9A96E; font-weight:600 }

/* ── Grille produit ── */
.product-page {
  padding:3rem 0 5rem;
  max-width:1280px;
  margin:0 auto;
  padding-inline:var(--gutter);
}
.product-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:4rem;
  align-items:start;
}

/* ════════════════════════════════
   GALERIE
════════════════════════════════ */
.gallery { position:sticky; top:5.5rem }

.gallery-main {
  position:relative; border-radius:16px; overflow:hidden;
  aspect-ratio:3/4; background:#F2EDE8; cursor:zoom-in;
  box-shadow:0 4px 24px rgba(0,0,0,.09);
}
.gallery-main img {
  width:100%; height:100%; object-fit:cover;
  transition:transform .6s cubic-bezier(.4,0,.2,1);
}
.gallery-main:hover img { transform:scale(1.08) }

.gallery-badge {
  position:absolute; top:1rem; left:1rem; z-index:2;
  background:#C9A96E; color:#fff;
  font-size:.7rem; font-weight:800; letter-spacing:.1em; text-transform:uppercase;
  padding:.3rem .85rem; border-radius:9999px;
}

.gallery-wish {
  position:absolute; top:1rem; right:1rem; z-index:3;
  width:40px; height:40px; border-radius:50%;
  background:rgba(255,255,255,.9); backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
  display:flex; align-items:center; justify-content:center;
  box-shadow:0 4px 24px rgba(0,0,0,.09);
  transition:all .3s cubic-bezier(.4,0,.2,1);
  color:#888; border:none; cursor:pointer;
}
.gallery-wish:hover, .gallery-wish.active {
  background:#C9A96E; color:#fff;
}

.zoom-hint {
  position:absolute; bottom:1rem; right:1rem; z-index:2;
  background:rgba(255,255,255,.85); backdrop-filter:blur(8px);
  -webkit-backdrop-filter:blur(8px);
  border-radius:9999px; padding:.3rem .7rem;
  font-size:.7rem; font-weight:600; color:#2C2C2C;
  display:flex; align-items:center; gap:.35rem;
  opacity:0; transition:opacity .3s cubic-bezier(.4,0,.2,1);
  pointer-events:none;
}
.gallery-main:hover .zoom-hint { opacity:1 }

.gallery-thumbs {
  display:grid; grid-template-columns:repeat(4,1fr);
  gap:.65rem; margin-top:.75rem;
}
.thumb {
  aspect-ratio:3/4; border-radius:10px; overflow:hidden;
  border:2px solid transparent; cursor:pointer;
  transition:all .3s cubic-bezier(.4,0,.2,1); background:#F2EDE8;
}
.thumb img { width:100%; height:100%; object-fit:cover; transition:transform .3s cubic-bezier(.4,0,.2,1) }
.thumb:hover img { transform:scale(1.05) }
.thumb.active { border-color:#C9A96E; box-shadow:0 0 0 3px rgba(201,169,110,.2) }

/* ════════════════════════════════
   INFO PRODUIT
════════════════════════════════ */
.product-info { display:flex; flex-direction:column; gap:0 }

.product-cat {
  font-size:.72rem; font-weight:700; letter-spacing:.14em;
  text-transform:uppercase; color:#C9A96E; margin-bottom:.5rem;
}
.product-title {
  font-family:'Playfair Display', Georgia, serif;
  font-size:clamp(1.8rem,3vw,2.6rem);
  color:#1E1E1E; line-height:1.1; margin-bottom:1rem;
}
.product-title em { color:#C9A96E; font-style:italic }

.product-rating { display:flex; align-items:center; gap:.75rem; margin-bottom:1.25rem }
.stars-row { display:flex; gap:2px }
.star { width:16px; height:16px; fill:#C9A96E }
.star.half { fill:url(#halfGrad) }
.rating-text { font-size:.85rem; color:#888 }
.rating-text a {
  color:#C9A96E; font-weight:600;
  text-decoration:underline; text-decoration-color:rgba(201,169,110,.4);
}
.rating-text a:hover { text-decoration-color:#C9A96E }

/* Prix */
.price-block {
  display:flex; align-items:baseline; gap:.75rem;
  margin-bottom:1.5rem; padding:1.25rem;
  background:linear-gradient(135deg,rgba(201,169,110,.08),rgba(232,213,192,.12));
  border-radius:10px; border:1px solid rgba(201,169,110,.15);
}
.price-current {
  font-family:'Playfair Display', Georgia, serif;
  font-size:2rem; font-weight:700; color:#1E1E1E;
}
.price-old { font-size:1.1rem; color:#bbb; text-decoration:line-through; font-weight:400 }
.price-save {
  font-size:.78rem; font-weight:700;
  background:#C9A96E; color:#fff;
  padding:.2rem .6rem; border-radius:9999px;
}

/* Stock */
.stock-badge {
  display:inline-flex; align-items:center; gap:.4rem;
  font-size:.8rem; font-weight:600; margin-bottom:1.5rem;
}
.stock-dot {
  width:8px; height:8px; border-radius:50%;
  background:#4CAF50; box-shadow:0 0 0 3px rgba(76,175,80,.15);
  animation:stockPulse 2s infinite; flex-shrink:0;
}
.stock-dot.out { background:#f44336; box-shadow:none; animation:none }
@keyframes stockPulse {
  0%,100% { box-shadow:0 0 0 3px rgba(76,175,80,.15) }
  50%     { box-shadow:0 0 0 6px rgba(76,175,80,.08) }
}

/* Options */
.option-group { margin-bottom:1.5rem }
.option-label {
  font-size:.78rem; font-weight:700; letter-spacing:.1em;
  text-transform:uppercase; color:#2C2C2C;
  margin-bottom:.65rem; display:flex; align-items:center; gap:.5rem;
}
.option-selected { font-weight:400; color:#888; text-transform:none; letter-spacing:0 }

.color-swatches { display:flex; gap:.6rem; flex-wrap:wrap }
.swatch {
  width:32px; height:32px; border-radius:50%; cursor:pointer;
  border:2px solid transparent; transition:all .3s cubic-bezier(.4,0,.2,1);
  position:relative;
}
.swatch::after {
  content:''; position:absolute; inset:-4px;
  border-radius:50%; border:2px solid transparent;
  transition:border-color .3s cubic-bezier(.4,0,.2,1);
}
.swatch.active::after { border-color:#C9A96E }
.swatch:hover { transform:scale(1.12) }

.size-grid { display:flex; gap:.5rem; flex-wrap:wrap }
.size-btn {
  min-width:48px; height:48px; padding:0 .75rem;
  border-radius:10px; border:2px solid #E8E0D8;
  font-family:'Lato', 'Helvetica Neue', sans-serif;
  font-size:.85rem; font-weight:600; color:#333;
  cursor:pointer; transition:all .3s cubic-bezier(.4,0,.2,1);
  background:#fff; display:flex; align-items:center; justify-content:center;
  position:relative; overflow:hidden;
}
.size-btn::before {
  content:''; position:absolute; inset:0;
  background:#C9A96E; transform:scale(0);
  border-radius:50%; transition:transform .35s cubic-bezier(.4,0,.2,1);
  opacity:.15;
}
.size-btn:hover::before { transform:scale(2) }
.size-btn:hover { border-color:#C9A96E; color:#1E1E1E }
.size-btn.active {
  border-color:#1E1E1E; background:#1E1E1E; color:#fff;
  box-shadow:0 4px 12px rgba(30,30,30,.2); transform:translateY(-1px);
}
.size-btn.active::before { display:none }
.size-btn.unavailable { opacity:.35; cursor:not-allowed; text-decoration:line-through }

.size-guide {
  font-size:.78rem; color:#C9A96E; font-weight:600; cursor:pointer;
  text-decoration:underline; text-decoration-color:rgba(201,169,110,.3);
  margin-left:auto; transition:text-decoration-color .3s ease;
}
.size-guide:hover { text-decoration-color:#C9A96E }

/* Zone achat */
.purchase-row { display:flex; gap:.75rem; margin-bottom:1rem }
.qty-wrap {
  display:flex; align-items:center;
  border:2px solid #E8E0D8; border-radius:9999px;
  overflow:hidden; background:#fff; flex-shrink:0;
}
.qty-btn {
  width:44px; height:54px;
  display:flex; align-items:center; justify-content:center;
  color:#2C2C2C; transition:all .3s cubic-bezier(.4,0,.2,1);
  border:none; background:none; cursor:pointer;
}
.qty-btn:hover { background:#F2EDE8; color:#1E1E1E }
.qty-val {
  width:44px; text-align:center;
  font-family:'Lato', 'Helvetica Neue', sans-serif;
  font-weight:700; font-size:1rem;
  border:none; outline:none; background:none; color:#1E1E1E;
}

/* Bouton ATC — dark avec sweep gold */
.atc-btn {
  flex:1; height:54px; border-radius:9999px;
  background:#1E1E1E; color:#fff;
  font-family:'Lato', 'Helvetica Neue', sans-serif;
  font-size:.9rem; font-weight:700; letter-spacing:.06em; text-transform:uppercase;
  display:flex; align-items:center; justify-content:center; gap:.6rem;
  transition:all .4s cubic-bezier(.4,0,.2,1);
  position:relative; overflow:hidden; border:none; cursor:pointer;
}
.atc-btn::before {
  content:''; position:absolute; inset:0;
  background:#C9A96E; transform:translateX(-100%);
  transition:transform .4s cubic-bezier(.4,0,.2,1);
}
.atc-btn:hover::before { transform:translateX(0) }
.atc-btn:hover { transform:translateY(-2px); box-shadow:0 8px 24px rgba(30,30,30,.25) }
.atc-btn .btn-text, .atc-btn svg { position:relative; z-index:1 }
.atc-btn.loading .btn-text, .atc-btn.loading svg { opacity:0 }
.atc-btn.loading .spinner { display:flex }
.atc-btn.success { background:#C9A96E }
.atc-btn.success::before { display:none }
.spinner { display:none; position:absolute; inset:0; align-items:center; justify-content:center }
.spin-ring {
  width:22px; height:22px;
  border:2.5px solid rgba(255,255,255,.3); border-top-color:#fff;
  border-radius:50%; animation:spinRing .7s linear infinite;
}
@keyframes spinRing { to { transform:rotate(360deg) } }

/* Wishlist rapide */
.quick-wish {
  height:54px; width:54px; border-radius:9999px; flex-shrink:0;
  border:2px solid #E8E0D8; color:#888;
  display:flex; align-items:center; justify-content:center;
  transition:all .3s cubic-bezier(.4,0,.2,1);
  background:#fff; cursor:pointer;
}
.quick-wish:hover, .quick-wish.active {
  border-color:#C9A96E; color:#C9A96E; background:rgba(201,169,110,.06);
}

/* Cacher le formulaire WC natif */
.wc-atc-form { display:none !important }

/* Trust badges */
.trust-row { display:flex; gap:.5rem; flex-wrap:wrap; margin-bottom:1.75rem }
.trust-item {
  display:flex; align-items:center; gap:.4rem;
  font-size:.75rem; color:#888;
  background:#F2EDE8; border:1px solid #E8E0D8;
  padding:.35rem .75rem; border-radius:9999px;
  transition:background .3s cubic-bezier(.4,0,.2,1);
}
.trust-item:hover { background:#fff }
.trust-item svg { color:#C9A96E; flex-shrink:0 }

/* Livraison express */
.delivery-box {
  background:rgba(255,255,255,.85);
  backdrop-filter:blur(16px) saturate(150%);
  -webkit-backdrop-filter:blur(16px) saturate(150%);
  border:1px solid rgba(201,169,110,.2);
  border-radius:10px; padding:1rem 1.25rem;
  display:flex; align-items:center; gap:.85rem;
  margin-bottom:1.75rem;
  box-shadow:0 4px 16px rgba(201,169,110,.08);
}
.delivery-icon {
  width:40px; height:40px;
  background:rgba(201,169,110,.1); border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  flex-shrink:0; color:#C9A96E;
}
.delivery-info small { display:block; font-size:.72rem; color:#888 }
.delivery-info strong { font-size:.88rem; color:#1E1E1E }

/* Accordéons */
.accordions { border-top:1px solid #E8E0D8; margin-top:.5rem }
.accord { border-bottom:1px solid #E8E0D8; overflow:hidden }
.accord-header {
  display:flex; align-items:center; justify-content:space-between;
  padding:1.1rem 0; cursor:pointer; user-select:none;
  font-size:.85rem; font-weight:700; letter-spacing:.06em; text-transform:uppercase;
  color:#2C2C2C; transition:color .3s cubic-bezier(.4,0,.2,1);
}
.accord-header:hover { color:#C9A96E }
.accord-icon {
  width:24px; height:24px;
  display:flex; align-items:center; justify-content:center;
  border-radius:50%; border:1.5px solid #E8E0D8;
  transition:all .3s cubic-bezier(.4,0,.2,1); flex-shrink:0; color:#888;
}
.accord.open .accord-icon {
  transform:rotate(45deg);
  border-color:#C9A96E; background:#C9A96E; color:#fff;
}
.accord-body {
  max-height:0; overflow:hidden;
  transition:max-height .45s cubic-bezier(.4,0,.2,1), padding .3s ease;
}
.accord.open .accord-body { max-height:500px; padding-bottom:1.25rem }
.accord-body p, .accord-body li { font-size:.9rem; color:#888; line-height:1.7 }
.accord-body ul { display:flex; flex-direction:column; gap:.3rem; margin-top:.5rem }
.accord-body li { display:flex; align-items:center; gap:.5rem }
.accord-body li::before {
  content:''; width:5px; height:5px; border-radius:50%;
  background:#C9A96E; flex-shrink:0;
}

/* ════════════════════════════════
   SECTION AVIS
════════════════════════════════ */
.reviews-section {
  background:#fff; padding:4.5rem 0;
  border-top:1px solid #E8E0D8;
}
.reviews-inner { max-width:1280px; margin:0 auto; padding:0 var(--gutter) }
.reviews-header {
  display:flex; align-items:flex-start; justify-content:space-between;
  margin-bottom:3rem; flex-wrap:wrap; gap:1.5rem;
}
.reviews-header h2 {
  font-family:'Playfair Display', Georgia, serif;
  font-size:clamp(1.6rem,3vw,2.2rem); color:#1E1E1E;
}
.reviews-summary { display:flex; align-items:center; gap:2.5rem }
.big-score { text-align:center }
.big-score .num {
  font-family:'Playfair Display', Georgia, serif;
  font-size:4rem; font-weight:700; color:#1E1E1E; line-height:1;
}
.big-score .stars-row { justify-content:center; margin:.35rem 0 }
.big-score small { font-size:.78rem; color:#888 }
.rating-bars { display:flex; flex-direction:column; gap:.4rem; min-width:200px }
.bar-row { display:flex; align-items:center; gap:.65rem; font-size:.78rem; color:#888 }
.bar-track { flex:1; height:6px; background:#F2EDE8; border-radius:9999px; overflow:hidden }
.bar-fill {
  height:100%; background:#C9A96E; border-radius:9999px;
  transition:width 1.2s cubic-bezier(.4,0,.2,1); width:0;
}
.bar-pct { width:28px; text-align:right; font-weight:600; color:#333 }

/* Cartes avis WooCommerce */
.woocommerce-Reviews .woocommerce-Reviews-title { display:none }
.woocommerce-Reviews ol.commentlist {
  display:grid; grid-template-columns:repeat(3,1fr);
  gap:1.5rem; list-style:none; margin:0 0 2.5rem; padding:0;
}
.woocommerce-Reviews ol.commentlist li.review {
  background:#FAF8F5; border:1px solid #E8E0D8;
  border-radius:16px; padding:1.75rem;
  transition:transform .3s cubic-bezier(.4,0,.2,1), box-shadow .3s cubic-bezier(.4,0,.2,1);
  position:relative; opacity:0; transform:translateY(20px);
}
.woocommerce-Reviews ol.commentlist li.review.is-visible {
  opacity:1; transform:none;
  transition:opacity .55s ease, transform .55s ease;
}
.woocommerce-Reviews ol.commentlist li.review:hover {
  transform:translateY(-4px);
  box-shadow:0 4px 24px rgba(0,0,0,.09);
}
.woocommerce-Reviews ol.commentlist li.review::before {
  content:'\201C'; position:absolute; top:1.1rem; right:1.35rem;
  font-family:'Playfair Display', Georgia, serif;
  font-size:3.5rem; color:#E8D5C0; line-height:1; pointer-events:none;
}
.woocommerce-Reviews .star-rating { margin-bottom:.6rem; color:#C9A96E; font-size:.85rem }
.woocommerce-Reviews .woocommerce-review__verified {
  display:inline-flex; align-items:center; gap:.3rem;
  font-size:.7rem; color:#4CAF50; font-weight:600; margin-bottom:.75rem;
}
.woocommerce-Reviews .comment-text .description p {
  font-size:.88rem; color:#333; line-height:1.65; margin-bottom:1.1rem; font-style:italic;
}
.woocommerce-Reviews .comment_container { display:flex; flex-direction:column }
.woocommerce-Reviews .comment-text { background:none; border:none; padding:0; margin:0 }
.woocommerce-Reviews .woocommerce-review__author { font-weight:700; font-size:.85rem; color:#1E1E1E }
.woocommerce-Reviews p.meta {
  display:flex; align-items:center; gap:.5rem;
  flex-wrap:wrap; font-size:.78rem; color:#888; margin-top:.75rem;
}
.woocommerce-Reviews .woocommerce-review__dash { display:none }
.woocommerce-Reviews .woocommerce-review__published-date { margin-left:auto; font-size:.72rem }
.woocommerce-Reviews .avatar {
  width:38px !important; height:38px !important;
  border-radius:50%; border:2px solid #C9A96E;
  object-fit:cover; float:none; margin:0;
}
.woocommerce-Reviews #review_form_wrapper {
  margin-top:3rem; padding-top:2.5rem; border-top:1px solid #E8E0D8;
}
.woocommerce-Reviews #review_form h3 {
  font-family:'Playfair Display', Georgia, serif;
  font-size:1.4rem; margin-bottom:1.5rem; color:#1E1E1E;
}
.woocommerce-Reviews input[type="text"],
.woocommerce-Reviews input[type="email"],
.woocommerce-Reviews textarea {
  width:100%; padding:.75rem 1rem;
  border:2px solid #E8E0D8; border-radius:10px;
  font-family:'Lato', sans-serif; font-size:.95rem;
  outline:none; transition:border-color .3s ease;
  background:#fff;
}
.woocommerce-Reviews input:focus,
.woocommerce-Reviews textarea:focus { border-color:#C9A96E }

/* ════════════════════════════════
   PRODUITS SIMILAIRES
════════════════════════════════ */
.related-section { padding:5rem 0; background:#FAF8F5 }
.related-inner { max-width:1280px; margin:0 auto; padding:0 var(--gutter) }
.section-head { text-align:center; margin-bottom:3rem }
.section-tag {
  display:inline-block; background:#E8D5C0; color:#C9A96E;
  font-size:.72rem; font-weight:700; letter-spacing:.14em; text-transform:uppercase;
  padding:.35rem 1rem; border-radius:9999px; margin-bottom:.85rem;
}
.single-product-page .section-title {
  font-family:'Playfair Display', Georgia, serif;
  font-size:clamp(1.8rem,3vw,2.4rem); color:#1E1E1E; margin-bottom:.5rem;
}
.single-product-page .section-title::after {
  content:''; display:block; width:44px; height:3px;
  background:#C9A96E; border-radius:9999px; margin:.7rem auto 0;
}

.rel-card {
  border-radius:16px; overflow:hidden;
  background:#fff; border:1px solid #E8E0D8;
  height:100%; display:flex; flex-direction:column;
  transition:transform .3s cubic-bezier(.4,0,.2,1), box-shadow .3s cubic-bezier(.4,0,.2,1);
}
.rel-card:hover { transform:translateY(-6px); box-shadow:0 12px 48px rgba(0,0,0,.15) }
.rel-img {
  position:relative; aspect-ratio:3/4; overflow:hidden;
  background:#F2EDE8; display:block;
}
.rel-img img { width:100%; height:100%; object-fit:cover; transition:transform .5s ease }
.rel-card:hover .rel-img img { transform:scale(1.06) }
.rel-badge {
  position:absolute; top:.65rem; left:.65rem;
  background:#C9A96E; color:#fff;
  font-size:.62rem; font-weight:800; letter-spacing:.08em; text-transform:uppercase;
  padding:.25rem .7rem; border-radius:9999px;
}
.rel-wish {
  position:absolute; top:.65rem; right:.65rem;
  width:34px; height:34px; border-radius:50%;
  background:rgba(255,255,255,.9); border:none;
  display:flex; align-items:center; justify-content:center;
  color:#888; cursor:pointer; transition:all .3s cubic-bezier(.4,0,.2,1);
}
.rel-wish:hover, .rel-wish.active { background:#C9A96E; color:#fff }
.rel-body { padding:1.1rem; flex:1; display:flex; flex-direction:column }
.rel-cat {
  font-size:.67rem; color:#C9A96E; font-weight:700;
  letter-spacing:.1em; text-transform:uppercase; margin-bottom:.25rem;
}
.rel-name {
  font-family:'Playfair Display', Georgia, serif;
  font-size:1rem; color:#1E1E1E; line-height:1.3; margin-bottom:.4rem;
}
.rel-name a { color:inherit; transition:color .3s ease }
.rel-name a:hover { color:#C9A96E }
.rel-foot {
  display:flex; align-items:center; justify-content:space-between;
  margin-top:auto; gap:.5rem;
}
.rel-price { font-weight:700; font-size:1.05rem; color:#1E1E1E }
.rel-old { font-size:.8rem; color:#bbb; text-decoration:line-through; font-weight:400; margin-left:.25rem }
.rel-atc {
  display:inline-flex; align-items:center; gap:.35rem;
  background:#1E1E1E; color:#fff;
  padding:.5rem .9rem; border-radius:9999px;
  font-size:.72rem; font-weight:700;
  transition:all .3s cubic-bezier(.4,0,.2,1);
}
.rel-atc:hover { background:#C9A96E; transform:translateY(-1px) }

/* Swiper */
.single-product-page .swiper-button-prev,
.single-product-page .swiper-button-next {
  width:44px; height:44px; background:#fff; border-radius:50%;
  box-shadow:0 4px 24px rgba(0,0,0,.09); color:#1E1E1E; top:38%;
  transition:all .3s cubic-bezier(.4,0,.2,1);
}
.single-product-page .swiper-button-prev:hover,
.single-product-page .swiper-button-next:hover { background:#C9A96E; color:#fff }
.single-product-page .swiper-button-prev::after,
.single-product-page .swiper-button-next::after { font-size:.9rem; font-weight:800 }
.single-product-page .swiper-pagination-bullet {
  width:7px; height:7px; background:#E8E0D8; opacity:1;
  transition:all .3s cubic-bezier(.4,0,.2,1);
}
.single-product-page .swiper-pagination-bullet-active {
  background:#C9A96E; width:24px; border-radius:9999px;
}

/* ════════════════════════════════
   ZOOM MODAL
════════════════════════════════ */
.zoom-modal {
  position:fixed; inset:0; z-index:2000;
  background:rgba(0,0,0,.92);
  display:flex; align-items:center; justify-content:center;
  opacity:0; pointer-events:none; transition:opacity .3s ease;
  cursor:zoom-out;
}
.zoom-modal.open { opacity:1; pointer-events:all }
.zoom-modal img {
  max-width:90vw; max-height:90vh;
  object-fit:contain; border-radius:10px;
  box-shadow:0 12px 48px rgba(0,0,0,.15);
}
.zoom-close {
  position:absolute; top:1.5rem; right:1.5rem;
  width:44px; height:44px; border-radius:50%;
  background:rgba(255,255,255,.15); color:#fff; border:none;
  display:flex; align-items:center; justify-content:center;
  font-size:1.4rem; cursor:pointer; transition:background .3s ease;
}
.zoom-close:hover { background:rgba(255,255,255,.3) }

/* Toast */
.toast {
  position:fixed; bottom:2rem; left:50%;
  transform:translateX(-50%) translateY(120%);
  background:#1E1E1E; color:#fff;
  padding:.8rem 1.5rem; border-radius:9999px;
  font-family:'Lato', sans-serif; font-size:.88rem; font-weight:600;
  z-index:9999; box-shadow:0 12px 48px rgba(0,0,0,.15);
  transition:transform .4s cubic-bezier(.34,1.56,.64,1);
  white-space:nowrap; display:flex; align-items:center; gap:.6rem;
  pointer-events:none;
}
.toast.show { transform:translateX(-50%) translateY(0) }

/* Animations reveal */
.reveal { opacity:0; transform:translateY(24px); transition:opacity .6s ease, transform .6s ease }
.reveal.is-visible, .reveal.in { opacity:1; transform:none }

/* ════════════════════════════════
   RESPONSIVE PRODUIT
════════════════════════════════ */
@media (max-width:1024px) {
  .product-grid { grid-template-columns:1fr; gap:2.5rem }
  .gallery { position:static }
  .reviews-header { flex-direction:column }
  .woocommerce-Reviews ol.commentlist { grid-template-columns:1fr 1fr }
}
@media (max-width:768px) {
  .gallery-thumbs { grid-template-columns:repeat(4,1fr) }
  .purchase-row { flex-wrap:wrap }
  .atc-btn { min-width:100% }
  .woocommerce-Reviews ol.commentlist { grid-template-columns:1fr }
}
@media (max-width:480px) {
  .product-page { padding:2rem 0 4rem }
  .reviews-summary { flex-direction:column; gap:1.25rem }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration:.01ms !important;
    transition-duration:.01ms !important;
  }
}

/* ============================================
   FOOTER
============================================ */
.site-footer {
  background: #1a1a1a;
  color: rgba(255,255,255,.7);
  padding-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-brand .site-logo { color: var(--color-white); margin-bottom: 1rem; display: block; }
.footer-brand p { font-size: .9rem; line-height: 1.7; }

.footer-col h4 {
  color: var(--color-white);
  font-family: var(--font-body);
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.footer-col ul { display: flex; flex-direction: column; gap: .65rem; }
.footer-col a { font-size: .9rem; transition: color var(--transition); }
.footer-col a:hover { color: var(--color-primary); }

.social-links {
  display: flex;
  gap: .75rem;
  margin-top: 1.25rem;
}

.social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,.08);
  border-radius: var(--radius-full);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  transition: all var(--transition);
}
.social-link:hover { background: var(--color-primary); color: var(--color-white); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 1.5rem;
  font-size: .85rem;
  flex-wrap: wrap;
  gap: .75rem;
}

.footer-bottom a:hover { color: var(--color-primary); }

/* ============================================
   GUIDE DES TAILLES — modal
============================================ */
.sg-overlay {
  position:fixed; inset:0; z-index:10000;
  background:rgba(30,30,30,.55); backdrop-filter:blur(6px); -webkit-backdrop-filter:blur(6px);
  display:flex; align-items:center; justify-content:center; padding:1rem;
  opacity:0; pointer-events:none;
  transition:opacity .3s cubic-bezier(.4,0,.2,1);
}
.sg-overlay.open { opacity:1; pointer-events:all; }

.sg-modal {
  background:#FAF8F5; border-radius:20px; width:100%; max-width:780px;
  max-height:90vh; overflow-y:auto; position:relative;
  box-shadow:0 24px 80px rgba(0,0,0,.2);
  transform:translateY(16px) scale(.98);
  transition:transform .3s cubic-bezier(.4,0,.2,1);
  scrollbar-width:thin; scrollbar-color:#E8E0D8 transparent;
}
.sg-overlay.open .sg-modal { transform:none; }

.sg-header {
  display:flex; align-items:flex-start; justify-content:space-between;
  padding:1.75rem 2rem 1.25rem; border-bottom:1px solid #E8E0D8;
  position:sticky; top:0; background:#FAF8F5; z-index:2; border-radius:20px 20px 0 0;
}
.sg-pretitle {
  display:block; font-size:.68rem; font-weight:700; letter-spacing:.14em;
  text-transform:uppercase; color:#C9A96E; margin-bottom:.3rem;
}
.sg-title {
  font-family:'Playfair Display', Georgia, serif;
  font-size:1.5rem; color:#1E1E1E; margin:0; line-height:1.2;
}
.sg-close {
  width:36px; height:36px; border-radius:50%; border:none; cursor:pointer;
  background:#F2EDE8; display:flex; align-items:center; justify-content:center;
  color:#888; transition:all .25s; flex-shrink:0; margin-top:.2rem;
}
.sg-close:hover { background:#C9A96E; color:#fff; }

.sg-tabs {
  display:flex; gap:.5rem; padding:.75rem 2rem;
  border-bottom:1px solid #E8E0D8;
}
.sg-tab {
  padding:.45rem 1.1rem; border-radius:9999px; border:2px solid #E8E0D8;
  font-size:.8rem; font-weight:700; letter-spacing:.05em;
  cursor:pointer; background:transparent; color:#888;
  transition:all .25s cubic-bezier(.4,0,.2,1);
}
.sg-tab.active { background:#C9A96E; border-color:#C9A96E; color:#fff; }
.sg-tab:hover:not(.active) { border-color:#C9A96E; color:#C9A96E; }

.sg-content { padding:1.5rem 2rem; }
.sg-pane { display:none; }
.sg-pane.active { display:block; }

.sg-table-wrap { overflow-x:auto; margin-bottom:.5rem; -webkit-overflow-scrolling:touch; }
.sg-table { width:100%; border-collapse:collapse; font-size:.85rem; }
.sg-table thead tr { background:#1E1E1E; }
.sg-table thead th {
  padding:.65rem 1rem; text-align:left; color:#fff;
  font-size:.72rem; font-weight:700; letter-spacing:.08em;
  text-transform:uppercase; white-space:nowrap;
}
.sg-table thead th:first-child { border-radius:8px 0 0 8px; }
.sg-table thead th:last-child  { border-radius:0 8px 8px 0; }
.sg-table tbody tr { border-bottom:1px solid #E8E0D8; transition:background .2s; }
.sg-table tbody tr:hover { background:rgba(201,169,110,.07); }
.sg-table tbody tr:last-child { border-bottom:none; }
.sg-table td { padding:.6rem 1rem; color:#333; white-space:nowrap; }
.sg-size-lbl {
  font-weight:700; color:#1E1E1E; font-size:.9rem;
  background:#F2EDE8; border-radius:6px; text-align:center; width:44px;
}

.sg-measure {
  margin:0 2rem 1.5rem;
  background:linear-gradient(135deg,rgba(201,169,110,.08),rgba(232,213,192,.12));
  border:1px solid rgba(201,169,110,.2); border-radius:14px; padding:1.5rem;
}
.sg-measure-title {
  font-family:'Playfair Display', Georgia, serif;
  font-size:1rem; color:#1E1E1E; margin-bottom:1.25rem; font-weight:700;
}
.sg-measure-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:1rem; }
.sg-measure-item { display:flex; flex-direction:column; align-items:center; gap:.6rem; text-align:center; }
.sg-measure-icon svg { width:52px; height:52px; }
.sg-measure-text strong { display:block; font-size:.82rem; font-weight:700; color:#1E1E1E; margin-bottom:.3rem; }
.sg-measure-text p { font-size:.78rem; color:#888; line-height:1.55; }

.sg-tip {
  display:flex; align-items:center; gap:.6rem;
  margin:0 2rem 2rem; padding:.75rem 1rem;
  background:#FFF8EC; border:1px solid rgba(201,169,110,.3); border-radius:10px;
  font-size:.8rem; color:#7a6135; line-height:1.5;
}
.sg-tip svg { flex-shrink:0; stroke:#C9A96E; }

@media (max-width:640px) {
  .sg-header  { padding:1.25rem 1.25rem 1rem; }
  .sg-tabs    { padding:.6rem 1.25rem; flex-wrap:wrap; }
  .sg-content { padding:1.25rem; }
  .sg-measure { margin:0 1.25rem 1.25rem; padding:1.1rem; }
  .sg-measure-grid { grid-template-columns:1fr; gap:.85rem; }
  .sg-measure-item { flex-direction:row; text-align:left; }
  .sg-measure-icon svg { width:44px; height:44px; flex-shrink:0; }
  .sg-tip { margin:0 1.25rem 1.5rem; }
}

/* ============================================
   BLOG — PAGE MAGAZINE & ARTICLES
============================================ */

/* ── Hero ── */
.blog-hero {
  background: linear-gradient(160deg, #1E1E1E 0%, #2C2C2C 60%, #3a3020 100%);
  padding: 5rem 0 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.blog-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1483985988355-763728e1935b?w=1600&q=60') center/cover no-repeat;
  opacity: .12;
}
.blog-hero .container { position: relative; z-index: 1; }

.blog-eyebrow {
  display: inline-block;
  font-size: .72rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  color: #C9A96E; margin-bottom: 1rem;
}
.blog-heading {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.4rem, 6vw, 4rem);
  color: #fff; line-height: 1.1; margin-bottom: 1rem; font-weight: 700;
}
.blog-heading em { color: #C9A96E; font-style: italic; }
.blog-sub { font-size: 1rem; color: rgba(255,255,255,.6); font-weight: 300; }

/* ── Filtre catégories ── */
.blog-filter-bar {
  background: #FAF8F5;
  border-bottom: 1px solid #E8E0D8;
  padding: .85rem 0;
  position: sticky; top: 64px; z-index: 100;
}
.blog-filters {
  display: flex; gap: .5rem; flex-wrap: wrap; align-items: center;
}
.blog-filter {
  padding: .4rem 1rem; border-radius: 9999px;
  border: 1.5px solid #E8E0D8;
  font-size: .78rem; font-weight: 700; letter-spacing: .06em;
  background: transparent; color: #888; cursor: pointer;
  transition: all .25s cubic-bezier(.4,0,.2,1);
}
.blog-filter.active,
.blog-filter:hover { background: #C9A96E; border-color: #C9A96E; color: #fff; }

/* ── Layout principal ── */
.blog-main { padding: 3.5rem 0 5rem; }

/* ── Article vedette ── */
.blog-featured {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,.12);
  margin-bottom: 3rem;
  background: #fff;
}
.blog-featured-img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  display: block;
}
.blog-featured-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s cubic-bezier(.4,0,.2,1);
}
.blog-featured:hover .blog-featured-img img { transform: scale(1.04); }
.blog-featured-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,.2), transparent);
}
.blog-featured-body {
  padding: 2.5rem 2.5rem;
  display: flex; flex-direction: column; justify-content: center;
  background: #FAF8F5;
}
.blog-featured-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: #1E1E1E; line-height: 1.25; margin: .75rem 0 1rem;
}
.blog-featured-title a { color: inherit; }
.blog-featured-title a:hover { color: #C9A96E; }
.blog-featured-excerpt {
  color: #666; font-size: .95rem; line-height: 1.7; margin-bottom: 1.5rem;
  flex: 1;
}

/* ── Badge catégorie ── */
.blog-cat-badge {
  position: absolute; top: 1rem; left: 1rem; z-index: 2;
  background: #C9A96E; color: #fff;
  font-size: .68rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  padding: .25rem .7rem; border-radius: 9999px;
}

/* ── Meta ── */
.blog-meta {
  display: flex; align-items: center; gap: .5rem;
  font-size: .78rem; color: #999; margin-bottom: .25rem;
}
.blog-meta time { color: #C9A96E; font-weight: 600; }

/* ── Lien Lire l'article ── */
.blog-read-more {
  display: inline-flex; align-items: center; gap: .4rem;
  font-size: .82rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: #C9A96E;
  border-bottom: 1.5px solid rgba(201,169,110,.3);
  padding-bottom: .1rem;
  transition: all .25s cubic-bezier(.4,0,.2,1);
  width: fit-content;
}
.blog-read-more:hover {
  color: #1E1E1E;
  border-bottom-color: #1E1E1E;
  gap: .65rem;
}

/* ── Grille articles ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}
.blog-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(0,0,0,.07);
  transition: box-shadow .3s cubic-bezier(.4,0,.2,1), transform .3s cubic-bezier(.4,0,.2,1);
  cursor: pointer;
}
.blog-card:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,.13);
  transform: translateY(-4px);
}
.blog-card-img {
  display: block; position: relative;
  aspect-ratio: 16/10; overflow: hidden;
}
.blog-card-img img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.blog-card:hover .blog-card-img img { transform: scale(1.06); }
.blog-card-body { padding: 1.4rem 1.5rem 1.6rem; }
.blog-card-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem; color: #1E1E1E; line-height: 1.35;
  margin: .5rem 0 .65rem;
}
.blog-card-title a { color: inherit; }
.blog-card-title a:hover { color: #C9A96E; }
.blog-card-excerpt { font-size: .85rem; color: #777; line-height: 1.65; margin-bottom: 1rem; }

/* ── Pagination ── */
.blog-pagination { text-align: center; padding-top: 1.5rem; }
.blog-pagination .nav-links { display: flex; justify-content: center; gap: .5rem; flex-wrap: wrap; }
.blog-pagination .page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  font-size: .85rem; font-weight: 600; color: #888;
  border: 1.5px solid #E8E0D8;
  transition: all .25s cubic-bezier(.4,0,.2,1);
}
.blog-pagination .page-numbers.current,
.blog-pagination .page-numbers:hover { background: #C9A96E; border-color: #C9A96E; color: #fff; }
.blog-pagination .prev, .blog-pagination .next {
  width: auto; padding: 0 1.1rem; border-radius: 9999px; font-size: .8rem;
}

/* ── Reveal animation ── */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .55s ease, transform .55s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ════════════════════════════════
   ARTICLE INDIVIDUEL (single.php)
════════════════════════════════ */

/* Hero */
.post-hero {
  position: relative;
  background: #1E1E1E;
  min-height: 500px;
  display: flex; align-items: flex-end;
  padding-bottom: 3rem;
}
.post-hero.has-img { min-height: 580px; }
.post-hero-img {
  position: absolute; inset: 0; overflow: hidden;
}
.post-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.post-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.75) 0%, rgba(0,0,0,.3) 50%, rgba(0,0,0,.15) 100%);
}
.post-hero-content {
  position: relative; z-index: 1;
  max-width: 800px; padding-top: 7rem;
}
.post-cat {
  display: inline-block;
  background: #C9A96E; color: #fff;
  font-size: .7rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase;
  padding: .3rem .85rem; border-radius: 9999px; margin-bottom: 1rem;
  transition: background .25s;
}
.post-cat:hover { background: #b8924f; }
.post-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  color: #fff; line-height: 1.15; margin-bottom: 1.25rem;
}
.post-meta {
  display: flex; align-items: center; gap: .6rem; flex-wrap: wrap;
  font-size: .82rem; color: rgba(255,255,255,.7);
}
.post-meta time { color: rgba(255,255,255,.9); }
.post-meta strong { color: #fff; }

/* Layout contenu */
.post-layout { padding: 3.5rem 0; }
.post-content-area { max-width: 760px; margin: 0 auto; }
.post-content {
  font-size: 1.05rem; line-height: 1.85; color: #333;
}
.post-content h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  color: #1E1E1E; margin: 2.5rem 0 1rem;
}
.post-content h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.2rem; color: #1E1E1E; margin: 2rem 0 .75rem;
}
.post-content p { margin-bottom: 1.4rem; }
.post-content ul, .post-content ol {
  padding-left: 1.5rem; margin-bottom: 1.4rem;
  list-style: disc;
}
.post-content ol { list-style: decimal; }
.post-content li { margin-bottom: .5rem; }
.post-content strong { color: #1E1E1E; font-weight: 700; }
.post-content em { color: #C9A96E; font-style: italic; }
.post-content blockquote {
  border-left: 4px solid #C9A96E;
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background: rgba(201,169,110,.06);
  border-radius: 0 10px 10px 0;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.1rem; font-style: italic; color: #2C2C2C;
}
.post-content img {
  border-radius: 12px;
  margin: 1.5rem 0;
  box-shadow: 0 4px 20px rgba(0,0,0,.1);
}

/* Tags */
.post-tags {
  display: flex; align-items: center; gap: .5rem; flex-wrap: wrap;
  padding: 1.5rem 0;
  border-top: 1px solid #E8E0D8;
  margin-top: 2rem;
}
.post-tags svg { color: #C9A96E; flex-shrink: 0; }
.post-tag {
  padding: .3rem .85rem; border-radius: 9999px;
  border: 1.5px solid #E8E0D8;
  font-size: .75rem; font-weight: 700; color: #666;
  transition: all .25s;
}
.post-tag:hover { background: #C9A96E; border-color: #C9A96E; color: #fff; }

/* Bas d'article */
.post-nav-row {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.5rem 0;
  border-top: 1px solid #E8E0D8;
  margin-top: 1rem;
  flex-wrap: wrap; gap: 1rem;
}
.post-back {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .82rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: #888; transition: color .25s;
}
.post-back:hover { color: #C9A96E; }
.post-share {
  display: flex; align-items: center; gap: .6rem;
  font-size: .78rem; color: #888;
}
.share-btn {
  width: 34px; height: 34px; border-radius: 50%;
  background: #F2EDE8; display: flex; align-items: center; justify-content: center;
  color: #888; transition: all .25s;
}
.share-btn:hover { background: #C9A96E; color: #fff; }

/* Section similaires */
.post-related { background: #FAF8F5; padding: 4rem 0 5rem; }

/* ── Responsive blog ── */
@media (max-width: 900px) {
  .blog-featured { grid-template-columns: 1fr; }
  .blog-featured-img { aspect-ratio: 16/9; }
  .blog-featured-body { padding: 1.75rem; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .blog-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .blog-filter-bar { top: 58px; }
  .post-hero { min-height: 420px; }
  .post-hero.has-img { min-height: 460px; }
  .post-nav-row { flex-direction: column; align-items: flex-start; }
}

/* ============================================
   BOUTIQUE DYNAMIQUE — hero + grille produits
============================================ */

/* ── Hero Carousel ── */
.shop-hero-wrap {
  position: relative;
  width: 100%;
  overflow: hidden;
}
#shopHeroSwiper { width: 100%; }

.shop-slide {
  position: relative;
  height: 340px;
  background-size: cover;
  background-position: center;
  display: flex; align-items: center;
}
.shop-slide-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(0,0,0,.62) 0%, rgba(0,0,0,.3) 55%, rgba(0,0,0,.1) 100%);
}
.shop-slide-content {
  position: relative; z-index: 2;
  max-width: 1280px; margin: 0 auto; padding: 0 clamp(1rem,4vw,2rem);
  width: 100%;
}
.shop-slide-tag {
  display: inline-block;
  font-size: .7rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase;
  color: #C9A96E; background: rgba(201,169,110,.15);
  border: 1px solid rgba(201,169,110,.4);
  padding: .3rem .85rem; border-radius: 9999px;
  margin-bottom: 1.25rem;
}
.shop-slide-tag--promo { color: #fff; background: #C9A96E; border-color: #C9A96E; }

.shop-slide-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  color: #fff; font-weight: 700; line-height: 1.1;
  margin-bottom: .75rem;
}
.shop-slide-title em { color: #C9A96E; font-style: italic; }

.shop-slide-sub {
  font-size: .9rem; color: rgba(255,255,255,.75);
  margin-bottom: 1.5rem; font-weight: 300;
  max-width: 420px;
}
.shop-slide-cta {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .85rem 2rem; border-radius: 9999px;
  background: #fff; color: #1E1E1E;
  font-size: .85rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  transition: all .3s cubic-bezier(.4,0,.2,1);
  border: 2px solid #fff;
}
.shop-slide-cta:hover { background: #C9A96E; border-color: #C9A96E; color: #fff; }
.shop-slide-cta--outline {
  background: transparent; color: #fff;
}
.shop-slide-cta--outline:hover { background: #C9A96E; border-color: #C9A96E; }

/* Swiper controls */
#shopHeroSwiper .swiper-button-prev,
#shopHeroSwiper .swiper-button-next {
  width: 48px; height: 48px;
  background: rgba(255,255,255,.18); backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-radius: 50%; color: #fff;
  transition: all .3s cubic-bezier(.4,0,.2,1);
}
#shopHeroSwiper .swiper-button-prev:hover,
#shopHeroSwiper .swiper-button-next:hover { background: #C9A96E; }
#shopHeroSwiper .swiper-button-prev::after,
#shopHeroSwiper .swiper-button-next::after { font-size: .9rem; font-weight: 800; }
#shopHeroSwiper .swiper-pagination-bullet {
  width: 8px; height: 8px; background: rgba(255,255,255,.5); opacity: 1;
  transition: all .3s;
}
#shopHeroSwiper .swiper-pagination-bullet-active {
  background: #C9A96E; width: 28px; border-radius: 9999px;
}

/* ── Page boutique wrapper ── */
.shop-page-wrap { padding: 2rem 0 5rem; }

/* ── Barre de recherche ── */
.shop-search-bar { margin-bottom: 1.5rem; }
.shop-search-form { width: 100%; }
.shop-search-inner {
  display: flex; align-items: center; gap: .75rem;
  background: #fff;
  border: 1.5px solid #E8E0D8;
  border-radius: 9999px;
  padding: .6rem .6rem .6rem 1.25rem;
  transition: border-color .25s, box-shadow .25s;
}
.shop-search-inner:focus-within {
  border-color: #C9A96E;
  box-shadow: 0 0 0 3px rgba(201,169,110,.12);
}
.shop-search-inner > svg { color: #bbb; flex-shrink: 0; }
.shop-search-inner input[type="search"] {
  flex: 1; border: none; outline: none; background: transparent;
  font-family: var(--font-body); font-size: .9rem; color: #1E1E1E;
  min-width: 0;
}
.shop-search-inner input[type="search"]::placeholder { color: #bbb; }
.shop-search-clear {
  display: flex; align-items: center; justify-content: center;
  width: 26px; height: 26px; border-radius: 50%;
  background: #F2EDE8; color: #888; flex-shrink: 0;
  transition: all .2s;
}
.shop-search-clear:hover { background: #E8E0D8; color: #1E1E1E; }
.shop-search-btn {
  padding: .5rem 1.25rem; border-radius: 9999px;
  background: #C9A96E; color: #fff;
  font-size: .78rem; font-weight: 700; letter-spacing: .06em;
  border: none; cursor: pointer; flex-shrink: 0;
  transition: background .25s;
}
.shop-search-btn:hover { background: #b8924f; }

/* ── Top bar (titre + tri) ── */
.shop-topbar {
  display: flex; align-items: baseline; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid #E8E0D8;
  margin-bottom: 1.5rem;
}
.shop-topbar-left { display: flex; align-items: baseline; gap: 1rem; flex-wrap: wrap; }
.shop-page-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2rem); color: #1E1E1E; font-weight: 700;
}
.shop-result-count {
  font-size: .8rem; color: #999; white-space: nowrap;
}
.shop-result-count p { margin: 0; font-size: inherit; color: inherit; }

/* ── Tri personnalisé ── */
.shop-sort-wrap {
  display: flex; align-items: center; gap: .5rem;
  background: #fff; border: 1.5px solid #E8E0D8;
  border-radius: 9999px; padding: .45rem .45rem .45rem .85rem;
  transition: border-color .25s;
}
.shop-sort-wrap:focus-within { border-color: #C9A96E; }
.shop-sort-wrap > svg { color: #bbb; flex-shrink: 0; }
.shop-sort-select {
  border: none; outline: none; background: transparent;
  font-family: var(--font-body); font-size: .8rem;
  color: #2C2C2C; cursor: pointer;
  padding-right: .25rem; min-width: 140px;
}

/* ── Filtres catégories ── */
.shop-cat-filters {
  display: flex; gap: .5rem; flex-wrap: wrap;
  margin-bottom: 2rem;
}
.shop-cat-btn {
  display: inline-flex; align-items: center; gap: .4rem;
  padding: .45rem 1.1rem; border-radius: 9999px;
  border: 1.5px solid #E8E0D8;
  font-size: .78rem; font-weight: 700; letter-spacing: .05em;
  color: #888; background: transparent; text-decoration: none;
  transition: all .25s cubic-bezier(.4,0,.2,1);
  cursor: pointer;
}
.shop-cat-btn.active,
.shop-cat-btn:hover { background: #C9A96E; border-color: #C9A96E; color: #fff; }
.shop-cat-count {
  font-size: .7rem; font-weight: 400; opacity: .8;
}

/* ── Grille produits ── */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-bottom: 3rem;
}

/* ── Carte produit ── */
.shop-product-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
  transition: box-shadow .35s cubic-bezier(.4,0,.2,1), transform .35s cubic-bezier(.4,0,.2,1);
}
.shop-product-card:hover {
  box-shadow: 0 16px 48px rgba(0,0,0,.14);
  transform: translateY(-5px);
}

/* Image */
.spc-img-wrap {
  display: block; position: relative;
  aspect-ratio: 3/4; overflow: hidden;
  background: #F2EDE8;
}
.spc-img-main, .spc-img-hover {
  position: absolute; inset: 0;
  width: 100%; height: 100%; object-fit: cover;
  transition: opacity .5s cubic-bezier(.4,0,.2,1), transform .55s cubic-bezier(.4,0,.2,1);
}
.spc-img-hover { opacity: 0; }
.shop-product-card:hover .spc-img-main { transform: scale(1.04); }
.shop-product-card:hover .spc-img-hover { opacity: 1; }

/* Badges */
.spc-badges {
  position: absolute; top: .85rem; left: .85rem; z-index: 3;
  display: flex; flex-direction: column; gap: .3rem;
}
.spc-badge {
  display: inline-block;
  font-size: .65rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  padding: .25rem .65rem; border-radius: 9999px;
}
.spc-badge--sale { background: #C9A96E; color: #fff; }
.spc-badge--new  { background: #1E1E1E; color: #fff; }
.spc-badge--out  { background: #bbb;    color: #fff; }

/* Bouton favoris */
.spc-wish {
  position: absolute; top: .85rem; right: .85rem; z-index: 4;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.9); backdrop-filter: blur(6px);
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: #888;
  box-shadow: 0 2px 12px rgba(0,0,0,.1);
  transition: all .25s cubic-bezier(.4,0,.2,1);
  opacity: 0; transform: translateY(-4px);
}
.shop-product-card:hover .spc-wish { opacity: 1; transform: none; }
.spc-wish:hover, .spc-wish.active { background: #C9A96E; color: #fff; }

/* Overlay hover */
.spc-overlay {
  position: absolute; inset: 0; z-index: 3;
  background: linear-gradient(to top, rgba(0,0,0,.72) 0%, rgba(0,0,0,.1) 50%, transparent 100%);
  display: flex; flex-direction: column; align-items: center; justify-content: flex-end;
  padding: 1.25rem;
  gap: .6rem;
  opacity: 0; transition: opacity .3s cubic-bezier(.4,0,.2,1);
}
.shop-product-card:hover .spc-overlay { opacity: 1; }

.spc-quick-add {
  display: inline-flex; align-items: center; justify-content: center; gap: .45rem;
  width: 100%; padding: .65rem 1rem; border-radius: 9999px;
  background: #fff; color: #1E1E1E;
  font-size: .78rem; font-weight: 700; letter-spacing: .05em;
  text-decoration: none; border: none; cursor: pointer;
  transition: all .25s cubic-bezier(.4,0,.2,1);
  transform: translateY(8px);
}
.shop-product-card:hover .spc-quick-add { transform: none; }
.spc-quick-add:hover { background: #C9A96E; color: #fff; }
.spc-quick-add--out { background: rgba(255,255,255,.5); color: rgba(0,0,0,.5); cursor: default; }
.spc-quick-add.loading { opacity: .6; pointer-events: none; }

.spc-view-btn {
  display: inline-flex; align-items: center; gap: .35rem;
  font-size: .75rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: rgba(255,255,255,.85);
  text-decoration: none;
  transform: translateY(8px);
  transition: all .25s cubic-bezier(.4,0,.2,1) .05s;
}
.shop-product-card:hover .spc-view-btn { transform: none; }
.spc-view-btn:hover { color: #C9A96E; }

/* Corps carte */
.spc-body { padding: 1rem 1.1rem 1.3rem; }
.spc-cat {
  display: block; font-size: .68rem; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: #C9A96E; margin-bottom: .3rem;
}
.spc-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1rem; color: #1E1E1E; line-height: 1.35;
  margin-bottom: .45rem;
}
.spc-title a { color: inherit; }
.spc-title a:hover { color: #C9A96E; }

/* Étoiles */
.spc-rating { display: flex; align-items: center; gap: 2px; margin-bottom: .45rem; }
.spc-star { fill: #E8E0D8; }
.spc-star.filled { fill: #C9A96E; }
.spc-star.half { fill: url(#halfGrad); }
.spc-rating-count { font-size: .72rem; color: #bbb; margin-left: .25rem; }

/* Prix */
.spc-price { display: flex; align-items: baseline; gap: .5rem; }
.spc-price-sale {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.05rem; font-weight: 700; color: #1E1E1E;
}
.spc-price-sale .woocommerce-Price-amount { font-size: inherit; font-weight: inherit; color: inherit; }
.spc-price-regular {
  font-size: .85rem; color: #bbb; text-decoration: line-through;
}
.spc-price-regular .woocommerce-Price-amount { font-size: inherit; color: inherit; }

/* ── Pagination boutique ── */
.shop-pager { text-align: center; }
.shop-pager .woocommerce-pagination ul { display: flex; justify-content: center; gap: .4rem; flex-wrap: wrap; list-style: none; padding: 0; }
.shop-pager .woocommerce-pagination .page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px; border-radius: 50%;
  font-size: .85rem; font-weight: 600; color: #888;
  border: 1.5px solid #E8E0D8;
  text-decoration: none; transition: all .25s;
}
.shop-pager .woocommerce-pagination .page-numbers.current,
.shop-pager .woocommerce-pagination .page-numbers:hover { background: #C9A96E; border-color: #C9A96E; color: #fff; }
.shop-pager .woocommerce-pagination .prev,
.shop-pager .woocommerce-pagination .next { width: auto; padding: 0 1.1rem; border-radius: 9999px; }

/* ── Responsive ── */
@media (max-width: 1200px) {
  .shop-grid { grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
}
@media (max-width: 900px) {
  .shop-slide { height: 280px; }
  .shop-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}
@media (max-width: 600px) {
  .shop-slide { height: 240px; }
  .shop-slide-sub { display: none; }
  .shop-grid { grid-template-columns: repeat(2, 1fr); gap: .75rem; }
  .shop-topbar { flex-direction: column; gap: .75rem; }
  .spc-overlay { opacity: 1; background: linear-gradient(to top, rgba(0,0,0,.6) 0%, transparent 55%); }
  .spc-quick-add, .spc-view-btn { transform: none; }
  .spc-wish { opacity: 1; transform: none; }
}

/* ============================================
   ARCHIVE PRODUITS (boutique)
============================================ */
.shop-page { padding-block: 4rem; }

.shop-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--color-border);
}

.shop-title { font-size: 1.75rem; }

.sort-select {
  padding: .6rem 1.25rem;
  border: 2px solid var(--color-border);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: .9rem;
  background: var(--color-white);
  color: var(--color-text);
  cursor: pointer;
  outline: none;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 2rem;
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .header-inner { grid-template-columns: 1fr auto; }
  .main-nav { display: none; position: fixed; inset: 0 0 0 30%; background: var(--color-white); padding: 5rem 2rem 2rem; z-index: 999; transform: translateX(100%); transition: transform var(--transition); flex-direction: column; justify-content: flex-start; box-shadow: var(--shadow-lg); }
  .main-nav.is-open { display: flex; transform: translateX(0); }
  .main-nav ul { flex-direction: column; gap: 1.5rem; }
  .menu-toggle { display: flex; }

  .product-gallery-wrapper { grid-template-columns: 1fr; }
  .product-info-panel { position: static; }

  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .newsletter-form { flex-direction: column; }

  .hero-content { padding-block: 4rem; }
}

@media (max-width: 480px) {
  .header-actions .search-icon { display: none; }
  .categories-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================
   ANIMATIONS
============================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.fade-in-up { animation: fadeInUp .6s ease both; }
.delay-1 { animation-delay: .1s; }
.delay-2 { animation-delay: .2s; }
.delay-3 { animation-delay: .3s; }

/* Intersection Observer — masqué par défaut */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .6s ease, transform .6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ============================================
   WOOCOMMERCE OVERRIDES
============================================ */
.woocommerce .button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  background-color: var(--color-primary);
  color: var(--color-white);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: .05em;
  padding: .75rem 1.75rem;
  transition: all var(--transition);
  border: none;
}
.woocommerce .button:hover,
.woocommerce button.button:hover {
  background-color: var(--color-secondary);
  color: var(--color-white);
}

.woocommerce .woocommerce-message {
  border-top-color: var(--color-primary);
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  border-color: var(--color-border);
  color: var(--color-text);
}
.woocommerce nav.woocommerce-pagination ul li a:hover,
.woocommerce nav.woocommerce-pagination ul li span.current {
  background: var(--color-primary);
  color: var(--color-white);
}

.woocommerce-loop-product__title {
  font-family: var(--font-heading);
  font-size: 1rem;
}

.woocommerce span.price, .woocommerce .price {
  color: var(--color-secondary);
  font-weight: 700;
}

.woocommerce .star-rating span { color: var(--color-primary); }

/* ============================================
   BOUTIQUE ÉDITORIALE — "Le Digital Atelier"
   Préfixe : btq-
============================================ */

/* ── Hero ── */
.btq-hero {
  position: relative;
  height: clamp(480px, 60vh, 820px);
  display: flex;
  align-items: center;
  overflow: hidden;
  margin: 0 1.5rem;
  border-radius: 12px;
  background:
    linear-gradient(100deg, rgba(44,44,44,.65) 0%, rgba(44,44,44,.3) 55%, rgba(44,44,44,.12) 100%),
    linear-gradient(135deg, #2C2C2C 0%, #1a1a1a 100%);
  background-size: cover;
  background-position: center;
}
.btq-hero--has-img {
  background-image:
    linear-gradient(100deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.28) 55%, rgba(0,0,0,.1) 100%),
    var(--btq-hero-bg);
}
.btq-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(0,0,0,.52) 0%, rgba(0,0,0,.22) 55%, transparent 100%);
  pointer-events: none;
}
.btq-hero-content {
  position: relative; z-index: 2;
  padding: 0 clamp(2rem, 6vw, 6rem);
  max-width: 700px;
}
.btq-hero-tag {
  display: block;
  font-size: .72rem; font-weight: 800; letter-spacing: .3em; text-transform: uppercase;
  color: var(--color-primary);
  margin-bottom: 1.25rem;
}
.btq-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  color: #fff; font-weight: 700; line-height: 1.05;
  letter-spacing: -.01em;
  margin-bottom: 2rem;
}
.btq-hero-title em {
  font-style: italic;
  color: var(--color-primary);
}
.btq-hero-cta {
  display: inline-flex; align-items: center; gap: .6rem;
  background: var(--color-secondary); color: #fff;
  padding: 1rem 2.2rem; border-radius: var(--radius-full);
  font-size: .82rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
  text-decoration: none;
  box-shadow: 0 8px 28px rgba(0,0,0,.3);
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btq-hero-cta:hover {
  background: var(--color-primary);
  transform: translateX(4px);
  box-shadow: 0 12px 36px rgba(0,0,0,.35);
}
.btq-hero-cta svg { transition: transform var(--transition); }
.btq-hero-cta:hover svg { transform: translateX(4px); }

/* ── Layout sidebar + main ── */
.btq-layout {
  display: flex;
  gap: 3rem;
  max-width: var(--max-width);
  margin: 3rem auto 0;
  padding: 0 var(--gutter) 4rem;
  align-items: flex-start;
}

/* ── Sidebar ── */
.btq-sidebar {
  width: 240px;
  flex-shrink: 0;
  position: sticky;
  top: 100px;
}
.btq-filter-group { margin-bottom: 2.5rem; }
.btq-filter-title {
  font-family: var(--font-heading);
  font-size: 1.1rem; font-weight: 700; letter-spacing: .06em; text-transform: uppercase;
  color: var(--color-secondary);
  padding-bottom: .75rem;
  border-bottom: 1px solid rgba(232,224,216,.5);
  margin-bottom: 1.1rem;
}
.btq-cat-list { list-style: none; padding: 0; margin: 0; }
.btq-cat-list li + li { margin-top: .6rem; }
.btq-cat-link {
  display: flex; justify-content: space-between; align-items: center;
  font-size: .88rem; color: var(--color-text-light);
  text-decoration: none;
  transition: color var(--transition);
}
.btq-cat-link:hover, .btq-cat-link.active {
  color: var(--color-primary);
  font-weight: 600;
}
.btq-cat-count { font-size: .72rem; opacity: .6; }

/* Slider budget */
.btq-range-wrap { padding: 0 .25rem; }
.btq-range {
  width: 100%;
  -webkit-appearance: none; appearance: none;
  height: 3px;
  background: var(--color-border);
  border-radius: 9999px;
  outline: none;
  cursor: pointer;
  accent-color: var(--color-primary);
}
.btq-range::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 16px; height: 16px;
  background: var(--color-primary);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(201,169,110,.4);
}
.btq-range-labels {
  display: flex; justify-content: space-between;
  margin-top: .75rem;
  font-size: .78rem; color: var(--color-text-light);
}

/* Swatches */
.btq-swatches { display: flex; gap: .75rem; flex-wrap: wrap; margin-top: .25rem; }
.btq-swatch {
  width: 28px; height: 28px; border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 1px 4px rgba(0,0,0,.15);
}
.btq-swatch--light { border-color: var(--color-border) !important; }
.btq-swatch:hover { transform: scale(1.15); box-shadow: 0 3px 10px rgba(0,0,0,.2); }
.btq-swatch--active {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}

/* ── Main content ── */
.btq-main { flex: 1; min-width: 0; }

/* Barre de recherche */
.btq-search-bar { margin-bottom: 1.5rem; }
.btq-search-inner {
  display: flex; align-items: center; gap: .75rem;
  background: #fff;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-full);
  padding: .55rem .55rem .55rem 1.1rem;
  transition: border-color .25s, box-shadow .25s;
}
.btq-search-inner:focus-within {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(201,169,110,.12);
}
.btq-search-inner > svg { color: #bbb; flex-shrink: 0; }
.btq-search-inner input[type="search"] {
  flex: 1; border: none; outline: none; background: transparent;
  font-family: var(--font-body); font-size: .88rem; color: var(--color-text);
  min-width: 0;
}
.btq-search-inner input[type="search"]::placeholder { color: #bbb; }
.btq-search-clear {
  display: flex; align-items: center; justify-content: center;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--color-bg-alt); color: #888; flex-shrink: 0;
  transition: all .2s;
}
.btq-search-clear:hover { background: var(--color-border); color: var(--color-secondary); }
.btq-search-btn {
  padding: .45rem 1.15rem; border-radius: var(--radius-full);
  background: var(--color-primary); color: #fff;
  font-size: .75rem; font-weight: 700; letter-spacing: .06em;
  border: none; cursor: pointer; flex-shrink: 0;
  transition: background .25s;
}
.btq-search-btn:hover { background: var(--color-secondary); }

/* Topbar */
.btq-topbar {
  display: flex; align-items: baseline; justify-content: space-between;
  flex-wrap: wrap; gap: .75rem;
  margin-bottom: 1.1rem;
}
.btq-topbar-left { display: flex; align-items: baseline; gap: .85rem; flex-wrap: wrap; }
.btq-main-title {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  color: var(--color-secondary); font-weight: 700;
}
.btq-result-count { font-size: .8rem; color: #aaa; }
.btq-result-count p { margin: 0; font-size: inherit; color: inherit; }
.btq-sort-wrap { display: flex; align-items: center; gap: .5rem; }
.btq-sort-label {
  font-size: .72rem; letter-spacing: .06em; text-transform: uppercase; color: #aaa;
}
.btq-sort-select {
  border: none; outline: none; background: transparent;
  font-family: var(--font-body); font-size: .82rem;
  color: var(--color-secondary); cursor: pointer; font-weight: 600;
}

/* Pills catégories */
.btq-pills {
  display: flex; gap: .45rem; flex-wrap: wrap;
  margin-bottom: 2rem;
}
.btq-pill {
  display: inline-flex; align-items: center; gap: .35rem;
  padding: .4rem 1rem; border-radius: var(--radius-full);
  border: 1.5px solid var(--color-border);
  font-size: .75rem; font-weight: 700; letter-spacing: .05em;
  color: var(--color-text-light); text-decoration: none;
  transition: all .25s cubic-bezier(.4,0,.2,1);
}
.btq-pill:hover, .btq-pill.active {
  background: var(--color-primary); border-color: var(--color-primary); color: #fff;
}
.btq-pill-count { font-size: .68rem; font-weight: 400; opacity: .8; }

/* ── Grille produits ── */
.btq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem 1.25rem;
  margin-bottom: 3rem;
}
.btq-grid .shop-product-card:first-child {
  grid-column: span 1;
}
.btq-grid .shop-product-card:first-child .spc-img-wrap {
  aspect-ratio: 3/4;
}
.btq-grid .shop-product-card {
  background: var(--color-bg-alt);
  border-radius: 10px;
  box-shadow: none;
  transition: background var(--transition), transform var(--transition);
}
.btq-grid .shop-product-card:hover {
  background: #ece8e3;
  box-shadow: none;
  transform: none;
}
.btq-grid .spc-img-wrap { border-radius: 8px 8px 0 0; }
.btq-grid .spc-badge {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(255,255,255,.75) !important;
  color: var(--color-secondary) !important;
}
.btq-grid .spc-badge--sale {
  background: rgba(201,169,110,.85) !important;
  color: #fff !important;
}

/* Pagination */
.btq-pager { text-align: center; padding-top: 1rem; }
.btq-pager .woocommerce-pagination ul {
  display: flex; justify-content: center; gap: .4rem; flex-wrap: wrap;
  list-style: none; padding: 0; margin: 0;
}
.btq-pager .woocommerce-pagination .page-numbers {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 40px; height: 40px; padding: 0 .75rem;
  border-radius: var(--radius-full);
  font-size: .82rem; font-weight: 600; color: #999;
  border: 1.5px solid var(--color-border);
  text-decoration: none; transition: all .25s;
}
.btq-pager .woocommerce-pagination .page-numbers.current,
.btq-pager .woocommerce-pagination .page-numbers:hover {
  background: var(--color-primary); border-color: var(--color-primary); color: #fff;
}

/* ── Newsletter ── */
.btq-newsletter {
  position: relative; overflow: hidden;
  background: var(--color-bg-alt);
  padding: 5rem var(--gutter);
  margin-top: 5rem;
  text-align: center;
}
.btq-newsletter-deco {
  position: absolute; top: 0; right: 0;
  width: 35%; height: 100%;
  background: rgba(201,169,110,.06);
  transform: rotate(-12deg) translateX(30%);
  pointer-events: none;
}
.btq-newsletter-inner {
  position: relative; z-index: 1;
  max-width: 600px; margin: 0 auto;
}
.btq-newsletter-eyebrow {
  display: block;
  font-size: .7rem; font-weight: 800; letter-spacing: .35em; text-transform: uppercase;
  color: var(--color-primary); margin-bottom: 1rem;
}
.btq-newsletter-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--color-secondary); font-weight: 700;
  margin-bottom: .85rem;
}
.btq-newsletter-desc {
  font-size: .95rem; color: var(--color-text-light); line-height: 1.7;
  margin-bottom: 2rem;
}
.btq-newsletter-form {
  display: flex; gap: .5rem; flex-wrap: wrap; justify-content: center;
}
.btq-newsletter-input {
  flex: 1; min-width: 220px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-full);
  padding: .85rem 1.4rem;
  font-family: var(--font-body); font-size: .9rem; color: var(--color-text);
  background: #fff; outline: none;
  transition: border-color .25s, box-shadow .25s;
}
.btq-newsletter-input:focus {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(201,169,110,.12);
}
.btq-newsletter-btn {
  padding: .85rem 2rem; border-radius: var(--radius-full);
  background: var(--color-secondary); color: #fff;
  font-size: .82rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase;
  border: none; cursor: pointer;
  transition: background var(--transition);
}
.btq-newsletter-btn:hover { background: var(--color-primary); }

/* ── Responsive boutique éditoriale ── */
@media (max-width: 1100px) {
  .btq-sidebar { width: 200px; }
  .btq-grid { grid-template-columns: repeat(2, 1fr); }
  .btq-grid .shop-product-card:first-child { grid-column: span 1; }
}
@media (max-width: 860px) {
  .btq-layout { flex-direction: column; gap: 2rem; }
  .btq-sidebar {
    width: 100%; position: static;
    display: flex; flex-wrap: wrap; gap: 1.5rem;
  }
  .btq-filter-group { margin-bottom: 0; flex: 1; min-width: 180px; }
  .btq-hero { margin: 0; border-radius: 0; }
}
@media (max-width: 600px) {
  .btq-hero { height: clamp(360px, 55vh, 480px); }
  .btq-hero-title { font-size: clamp(2rem, 8vw, 3rem); }
  .btq-grid { grid-template-columns: repeat(2, 1fr); gap: .75rem; }
  .btq-grid .shop-product-card:first-child { grid-column: span 1; }
  .btq-topbar { flex-direction: column; gap: .6rem; }
}
@media (max-width: 420px) {
  .btq-grid { grid-template-columns: 1fr; }
  .btq-grid .shop-product-card:first-child { grid-column: span 1; }
}
