/*
Theme Name: Swiss Boissons
Theme URI: https://swissboissons.ch
Author: SOGESTI
Author URI: https://sogesti.ch
Description: Thème WooCommerce professionnel pour Swiss Boissons — distributeur de boissons en Suisse. Design blanc épuré, moderne et dynamique.
Version: 2.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: swiss-boissons
Tags: woocommerce, e-commerce, custom-colors, custom-logo, full-width-template, threaded-comments, translation-ready
*/

/* =============================================================
   VARIABLES CSS
   ============================================================= */
:root {
  --red:           #C8102E;
  --red-dark:      #a50d24;
  --red-light:     #fdf0f3;
  --black:         #111111;
  --gray-900:      #1a1a1a;
  --gray-800:      #333333;
  --gray-600:      #555555;
  --gray-400:      #888888;
  --gray-200:      #cccccc;
  --gray-100:      #eeeeee;
  --gray-50:       #f5f5f5;
  --white:         #ffffff;
  --border:        #f0f0f0;
  --border-mid:    #e0e0e0;

  --font-main:     Arial, Helvetica, sans-serif;
  --font-serif:    Georgia, 'Times New Roman', serif;

  --nav-h:         70px;
  --topbar-h:      36px;
  --header-total:  106px;

  --radius-sm:     2px;
  --radius-md:     4px;

  --transition:    0.2s ease;
  --container:     1280px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-main);
  font-size: 14px;
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--font-main); }
ul, ol { list-style: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
}

/* =============================================================
   TOPBAR
   ============================================================= */
.site-topbar {
  background: var(--gray-900);
  height: var(--topbar-h);
  display: flex;
  align-items: center;
}

.topbar-inner {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topbar-message {
  font-size: 10px;
  color: #aaaaaa;
  letter-spacing: 0.08em;
}

.topbar-message strong { color: var(--white); }

.topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 10px;
  color: #666;
  letter-spacing: 0.06em;
}

.topbar-lang { display: flex; gap: 10px; }
.topbar-lang a { color: #555; font-weight: 600; }
.topbar-lang a:hover,
.topbar-lang a.active { color: var(--white); }
.topbar-sep { color: #333; }

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

.site-header.scrolled {
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
}

.logo-icon svg { display: block; }

.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-swiss {
  font-size: 17px;
  font-weight: 900;
  color: var(--black);
  letter-spacing: 0.06em;
}
.logo-boissons {
  font-size: 10px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.22em;
  margin-top: 2px;
}

/* Primary Nav */
.primary-nav {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
  justify-content: center;
}

.primary-nav > li { position: relative; }

.primary-nav > li > a {
  display: block;
  padding: 8px 11px;
  font-size: 10px;
  font-weight: 600;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: 0.09em;
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
  white-space: nowrap;
}

.primary-nav > li > a:hover,
.primary-nav > li > a:focus,
.primary-nav > li.current-menu-item > a,
.primary-nav > li.current-menu-ancestor > a {
  color: var(--black);
  border-bottom-color: var(--red);
}

.primary-nav > li.menu-promo > a {
  background: var(--red);
  color: var(--white);
  border-bottom: none;
  padding: 8px 14px;
}
.primary-nav > li.menu-promo > a:hover { background: var(--red-dark); }

/* Dropdown */
.primary-nav .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid var(--border-mid);
  border-top: 2px solid var(--red);
  min-width: 220px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all 0.2s ease;
  z-index: 100;
  box-shadow: 0 8px 24px rgba(0,0,0,0.08);
}

.primary-nav > li:hover > .sub-menu,
.primary-nav > li:focus-within > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.primary-nav .sub-menu a {
  display: block;
  padding: 9px 18px;
  font-size: 11px;
  color: var(--gray-600);
  font-weight: 500;
  transition: background var(--transition), color var(--transition);
}

.primary-nav .sub-menu a:hover {
  background: var(--red-light);
  color: var(--red);
  padding-left: 22px;
}

/* Header Actions */
.header-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }

.header-search {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--gray-50);
  border: 1px solid var(--border-mid);
  padding: 8px 14px;
  width: 190px;
  transition: border-color var(--transition);
}
.header-search:focus-within { border-color: var(--red); }
.header-search input {
  background: transparent;
  border: none;
  outline: none;
  font-size: 11px;
  color: var(--gray-600);
  width: 100%;
  font-family: var(--font-main);
}
.header-search input::placeholder { color: var(--gray-200); }

.icon-btn {
  width: 38px;
  height: 38px;
  border: 1px solid var(--border-mid);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color var(--transition);
  position: relative;
}
.icon-btn:hover { border-color: var(--red); }
.icon-btn svg { display: block; }

.cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  background: var(--red);
  color: var(--white);
  font-size: 8px;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

/* Mobile toggle */
.mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 6px;
}
.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--black);
  transition: transform var(--transition);
}

/* =============================================================
   MINI CART DRAWER
   ============================================================= */
.mini-cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.4);
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.mini-cart-overlay.open { opacity: 1; visibility: visible; }

.mini-cart-drawer {
  position: fixed;
  top: 0;
  right: -420px;
  width: 400px;
  height: 100vh;
  background: var(--white);
  z-index: 1200;
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.4,0,0.2,1);
  box-shadow: -4px 0 30px rgba(0,0,0,0.1);
}
.mini-cart-drawer.open { right: 0; }

.mini-cart-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mini-cart-header h3 {
  font-size: 14px;
  font-weight: 700;
  color: var(--black);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.mini-cart-close {
  background: none;
  border: 1px solid var(--border-mid);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--gray-600);
  transition: border-color var(--transition);
}
.mini-cart-close:hover { border-color: var(--red); color: var(--red); }

.mini-cart-body { flex: 1; overflow-y: auto; padding: 16px 24px; }

.mini-cart-item {
  display: grid;
  grid-template-columns: 70px 1fr auto;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  align-items: start;
}
.mini-cart-item-img { background: var(--gray-50); aspect-ratio: 1; display: flex; align-items: center; justify-content: center; }
.mini-cart-item-img img { max-height: 60px; object-fit: contain; }
.mini-cart-item-name { font-size: 12px; color: var(--black); font-weight: 600; margin-bottom: 4px; }
.mini-cart-item-price { font-size: 13px; font-weight: 700; color: var(--red); }
.mini-cart-item-remove { background: none; border: none; color: var(--gray-200); font-size: 18px; line-height: 1; padding: 0; }
.mini-cart-item-remove:hover { color: var(--red); }

.mini-cart-footer { padding: 20px 24px; border-top: 1px solid var(--border); }
.mini-cart-shipping-bar { margin-bottom: 16px; }
.mini-cart-shipping-text { font-size: 10px; color: var(--gray-600); margin-bottom: 6px; }
.mini-cart-shipping-track { height: 3px; background: var(--border); }
.mini-cart-shipping-progress { height: 100%; background: var(--red); transition: width 0.4s; }
.mini-cart-total { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.mini-cart-total-label { font-size: 11px; font-weight: 700; color: var(--black); text-transform: uppercase; letter-spacing: 0.06em; }
.mini-cart-total-price { font-size: 20px; font-weight: 900; color: var(--black); }
.mini-cart-checkout {
  display: block;
  width: 100%;
  background: var(--red);
  color: var(--white);
  text-align: center;
  padding: 14px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: none;
  transition: background var(--transition);
}
.mini-cart-checkout:hover { background: var(--red-dark); }

/* =============================================================
   BOUTONS GLOBAUX
   ============================================================= */
.btn,
button.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: none;
  transition: all var(--transition);
  cursor: pointer;
  font-family: var(--font-main);
}

.btn-red, .btn-primary { background: var(--red); color: var(--white); }
.btn-red:hover, .btn-primary:hover { background: var(--red-dark); color: var(--white); }

.btn-outline {
  background: transparent;
  color: var(--black);
  border: 1.5px solid var(--border-mid);
}
.btn-outline:hover { border-color: var(--black); }

.btn-dark { background: var(--black); color: var(--white); }
.btn-dark:hover { background: var(--gray-800); color: var(--white); }

/* =============================================================
   HERO PLEIN ÉCRAN
   ============================================================= */
.site-hero {
  position: relative;
  min-height: 520px;
  background: var(--white);
  display: flex;
  overflow: hidden;
}

.hero-bg-mosaic {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
}

