/*
Theme Name:   SelectCo Child
Theme URI:    https://selectco.fr
Description:  Sous-thème Divi — Direction artistique premium, maroquinerie vintage luxe
Author:       SelectCo
Author URI:   https://selectco.fr
Template:     Divi
Version:        1.4.2
Text Domain:  selectco-child
*/

/* ============================================================
   1. DESIGN TOKENS
   ============================================================ */
:root {
  --sc-black:    #000000;
  --sc-bg:       #060606;
  --sc-bg-1:     #0D0D0D;
  --sc-bg-2:     #141414;
  --sc-bg-3:     #1C1C1C;
  --sc-bg-4:     #242424;
  --sc-border:   rgba(234,228,212,.09);
  --sc-border-2: rgba(234,228,212,.18);
  --sc-border-3: rgba(234,228,212,.30);
  --sc-cream:    #EAE4D4;
  --sc-cream-2:  rgba(234,228,212,.72);
  --sc-cream-3:  rgba(234,228,212,.38);
  --sc-cream-4:  rgba(234,228,212,.18);
  --sc-gold:     #CC1020;
  --sc-gold-2:   rgba(204,16,32,.65);
  --sc-gold-3:   rgba(204,16,32,.18);
  --sc-gold-4:   rgba(204,16,32,.07);
  --sc-serif:    'Cormorant Garamond', Georgia, serif;
  --sc-sans:     'Jost', system-ui, -apple-system, sans-serif;
  --sc-max-w:    1340px;
  --sc-gap:      clamp(1.25rem, 3vw, 2.5rem);
  --sc-ease:     cubic-bezier(0.16, 1, 0.3, 1);
  --sc-t:        0.55s var(--sc-ease);
  --sc-tf:       0.28s var(--sc-ease);
}

/* ============================================================
   2. BASE + DIVI RESET
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-font-smoothing:  antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  scroll-behavior: smooth;
}

body,
#page-container {
  background: var(--sc-bg) !important;
  color: var(--sc-cream) !important;
  font-family: var(--sc-sans) !important;
  font-weight: 300 !important;
  cursor: none;
}

/* Film grain */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .038;
  z-index: 9000;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.78' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 300px;
}

/* Universal font */
body, button, input, select, textarea,
.et_pb_module, .et_pb_text_inner,
p, li, td, th, label, span {
  font-family: var(--sc-sans) !important;
}

h1, h2, h3, h4 {
  font-family: var(--sc-serif) !important;
  font-weight: 300 !important;
  color: var(--sc-cream) !important;
  line-height: 1.1 !important;
  letter-spacing: -.01em;
}

p, .et_pb_text_inner p { color: var(--sc-cream-2); line-height: 1.72; }
a { cursor: none; transition: color var(--sc-tf); }
img { display: block; }

/* Remove Divi default backgrounds / borders */
#main-content, .et_pb_section, .et_pb_row_inner { background: transparent; }
#page-container { overflow-x: hidden; }

/* ============================================================
   3. CUSTOM CURSOR
   ============================================================ */
.sc-cursor-dot,
.sc-cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 99998;
  border-radius: 50%;
  will-change: transform;
}
.sc-cursor-dot {
  width: 5px; height: 5px;
  background: var(--sc-gold);
  transform: translate(-50%, -50%);
  transition: transform .15s var(--sc-ease);
}
.sc-cursor-ring {
  width: 32px; height: 32px;
  border: 1px solid rgba(196,163,90,.4);
  transform: translate(-50%, -50%);
  transition: width .35s var(--sc-ease), height .35s var(--sc-ease), border-color .3s;
}
body.sc-hover    .sc-cursor-ring { width: 52px; height: 52px; border-color: var(--sc-gold); }
body.sc-clicking .sc-cursor-dot  { transform: translate(-50%,-50%) scale(1.8); }

/* ============================================================
   4. PAGE TRANSITION OVERLAY
   ============================================================ */
.sc-transition {
  position: fixed;
  inset: 0;
  background: var(--sc-black);
  z-index: 100000;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  clip-path: inset(100% 0 0 0);
  transition: clip-path .65s var(--sc-ease);
}
.sc-transition.is-entering {
  clip-path: inset(0% 0 0 0);
  pointer-events: all;
}
.sc-transition.is-leaving {
  clip-path: inset(0 0 100% 0);
  transition: clip-path .55s var(--sc-ease);
}
.sc-transition__label {
  font-family: var(--sc-serif);
  font-size: 1.1rem;
  letter-spacing: .45em;
  color: var(--sc-cream-3);
  text-transform: uppercase;
}

/* ============================================================
   5. BRAND TICKER
   ============================================================ */
.sc-ticker {
  position: relative;
  z-index: 600;
  background: var(--sc-bg);
  border-bottom: 1px solid var(--sc-border);
  padding: 9px 0;
  overflow: hidden;
  user-select: none;
}
.sc-ticker__track {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  width: max-content;
  animation: scTicker 65s linear infinite;
  will-change: transform;
}
.sc-ticker__track span {
  font-size: .585rem;
  font-weight: 400;
  letter-spacing: .28em;
  color: var(--sc-cream-3);
  white-space: nowrap;
  text-transform: uppercase;
}
.sc-ticker__track .sep {
  color: var(--sc-gold-2);
  font-size: .6rem;
  letter-spacing: 0;
}
.sc-ticker:hover .sc-ticker__track { animation-play-state: paused; }
@keyframes scTicker {
  from { transform: translateX(0); }
  to   { transform: translateX(-33.333%); }
}

/* ============================================================
   6. NAVIGATION (Divi)
   ============================================================ */
#main-header,
#main-header .container {
  background-color: transparent !important;
  box-shadow: none !important;
}

/* Sticky/scrolled state — Divi adds .et-fixed-header */
#main-header.et-fixed-header,
.et-fixed-header {
  background: rgba(6,6,6,.9) !important;
  backdrop-filter: blur(24px) saturate(1.3) !important;
  -webkit-backdrop-filter: blur(24px) saturate(1.3) !important;
  box-shadow: 0 1px 0 var(--sc-border) !important;
}

/* Nav links */
#main-header #et-top-navigation .nav li a {
  font-family: var(--sc-sans) !important;
  font-size: .65rem !important;
  font-weight: 300 !important;
  letter-spacing: .2em !important;
  text-transform: uppercase !important;
  color: var(--sc-cream-3) !important;
  transition: color var(--sc-tf) !important;
  padding: 0 .85rem !important;
}
#main-header #et-top-navigation .nav li a:hover { color: var(--sc-cream) !important; }
#main-header #et-top-navigation .nav li.current-menu-item > a { color: var(--sc-gold) !important; }

/* Logo — image uploaded via Divi Customizer → Theme Options */
#main-header #logo img {
  max-height: 28px !important;
  width: auto !important;
  display: block !important;
}
/* Chip blanc autour du logo pour lisibilité sur nav sombre */
#main-header #logo a {
  display: inline-flex !important;
  align-items: center !important;
  padding: 4px 8px !important;
  background: rgba(255,255,255,0.90) !important;
  border-radius: 3px !important;
  transition: opacity .2s ease !important;
}
#main-header #logo a:hover { opacity: .82 !important; }

/* Hamburger */
.mobile_menu_bar::before { color: var(--sc-cream) !important; }

/* Dropdown */
#main-header #et-top-navigation .nav li ul.sub-menu {
  background: rgba(6,6,6,.95) !important;
  backdrop-filter: blur(24px) !important;
  border: 1px solid var(--sc-border) !important;
  border-radius: 0 !important;
  box-shadow: 0 24px 48px rgba(0,0,0,.5) !important;
}
#main-header #et-top-navigation .nav li ul.sub-menu li a {
  border-bottom: 1px solid var(--sc-border) !important;
  padding: .85rem 1.25rem !important;
}

/* Mobile nav */
#et_mobile_nav_menu {
  background: rgba(6,6,6,.97) !important;
  backdrop-filter: blur(24px) !important;
  -webkit-backdrop-filter: blur(24px) !important;
}
#et_mobile_nav_menu .nav li a {
  font-family: var(--sc-sans) !important;
  font-size: .7rem !important;
  letter-spacing: .2em !important;
  text-transform: uppercase !important;
  color: var(--sc-cream-2) !important;
  border-bottom: 1px solid var(--sc-border) !important;
  padding: 1rem 1.5rem !important;
}

/* ============================================================
   7. SCROLL REVEAL
   ============================================================ */
.sc-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .85s var(--sc-ease), transform .85s var(--sc-ease);
}
.sc-reveal.sc-visible { opacity: 1; transform: none; }
.sc-reveal--left  { transform: translateX(-28px) !important; }
.sc-reveal--right { transform: translateX(28px) !important; }
.sc-reveal--scale { transform: scale(.96) !important; }
.sc-reveal.sc-visible.sc-reveal--left,
.sc-reveal.sc-visible.sc-reveal--right,
.sc-reveal.sc-visible.sc-reveal--scale { transform: none !important; }

/* ============================================================
   8. WOOCOMMERCE — PRODUCT GRID (Archive)
   ============================================================ */
.woocommerce ul.products,
.woocommerce-page ul.products {
  display: grid !important;
  grid-template-columns: repeat(3, 1fr) !important;
  gap: var(--sc-gap) !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
  float: none !important;
  clear: both;
}

.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  margin: 0 !important;
  width: auto !important;
  float: none !important;
  text-align: left !important;
  position: relative !important;
}

/* Product image wrapper */
.woocommerce ul.products li.product .woocommerce-loop-product__link,
.woocommerce ul.products li.product a.woocommerce-LoopProduct-link {
  display: block !important;
  text-decoration: none !important;
}

.woocommerce ul.products li.product img {
  display: block !important;
  width: 100% !important;
  aspect-ratio: 4/5 !important;
  object-fit: cover !important;
  margin: 0 0 1.2rem !important;
  transition: transform .9s var(--sc-ease) !important;
  background: var(--sc-bg-2) !important;
  border-radius: 0 !important;
}
.woocommerce ul.products li.product:hover img {
  transform: scale(1.055) !important;
}

/* Category badge on image */
.woocommerce ul.products li.product mark {
  display: none !important;
}

/* Title */
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product h2 {
  font-family: var(--sc-serif) !important;
  font-size: 1.1rem !important;
  font-weight: 400 !important;
  color: var(--sc-cream) !important;
  margin: 0 0 .35rem !important;
  padding: 0 !important;
  letter-spacing: .02em !important;
  line-height: 1.3 !important;
  text-align: left !important;
}