.hero-bg-cell {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg-cell:nth-child(1) { background: #f8f0e8; }
.hero-bg-cell:nth-child(2) { background: #1a0a0a; }
.hero-bg-cell:nth-child(3) { background: #f5f5f5; }
.hero-bg-cell:nth-child(4) { background: #0f1a0f; }
.hero-bg-cell:nth-child(5) { background: #1a1410; }
.hero-bg-cell img { width: 100%; height: 100%; object-fit: cover; opacity: 0.35; filter: saturate(0.4); }

.hero-white-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.92);
}

.hero-content-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  align-items: center;
}

.hero-content {
  padding: 60px 32px;
  max-width: 640px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
}
.hero-eyebrow-line { width: 32px; height: 2px; background: var(--red); flex-shrink: 0; }
.hero-eyebrow-text {
  font-size: 10px;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(36px, 5vw, 52px);
  font-weight: 400;
  color: var(--black);
  line-height: 1.05;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}
.hero-title em { color: var(--red); font-style: italic; }
.hero-title strong { font-weight: 700; font-style: normal; font-family: var(--font-main); }

.hero-subtitle {
  font-size: 13px;
  color: var(--gray-400);
  line-height: 1.8;
  margin-bottom: 32px;
  max-width: 460px;
}

.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 40px; }

.hero-stats {
  display: flex;
  gap: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--border);
}

.hero-stat-number {
  font-size: 28px;
  font-weight: 900;
  color: var(--black);
  line-height: 1;
}
.hero-stat-number span { color: var(--red); }
.hero-stat-label {
  font-size: 9px;
  color: var(--gray-200);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

.hero-side-panel {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 30%;
  display: flex;
  flex-direction: column;
}

.hero-panel-top {
  flex: 1.4;
  background: var(--gray-50);
  border-left: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.hero-panel-top img { max-height: 200px; object-fit: contain; }
.hero-panel-label {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: var(--red);
  color: var(--white);
  font-size: 8px;
  font-weight: 700;
  padding: 4px 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-panel-bot {
  display: grid;
  grid-template-columns: 1fr 1fr;
  flex: 1;
}
.hero-panel-cell {
  background: var(--white);
  border-left: 1px solid var(--border);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-panel-cell:nth-child(even) { background: var(--gray-50); }
.hero-panel-cell img { max-height: 80px; object-fit: contain; }

/* =============================================================
   CATEGORIES STRIP
   ============================================================= */
.categories-strip {
  display: flex;
  border-top: 1px solid var(--border);
  border-bottom: 3px solid var(--border);
  background: var(--white);
}

.category-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 18px 8px;
  border-right: 1px solid var(--border);
  text-decoration: none;
  transition: background var(--transition);
  cursor: pointer;
}
.category-item:last-child { border-right: none; }
.category-item:hover { background: #fff5f7; }
.category-item:hover .cat-label { color: var(--red); }

.cat-thumbnail {
  width: 48px;
  height: 48px;
  background: var(--gray-50);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  border: 1px solid var(--border);
}
.cat-thumbnail img { max-height: 36px; object-fit: contain; }

.cat-label {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gray-400);
  transition: color var(--transition);
}
.cat-count { font-size: 9px; color: var(--gray-200); margin-top: 2px; }

/* =============================================================
   SECTIONS GÉNÉRIQUES
   ============================================================= */
.section { padding: 50px 0; }
.section-alt { background: var(--gray-50); }

.section-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 28px;
}

.section-title {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--black);
  letter-spacing: -0.01em;
}
.section-title em { color: var(--red); font-style: italic; }

.section-link {
  font-size: 10px;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: gap var(--transition);
}
.section-link:hover { gap: 10px; }
.section-link::after { content: '→'; }

/* =============================================================
   PRODUCT CARDS
   ============================================================= */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--border-mid);
  transition: border-color var(--transition), transform var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}
.product-card:hover { border-color: var(--red); transform: translateY(-2px); }

.product-card-image {
  position: relative;
  height: 200px;
  background: var(--gray-50);
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.product-card-image img {
  max-height: 170px;
  object-fit: contain;
  transition: transform 0.4s ease;
}
.product-card:hover .product-card-image img { transform: scale(1.04); }

.product-badge-vol {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--black);
  color: var(--white);
  font-size: 7px;
  font-weight: 700;
  padding: 3px 8px;
  letter-spacing: 0.1em;
}

.product-badge-promo {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--red);
  color: var(--white);
  font-size: 8px;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 50px;
}

.product-badge-new {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--black);
  color: var(--white);
  font-size: 7px;
  font-weight: 700;
  padding: 3px 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-card-body {
  padding: 14px 16px 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.product-card-cat {
  font-size: 8px;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 5px;
}

.product-card-name {
  font-size: 12px;
  color: var(--gray-800);
  line-height: 1.45;
  margin-bottom: 12px;
  flex: 1;
}

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

.product-price { line-height: 1.1; }
.price-current {
  font-size: 17px;
  font-weight: 900;
  color: var(--black);
}
.price-unit {
  font-size: 9px;
  color: var(--gray-200);
  font-weight: 400;
}
.price-old {
  font-size: 10px;
  color: var(--gray-200);
  text-decoration: line-through;
  display: block;
}

.add-to-cart-btn {
  background: var(--black);
  color: var(--white);
  border: none;
  padding: 9px 14px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: background var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}
.add-to-cart-btn:hover { background: var(--red); }

/* =============================================================
   FEATURED PRODUCT BANNER
   ============================================================= */
.featured-product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--white);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.featured-product-image {
  background: var(--gray-50);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 320px;
  position: relative;
  border-right: 1px solid var(--border);
  padding: 40px;
}
.featured-product-image img { max-height: 260px; object-fit: contain; }