/* Price */
.woocommerce ul.products li.product .price,
.woocommerce ul.products li.product .price .woocommerce-Price-amount {
  font-family: var(--sc-serif) !important;
  font-size: 1rem !important;
  font-weight: 500 !important;
  color: var(--sc-cream) !important;
  display: block !important;
  text-align: left !important;
  margin: 0 !important;
}
.woocommerce ul.products li.product .price del {
  opacity: .42 !important;
  font-size: .85rem !important;
}
.woocommerce ul.products li.product .price ins {
  text-decoration: none !important;
}

/* Add to cart overlay button */
.woocommerce ul.products li.product a.button,
.woocommerce ul.products li.product .add_to_cart_button {
  position: absolute !important;
  inset: 0 !important;
  aspect-ratio: 4/5 !important;
  height: auto !important;
  bottom: auto !important;
  width: 100% !important;
  margin: 0 !important;
  background: rgba(0,0,0,.44) !important;
  color: var(--sc-cream) !important;
  font-family: var(--sc-sans) !important;
  font-size: .6rem !important;
  letter-spacing: .28em !important;
  text-transform: uppercase !important;
  font-weight: 400 !important;
  border-radius: 0 !important;
  border: 1px solid rgba(234,228,212,.38) !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  opacity: 0 !important;
  transition: opacity var(--sc-tf) !important;
  cursor: none !important;
  z-index: 2 !important;
}
.woocommerce ul.products li.product:hover a.button,
.woocommerce ul.products li.product:hover .add_to_cart_button {
  opacity: 1 !important;
}
.woocommerce ul.products li.product a.button.loading::after { display: none !important; }

/* Sale badge */
.woocommerce span.onsale {
  background: var(--sc-gold) !important;
  color: var(--sc-black) !important;
  font-family: var(--sc-serif) !important;
  font-size: .75rem !important;
  font-weight: 500 !important;
  border-radius: 50% !important;
  width: 32px !important;
  height: 32px !important;
  line-height: 32px !important;
  min-height: 0 !important;
  padding: 0 !important;
  top: .85rem !important;
  right: .85rem !important;
  left: auto !important;
  z-index: 3 !important;
}

/* No products text */
.woocommerce-info {
  background: var(--sc-bg-2) !important;
  border-top-color: var(--sc-gold) !important;
  color: var(--sc-cream-2) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  font-family: var(--sc-sans) !important;
}

/* ============================================================
   9. WOOCOMMERCE — SINGLE PRODUCT
   ============================================================ */
.woocommerce div.product { background: transparent !important; }

.woocommerce div.product .woocommerce-product-gallery__wrapper {
  background: var(--sc-bg-2) !important;
}
.woocommerce div.product .woocommerce-product-gallery__wrapper img {
  background: var(--sc-bg-2) !important;
  aspect-ratio: 1/1;
  object-fit: cover;
}
/* Thumbnails */
.woocommerce div.product .flex-control-thumbs li {
  padding: .25rem !important;
}
.woocommerce div.product .flex-control-thumbs li img {
  border-radius: 0 !important;
  opacity: .6 !important;
  border: 1px solid transparent !important;
  transition: all var(--sc-tf) !important;
}
.woocommerce div.product .flex-control-thumbs li img:hover,
.woocommerce div.product .flex-control-thumbs li img.flex-active {
  opacity: 1 !important;
  border-color: var(--sc-gold-2) !important;
}

/* Product title */
.woocommerce div.product h1.product_title {
  font-family: var(--sc-serif) !important;
  font-size: clamp(2rem, 4vw, 3.2rem) !important;
  font-weight: 300 !important;
  color: var(--sc-cream) !important;
  margin-bottom: .75rem !important;
  letter-spacing: -.01em !important;
}

/* Category breadcrumb under title */
.woocommerce div.product .posted_in {
  font-size: .62rem !important;
  letter-spacing: .22em !important;
  text-transform: uppercase !important;
  color: var(--sc-gold-2) !important;
  display: block !important;
  margin-bottom: .75rem !important;
}
.woocommerce div.product .posted_in a { color: var(--sc-gold-2) !important; }
.woocommerce div.product .posted_in a:hover { color: var(--sc-gold) !important; }

/* Price */
.woocommerce div.product p.price,
.woocommerce div.product span.price {
  font-family: var(--sc-serif) !important;
  font-size: 1.65rem !important;
  font-weight: 400 !important;
  color: var(--sc-cream) !important;
  border: none !important;
  padding: 0 !important;
}

/* Short description */
.woocommerce div.product .woocommerce-product-details__short-description {
  font-size: .88rem !important;
  color: var(--sc-cream-2) !important;
  line-height: 1.78 !important;
  margin-bottom: 1.75rem !important;
}

/* Add to cart button */
.woocommerce div.product form.cart .button {
  background: var(--sc-gold) !important;
  color: var(--sc-black) !important;
  font-family: var(--sc-sans) !important;
  font-size: .62rem !important;
  letter-spacing: .28em !important;
  text-transform: uppercase !important;
  font-weight: 500 !important;
  border-radius: 0 !important;
  padding: 1.15rem 2.5rem !important;
  border: none !important;
  transition: background var(--sc-tf), color var(--sc-tf) !important;
  cursor: none !important;
}
.woocommerce div.product form.cart .button:hover {
  background: var(--sc-cream) !important;
  color: var(--sc-black) !important;
}

/* Qty input */
.woocommerce div.product form.cart .qty {
  background: var(--sc-bg-2) !important;
  border: 1px solid var(--sc-border) !important;
  border-radius: 0 !important;
  color: var(--sc-cream) !important;
  font-family: var(--sc-serif) !important;
  font-size: 1rem !important;
  height: auto !important;
  padding: .75rem 1rem !important;
  width: 64px !important;
  text-align: center !important;
}

/* Product tabs */
.woocommerce div.product .woocommerce-tabs ul.tabs {
  border-bottom: 1px solid var(--sc-border) !important;
  padding: 0 !important;
  margin: 0 0 2rem !important;
  background: transparent !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs::before {
  border-bottom: none !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li {
  background: transparent !important;
  border: none !important;
  border-radius: 0 !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li::before,
.woocommerce div.product .woocommerce-tabs ul.tabs li::after { display: none !important; }
.woocommerce div.product .woocommerce-tabs ul.tabs li a {
  font-family: var(--sc-sans) !important;
  font-size: .62rem !important;
  letter-spacing: .22em !important;
  text-transform: uppercase !important;
  color: var(--sc-cream-3) !important;
  padding: .8rem 1.5rem !important;
  font-weight: 300 !important;
  border: none !important;
  border-bottom: 2px solid transparent !important;
  background: transparent !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li.active > a {
  color: var(--sc-cream) !important;
  border-bottom-color: var(--sc-gold) !important;
  background: transparent !important;
}
.woocommerce div.product .woocommerce-tabs .panel {
  background: transparent !important;
  font-size: .88rem !important;
  color: var(--sc-cream-2) !important;
  line-height: 1.78 !important;
}

/* ============================================================
   10. GRADE BADGE COMPONENT
   ============================================================ */
.sc-grade {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--sc-serif);
  font-weight: 500;
  border-radius: 50%;
  border: 1px solid;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  line-height: 1;
}

/* On product cards (absolute) */
.woocommerce ul.products li.product .sc-grade {
  position: absolute !important;
  top: .85rem !important;
  right: .85rem !important;
  width: 30px !important;
  height: 30px !important;
  font-size: .78rem !important;
  z-index: 3 !important;
}

/* On single product (inline) */
.sc-product-grade {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.25rem 0;
  padding: 1rem 1.25rem;
  background: var(--sc-bg-2);
  border: 1px solid var(--sc-border);
  border-left: 3px solid var(--sc-gold);
}
.sc-grade--inline { width: 38px !important; height: 38px !important; font-size: .9rem !important; }
.sc-grade-label {
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--sc-cream-2);
}

/* Grade colors */
.sc-grade--s  { background: rgba(240,240,240,.12) !important; border-color: rgba(240,240,240,.7) !important; color: #F0F0F0 !important; }
.sc-grade--a  { background: rgba(196,163,90,.14) !important;  border-color: #C4A35A !important; color: #C4A35A !important; }
.sc-grade--ab { background: rgba(154,196,154,.10) !important; border-color: #9EC49E !important; color: #9EC49E !important; }
.sc-grade--b  { background: rgba(168,168,168,.10) !important; border-color: #A8A8A8 !important; color: #A8A8A8 !important; }
.sc-grade--bc { background: rgba(168,148,120,.10) !important; border-color: #A89478 !important; color: #A89478 !important; }
.sc-grade--c  { background: rgba(148,120,100,.10) !important; border-color: #947864 !important; color: #947864 !important; }

/* Grade table (custom Divi module / shortcode) */
.sc-grades-table {
  border: 1px solid var(--sc-border);
  overflow: hidden;
}
.sc-grade-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  align-items: center;
  gap: 2.5rem;
  padding: 1.75rem 2.5rem;
  border-bottom: 1px solid var(--sc-border);
  transition: background var(--sc-tf);
}
.sc-grade-row:last-child { border-bottom: none; }
.sc-grade-row:hover { background: var(--sc-bg-2); }
.sc-grade-row .sc-grade { width: 48px !important; height: 48px !important; font-size: 1rem !important; flex-shrink: 0; }
.sc-grade-info strong {
  display: block;
  font-family: var(--sc-serif) !important;
  font-size: 1.05rem !important;
  font-weight: 400 !important;
  color: var(--sc-cream) !important;
  margin-bottom: .3rem;
}
.sc-grade-info p {
  font-size: .8rem !important;
  color: var(--sc-cream-2) !important;
  line-height: 1.55 !important;
  max-width: 480px;
}

/* ============================================================
   11. AUTHENTICITY NOTICE
   ============================================================ */
.sc-authenticity {
  background: var(--sc-bg-2);
  border: 1px solid var(--sc-border);
  border-left: 3px solid var(--sc-gold-2);
  padding: 1.1rem 1.5rem;
  margin: 1.5rem 0;
}
.sc-authenticity__text {
  font-size: .8rem !important;
  color: var(--sc-cream-2) !important;
  line-height: 1.6 !important;
}
.sc-authenticity__text span { color: var(--sc-gold); margin-right: .5rem; }

/* ============================================================
   12. DIVI BUTTONS
   ============================================================ */
.et_pb_button,
.et_pb_promo_button {
  border-radius: 0 !important;
  text-transform: uppercase !important;
  letter-spacing: .22em !important;
  font-size: .62rem !important;
  font-family: var(--sc-sans) !important;
  font-weight: 500 !important;
  padding: 1.1rem 2.5rem !important;
  transition: background var(--sc-tf), color var(--sc-tf), transform var(--sc-tf) !important;
  cursor: none !important;
}
.et_pb_button::after { display: none !important; }

/* Primary (gold) */
.et_pb_button:not(.sc-btn-outline) {
  background: var(--sc-gold) !important;
  color: var(--sc-black) !important;
  border: none !important;
}
.et_pb_button:not(.sc-btn-outline):hover {
  background: var(--sc-cream) !important;
  color: var(--sc-black) !important;
}
/* Outline variant — add class "sc-btn-outline" in Divi */
.sc-btn-outline.et_pb_button {
  background: transparent !important;
  color: var(--sc-cream-2) !important;
  border: 1px solid var(--sc-border-2) !important;
}
.sc-btn-outline.et_pb_button:hover {
  background: var(--sc-bg-2) !important;
  color: var(--sc-cream) !important;
  border-color: var(--sc-border-3) !important;
}

/* WooCommerce buttons */
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #respond input#submit {
  background: var(--sc-gold) !important;
  color: var(--sc-black) !important;
  font-family: var(--sc-sans) !important;
  font-size: .62rem !important;
  letter-spacing: .25em !important;
  text-transform: uppercase !important;
  font-weight: 500 !important;
  border-radius: 0 !important;
  padding: 1rem 2rem !important;
  transition: background var(--sc-tf) !important;
  cursor: none !important;
  border: none !important;
}
.woocommerce a.button:hover,
.woocommerce button.button:hover {
  background: var(--sc-cream) !important;
  color: var(--sc-black) !important;
}

/* ============================================================
   13. WOOCOMMERCE — CART & CHECKOUT
   ============================================================ */
.woocommerce-cart table.cart,
.woocommerce-checkout form.checkout { background: transparent !important; }

.woocommerce table.shop_table {
  border: 1px solid var(--sc-border) !important;
  border-collapse: collapse !important;
  width: 100% !important;
}
.woocommerce table.shop_table th {
  font-family: var(--sc-sans) !important;
  font-size: .58rem !important;
  letter-spacing: .24em !important;
  text-transform: uppercase !important;
  color: var(--sc-cream-3) !important;
  font-weight: 400 !important;
  padding: 1rem 1.25rem !important;
  border-bottom: 1px solid var(--sc-border) !important;
  background: var(--sc-bg-2) !important;
}
.woocommerce table.shop_table td {
  border-bottom: 1px solid var(--sc-border) !important;
  padding: 1.25rem !important;
  color: var(--sc-cream-2) !important;
  background: transparent !important;
  vertical-align: middle !important;
}

/* Checkout fields */
.woocommerce-checkout .form-row label {
  font-size: .6rem !important;
  letter-spacing: .2em !important;
  text-transform: uppercase !important;
  color: var(--sc-cream-3) !important;
  font-weight: 400 !important;
  margin-bottom: .5rem !important;
}
.woocommerce-checkout .form-row input.input-text,
.woocommerce-checkout .form-row select,
.woocommerce-checkout .form-row textarea {
  background: var(--sc-bg-2) !important;
  border: 1px solid var(--sc-border) !important;
  border-radius: 0 !important;
  color: var(--sc-cream) !important;
  font-family: var(--sc-sans) !important;
  font-size: .85rem !important;
  font-weight: 300 !important;
  padding: .9rem 1.1rem !important;
  outline: none !important;
  box-shadow: none !important;
}
.woocommerce-checkout .form-row input.input-text:focus {
  border-color: rgba(196,163,90,.5) !important;
  background: var(--sc-bg-3) !important;
}

/* Order review */
#order_review {
  background: var(--sc-bg-1) !important;
  border: 1px solid var(--sc-border) !important;
  padding: 2rem !important;
}

/* ============================================================
   14. WOOCOMMERCE — PAGINATION & MISC
   ============================================================ */
.woocommerce nav.woocommerce-pagination ul {
  border: none !important;
}
.woocommerce nav.woocommerce-pagination ul li {
  border: none !important;
}
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  border: 1px solid var(--sc-border) !important;
  color: var(--sc-cream-2) !important;
  background: transparent !important;
  font-family: var(--sc-sans) !important;
  font-size: .72rem !important;
  border-radius: 0 !important;
  padding: .5rem 1rem !important;
  transition: all var(--sc-tf) !important;
}
.woocommerce nav.woocommerce-pagination ul li a:hover,
.woocommerce nav.woocommerce-pagination ul li span.current {
  background: var(--sc-gold-4) !important;
  color: var(--sc-gold) !important;
  border-color: var(--sc-gold-2) !important;
}

/* Breadcrumbs */
.woocommerce-breadcrumb {
  font-family: var(--sc-sans) !important;
  font-size: .62rem !important;
  letter-spacing: .18em !important;
  text-transform: uppercase !important;
  color: var(--sc-cream-3) !important;
  font-weight: 300 !important;
}
.woocommerce-breadcrumb a { color: var(--sc-cream-3) !important; transition: color var(--sc-tf) !important; }
.woocommerce-breadcrumb a:hover { color: var(--sc-cream) !important; }

/* Stars */
.woocommerce .star-rating::before { color: var(--sc-bg-4) !important; }
.woocommerce .star-rating span::before { color: var(--sc-gold) !important; }

/* Messages */
.woocommerce-message,
.woocommerce-info {
  background: var(--sc-bg-2) !important;
  border-top-color: var(--sc-gold) !important;
  color: var(--sc-cream) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  font-family: var(--sc-sans) !important;
}
.woocommerce-error {
  background: var(--sc-bg-2) !important;
  border-top-color: #C4695A !important;
  color: var(--sc-cream) !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}

/* ============================================================
   15. INPUTS (GLOBAL)
   ============================================================ */
input[type="text"], input[type="email"],
input[type="search"], input[type="password"],
input[type="tel"], input[type="url"],
textarea, select {
  background: var(--sc-bg-2) !important;
  border: 1px solid var(--sc-border) !important;
  border-radius: 0 !important;
  color: var(--sc-cream) !important;
  font-family: var(--sc-sans) !important;
  outline: none !important;
  transition: border-color var(--sc-tf) !important;
}
input:focus, textarea:focus, select:focus {
  border-color: rgba(196,163,90,.5) !important;
  box-shadow: none !important;
  outline: none !important;
}

/* ============================================================
   16. DIVI SECTION / ROW / MODULE OVERRIDES
   ============================================================ */
.et_pb_section { padding: 0 !important; }
.et_pb_row {
  width: min(var(--sc-max-w), 100% - 3rem) !important;
  max-width: none !important;
}
.et_pb_module { overflow: visible; }

/* Divi fullwidth header */
.et_pb_fullwidth_header .header-content-container,
.et_pb_fullwidth_header .header-content {
  text-align: left !important;
}
.et_pb_fullwidth_header_0 h1,
.et_pb_fullwidth_header h1 {
  font-family: var(--sc-serif) !important;
  font-size: clamp(5rem, 14vw, 14rem) !important;
  font-weight: 300 !important;
  letter-spacing: -.02em !important;
  line-height: .9 !important;
  color: var(--sc-cream) !important;
}
.et_pb_fullwidth_header .et_pb_fullwidth_header_subhead {
  font-family: var(--sc-sans) !important;
  font-size: .65rem !important;
  letter-spacing: .28em !important;
  text-transform: uppercase !important;
  color: var(--sc-cream-3) !important;
}

/* Divi text modules */
.et_pb_text h2 { font-size: clamp(1.8rem, 4vw, 3.5rem) !important; }
.et_pb_text h3 { font-size: clamp(1.4rem, 3vw, 2rem) !important; }
.et_pb_text .et-l { font-size: .62rem; letter-spacing: .3em; text-transform: uppercase; color: var(--sc-gold); }

/* ============================================================
   17. FOOTER (Divi)
   ============================================================ */
#main-footer {
  background: var(--sc-black) !important;
  border-top: 1px solid var(--sc-border) !important;
}
#main-footer .footer-widget-wrap h4,
#main-footer .widgettitle {
  font-family: var(--sc-sans) !important;
  font-size: .58rem !important;
  letter-spacing: .28em !important;
  text-transform: uppercase !important;
  color: var(--sc-cream-4) !important;
  font-weight: 400 !important;
  margin-bottom: 1.4rem !important;
  border: none !important;
  padding: 0 !important;
}
#main-footer .footer-widget li,
#main-footer .footer-widget-wrap li { border: none !important; }
#main-footer .footer-widget li a,
#main-footer .footer-widget-wrap li a {
  font-family: var(--sc-sans) !important;
  font-size: .82rem !important;
  color: var(--sc-cream-2) !important;
  font-weight: 300 !important;
  transition: color var(--sc-tf) !important;
}
#main-footer .footer-widget li a:hover { color: var(--sc-cream) !important; }
#main-footer #footer-bottom {
  border-top: 1px solid var(--sc-border) !important;
  background: transparent !important;
}
#main-footer #footer-bottom,
#main-footer #footer-bottom p {
  font-family: var(--sc-sans) !important;
  font-size: .65rem !important;
  color: var(--sc-cream-4) !important;
  letter-spacing: .1em !important;
}

/* ============================================================
   18. MAGNETIC BUTTON
   ============================================================ */
.sc-magnetic {
  display: inline-flex !important;
  will-change: transform;
  transition: transform .35s var(--sc-ease) !important;
}

/* ============================================================
   19. RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .woocommerce ul.products,
  .woocommerce-page ul.products {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 768px) {
  .sc-grade-row { grid-template-columns: 52px 1fr !important; gap: 1.25rem !important; padding: 1.4rem 1.25rem !important; }
}

@media (max-width: 640px) {
  .woocommerce ul.products,
  .woocommerce-page ul.products {
    grid-template-columns: 1fr 1fr !important;
    gap: 1rem !important;
  }
}

@media (max-width: 480px) {
  .woocommerce ul.products,
  .woocommerce-page ul.products {
    grid-template-columns: 1fr !important;
  }
}

/* Disable cursor on touch devices */
@media (hover: none) {
  body { cursor: auto !important; }
  a, button { cursor: pointer !important; }
  .sc-cursor-dot,
  .sc-cursor-ring { display: none !important; }
}