.featured-product-specs {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  padding: 0 20px;
}

.spec-chip {
  background: var(--white);
  border: 1px solid var(--border-mid);
  padding: 6px 12px;
  text-align: center;
}
.spec-chip-value {
  font-size: 13px;
  font-weight: 900;
  color: var(--black);
  display: block;
  line-height: 1;
}
.spec-chip-label {
  font-size: 8px;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  display: block;
  margin-top: 2px;
}

.featured-product-info {
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.featured-eyebrow-line { width: 24px; height: 2px; background: var(--red); }
.featured-eyebrow-text {
  font-size: 9px;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.featured-category {
  font-size: 9px;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 10px;
}

.featured-name {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 6px;
}

.featured-producer {
  font-size: 11px;
  color: var(--gray-400);
  margin-bottom: 22px;
}

.featured-price {
  font-size: 36px;
  font-weight: 900;
  color: var(--black);
  margin-bottom: 8px;
  line-height: 1;
}
.featured-price small {
  font-size: 13px;
  color: var(--gray-200);
  font-weight: 400;
}

.featured-meta {
  display: flex;
  gap: 20px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.featured-meta-item {
  font-size: 10px;
  color: var(--gray-400);
  display: flex;
  align-items: center;
  gap: 6px;
}
.featured-meta-dot {
  width: 4px;
  height: 4px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
}

.featured-sku {
  font-size: 10px;
  color: var(--gray-200);
  margin-bottom: 24px;
}
.featured-sku span { color: var(--gray-400); }

/* =============================================================
   USP BAR
   ============================================================= */
.usp-bar {
  background: var(--red);
  padding: 28px 0;
}

.usp-grid {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.usp-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 0 24px;
  border-right: 1px solid rgba(255,255,255,0.2);
}
.usp-item:first-child { padding-left: 0; }
.usp-item:last-child { border-right: none; }

.usp-icon {
  width: 34px;
  height: 34px;
  background: rgba(255,255,255,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.usp-icon svg { display: block; }

.usp-title {
  font-size: 10px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.usp-text {
  font-size: 9px;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}

/* =============================================================
   MARQUEE STRIP
   ============================================================= */
.marquee-strip {
  background: var(--black);
  height: 40px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 60px;
  animation: marquee-scroll 20s linear infinite;
  white-space: nowrap;
}

.marquee-item {
  font-size: 10px;
  font-weight: 700;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  display: flex;
  align-items: center;
  gap: 20px;
}
.marquee-item::after {
  content: '·';
  color: var(--red);
  font-size: 14px;
}

@keyframes marquee-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =============================================================
   SHOP / ARCHIVE PRODUITS
   ============================================================= */
.shop-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 32px;
  padding: 40px 0;
}

.shop-sidebar { }

.sidebar-block {
  margin-bottom: 28px;
  border: 1px solid var(--border);
  padding: 20px;
}
.sidebar-block-title {
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--black);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--red);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sidebar-cat-list { display: flex; flex-direction: column; gap: 6px; }
.sidebar-cat-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
  font-size: 11px;
  color: var(--gray-600);
  transition: color var(--transition);
  cursor: pointer;
}
.sidebar-cat-item:last-child { border-bottom: none; }
.sidebar-cat-item:hover,
.sidebar-cat-item.active { color: var(--red); }
.sidebar-cat-count {
  font-size: 9px;
  background: var(--gray-50);
  padding: 2px 7px;
  color: var(--gray-400);
}

.shop-main { }

.shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.shop-count {
  font-size: 11px;
  color: var(--gray-400);
}
.shop-sort select {
  border: 1px solid var(--border-mid);
  padding: 7px 12px;
  font-size: 11px;
  font-family: var(--font-main);
  color: var(--gray-600);
  background: var(--white);
  outline: none;
  cursor: pointer;
}

.shop-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

/* =============================================================
   SINGLE PRODUCT
   ============================================================= */
.single-product-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  padding: 50px 0;
}

.product-gallery-main {
  background: var(--gray-50);
  border: 1px solid var(--border);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  position: relative;
}
.product-gallery-main img { max-height: 340px; object-fit: contain; }

.product-gallery-thumbs {
  display: flex;
  gap: 8px;
  margin-top: 10px;
}
.thumb {
  width: 70px;
  height: 70px;
  background: var(--gray-50);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color var(--transition);
}
.thumb:hover, .thumb.active { border-color: var(--red); }
.thumb img { max-height: 54px; object-fit: contain; }

.product-summary { }

.product-breadcrumb {
  font-size: 10px;
  color: var(--gray-400);
  margin-bottom: 16px;
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
}
.product-breadcrumb a { color: var(--gray-400); }
.product-breadcrumb a:hover { color: var(--red); }
.product-breadcrumb span { color: var(--gray-200); }

.product-category-badge {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 10px;
}

.product-title {
  font-family: var(--font-serif);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 400;
  color: var(--black);
  line-height: 1.2;
  margin-bottom: 8px;
}

.product-producer {
  font-size: 12px;
  color: var(--gray-400);
  margin-bottom: 20px;
}

.product-price-block { margin-bottom: 20px; }
.product-price-main {
  font-size: 32px;
  font-weight: 900;
  color: var(--black);
  line-height: 1;
}
.product-price-unit { font-size: 13px; color: var(--gray-400); font-weight: 400; }
.product-price-old {
  font-size: 16px;
  color: var(--gray-200);
  text-decoration: line-through;
  margin-right: 8px;
}

.product-specs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 24px;
}
.spec-box {
  background: var(--gray-50);
  border: 1px solid var(--border);
  padding: 10px 14px;
  text-align: center;
}
.spec-box-value {
  font-size: 15px;
  font-weight: 900;
  color: var(--black);
  display: block;
  line-height: 1.1;
}
.spec-box-label {
  font-size: 8px;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.product-add-row {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  align-items: stretch;
}
.qty-input {
  display: flex;
  align-items: center;
  border: 1px solid var(--border-mid);
  flex-shrink: 0;
}
.qty-btn {
  width: 36px;
  height: 100%;
  background: var(--gray-50);
  border: none;
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  justify-content: center;
}
.qty-btn:hover { background: var(--red); color: var(--white); }
.qty-number {
  width: 44px;
  text-align: center;
  border: none;
  border-left: 1px solid var(--border);
  border-right: 1px solid var(--border);
  outline: none;
  font-size: 13px;
  font-weight: 700;
  font-family: var(--font-main);
  padding: 10px 0;
}

.product-add-btn {
  flex: 1;
  background: var(--red);
  color: var(--white);
  border: none;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: background var(--transition);
}
.product-add-btn:hover { background: var(--red-dark); }

.product-meta-table { width: 100%; border-collapse: collapse; margin-bottom: 20px; }
.product-meta-table td {
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 11px;
}
.product-meta-table td:first-child {
  font-size: 9px;
  font-weight: 700;
  color: var(--gray-400);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  width: 120px;
}
.product-meta-table td:last-child { color: var(--gray-800); }

.product-trust {
  display: flex;
  gap: 20px;
  padding: 16px 0;
  border-top: 1px solid var(--border);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  color: var(--gray-400);
}

/* =============================================================
   CART PAGE
   ============================================================= */
.cart-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px;
  padding: 50px 0;
  align-items: start;
}

.cart-table { width: 100%; border-collapse: collapse; }
.cart-table thead tr { border-bottom: 2px solid var(--black); }
.cart-table th {
  padding: 12px 0;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--black);
  text-align: left;
}
.cart-table th:last-child { text-align: right; }
.cart-table td {
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.cart-table td:last-child { text-align: right; }

.cart-product-cell { display: flex; align-items: center; gap: 16px; }
.cart-product-img {
  width: 80px;
  height: 80px;
  background: var(--gray-50);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cart-product-img img { max-height: 64px; object-fit: contain; }
.cart-product-name { font-size: 13px; color: var(--black); font-weight: 600; margin-bottom: 4px; }
.cart-product-remove {
  font-size: 10px;
  color: var(--gray-200);
  text-decoration: none;
}
.cart-product-remove:hover { color: var(--red); }

.cart-totals {
  background: var(--gray-50);
  border: 1px solid var(--border-mid);
  padding: 28px;
  position: sticky;
  top: 120px;
}
.cart-totals-title {
  font-size: 14px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--black);
  margin-bottom: 20px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--red);
}
.cart-total-row {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 11px;
}
.cart-total-row.grand-total {
  font-size: 15px;
  font-weight: 900;
  border-bottom: none;
  padding-top: 14px;
}
.cart-checkout-btn {
  display: block;
  width: 100%;
  background: var(--red);
  color: var(--white);
  text-align: center;
  padding: 15px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  margin-top: 18px;
  transition: background var(--transition);
}
.cart-checkout-btn:hover { background: var(--red-dark); }