/* ============================================================
   20. GLOBAL WRAP UTILITY
   ============================================================ */
.sc-wrap {
  max-width: var(--sc-max-w);
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(1.25rem, 5vw, 5rem);
  padding-right: clamp(1.25rem, 5vw, 5rem);
}

/* ============================================================
   21. SHOP PAGE — HERO
   ============================================================ */
.sc-shop-page {
  background: var(--sc-bg);
  min-height: 60vh;
}

.sc-shop-hero {
  border-bottom: 1px solid var(--sc-border);
  padding: clamp(3rem, 6vw, 5.5rem) 0;
}
.sc-shop-hero__inner {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.sc-shop-hero__content { flex: 1; min-width: 240px; }
.sc-shop-hero__eyebrow {
  font-family: var(--sc-sans);
  font-size: .6rem;
  font-weight: 400;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--sc-gold);
  display: block;
  margin-bottom: 1.1rem;
}
.sc-shop-hero__title {
  font-family: var(--sc-serif) !important;
  font-size: clamp(2.8rem, 7vw, 6rem) !important;
  font-weight: 300 !important;
  color: var(--sc-cream) !important;
  line-height: .93 !important;
  letter-spacing: -.025em !important;
  margin: 0 !important;
}
.sc-shop-hero__title em { font-style: italic; color: var(--sc-cream-2) !important; }
.sc-shop-hero__desc {
  font-family: var(--sc-sans) !important;
  font-size: .85rem !important;
  font-weight: 300 !important;
  color: var(--sc-cream-2) !important;
  line-height: 1.68 !important;
  margin: 1.4rem 0 0 !important;
  max-width: 460px;
}
.sc-shop-hero__meta {
  display: flex;
  gap: 3rem;
  flex-shrink: 0;
  padding-bottom: .3rem;
}
.sc-shop-hero__stat { text-align: right; }
.sc-shop-hero__stat-n {
  display: block;
  font-family: var(--sc-serif);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 300;
  color: var(--sc-cream);
  line-height: 1;
}
.sc-shop-hero__stat-l {
  display: block;
  font-family: var(--sc-sans);
  font-size: .55rem;
  font-weight: 400;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--sc-cream-3);
  margin-top: .4rem;
}

/* ============================================================
   22. SHOP PAGE — FILTER BAR
   ============================================================ */
.sc-shop-filter {
  background: var(--sc-bg-1);
  border-bottom: 1px solid var(--sc-border);
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
  -webkit-overflow-scrolling: touch;
}
.sc-shop-filter::-webkit-scrollbar { display: none; }
.sc-shop-filter__inner {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  white-space: nowrap;
}
.sc-shop-filter__pill {
  font-family: var(--sc-sans) !important;
  font-size: .58rem !important;
  font-weight: 400 !important;
  letter-spacing: .18em !important;
  text-transform: uppercase !important;
  color: var(--sc-cream-3) !important;
  padding: .55rem 1.1rem !important;
  border: 1px solid var(--sc-border) !important;
  background: transparent !important;
  transition: all .26s ease !important;
  flex-shrink: 0;
  text-decoration: none !important;
  display: inline-block;
  cursor: pointer !important;
}
.sc-shop-filter__pill:hover {
  color: var(--sc-cream) !important;
  border-color: var(--sc-border-2) !important;
  background: var(--sc-bg-2) !important;
}
.sc-shop-filter__pill--active {
  color: var(--sc-gold) !important;
  border-color: var(--sc-gold) !important;
  background: var(--sc-gold-4) !important;
}
.sc-shop-filter__count {
  font-size: .5rem;
  opacity: .5;
  margin-left: .4rem;
}

/* ============================================================
   23. SHOP PAGE — SORT BAR + MAIN
   ============================================================ */
.sc-shop-main {
  padding-top: 2.5rem;
  padding-bottom: 5rem;
}
.sc-shop-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2.25rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--sc-border);
}
.sc-shop-bar__count {
  font-family: var(--sc-sans) !important;
  font-size: .6rem !important;
  font-weight: 400 !important;
  letter-spacing: .2em !important;
  text-transform: uppercase !important;
  color: var(--sc-cream-3) !important;
}

/* WooCommerce ordering select */
.sc-shop-bar__sort .woocommerce-ordering { margin: 0 !important; }
.sc-shop-bar__sort select,
.woocommerce-ordering select {
  background: var(--sc-bg-2) !important;
  border: 1px solid var(--sc-border) !important;
  border-radius: 0 !important;
  color: var(--sc-cream-2) !important;
  font-family: var(--sc-sans) !important;
  font-size: .6rem !important;
  letter-spacing: .12em !important;
  padding: .6rem 1.5rem .6rem .9rem !important;
  appearance: auto !important;
  cursor: pointer !important;
  outline: none !important;
  box-shadow: none !important;
}

/* ============================================================
   24. SHOP PAGE — EMPTY STATE
   ============================================================ */
.sc-shop-empty {
  text-align: center;
  padding: 6rem 2rem;
}
.sc-shop-empty__icon {
  font-size: 1.8rem;
  color: var(--sc-gold);
  opacity: .45;
  display: block;
  margin-bottom: 1.75rem;
}
.sc-shop-empty__title {
  font-family: var(--sc-serif) !important;
  font-size: clamp(1.8rem, 4vw, 2.8rem) !important;
  font-weight: 300 !important;
  color: var(--sc-cream) !important;
  margin-bottom: 1rem !important;
}
.sc-shop-empty__text {
  font-family: var(--sc-sans) !important;
  font-size: .88rem !important;
  font-weight: 300 !important;
  color: var(--sc-cream-2) !important;
  line-height: 1.72 !important;
  margin-bottom: 2.5rem !important;
}

/* ============================================================
   25. SC-CARD — Custom product card
   ============================================================ */
article.sc-card {
  display: flex !important;
  flex-direction: column !important;
  cursor: none !important;
  position: relative !important;
}

/* Image wrap — the clickable link */
.sc-card__img-wrap {
  position: relative !important;
  overflow: hidden !important;
  background: var(--sc-bg-2) !important;
  aspect-ratio: 3/4 !important;
  flex-shrink: 0 !important;
  display: block !important;
  text-decoration: none !important;
  border: none !important;
}

/* Image */
.sc-card .sc-card__img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center top !important;
  transition: transform .75s cubic-bezier(.16,1,.3,1) !important;
  display: block !important;
  margin: 0 !important;
  aspect-ratio: unset !important;
  background: var(--sc-bg-2) !important;
  border-radius: 0 !important;
}
.sc-card:hover .sc-card__img { transform: scale(1.055) !important; }

.sc-card__img--placeholder {
  width: 100% !important;
  height: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: var(--sc-bg-3) !important;
  color: var(--sc-border) !important;
  font-size: 1.8rem !important;
}

/* Grade badge */
.sc-card__grade-badge {
  position: absolute !important;
  top: .85rem !important;
  left: .85rem !important;
  right: auto !important;
  width: 28px !important;
  height: 28px !important;
  font-family: var(--sc-sans) !important;
  font-size: .6rem !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  background: rgba(6,6,6,.78) !important;
  border: 1px solid rgba(234,228,212,.22) !important;
  color: var(--sc-cream) !important;
  border-radius: 2px !important;
  backdrop-filter: blur(8px) !important;
  -webkit-backdrop-filter: blur(8px) !important;
  z-index: 4 !important;
  line-height: 1 !important;
}

/* "Nouveau" badge */
.sc-card__new-badge {
  position: absolute !important;
  top: .85rem !important;
  right: .85rem !important;
  font-family: var(--sc-sans) !important;
  font-size: .5rem !important;
  font-weight: 500 !important;
  letter-spacing: .16em !important;
  text-transform: uppercase !important;
  background: var(--sc-gold) !important;
  color: var(--sc-black) !important;
  padding: .22rem .55rem !important;
  border-radius: 1px !important;
  z-index: 4 !important;
}

/* Add-to-cart slide-up overlay */
.sc-card .sc-card__quick {
  position: absolute !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  top: auto !important;
  width: 100% !important;
  height: auto !important;
  aspect-ratio: unset !important;
  inset: auto 0 0 0 !important;
  padding: .9rem 1rem !important;
  background: rgba(6,6,6,.92) !important;
  color: var(--sc-cream) !important;
  font-family: var(--sc-sans) !important;
  font-size: .56rem !important;
  font-weight: 400 !important;
  letter-spacing: .26em !important;
  text-transform: uppercase !important;
  text-align: center !important;
  text-decoration: none !important;
  transform: translateY(101%) !important;
  transition: transform .3s cubic-bezier(.16,1,.3,1) !important;
  z-index: 3 !important;
  border: none !important;
  border-radius: 0 !important;
  display: block !important;
  cursor: none !important;
  opacity: 1 !important;
  line-height: 1 !important;
}
.sc-card:hover .sc-card__quick { transform: translateY(0) !important; }
.sc-card__quick--sold {
  background: rgba(6,6,6,.7) !important;
  color: var(--sc-cream-3) !important;
}
.sc-card__quick.loading::after { display: none !important; }

/* Card info below image */
.sc-card__info { padding: .9rem 0 0; }
.sc-card__brand {
  font-family: var(--sc-sans) !important;
  font-size: .54rem !important;
  font-weight: 500 !important;
  letter-spacing: .22em !important;
  text-transform: uppercase !important;
  color: var(--sc-cream-3) !important;
  display: block !important;
  margin-bottom: .3rem !important;
}
.sc-card__title-link {
  text-decoration: none !important;
  display: block !important;
}
.sc-card .sc-card__title {
  font-family: var(--sc-serif) !important;
  font-size: clamp(.95rem, 1.4vw, 1.08rem) !important;
  font-weight: 300 !important;
  color: var(--sc-cream) !important;
  line-height: 1.28 !important;
  margin: 0 0 .55rem !important;
  padding: 0 !important;
  letter-spacing: .01em !important;
}
.sc-card__title-link:hover .sc-card__title { color: var(--sc-cream-2) !important; }
.sc-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .5rem;
}
.sc-card .sc-card__price {
  font-family: var(--sc-serif) !important;
  font-size: .95rem !important;
  font-weight: 400 !important;
  color: var(--sc-cream) !important;
}
.sc-card .sc-card__price .woocommerce-Price-amount,
.sc-card .sc-card__price bdi,
.sc-card .sc-card__price .amount { color: var(--sc-cream) !important; }
.sc-card .sc-card__price del .amount { opacity: .45 !important; font-size: .8rem !important; }
.sc-card .sc-card__price ins { text-decoration: none !important; }
.sc-card__grade-lbl {
  font-family: var(--sc-sans) !important;
  font-size: .54rem !important;
  font-weight: 300 !important;
  color: var(--sc-cream-3) !important;
  letter-spacing: .06em !important;
  text-align: right;
  flex-shrink: 0;
}

/* Prevent old WC card rules from conflicting */
.woocommerce ul.products li.product .sc-card img {
  margin-bottom: 0 !important;
}
.woocommerce ul.products li.product .sc-card a.button,
.woocommerce ul.products li.product .sc-card button.sc-card__quick {
  /* Fully handled by sc-card__quick above */
  position: absolute !important;
  inset: auto 0 0 0 !important;
  height: auto !important;
  aspect-ratio: unset !important;
}
.woocommerce ul.products li.product:hover .sc-card button.sc-card__quick {
  opacity: 1 !important;
}

/* ============================================================
   26. CTA BUTTON (global)
   ============================================================ */
.sc-cta {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  padding: 1.1rem 2.5rem;
  font-family: var(--sc-sans) !important;
  font-size: .62rem !important;
  font-weight: 400 !important;
  letter-spacing: .22em !important;
  text-transform: uppercase !important;
  background: var(--sc-gold) !important;
  color: var(--sc-black) !important;
  text-decoration: none !important;
  border: none !important;
  cursor: none !important;
  transition: background var(--sc-tf) !important;
}
.sc-cta:hover { background: var(--sc-cream) !important; color: var(--sc-black) !important; }
.sc-cta__arr {
  display: inline-block;
  width: 1.4rem; height: 1px;
  background: currentColor;
  position: relative;
  transition: width .2s ease;
}
.sc-cta__arr::after {
  content: '';
  position: absolute;
  right: 0; top: 50%;
  transform: translateY(-50%) rotate(45deg);
  width: 5px; height: 5px;
  border-right: 1px solid currentColor;
  border-top: 1px solid currentColor;
}
.sc-cta:hover .sc-cta__arr { width: 2.2rem; }

/* ============================================================
   27. CONTACT PAGE
   ============================================================ */
.sc-contact {
  background: var(--sc-bg);
  padding: clamp(4rem, 9vw, 7rem) 0;
}
.sc-contact__inner {
  max-width: var(--sc-max-w);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 5rem);
}
.sc-contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: start;
}
.sc-contact__tag {
  font-family: var(--sc-sans);
  font-size: .62rem;
  font-weight: 400;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--sc-gold);
  display: block;
  margin-bottom: 1.25rem;
}
.sc-contact__title {
  font-family: var(--sc-serif) !important;
  font-size: clamp(2.5rem, 6vw, 5rem) !important;
  font-weight: 300 !important;
  color: var(--sc-cream) !important;
  line-height: .93 !important;
  letter-spacing: -.02em !important;
  margin: 0 0 1.75rem !important;
}
.sc-contact__title em { font-style: italic; color: var(--sc-cream-2) !important; }
.sc-contact__text {
  font-family: var(--sc-sans) !important;
  font-size: .88rem !important;
  font-weight: 300 !important;
  color: var(--sc-cream-2) !important;
  line-height: 1.72 !important;
  margin: 0 0 2.5rem !important;
  max-width: 440px;
}
.sc-contact__methods {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
a.sc-contact__method,
.sc-contact__method {
  display: flex !important;
  align-items: flex-start !important;
  gap: 1.25rem !important;
  padding: 1.4rem 1.5rem !important;
  background: var(--sc-bg-2) !important;
  border: 1px solid var(--sc-border) !important;
  border-left: 3px solid var(--sc-gold) !important;
  text-decoration: none !important;
  transition: background var(--sc-tf) !important;
  cursor: none !important;
}
a.sc-contact__method:hover { background: var(--sc-bg-3) !important; }
.sc-contact__method-icon {
  font-size: 1.1rem;
  line-height: 1;
  color: var(--sc-gold);
  flex-shrink: 0;
  margin-top: .25rem;
}
.sc-contact__method-title {
  font-family: var(--sc-sans) !important;
  font-size: .55rem !important;
  font-weight: 500 !important;
  letter-spacing: .22em !important;
  text-transform: uppercase !important;
  color: var(--sc-cream-3) !important;
  display: block !important;
  margin-bottom: .4rem !important;
}
.sc-contact__method-val {
  font-family: var(--sc-serif) !important;
  font-size: 1.1rem !important;
  font-weight: 300 !important;
  color: var(--sc-cream) !important;
  display: block !important;
}
.sc-contact__method-sub {
  font-family: var(--sc-sans) !important;
  font-size: .7rem !important;
  font-weight: 300 !important;
  color: var(--sc-cream-3) !important;
  display: block !important;
  margin-top: .25rem !important;
  line-height: 1.5 !important;
}

/* Contact form panel */
.sc-contact__form-wrap {
  background: var(--sc-bg-1);
  border: 1px solid var(--sc-border);
  padding: clamp(2rem, 4vw, 3rem);
}
.sc-contact__form-title {
  font-family: var(--sc-serif) !important;
  font-size: clamp(1.4rem, 2.5vw, 1.8rem) !important;
  font-weight: 300 !important;
  color: var(--sc-cream) !important;
  margin: 0 0 1.75rem !important;
  padding-bottom: 1.25rem !important;
  border-bottom: 1px solid var(--sc-border) !important;
}
.sc-form-row { margin-bottom: 1.2rem; }
.sc-form-label {
  display: block;
  font-family: var(--sc-sans) !important;
  font-size: .56rem !important;
  font-weight: 400 !important;
  letter-spacing: .22em !important;
  text-transform: uppercase !important;
  color: var(--sc-cream-3) !important;
  margin-bottom: .55rem !important;
}
.sc-form-row input[type="text"],
.sc-form-row input[type="email"],
.sc-form-row input[type="tel"],
.sc-form-row textarea,
.sc-form-row select {
  width: 100% !important;
  background: var(--sc-bg) !important;
  border: 1px solid var(--sc-border) !important;
  border-radius: 0 !important;
  color: var(--sc-cream) !important;
  font-family: var(--sc-sans) !important;
  font-size: .85rem !important;
  font-weight: 300 !important;
  padding: .9rem 1.1rem !important;
  outline: none !important;
  transition: border-color .26s ease !important;
  box-shadow: none !important;
}
.sc-form-row textarea { min-height: 130px !important; resize: vertical !important; }
.sc-form-row input:focus,
.sc-form-row textarea:focus { border-color: var(--sc-gold) !important; }
.sc-form-submit {
  width: 100%;
  background: var(--sc-gold) !important;
  color: var(--sc-black) !important;
  font-family: var(--sc-sans) !important;
  font-size: .62rem !important;
  letter-spacing: .28em !important;
  text-transform: uppercase !important;
  font-weight: 500 !important;
  padding: 1.15rem 2rem !important;
  border: none !important;
  border-radius: 0 !important;
  cursor: none !important;
  transition: background .26s ease !important;
  margin-top: .5rem !important;
  display: block;
}
.sc-form-submit:hover { background: var(--sc-cream) !important; }

/* ============================================================
   28. LEGAL / STATIC PAGES
   ============================================================ */
.sc-page-hero {
  border-bottom: 1px solid var(--sc-border);
  padding: clamp(3rem, 6vw, 5rem) 0;
}
.sc-page-hero__inner {
  max-width: var(--sc-max-w);
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 5vw, 5rem);
}
.sc-page-hero__tag {
  font-family: var(--sc-sans);
  font-size: .6rem;
  font-weight: 400;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--sc-gold);
  display: block;
  margin-bottom: 1rem;
}
.sc-page-hero__title {
  font-family: var(--sc-serif) !important;
  font-size: clamp(2rem, 5vw, 4rem) !important;
  font-weight: 300 !important;
  color: var(--sc-cream) !important;
  line-height: .95 !important;
  letter-spacing: -.02em !important;
  margin: 0 !important;
}
.sc-page-content {
  max-width: var(--sc-max-w);
  margin: 0 auto;
  padding: clamp(3rem, 6vw, 5rem) clamp(1.25rem, 5vw, 5rem);
}
.sc-page-content h2 {
  font-family: var(--sc-serif) !important;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem) !important;
  font-weight: 300 !important;
  color: var(--sc-cream) !important;
  margin: 2.5rem 0 1rem !important;
  letter-spacing: -.01em !important;
}
.sc-page-content p {
  font-family: var(--sc-sans) !important;
  font-size: .88rem !important;
  font-weight: 300 !important;
  color: var(--sc-cream-2) !important;
  line-height: 1.78 !important;
  margin-bottom: 1.25rem !important;
}
.sc-page-content a { color: var(--sc-gold) !important; text-decoration: underline !important; }
.sc-page-content a:hover { color: var(--sc-cream) !important; }
.sc-page-content ul,
.sc-page-content ol {
  padding-left: 1.5rem !important;
  margin-bottom: 1.25rem !important;
}
.sc-page-content li {
  font-family: var(--sc-sans) !important;
  font-size: .88rem !important;
  font-weight: 300 !important;
  color: var(--sc-cream-2) !important;
  line-height: 1.72 !important;
  margin-bottom: .5rem !important;
}

/* ============================================================
   29. RESPONSIVE ADDITIONS
   ============================================================ */
@media (max-width: 960px) {
  .sc-shop-hero__inner { flex-direction: column; align-items: flex-start; }
  .sc-shop-hero__meta { flex-direction: row; }
  .sc-contact__grid { grid-template-columns: 1fr; }
}
@media (max-width: 700px) {
  .sc-shop-hero__meta { gap: 2rem; }
  .sc-shop-bar { flex-direction: column; align-items: flex-start; }
}


/* ============================================================
   Section 30 — Full-width layout: hide Divi sidebar on content pages
   ============================================================ */

/* Pages: Contact (105), Mentions légales (107), CGV (108),
   Confidentialité (109), Livraison & Retours (110) */
.page-id-105 #sidebar,
.page-id-107 #sidebar,
.page-id-108 #sidebar,
.page-id-109 #sidebar,
.page-id-110 #sidebar {
  display: none !important;
}

.page-id-105 #left-area,
.page-id-107 #left-area,
.page-id-108 #left-area,
.page-id-109 #left-area,
.page-id-110 #left-area {
  width: 100% !important;
  float: none !important;
  padding-right: 0 !important;
}