/* =============================================================
   CHECKOUT
   ============================================================= */
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px;
  padding: 50px 0;
  align-items: start;
}

.form-group { margin-bottom: 18px; }
.form-label {
  display: block;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--black);
  margin-bottom: 6px;
}
.form-label .required { color: var(--red); }
.form-input {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border-mid);
  font-family: var(--font-main);
  font-size: 12px;
  color: var(--gray-800);
  outline: none;
  transition: border-color var(--transition);
  background: var(--white);
}
.form-input:focus { border-color: var(--red); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.checkout-section-title {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 400;
  color: var(--black);
  margin: 28px 0 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.checkout-section-title:first-child { margin-top: 0; }

.order-summary {
  background: var(--gray-50);
  border: 1px solid var(--border-mid);
  padding: 24px;
  position: sticky;
  top: 120px;
}
.order-summary-title {
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--black);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--red);
}
.order-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 11px;
}
.order-item-name { color: var(--gray-800); max-width: 200px; }
.order-item-qty { color: var(--gray-400); }
.order-item-price { font-weight: 700; color: var(--black); }
.order-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  font-size: 16px;
  font-weight: 900;
  color: var(--black);
  border-top: 2px solid var(--black);
  margin-top: 4px;
}

.place-order-btn {
  width: 100%;
  background: var(--red);
  color: var(--white);
  border: none;
  padding: 15px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 20px;
  transition: background var(--transition);
}
.place-order-btn:hover { background: var(--red-dark); }

/* =============================================================
   MY ACCOUNT
   ============================================================= */
.account-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 40px;
  padding: 50px 0;
  align-items: start;
}
.account-nav { position: sticky; top: 120px; }
.account-nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  font-size: 11px;
  color: var(--gray-600);
  font-weight: 600;
  border-left: 3px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
}
.account-nav-item:hover, .account-nav-item.active {
  background: var(--red-light);
  color: var(--red);
  border-left-color: var(--red);
}

/* =============================================================
   PAGE HERO (intérieur)
   ============================================================= */
.page-hero {
  background: var(--black);
  padding: 50px 0 36px;
  text-align: center;
}
.page-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 400;
  color: var(--white);
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}
.page-hero-sub {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.06em;
}

.breadcrumb {
  font-size: 10px;
  color: var(--gray-400);
  display: flex;
  gap: 8px;
  align-items: center;
  flex-wrap: wrap;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 24px;
}
.breadcrumb a { color: var(--gray-400); }
.breadcrumb a:hover { color: var(--red); }
.breadcrumb-sep { color: var(--gray-200); font-size: 10px; }

/* =============================================================
   AGE GATE
   ============================================================= */
.age-gate-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,0.97);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}
.age-gate-modal {
  background: var(--white);
  padding: 56px 48px;
  max-width: 460px;
  width: 90%;
  text-align: center;
}
.age-gate-logo { margin-bottom: 24px; display: flex; justify-content: center; align-items: center; gap: 10px; }
.age-gate-logo-sw { font-size: 20px; font-weight: 900; color: var(--black); letter-spacing: 0.06em; }
.age-gate-logo-bo { font-size: 11px; font-weight: 700; color: var(--red); letter-spacing: 0.2em; }
.age-gate-title {
  font-family: var(--font-serif);
  font-size: 24px;
  font-weight: 400;
  color: var(--black);
  margin-bottom: 8px;
}
.age-gate-text {
  font-size: 12px;
  color: var(--gray-400);
  line-height: 1.7;
  margin-bottom: 32px;
}
.age-gate-buttons { display: flex; gap: 12px; justify-content: center; }
.age-gate-yes {
  background: var(--red);
  color: var(--white);
  border: none;
  padding: 13px 36px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  flex: 1;
}
.age-gate-yes:hover { background: var(--red-dark); }
.age-gate-no {
  background: transparent;
  color: var(--gray-400);
  border: 1px solid var(--border-mid);
  padding: 12px 24px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  flex: 1;
}
.age-gate-disclaimer {
  font-size: 9px;
  color: var(--gray-200);
  margin-top: 20px;
  line-height: 1.5;
}

/* =============================================================
   FOOTER
   ============================================================= */
.site-footer { background: var(--gray-900); }

.footer-main {
  max-width: var(--container);
  margin: 0 auto;
  padding: 50px 32px 32px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.4fr;
  gap: 40px;
}