/* Hide Divi default page title (we use custom heroes) */
.page-id-105 .et_pb_section .entry-title,
.page-id-107 .et_pb_section .entry-title,
.page-id-108 .et_pb_section .entry-title,
.page-id-109 .et_pb_section .entry-title,
.page-id-110 .et_pb_section .entry-title,
.page-id-105 h1.entry-title,
.page-id-107 h1.entry-title,
.page-id-108 h1.entry-title,
.page-id-109 h1.entry-title,
.page-id-110 h1.entry-title {
  display: none !important;
}

/* Shop page — also full width */
.woocommerce #sidebar,
.woocommerce-page #sidebar,
.post-type-archive-product #sidebar {
  display: none !important;
}

.woocommerce #left-area,
.woocommerce-page #left-area,
.post-type-archive-product #left-area {
  width: 100% !important;
  float: none !important;
  padding-right: 0 !important;
}

/* Remove Divi blog widget junk in footer on archive pages */
.post-type-archive-product .et_pb_widget_area,
.woocommerce-page .et_pb_widget_area {
  display: none !important;
}

/* ============================================================
   31. SHOP TICKER
   ============================================================ */
.sc-ticker-shop {
  background: var(--sc-black);
  overflow: hidden;
  border-bottom: 1px solid var(--sc-border);
  border-top: 1px solid var(--sc-border);
  padding: .9rem 0;
}
.sc-ticker-shop__track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: sc-ticker-shop 38s linear infinite;
  will-change: transform;
  gap: 0;
}
.sc-ticker-shop:hover .sc-ticker-shop__track { animation-play-state: paused; }
.sc-ticker-shop__segment {
  font-family: var(--sc-sans);
  font-size: .58rem;
  font-weight: 300;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--sc-cream-3);
  white-space: nowrap;
  padding: 0 3rem;
  transition: color .22s ease;
}
.sc-ticker-shop:hover .sc-ticker-shop__segment { color: var(--sc-cream-2); }
@keyframes sc-ticker-shop {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-33.3333%); }
}

/* ============================================================
   32. TRUST STRIP
   ============================================================ */
.sc-trust-strip {
  background: var(--sc-bg-1);
  border-bottom: 1px solid var(--sc-border);
  padding: 1.1rem 0;
}
.sc-trust-strip__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.2rem, 3vw, 3rem);
  flex-wrap: wrap;
}
.sc-trust-strip__item {
  display: flex;
  align-items: center;
  gap: .6rem;
  font-family: var(--sc-sans);
  font-size: .6rem;
  font-weight: 300;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--sc-cream-3);
}
.sc-trust-strip__item svg { flex-shrink: 0; stroke: var(--sc-cream-3); opacity: .7; }
.sc-trust-strip__sep { color: var(--sc-border-2); font-size: 1rem; line-height: 1; }
@media (max-width: 600px) {
  .sc-trust-strip__sep { display: none; }
  .sc-trust-strip__inner { gap: 1rem; justify-content: flex-start; }
}

/* ============================================================
   33. CARD BADGES + WISHLIST
   ============================================================ */
.sc-card__badges {
  position: absolute !important;
  top: .85rem !important; left: .85rem !important; right: .85rem !important;
  display: flex !important;
  align-items: flex-start !important;
  justify-content: space-between !important;
  gap: .4rem !important;
  pointer-events: none !important;
  z-index: 4 !important;
}
.sc-card__badges .sc-card__grade-badge {
  position: static !important;
  top: auto !important; left: auto !important;
  width: auto !important; height: auto !important;
  font-size: .5rem !important;
  letter-spacing: .12em !important;
  text-transform: uppercase !important;
  padding: .28rem .6rem !important;
}
.sc-card__badge {
  font-family: var(--sc-sans) !important;
  font-size: .48rem !important; font-weight: 500 !important;
  letter-spacing: .16em !important; text-transform: uppercase !important;
  padding: .28rem .6rem !important; line-height: 1 !important; border-radius: 1px !important;
}
.sc-card__badge--new { background: var(--sc-gold) !important; color: var(--sc-black) !important; }
.sc-card__badge--sale { background: rgba(204,16,32,.15) !important; color: var(--sc-gold) !important; border: 1px solid var(--sc-gold-2) !important; }
.sc-card__badge--sold { background: rgba(234,228,212,.08) !important; color: var(--sc-cream-3) !important; border: 1px solid var(--sc-border) !important; }
.sc-card__wish {
  position: absolute !important;
  top: .75rem !important; right: .75rem !important;
  width: 36px !important; height: 36px !important;
  background: rgba(6,6,6,.72) !important;
  border: 1px solid var(--sc-border) !important;
  border-radius: 50% !important;
  display: flex !important; align-items: center !important; justify-content: center !important;
  cursor: pointer !important; color: var(--sc-cream-3) !important;
  transition: color .22s ease, border-color .22s ease, background .22s ease !important;
  z-index: 5 !important; padding: 0 !important; margin: 0 !important;
  backdrop-filter: blur(6px) !important; -webkit-backdrop-filter: blur(6px) !important;
  pointer-events: auto !important;
}
.sc-card__wish:hover { color: var(--sc-gold) !important; border-color: var(--sc-gold-2) !important; background: rgba(6,6,6,.9) !important; }
.sc-card__wish--active { color: var(--sc-gold) !important; border-color: var(--sc-gold) !important; background: var(--sc-gold-4) !important; }
.sc-card__wish--active svg path { fill: var(--sc-gold) !important; }
@keyframes sc-wish-pulse {
  0%   { transform: scale(1); }
  35%  { transform: scale(1.35); }
  70%  { transform: scale(.88); }
  100% { transform: scale(1); }
}
.sc-card__wish--pulse { animation: sc-wish-pulse .45s var(--sc-ease) !important; }

/* ============================================================
   34. PRODUCT GRID v2 — 3 cols, no translateY hover bug
   ============================================================ */
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  width: auto !important; float: none !important; margin: 0 !important; clear: none !important;
  transition: box-shadow .3s ease !important;
}
.woocommerce ul.products li.product:hover,
.woocommerce-page ul.products li.product:hover {
  box-shadow: 0 12px 40px rgba(0,0,0,.45) !important;
}
.woocommerce ul.products li.product { opacity: 0; transform: translateY(18px); transition: opacity .55s var(--sc-ease), transform .55s var(--sc-ease), box-shadow .3s ease; }
.woocommerce ul.products li.product.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   35. TOAST NOTIFICATION
   ============================================================ */
#sc-toast, .sc-toast {
  position: fixed !important; bottom: 2rem !important; left: 50% !important;
  transform: translateX(-50%) translateY(120%) !important;
  background: var(--sc-bg-2) !important; border: 1px solid var(--sc-border-2) !important;
  color: var(--sc-cream) !important; font-family: var(--sc-sans) !important;
  font-size: .72rem !important; font-weight: 300 !important; letter-spacing: .06em !important;
  padding: .85rem 1.6rem !important; white-space: nowrap !important; z-index: 99999 !important;
  transition: transform .4s var(--sc-ease), opacity .4s ease !important; opacity: 0 !important;
  backdrop-filter: blur(12px) !important; -webkit-backdrop-filter: blur(12px) !important;
  max-width: 90vw !important;
}
#sc-toast.sc-toast--visible, .sc-toast--visible { transform: translateX(-50%) translateY(0) !important; opacity: 1 !important; }
.sc-toast--success { border-color: rgba(120,180,120,.35) !important; }
.sc-toast--error   { border-color: var(--sc-gold-2) !important; }
.sc-card__img-wrap--added .sc-card__img { filter: brightness(1.18) !important; transition: filter .3s ease !important; }

/* ============================================================
   36. SCROLL REVEAL
   ============================================================ */
.sc-reveal { opacity: 0; transform: translateY(28px); transition: opacity .65s var(--sc-ease), transform .65s var(--sc-ease); }
.sc-reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   37. SINGLE PRODUCT ENHANCED
   ============================================================ */
.single-product .product_title {
  font-family: var(--sc-serif) !important; font-size: clamp(2rem, 4vw, 3.5rem) !important;
  font-weight: 300 !important; color: var(--sc-cream) !important;
  letter-spacing: -.02em !important; line-height: .95 !important; margin: 0 0 1rem !important;
}
.single-product .single_add_to_cart_button {
  font-family: var(--sc-sans) !important; font-size: .62rem !important; font-weight: 500 !important;
  letter-spacing: .26em !important; text-transform: uppercase !important;
  background: var(--sc-gold) !important; color: var(--sc-black) !important;
  border: none !important; border-radius: 0 !important;
  padding: 1.1rem 3rem !important; width: 100% !important; transition: background .26s ease !important;
}
.single-product .single_add_to_cart_button:hover { background: var(--sc-cream) !important; color: var(--sc-black) !important; }

/* ============================================================
   38. RESPONSIVE v1.4
   ============================================================ */
@media (max-width: 768px) {
  .sc-shop-hero__stat { text-align: left; }
  .sc-trust-strip__inner { gap: .8rem; padding-left: 1rem; }
  .sc-ticker-shop__segment { padding: 0 1.5rem; font-size: .52rem; }
}
@media (max-width: 480px) {
  .sc-card__badges { top: .6rem !important; left: .6rem !important; right: .6rem !important; }
  .sc-card__wish { top: .5rem !important; right: .5rem !important; width: 30px !important; height: 30px !important; }
  .sc-shop-hero__title { font-size: clamp(2.2rem, 9vw, 3.5rem) !important; }
}

/* ═══════════════════════════════════════════════════════════
   § 41 — NAV NOIRE + LOGO BLANC + LISIBILITÉ GLOBALE
   SelectCo v1.4.2 | correctifs urgents
   ═══════════════════════════════════════════════════════════ */

/* ── 1. sc-ticker : fond SOMBRE (pas rouge) — une bande ───── */
.sc-ticker {
    background: #0e0e0e !important;
    border-bottom: 1px solid rgba(255,255,255,.07) !important;
}
.sc-ticker span, .sc-ticker__track span {
    color: rgba(210,198,178,.7) !important;
}
.sc-ticker .sep { color: rgba(204,16,32,.55) !important; }

/* ── 2. sc-trust : masqué (doublon de bande) ──────────────── */
.sc-trust { display: none !important; }