.footer-brand-sw {
  font-size: 18px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 0.06em;
}
.footer-brand-bo {
  font-size: 10px;
  font-weight: 700;
  color: var(--red);
  letter-spacing: 0.22em;
  margin-top: 2px;
  margin-bottom: 16px;
}
.footer-tagline {
  font-size: 11px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 16px;
}
.footer-address {
  font-size: 10px;
  color: #555;
  line-height: 2;
}
.footer-address a { color: #555; }
.footer-address a:hover { color: var(--white); }

.footer-social { display: flex; gap: 7px; margin-top: 16px; }
.footer-social-link {
  width: 32px;
  height: 32px;
  border: 1px solid #2a2a2a;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 900;
  color: #555;
  text-decoration: none;
  transition: all var(--transition);
}
.footer-social-link:hover { border-color: var(--red); color: var(--red); }

.footer-col-title {
  font-size: 9px;
  font-weight: 700;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid #222;
}
.footer-links { display: flex; flex-direction: column; gap: 9px; }
.footer-links a {
  font-size: 11px;
  color: #555;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }

.footer-payment-logos { display: flex; gap: 7px; flex-wrap: wrap; margin-top: 6px; }
.payment-logo {
  border: 1px solid #2a2a2a;
  padding: 5px 10px;
  font-size: 9px;
  font-weight: 700;
  color: #555;
}
.footer-lang-block {
  margin-top: 18px;
  font-size: 10px;
  color: #444;
  line-height: 1.9;
}

.footer-bottom {
  border-top: 1px solid #1e1e1e;
  padding: 18px 32px;
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.footer-copy { font-size: 9px; color: #444; }
.footer-legal {
  font-size: 9px;
  color: var(--red);
  letter-spacing: 0.04em;
}

/* =============================================================
   WOOCOMMERCE OVERRIDES
   ============================================================= */
.woocommerce-notices-wrapper { max-width: var(--container); margin: 0 auto; padding: 0 32px; }

.woocommerce-message,
.woocommerce-error,
.woocommerce-info {
  padding: 12px 18px;
  border-left: 3px solid var(--red);
  background: var(--red-light);
  font-size: 12px;
  color: var(--gray-800);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  list-style: none;
}

.woocommerce form .form-row label {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--black);
  margin-bottom: 6px;
  display: block;
}
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row select,
.woocommerce form .form-row textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--border-mid);
  font-family: var(--font-main);
  font-size: 12px;
  outline: none;
  border-radius: 0;
  transition: border-color var(--transition);
}
.woocommerce form .form-row input.input-text:focus,
.woocommerce form .form-row select:focus { border-color: var(--red); }

.woocommerce #respond input#submit,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce #place_order {
  background: var(--red);
  color: var(--white);
  border: none;
  padding: 12px 24px;
  font-family: var(--font-main);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border-radius: 0;
  transition: background var(--transition);
}
.woocommerce #respond input#submit:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce #place_order:hover {
  background: var(--red-dark);
  color: var(--white);
}

.woocommerce .woocommerce-cart-form__cart-item td { padding: 18px 0; }

/* Cart totals */
.woocommerce .cart_totals h2 {
  font-family: var(--font-main);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--black);
  margin-bottom: 16px;
}
.woocommerce .cart_totals table { width: 100%; border-collapse: collapse; }
.woocommerce .cart_totals table th,
.woocommerce .cart_totals table td {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 12px;
}
.woocommerce .cart_totals table tr.order-total th,
.woocommerce .cart_totals table tr.order-total td {
  font-size: 16px;
  font-weight: 900;
  border-bottom: none;
}

.woocommerce-page .woocommerce { max-width: var(--container); margin: 0 auto; padding: 0 32px; }

/* Stars rating */
.star-rating { color: var(--red); }
.woocommerce .star-rating span::before { color: var(--red); }

/* =============================================================
   SCROLL REVEAL
   ============================================================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 1200px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; gap: 28px; }
}

@media (max-width: 1024px) {
  .primary-nav { display: none; }
  .mobile-toggle { display: flex; }
  .header-search { width: 160px; }
  .shop-layout { grid-template-columns: 1fr; }
  .shop-sidebar { display: none; }
  .single-product-layout { grid-template-columns: 1fr; gap: 32px; }
  .checkout-layout { grid-template-columns: 1fr; }
  .featured-product { grid-template-columns: 1fr; }
  .usp-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .usp-item { padding: 10px 0; border-right: none; }
  .hero-side-panel { display: none; }
}

@media (max-width: 768px) {
  :root { --container: 100%; }
  .container { padding: 0 16px; }
  .header-inner { padding: 0 16px; }
  .site-topbar { display: none; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .categories-strip { flex-wrap: wrap; }
  .category-item { min-width: 33%; }
  .hero-content { padding: 40px 16px; }
  .hero-title { font-size: 30px; }
  .hero-stats { gap: 20px; }
  .hero-stat-number { font-size: 22px; }
  .cart-layout { grid-template-columns: 1fr; }
  .account-layout { grid-template-columns: 1fr; }
  .usp-grid { grid-template-columns: 1fr; }
  .footer-main { grid-template-columns: 1fr; gap: 24px; padding: 32px 16px 20px; }
  .footer-bottom { padding: 14px 16px; flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .products-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .mini-cart-drawer { width: 100%; right: -100%; }
  .age-gate-modal { padding: 36px 24px; }
  .age-gate-buttons { flex-direction: column; }
}

/* =============================================================
   OVERRIDES v2.1 — Header corrections
   ============================================================= */

/* Forcer barre de recherche carrée (annule les styles WooCommerce/navigateur) */
.header-search,
.header-search input,
.header-search input[type="search"] {
  border-radius: 0 !important;
  -webkit-appearance: none;
  appearance: none;
}

/* Masquer le custom logo WordPress — on utilise le SVG natif */
.site-logo .custom-logo-link,
.site-logo .custom-logo,
.site-logo img.custom-logo {
  display: none !important;
}

/* Boutons header carrés */
.icon-btn { border-radius: 0 !important; }

/* Fix nav arrow sur mobile */
.primary-nav > li.menu-item-has-children > a .nav-arrow {
  display: inline-block;
  transition: transform .2s;
}
.primary-nav > li:hover > a .nav-arrow { transform: rotate(180deg); }

/* WooCommerce — reset border-radius sur les inputs globaux */
.woocommerce form .form-row input.input-text,
.woocommerce form .form-row select,
.woocommerce form .form-row textarea,
input[type="text"], input[type="email"], input[type="password"],
input[type="search"], select, textarea {
  border-radius: 0 !important;
}

/* Icône panier WC par défaut — cacher si notre icône custom est active */
.woocommerce-cart-form .cart-icon { display: none; }

/* =============================================================
   FIX v2.2 — Forcer visibilité header après suppression Elementor
   ============================================================= */

/* S'assurer que notre header est toujours visible */
.site-topbar,
.site-header,
#siteHeader {
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
}

/* Annuler tout reset Elementor sur le header */
.elementor-page .site-header,
.elementor-page .site-topbar {
  display: flex !important;
}

/* Reset body padding-top qu'Elementor ajoute parfois */
.elementor-page body,
body.elementor-page {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/* S'assurer que le header sticky fonctionne */
.site-header {
  position: sticky !important;
  top: 0 !important;
  z-index: 1000 !important;
  width: 100% !important;
}

.site-topbar {
  width: 100% !important;
}

/* Fix logo visible */
.site-logo,
.site-logo .logo-drop,
.site-logo .logo-text-block {
  display: flex !important;
  visibility: visible !important;
}


/* ── FIX FILTRE PRIX WOOCOMMERCE ── */
.widget_price_filter .price_slider_wrapper {
  padding: 16px;
}

/* Le slider lui-même */
.widget_price_filter .price_slider {
  height: 4px;
  margin: 20px 0 16px;
  background: #e0e0e0;
  border-radius: 0;
  border: none;
  position: relative;
}

/* La plage sélectionnée (rouge) */
.widget_price_filter .price_slider .ui-slider-range {
  background: #C8102E;
  height: 100%;
  top: 0;
  border-radius: 0;
  border: none;
  position: absolute;
}

/* Les 2 poignées */
.widget_price_filter .price_slider .ui-slider-handle {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #C8102E;
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px #C8102E;
  top: -5px;
  margin-left: -7px;
  cursor: pointer;
  outline: none;
  position: absolute;
}
.widget_price_filter .price_slider .ui-slider-handle:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(200,16,46,.3);
}

/* Montant + bouton */
.widget_price_filter .price_slider_amount {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 8px;
}
.widget_price_filter .price_slider_amount button.button {
  background: #C8102E !important;
  color: #fff !important;
  border: none !important;
  padding: 7px 16px !important;
  font-family: Arial, sans-serif !important;
  font-size: 9px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: .1em !important;
  cursor: pointer !important;
  border-radius: 0 !important;
  order: 1;
}
.widget_price_filter .price_slider_amount button.button:hover {
  background: #a50d24 !important;
}
.widget_price_filter .price_label {
  font-family: Arial, sans-serif;
  font-size: 11px;
  color: #555;
  order: 2;
}
.widget_price_filter .price_label .from,
.widget_price_filter .price_label .to {
  font-weight: 700;
  color: #111;
}

/* S'assurer que jQuery UI n'est pas écrasé */
.ui-widget-content { border: none !important; background: transparent !important; }
.ui-widget-header  { border: none !important; }
.ui-state-default, .ui-widget-content .ui-state-default { border: none !important; background: none !important; }