/* ── 3. sc-nav : fond NOIR opaque ─────────────────────────── */
.sc-nav,
header.sc-nav,
#scNav {
    background: rgba(5,5,5,.98) !important;
    border-bottom: 1px solid rgba(255,255,255,.06) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
}

/* ── 4. Logo → BLANC ──────────────────────────────────────── */
.sc-nav img,
.sc-nav__logo img,
.sc-nav a img {
    filter: brightness(0) invert(1) !important;
    opacity: .92 !important;
}

/* ── 5. Liens nav → blancs lisibles ───────────────────────── */
.sc-nav a,
.sc-nav__link,
.sc-nav__links a,
.sc-nav__inner a {
    color: rgba(225,215,198,.85) !important;
}
.sc-nav a:hover,
.sc-nav__link:hover,
.sc-nav__links a:hover { color: #fff !important; opacity: 1 !important; }
.sc-nav__link--active,
.sc-nav a[aria-current] { color: var(--gold) !important; }

/* ── 6. Icônes nav (search, wishlist, cart) ───────────────── */
.sc-nav__actions, .sc-nav__actions a,
.sc-nav__actions svg path, .sc-nav__actions svg circle,
.sc-nav__actions svg polyline, .sc-nav__actions button {
    color: rgba(225,215,198,.8) !important;
    stroke: rgba(225,215,198,.8) !important;
    fill: none !important;
}
.sc-nav__cart-count {
    background: var(--gold) !important;
    color: #fff !important;
}

/* ── 7. Barre catégories → sombre ─────────────────────────── */
.sc-nav__cats, .sc-nav__cats-inner {
    background: #080808 !important;
    border-bottom: 1px solid rgba(255,255,255,.05) !important;
}
.sc-nav__cat, .sc-nav__cats a {
    color: rgba(195,183,162,.7) !important;
    letter-spacing: .12em;
    font-size: .68rem !important;
}
.sc-nav__cat:hover, .sc-nav__cats a:hover,
.sc-nav__cat--active { color: #fff !important; }
.sc-nav__cat--active::after { background: var(--gold) !important; }

/* ── 8. Page contact : fond sombre garanti ─────────────────── */
.page-id-105 #page-container,
.page-id-105 .et_pb_section,
.page-id-105 .et_pb_row,
.page-id-105 .et_pb_column { background-color: transparent !important; }
.page-id-105 #et-main-area,
.page-id-105 #main,
.page-id-105 #left-area { background: #060606 !important; }
.page-id-105 #sidebar,
.page-id-105 aside.widget-area { display: none !important; }
.page-id-105 #left-area { width: 100% !important; float: none !important; padding-right: 0 !important; }

/* ── 9. Formulaire contact → dark raffiné ─────────────────── */
.sc-contact-form input,
.sc-contact-form textarea,
.sc-contact-form select,
.wpcf7-form input, .wpcf7-form textarea {
    background: rgba(255,255,255,.05) !important;
    border: 1px solid rgba(255,255,255,.12) !important;
    color: #e8ddd0 !important;
}
.wpcf7-form input:focus, .wpcf7-form textarea:focus {
    border-color: rgba(204,16,32,.5) !important;
    outline: none !important;
    box-shadow: 0 0 0 2px rgba(204,16,32,.12) !important;
}
.wpcf7-form input::placeholder, .wpcf7-form textarea::placeholder {
    color: rgba(255,255,255,.3) !important;
}

/* ── 10. Footer → sombre cohérent ─────────────────────────── */
#main-footer, footer {
    background: #050505 !important;
    border-top: 1px solid rgba(255,255,255,.07) !important;
}
#main-footer *, footer * { color: rgba(190,178,158,.6) !important; }
#main-footer a:hover, footer a:hover { color: #fff !important; }

/* ── 11. WooCommerce select tri ───────────────────────────── */
.woocommerce-ordering select,
.woocommerce form select {
    background: #111 !important;
    color: rgba(200,190,170,.8) !important;
    border: 1px solid rgba(255,255,255,.12) !important;
}

/* ── 12. Scrollbar élégante ───────────────────────────────── */
::-webkit-scrollbar { width: 5px; height: 5px; }
::-webkit-scrollbar-track { background: #050505; }
::-webkit-scrollbar-thumb { background: #222; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: #3a3a3a; }

/* ── 13. Sélection de texte ───────────────────────────────── */
::selection { background: rgba(204,16,32,.3); color: #fff; }
::-moz-selection { background: rgba(204,16,32,.3); color: #fff; }

/* ── 14. ArchivesCategories widget caché ──────────────────── */
.site-footer .widget, .widget_archive, .widget_categories,
.post-type-archive-product .widget-area { display: none !important; }


/* § 42 — BANDE UNIQUE + ANNOUNCE v1.4.3 */
body > .sc-ticker { display: none !important; }
/* sc-announce shown — injected via PHP wp_body_open */
.sc-ticker, .sc-ticker__track, .sc-ticker span {
  background: #0e0e0e !important;
  color: rgba(210,198,178,.75) !important;
}
body, #page-container, .et_pb_section, .et-l, .et_pb_row, .et_pb_column {
  color: #d4c9b8 !important;
}
.et_pb_section { background-color: #060606 !important; }
.sc-shop-filter__pill { color: rgba(200,185,162,.7) !important; border-color: rgba(255,255,255,.1) !important; }
.sc-shop-filter__pill--active, .sc-shop-filter__pill:hover { color: #fff !important; border-color: rgba(255,255,255,.35) !important; }
.sc-shop-bar__count, .sc-shop-bar { color: rgba(200,185,162,.7) !important; }


/* § 43 — SECTIONS BLANCHES HOMEPAGE v1.4.4 */
.sc-editorial,
.sc-arrivals,
.sc-proof,
.sc-proof__num-cell {
  background: #060606 !important;
  background-color: #060606 !important;
}
.sc-editorial *,
.sc-arrivals *,
.sc-proof * {
  color: #d4c9b8 !important;
  border-color: rgba(255,255,255,.08) !important;
}
.sc-editorial h1,.sc-editorial h2,.sc-editorial h3,
.sc-arrivals h1,.sc-arrivals h2,.sc-arrivals h3,
.sc-proof h1,.sc-proof h2,.sc-proof h3 {
  color: #f0e8d8 !important;
}
/* Boutons CTA restent blancs avec texte foncé */
.sc-editorial .sc-cta, .sc-arrivals .sc-cta {
  background: #fff !important;
  color: #0a0a0a !important;
}
/* Proof numbers */
.sc-proof__num { color: var(--gold) !important; }
/* Ticker Divi (ticker[1]) reste visible mais discret */
.elementor-element-437d394 .sc-ticker {
  display: block !important;
  background: #0e0e0e !important;
}
/* Images de produit placeholder */
.sc-card__img--placeholder { background: #111 !important; }
/* Fix lisibilité input WooCommerce */
.woocommerce-ordering select,
select.orderby { background: #111 !important; color: #d4c9b8 !important; border: 1px solid rgba(255,255,255,.12) !important; }


/* § 44 — TOUTES SECTIONS CLAIRES → SOMBRES v1.4.5 */
.sc-process,
.sc-newsletter,
.sc-proof__nums,
.sc-proof__nums.sc-reveal,
.sc-trust {
  background: #0a0a0a !important;
  background-color: #0a0a0a !important;
}
.sc-process *,
.sc-newsletter *,
.sc-proof__nums * {
  color: #d4c9b8 !important;
}
.sc-process h1,.sc-process h2,.sc-process h3,.sc-process h4,
.sc-newsletter h1,.sc-newsletter h2,.sc-newsletter h3 {
  color: #f0e8d8 !important;
}
/* Numéros process */
.sc-process__num,
.sc-process__step-n { color: var(--gold) !important; }
/* Newsletter input */
.sc-newsletter input[type=email],
.sc-newsletter input[type=text] {
  background: rgba(255,255,255,.06) !important;
  border: 1px solid rgba(255,255,255,.15) !important;
  color: #e8ddd0 !important;
}
.sc-newsletter input::placeholder { color: rgba(255,255,255,.35) !important; }
/* Ligne de scroll hero */
.sc-hero__scroll-line { background: rgba(255,255,255,.15) !important; }
/* Proof nums */
.sc-proof__num { color: var(--gold) !important; }
.sc-proof__label { color: rgba(210,198,178,.6) !important; }
/* Ticker Divi visible et lisible */
.elementor-element-437d394 .sc-ticker {
  background: #0e0e0e !important;
  border-top: 1px solid rgba(255,255,255,.06) !important;
  border-bottom: 1px solid rgba(255,255,255,.06) !important;
}
.elementor-element-437d394 .sc-ticker span,
.elementor-element-437d394 .sc-ticker__track span {
  color: rgba(210,198,178,.7) !important;
}


/* § 45 — PILLS BOUTIQUE + READABILITY FIX v1.4.6 */
.sc-shop-filter__pill,
.sc-shop-filter__pill:link,
.sc-shop-filter__pill:visited {
  color: rgba(210,198,178,.8) !important;
  border-color: rgba(255,255,255,.12) !important;
  background: transparent !important;
}
.sc-shop-filter__pill--active,
.sc-shop-filter__pill--active:link,
.sc-shop-filter__pill--active:visited {
  background: var(--gold) !important;
  color: #fff !important;
  border-color: var(--gold) !important;
}
.sc-shop-filter__pill:hover {
  color: #fff !important;
  border-color: rgba(255,255,255,.4) !important;
}
.sc-shop-filter__count {
  color: rgba(255,255,255,.4) !important;
}
/* Bar count + sort */
.sc-shop-bar__count { color: rgba(210,198,178,.6) !important; }
/* Force all WooCommerce text readable */
.woocommerce .sc-shop-page *,
.sc-shop-page * { color: rgba(210,198,178,.85) !important; }
.sc-shop-page h1, .sc-shop-page h2, .sc-shop-page h3,
.sc-shop-hero__title, .sc-shop-hero__eyebrow { color: #f0e8d8 !important; }
.sc-shop-page a { color: rgba(210,198,178,.85) !important; }
.sc-shop-page a:hover { color: #fff !important; }
/* Fix card text on dark bg */
.sc-card__title, .sc-card__brand { color: #e8ddd0 !important; }
.sc-card__price { color: #e8ddd0 !important; }
.sc-card__grade-lbl { color: rgba(200,185,162,.55) !important; }


/* ── §46: Hide all Elementor duplicate overlays (keep only body-direct children) ── */
.elementor-widget .sc-nav,
.elementor-element .sc-nav,
.elementor-widget .sc-announce,
.elementor-element .sc-announce,
.elementor-widget .sc-ticker,
.elementor-element .sc-ticker {
  display: none !important;
}


/* ============================================================
   42. LIGHT THEME — FOND BLANC (source: prototype localhost)
   Fond : #FFFFFF · Texte : #1A1714 · Cartes : crème #F2ECE4
   Sections qui RESTENT sombres : héro boutique, ticker, footer
   ============================================================ */

/* ── Fond et texte global ────────────────────────────────── */
body,
#page-container {
  background: #FFFFFF !important;
  color: #1A1714 !important;
}
h1, h2, h3, h4, h5, h6 {
  color: #1A1714 !important;
}
p, .et_pb_text_inner p {
  color: rgba(26,23,20,.68) !important;
}

/* ── Sections Divi transparentes ────────────────────────── */
#main-content, .et_pb_section, .et_pb_row_inner, .et_pb_column {
  background: transparent;
}

/* ── Shop Hero — reste SOMBRE ────────────────────────────── */
.sc-shop-hero {
  background: #060606 !important;
  border-color: rgba(234,228,212,.09) !important;
}
.sc-shop-hero .sc-shop-hero__eyebrow { color: #CC1020 !important; }
.sc-shop-hero .sc-shop-hero__title   { color: #EAE4D4 !important; }
.sc-shop-hero .sc-shop-hero__title em{ color: rgba(234,228,212,.72) !important; }
.sc-shop-hero .sc-shop-hero__desc    { color: rgba(234,228,212,.72) !important; }
.sc-shop-hero .sc-shop-hero__stat-n  { color: #EAE4D4 !important; }
.sc-shop-hero .sc-shop-hero__stat-l  { color: rgba(234,228,212,.38) !important; }

/* ── Ticker global — reste SOMBRE ───────────────────────── */
.sc-ticker { background: #060606 !important; }

/* ── Trust strip — CLAIR ────────────────────────────────── */
.sc-trust-strip {
  background: #F9F7F4 !important;
  border-color: rgba(26,23,20,.1) !important;
}
.sc-trust-strip__item { color: rgba(26,23,20,.55) !important; }
.sc-trust-strip__item svg { stroke: rgba(26,23,20,.45) !important; opacity: 1 !important; }
.sc-trust-strip__sep { color: rgba(26,23,20,.2) !important; }

/* ── Filtre catégories — CLAIR ──────────────────────────── */
.sc-shop-filter {
  background: #FFFFFF !important;
  border-color: rgba(26,23,20,.1) !important;
}
.sc-shop-filter__pill {
  color: rgba(26,23,20,.45) !important;
  border-color: rgba(26,23,20,.15) !important;
  background: transparent !important;
}
.sc-shop-filter__pill:hover {
  color: #1A1714 !important;
  border-color: rgba(26,23,20,.35) !important;
  background: rgba(26,23,20,.04) !important;
}
.sc-shop-filter__pill--active {
  color: #CC1020 !important;
  border-color: #CC1020 !important;
  background: rgba(204,16,32,.06) !important;
}

/* ── Barre de tri — CLAIRE ──────────────────────────────── */
.sc-shop-bar { border-color: rgba(26,23,20,.1) !important; }
.sc-shop-bar__count { color: rgba(26,23,20,.45) !important; }
.sc-shop-bar__sort select,
.woocommerce-ordering select {
  background: #FFFFFF !important;
  border-color: rgba(26,23,20,.18) !important;
  color: #1A1714 !important;
}

/* ── Cartes produit — CLAIRES ───────────────────────────── */
.sc-card__img-wrap { background: #F2ECE4 !important; }
.sc-card .sc-card__img { background: #F2ECE4 !important; }
.sc-card__img--placeholder { background: #F2ECE4 !important; color: #C8BFB5 !important; }
.sc-card__brand { color: rgba(26,23,20,.42) !important; }
.sc-card .sc-card__title { color: #1A1714 !important; }
.sc-card__title-link:hover .sc-card__title { color: rgba(26,23,20,.6) !important; }
.sc-card .sc-card__price { color: #1A1714 !important; }
.sc-card .sc-card__price .woocommerce-Price-amount,
.sc-card .sc-card__price bdi,
.sc-card .sc-card__price .amount { color: #1A1714 !important; }
.sc-card__grade-lbl { color: rgba(26,23,20,.42) !important; }
.sc-card__wish {
  background: rgba(255,255,255,.88) !important;
  border-color: rgba(26,23,20,.15) !important;
  color: rgba(26,23,20,.55) !important;
  backdrop-filter: none !important;
}
.sc-card__wish:hover {
  background: #FFFFFF !important;
  border-color: #CC1020 !important;
  color: #CC1020 !important;
}
.sc-card__wish--active {
  background: rgba(204,16,32,.08) !important;
  border-color: #CC1020 !important;
  color: #CC1020 !important;
}
.sc-card__badge--sold {
  background: rgba(26,23,20,.06) !important;
  color: rgba(26,23,20,.42) !important;
  border-color: rgba(26,23,20,.15) !important;
}
.woocommerce ul.products li.product:hover,
.woocommerce-page ul.products li.product:hover {
  box-shadow: 0 8px 32px rgba(26,23,20,.1) !important;
}

/* ── Grille WC — textes sombres ─────────────────────────── */
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product h2 { color: #1A1714 !important; }
.woocommerce ul.products li.product .price,
.woocommerce ul.products li.product .price .woocommerce-Price-amount { color: #1A1714 !important; }
.woocommerce ul.products li.product img { background: #F2ECE4 !important; }

/* ── Formulaires — CLAIRS ───────────────────────────────── */
input[type="text"], input[type="email"],
input[type="search"], input[type="password"],
input[type="tel"], input[type="url"],
textarea, select {
  background: #FFFFFF !important;
  border-color: rgba(26,23,20,.18) !important;
  color: #1A1714 !important;
}

/* ── Messages WC — CLAIRS ───────────────────────────────── */
.woocommerce-message,
.woocommerce-info { background: #F9F7F4 !important; color: #1A1714 !important; }
.woocommerce-error { background: #F9F7F4 !important; color: #1A1714 !important; }
.woocommerce-breadcrumb,
.woocommerce-breadcrumb a { color: rgba(26,23,20,.42) !important; }
.woocommerce-breadcrumb a:hover { color: #1A1714 !important; }
.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  border-color: rgba(26,23,20,.15) !important;
  color: rgba(26,23,20,.6) !important;
}

/* ── Contact page — CLAIR ───────────────────────────────── */
.sc-contact { background: #FFFFFF !important; }
.sc-contact__title { color: #1A1714 !important; }
.sc-contact__title em { color: rgba(26,23,20,.65) !important; }
.sc-contact__text { color: rgba(26,23,20,.68) !important; }
.sc-contact__method-title { color: rgba(26,23,20,.42) !important; }
.sc-contact__method-val { color: #1A1714 !important; }
.sc-contact__method-sub { color: rgba(26,23,20,.45) !important; }
a.sc-contact__method,
.sc-contact__method {
  background: #F9F7F4 !important;
  border-color: rgba(26,23,20,.1) !important;
}
a.sc-contact__method:hover { background: #F2ECE4 !important; }
.sc-contact__form-wrap {
  background: #F9F7F4 !important;
  border-color: rgba(26,23,20,.1) !important;
}
.sc-contact__form-title { color: #1A1714 !important; border-color: rgba(26,23,20,.1) !important; }
.sc-form-label { color: rgba(26,23,20,.45) !important; }
.sc-form-row input[type="text"], .sc-form-row input[type="email"],
.sc-form-row input[type="tel"], .sc-form-row textarea, .sc-form-row select {
  background: #FFFFFF !important;
  border-color: rgba(26,23,20,.18) !important;
  color: #1A1714 !important;
}

/* ── Produit unique — CLAIR ─────────────────────────────── */
.single-product .product_title { color: #1A1714 !important; }
.single-product .woocommerce-product-details__short-description,
.single-product .woocommerce-product-details__short-description p { color: rgba(26,23,20,.68) !important; }
.single-product .price,
.single-product .price .amount,
.single-product .price bdi { color: #1A1714 !important; }
.woocommerce div.product h1.product_title { color: #1A1714 !important; }
.woocommerce div.product p.price,
.woocommerce div.product span.price { color: #1A1714 !important; }
.woocommerce div.product .woocommerce-product-details__short-description,
.woocommerce div.product .woocommerce-product-details__short-description p { color: rgba(26,23,20,.68) !important; }
.woocommerce div.product .woocommerce-product-gallery__wrapper,
.woocommerce div.product .woocommerce-product-gallery__wrapper img { background: #F2ECE4 !important; }
.woocommerce div.product .qty {
  background: #FFFFFF !important;
  border-color: rgba(26,23,20,.2) !important;
  color: #1A1714 !important;
}
.woocommerce div.product .woocommerce-tabs ul.tabs li a { color: rgba(26,23,20,.45) !important; }
.woocommerce div.product .woocommerce-tabs ul.tabs li.active a { color: #1A1714 !important; }
.single-product .related > h2,
.single-product .upsells > h2 { color: #1A1714 !important; border-color: rgba(26,23,20,.1) !important; }

/* ── Grade table — CLAIR ────────────────────────────────── */
.sc-product-grade { background: #F9F7F4 !important; border-color: rgba(26,23,20,.1) !important; }
.sc-grade-label { color: rgba(26,23,20,.55) !important; }
.sc-grade-info strong { color: #1A1714 !important; }
.sc-grade-info p { color: rgba(26,23,20,.68) !important; }
.sc-grade-row { border-color: rgba(26,23,20,.08) !important; }
.sc-grade-row:hover { background: #F9F7F4 !important; }
.sc-grades-table { border-color: rgba(26,23,20,.1) !important; }

/* ── État vide boutique — CLAIR ─────────────────────────── */
.sc-shop-empty__title { color: #1A1714 !important; }
.sc-shop-empty__text { color: rgba(26,23,20,.68) !important; }

/* ── Pages légales / statiques — CLAIRES ───────────────── */
.sc-page-hero { border-color: rgba(26,23,20,.1) !important; }
.sc-page-hero__title { color: #1A1714 !important; }
.sc-page-content h2 { color: #1A1714 !important; }
.sc-page-content p { color: rgba(26,23,20,.68) !important; }
.sc-page-content a { color: #CC1020 !important; }
.sc-page-content a:hover { color: #1A1714 !important; }
