/*
Theme Name: Maison LUMINA
Theme URI: https://icietpasailleurs.fr
Author: Boutique Ici et pas Ailleurs
Description: Theme luxe EXEMPLE_UI — bijouterie & parfumerie de niche a Saint-Etienne
Version: 3.0.0
Text Domain: icietpasailleurs
Requires PHP: 8.0
*/

/* =========================================================
   ICI ET PAS AILLEURS — Design system luxe (EXEMPLE_UI)
   ========================================================= */

:root {
  --burgundy: #6b1e2f;
  --burgundy-dark: #4f1522;
  --burgundy-soft: #8a3044;
  --cream: #faf6f1;
  --cream-dark: #f3ebe3;
  --ivory: #fffdfb;
  --sand: #e8dfd4;
  --gold: #b8956a;
  --gold-soft: #d4bc96;
  --text: #2a221e;
  --text-soft: #6b5f56;
  --text-muted: #9a8d83;
  --border: rgba(107, 30, 47, 0.12);
  --border-soft: rgba(42, 34, 30, 0.08);
  --shadow: 0 12px 40px rgba(42, 34, 30, 0.08);
  --shadow-soft: 0 4px 20px rgba(42, 34, 30, 0.05);
  --radius: 2px;
  --container: 1180px;
  --header-h: 108px;
  --font-serif: "Cormorant Garamond", "Times New Roman", serif;
  --font-sans: "Jost", "Helvetica Neue", Arial, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: var(--font-sans);
  font-weight: 400;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
  border: none;
  background: none;
}

ul {
  list-style: none;
}

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

/* ---------- Utilities ---------- */
.eyebrow {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--burgundy);
}

.section-title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.85rem, 3vw, 2.45rem);
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: var(--text);
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.75rem;
}

.link-arrow {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--burgundy);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  transition: gap 0.3s var(--ease), color 0.25s ease;
}

.link-arrow:hover {
  gap: 0.65rem;
  color: var(--burgundy-dark);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.6rem;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid transparent;
  cursor: pointer;
  transition: all 0.3s var(--ease);
  white-space: nowrap;
}

.btn-primary {
  background: var(--burgundy);
  color: #fff;
  border-color: var(--burgundy);
}

.btn-primary:hover {
  background: var(--burgundy-dark);
  border-color: var(--burgundy-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(107, 30, 47, 0.25);
}

.btn-outline {
  background: transparent;
  color: var(--burgundy);
  border-color: var(--burgundy);
}

.btn-outline:hover {
  background: var(--burgundy);
  color: #fff;
}

.btn-light {
  background: #fff;
  color: var(--text);
  border-color: #fff;
}

.btn-light:hover {
  background: transparent;
  color: #fff;
}

/* ---------- Top bar ---------- */
.topbar {
  background: var(--burgundy);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 34px;
  padding-block: 0.35rem;
}

.topbar-center {
  display: none;
  align-items: center;
  gap: 0.55rem;
  opacity: 0.9;
}

.topbar-center .dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold-soft);
}

.topbar-side {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  opacity: 0.95;
}

.topbar svg {
  width: 13px;
  height: 13px;
  flex-shrink: 0;
}

@media (min-width: 900px) {
  .topbar-center {
    display: flex;
  }
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 241, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border-soft);
}

.header-main {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  min-height: 74px;
  padding-block: 0.65rem;
}

.header-search {
  display: none;
  align-items: center;
  gap: 0.55rem;
  max-width: 180px;
  color: var(--text-muted);
  font-size: 0.82rem;
  border-bottom: 1px solid var(--sand);
  padding-bottom: 0.25rem;
}

.header-search input {
  width: 100%;
  background: transparent;
  outline: none;
}

.header-search input::placeholder {
  color: var(--text-muted);
}

.header-search svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.logo {
  text-align: left;
  justify-self: start;
}

.logo-name {
  font-family: var(--font-serif);
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--burgundy);
  line-height: 1.1;
  text-transform: uppercase;
}

.logo-tag {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 400;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.35rem;
}

.icon-btn {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  border-radius: 50%;
  transition: background 0.25s ease, color 0.25s ease;
  position: relative;
}

.icon-btn:hover {
  background: var(--cream-dark);
  color: var(--burgundy);
}

.icon-btn svg {
  width: 18px;
  height: 18px;
}

.icon-btn .badge {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: var(--burgundy);
  color: #fff;
  font-size: 0.58rem;
  display: grid;
  place-items: center;
  font-weight: 500;
}

.menu-toggle {
  display: inline-flex;
}

@media (min-width: 900px) {
  .header-search {
    display: flex;
  }
  .menu-toggle {
    display: none;
  }
  .header-label {
    display: inline;
    font-size: 0.72rem;
    letter-spacing: 0.04em;
    margin-left: 0.15rem;
  }
  .icon-btn.account {
    width: auto;
    padding-inline: 0.65rem;
    border-radius: 999px;
    gap: 0.35rem;
  }
}

.header-label {
  display: none;
}

/* ---------- Nav ---------- */
.main-nav {
  display: none;
  border-top: 1px solid var(--border-soft);
}

.main-nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  flex-wrap: wrap;
  min-height: 42px;
  padding-block: 0.15rem;
}

.main-nav a {
  display: block;
  padding: 0.55rem 0.7rem;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-soft);
  transition: color 0.25s ease;
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0.7rem;
  right: 0.7rem;
  bottom: 0.3rem;
  height: 1px;
  background: var(--burgundy);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease);
}

.main-nav a:hover {
  color: var(--burgundy);
}

.main-nav a:hover::after {
  transform: scaleX(1);
}

@media (min-width: 980px) {
  .main-nav {
    display: block;
  }
}

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(42, 34, 30, 0.4);
  backdrop-filter: blur(4px);
}

.mobile-nav.open {
  display: block;
}

.mobile-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(88vw, 360px);
  height: 100%;
  background: var(--ivory);
  padding: 1.25rem 1.4rem 2rem;
  overflow-y: auto;
  animation: slideIn 0.35s var(--ease);
}

@keyframes slideIn {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

.mobile-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1.5rem;
}

.mobile-panel nav a {
  display: block;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border-soft);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ---------- Hero (compact, not full viewport) ---------- */
.hero {
  background: var(--cream);
  border-bottom: 1px solid var(--border-soft);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 0;
}

.hero-copy {
  padding: 2.25rem 0 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 34rem;
}

.hero-copy .eyebrow {
  margin-bottom: 0.9rem;
}

.hero h1 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(2.15rem, 4.5vw, 3.15rem);
  line-height: 1.12;
  letter-spacing: -0.01em;
  color: var(--text);
  margin-bottom: 1rem;
}

.hero-lead {
  color: var(--text-soft);
  font-size: 0.98rem;
  line-height: 1.7;
  max-width: 28rem;
  margin-bottom: 1.6rem;
}

.hero-visual {
  position: relative;
  min-height: 280px;
  overflow: hidden;
}

.hero-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
  max-height: 420px;
}

.hero-dots {
  display: flex;
  gap: 0.4rem;
  margin-top: 1.4rem;
}

.hero-dots span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--sand);
}

.hero-dots span.active {
  background: var(--burgundy);
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1fr 1.15fr;
    align-items: stretch;
  }

  .hero-copy {
    padding: 2.5rem 2rem 2.5rem 0;
  }

  .hero-visual {
    min-height: 380px;
  }

  .hero-visual img {
    min-height: 380px;
    max-height: 440px;
  }
}

/* ---------- Vitrine strip ---------- */
.vitrine-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3px;
  background: var(--sand);
}

.vitrine-strip a,
.vitrine-strip figure {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  background: var(--cream-dark);
}

.vitrine-strip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.vitrine-strip a:hover img {
  transform: scale(1.05);
}

@media (min-width: 700px) {
  .vitrine-strip {
    grid-template-columns: repeat(5, 1fr);
  }

  .vitrine-strip a,
  .vitrine-strip figure {
    aspect-ratio: 4/5;
  }
}

/* ---------- Categories ---------- */
.section {
  padding: 3.25rem 0;
}

.section-tight {
  padding: 2.5rem 0;
}

.categories {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.cat-card {
  background: var(--ivory);
  border: 1px solid var(--border-soft);
  overflow: hidden;
  transition: box-shadow 0.35s var(--ease), transform 0.35s var(--ease);
}

.cat-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.cat-card-img {
  aspect-ratio: 4/3;
  overflow: hidden;
  background: var(--cream-dark);
}

.cat-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease);
}

.cat-card:hover .cat-card-img img {
  transform: scale(1.04);
}

.cat-card-body {
  padding: 1.25rem 1.35rem 1.4rem;
  text-align: center;
}

.cat-card h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
}

.cat-card p {
  font-size: 0.88rem;
  color: var(--text-soft);
  margin-bottom: 0.85rem;
}

@media (min-width: 800px) {
  .categories {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

/* ---------- Products ---------- */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 0.85rem;
}

.product-card {
  background: transparent;
  position: relative;
}

.product-media {
  position: relative;
  aspect-ratio: 1;
  background: #fff;
  border: 1px solid var(--border-soft);
  overflow: hidden;
  margin-bottom: 0.75rem;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.product-card:hover .product-media img {
  transform: scale(1.04);
}

.wishlist {
  position: absolute;
  top: 0.65rem;
  right: 0.65rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  display: grid;
  place-items: center;
  color: var(--text-muted);
  transition: color 0.25s ease, background 0.25s ease;
  z-index: 2;
}

.wishlist:hover,
.wishlist.active {
  color: var(--burgundy);
}

.wishlist svg {
  width: 15px;
  height: 15px;
}

.product-info {
  text-align: left;
}

.product-name {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text);
  margin-bottom: 0.15rem;
  line-height: 1.35;
}

.product-meta {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.product-price {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.02em;
}

@media (min-width: 800px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem 1.25rem;
  }
}

@media (min-width: 1100px) {
  .products-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

/* ---------- Boutique ---------- */
.boutique {
  background: var(--cream-dark);
  border-block: 1px solid var(--border-soft);
}

.boutique-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: center;
}

.boutique-copy {
  padding: 0.5rem 0;
}

.boutique-copy .eyebrow {
  margin-bottom: 0.75rem;
}

.boutique-copy h2 {
  margin-bottom: 0.9rem;
}

.boutique-copy p {
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 1.4rem;
  max-width: 32rem;
}

.boutique-gallery {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 0.65rem;
}

.boutique-gallery figure {
  overflow: hidden;
  background: var(--sand);
}

.boutique-gallery figure:first-child {
  grid-row: span 2;
  min-height: 220px;
}

.boutique-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 140px;
  transition: transform 0.7s var(--ease);
}

.boutique-gallery figure:hover img {
  transform: scale(1.04);
}

@media (min-width: 900px) {
  .boutique-grid {
    grid-template-columns: 0.95fr 1.2fr;
    gap: 2.5rem;
  }

  .boutique-gallery figure:first-child {
    min-height: 320px;
  }
}

/* ---------- Trust bar ---------- */
.trust {
  background: var(--ivory);
  border-bottom: 1px solid var(--border-soft);
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  padding: 1.75rem 0;
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.trust-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  color: var(--burgundy);
  flex-shrink: 0;
}

.trust-icon svg {
  width: 16px;
  height: 16px;
}

.trust-item strong {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 0.15rem;
}

.trust-item span {
  font-size: 0.78rem;
  color: var(--text-muted);
  line-height: 1.4;
}

@media (min-width: 900px) {
  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    padding: 1.9rem 0;
  }
}

/* ---------- Marques ---------- */
.marques-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem 1.75rem;
  padding: 1.5rem 0 0.25rem;
}

.marque {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  font-weight: 500;
  transition: color 0.25s ease;
}

.marque:hover {
  color: var(--burgundy);
}

/* ---------- Avis ---------- */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.review-card {
  background: var(--ivory);
  border: 1px solid var(--border-soft);
  padding: 1.35rem 1.4rem;
}

.stars {
  color: var(--gold);
  letter-spacing: 0.08em;
  font-size: 0.85rem;
  margin-bottom: 0.65rem;
}

.review-card p {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  line-height: 1.45;
  font-style: italic;
  color: var(--text);
  margin-bottom: 0.9rem;
}

.review-card footer {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

@media (min-width: 800px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ---------- FAQ ---------- */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border-bottom: 1px solid var(--border-soft);
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 0;
  font-size: 0.95rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--burgundy);
  line-height: 1;
  flex-shrink: 0;
}

.faq-item[open] summary::after {
  content: "–";
}

.faq-item .faq-body {
  padding: 0 0 1.15rem;
  color: var(--text-soft);
  font-size: 0.92rem;
  line-height: 1.7;
}

/* ---------- Contact ---------- */
/* Contact section — map + infos + CTA */
.contact-section .section-header { margin-bottom: 1.5rem; }
.contact-map-wrap {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--border-soft, #e8dfd4);
  background: #f0ebe4;
  margin-bottom: 1.25rem;
  box-shadow: 0 8px 28px rgba(40, 20, 15, 0.06);
}
.contact-map {
  display: block;
  width: 100%;
  height: 360px;
  border: 0;
}
.contact-map-open {
  position: absolute;
  right: 12px;
  bottom: 12px;
  background: #fff;
  color: var(--burgundy, #6b1e2f);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0.45rem 0.75rem;
  border-radius: 4px;
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(0,0,0,.12);
}
.contact-map-open:hover { background: var(--burgundy, #6b1e2f); color: #fff; }
.contact-info-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding: 1.25rem 1.35rem;
  background: var(--ivory, #faf6f1);
  border: 1px solid var(--border-soft, #e8dfd4);
  border-radius: 10px;
}
.contact-info-item strong {
  display: block;
  font-family: var(--font-display, Georgia, serif);
  font-size: 0.95rem;
  color: var(--burgundy, #6b1e2f);
  margin-bottom: 0.35rem;
}
.contact-info-item p,
.contact-info-item a {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-soft, #5a4f48);
  line-height: 1.45;
  text-decoration: none;
}
.contact-info-item a:hover { color: var(--burgundy, #6b1e2f); }
.contact-cta { text-align: center; margin-bottom: 1rem; }
.contact-cta .btn { min-width: 220px; }
.contact-cta-hint {
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
  color: var(--text-soft, #6b5f56);
}
.contact-form-panel { max-width: 640px; margin: 0 auto 1rem; }
.contact-card-form { padding: 1.5rem; }
.contact-flash {
  padding: 0.85rem 1rem;
  border-radius: 6px;
  margin-bottom: 1rem;
  font-size: 0.95rem;
}
.contact-flash-ok {
  background: #edfaef;
  border: 1px solid #68de7c;
  color: #1e4620;
}
.contact-flash-err {
  background: #fcf0f1;
  border: 1px solid #f0b7bc;
  color: #8a2424;
}
.contact-hp {
  position: absolute !important;
  left: -9999px !important;
  opacity: 0 !important;
  height: 0 !important;
  width: 0 !important;
  pointer-events: none !important;
}
@media (max-width: 900px) {
  .contact-info-bar { grid-template-columns: 1fr 1fr; }
  .contact-map { height: 280px; }
}
@media (max-width: 520px) {
  .contact-info-bar { grid-template-columns: 1fr; }
  .contact-map { height: 240px; }
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.contact-card {
  background: var(--ivory);
  border: 1px solid var(--border-soft);
  padding: 1.75rem 1.5rem;
}

.contact-card h3 {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 500;
  margin-bottom: 1.25rem;
}

.contact-lines {
  display: grid;
  gap: 1rem;
}

.contact-line strong {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 0.25rem;
  font-weight: 500;
}

.contact-line p,
.contact-line a {
  font-size: 0.95rem;
  color: var(--text-soft);
}

.contact-line a:hover {
  color: var(--burgundy);
}

.contact-form {
  display: grid;
  gap: 0.85rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
}

.field label {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}

.field input,
.field textarea {
  width: 100%;
  background: #fff;
  border: 1px solid var(--border-soft);
  padding: 0.8rem 0.9rem;
  outline: none;
  transition: border-color 0.25s ease;
}

.field input:focus,
.field textarea:focus {
  border-color: var(--burgundy);
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.checkbox {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  font-size: 0.8rem;
  color: var(--text-soft);
  line-height: 1.45;
}

.checkbox input {
  margin-top: 0.2rem;
}

@media (min-width: 700px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 900px) {
  .contact-grid {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 2.5rem;
    align-items: start;
  }
}

/* ---------- Fidelite teaser + floating card preview ---------- */
.fidelite {
  background: #120e0c;
  color: #f5ebe0;
  padding: 4rem 0;
  text-align: left;
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: center;
}

.fidelite-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.fidelite-bg-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  opacity: 0.55;
  filter: saturate(0.95) brightness(0.75);
}
.fidelite-bg-veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 14, 12, 0.94) 0%, rgba(18, 14, 12, 0.82) 42%, rgba(18, 14, 12, 0.35) 72%, rgba(18, 14, 12, 0.55) 100%),
    radial-gradient(ellipse at 75% 50%, rgba(184, 149, 106, 0.12), transparent 55%);
}

/* Floating loyalty card preview */
.fidelite-float {
  position: absolute;
  right: max(1.5rem, calc((100% - var(--container, 1180px)) / 2));
  top: 50%;
  z-index: 1;
  width: min(280px, 34vw);
  transform: translateY(-50%) rotate(4deg);
  pointer-events: none;
  filter: drop-shadow(0 24px 48px rgba(0, 0, 0, 0.55)) drop-shadow(0 8px 20px rgba(184, 149, 106, 0.18));
  animation: fideliteFloat 6s ease-in-out infinite;
}
.fidelite-card-img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px;
  border: 1px solid rgba(212, 188, 150, 0.35);
}
@keyframes fideliteFloat {
  0%, 100% { transform: translateY(-50%) rotate(4deg) translateX(0); }
  50% { transform: translateY(calc(-50% - 10px)) rotate(3deg) translateX(-4px); }
}

.fidelite::before {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(184, 149, 106, 0.28);
  pointer-events: none;
  z-index: 2;
}

.fidelite-inner {
  position: relative;
  z-index: 3;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  /* pas collé au bord, pas trop à gauche */
  padding-left: clamp(1rem, 8vw, 5.5rem);
  padding-right: min(38vw, 340px);
}
.fidelite-copy {
  max-width: 26rem;
  text-align: left;
  margin-left: clamp(0px, 4vw, 3rem);
}
.fidelite .eyebrow {
  color: rgba(240, 217, 176, 0.85);
  margin: 0 0 1rem;
  letter-spacing: 0.28em;
  font-size: 0.68rem;
}
.fidelite h2 {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 4.2vw, 3rem);
  font-weight: 500;
  color: #f3e0c0;
  margin: 0 0 1.25rem;
  line-height: 1.08;
  letter-spacing: 0.02em;
}
.fidelite-text {
  margin: 0 0 1.75rem;
  color: rgba(245, 235, 224, 0.86);
  font-size: 1.05rem;
  line-height: 1.75;
  font-weight: 300;
  letter-spacing: 0.01em;
}
.fidelite-text em {
  font-style: normal;
  color: #fff;
  font-weight: 500;
}
.fidelite-text strong {
  color: #f0d9b0;
  font-weight: 600;
  font-size: 1.15em;
  letter-spacing: 0.04em;
}
.fidelite .btn-light {
  min-width: 11.5rem;
}

/* --- Mobile only (PC layout untouched above) --- */
@media (max-width: 800px) {
  .fidelite {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    padding: 2.25rem 1.15rem 2rem;
    min-height: 0;
    gap: 0;
  }

  .fidelite::before {
    inset: 8px;
  }

  .fidelite-bg-img {
    object-position: center center;
    opacity: 0.3;
  }
  .fidelite-bg-veil {
    background:
      linear-gradient(
        180deg,
        rgba(18, 14, 12, 0.94) 0%,
        rgba(18, 14, 12, 0.88) 45%,
        rgba(18, 14, 12, 0.9) 100%
      );
  }

  /* texte d'abord */
  .fidelite-inner {
    order: 1;
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 100%;
    padding: 0 !important;
    margin: 0;
    justify-content: center;
  }
  .fidelite-copy {
    max-width: 19.5rem;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    padding: 0 0.25rem;
  }
  .fidelite .eyebrow {
    margin-bottom: 0.65rem;
    letter-spacing: 0.2em;
    font-size: 0.62rem;
  }
  .fidelite h2 {
    font-size: clamp(1.75rem, 7vw, 2.15rem);
    margin-bottom: 0.85rem;
  }
  .fidelite-text {
    font-size: 0.95rem;
    line-height: 1.65;
    margin: 0 auto 1.35rem;
    max-width: 18rem;
  }
  .fidelite .btn-light {
    min-width: 0;
    width: auto;
    padding: 0.85rem 1.35rem;
  }

  /* carte en dessous, dans le flux — plus d'absolu foireux */
  .fidelite-float {
    order: 2;
    position: relative;
    right: auto;
    left: auto;
    top: auto;
    bottom: auto;
    width: min(168px, 46vw);
    margin: 1.6rem auto 0.25rem;
    transform: rotate(2.5deg);
    z-index: 2;
    animation: fideliteFloatMobile 5.5s ease-in-out infinite;
    filter: drop-shadow(0 14px 28px rgba(0, 0, 0, 0.5));
  }
  .fidelite-card-img {
    border-radius: 5px;
  }
  @keyframes fideliteFloatMobile {
    0%, 100% { transform: rotate(2.5deg) translateY(0); }
    50% { transform: rotate(1.5deg) translateY(-7px); }
  }
}

@media (max-width: 380px) {
  .fidelite {
    padding: 1.85rem 0.9rem 1.5rem;
  }
  .fidelite-float {
    width: min(148px, 48vw);
    margin-top: 1.25rem;
  }
  .fidelite-text {
    font-size: 0.9rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fidelite-float { animation: none; }
}

/* ---------- Marques carousel ---------- */
.marques-section {
  overflow: hidden;
  padding-bottom: 2.5rem;
}
.marques-carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: 0.5rem;
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.marques-track {
  display: flex;
  width: max-content;
  gap: 1rem;
  animation: marquesScroll 42s linear infinite;
  padding: 0.5rem 0 0.25rem;
}
.marques-carousel:hover .marques-track {
  animation-play-state: paused;
}
@keyframes marquesScroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.marque-card {
  flex: 0 0 auto;
  width: 168px;
  min-height: 104px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  padding: 1rem 0.85rem 0.9rem;
  background: #fff;
  border: 1px solid var(--border-soft);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.marque-card:hover {
  border-color: rgba(107, 30, 47, 0.22);
  box-shadow: var(--shadow-soft);
}
.marque-logo {
  width: 100%;
  height: 48px;
  display: grid;
  place-items: center;
  opacity: 0.95;
}
.marque-logo img {
  max-width: 132px;
  max-height: 40px;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: grayscale(0.15) contrast(1.02);
  transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}
.marque-card.is-photo .marque-logo {
  height: 56px;
  overflow: hidden;
  border-radius: 2px;
}
.marque-card.is-photo .marque-logo img {
  max-height: 56px;
  max-width: 100%;
  width: 100%;
  height: 56px;
  object-fit: cover;
  filter: grayscale(0.2) saturate(0.9);
}
.marque-card:hover .marque-logo img {
  filter: none;
  opacity: 1;
  transform: scale(1.03);
}
.marque-name {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-soft);
  text-align: center;
  font-weight: 500;
  line-height: 1.3;
}
@media (max-width: 600px) {
  .marque-card { width: 140px; min-height: 92px; padding: 0.85rem 0.65rem; }
  .marque-logo { height: 36px; }
  .marque-logo img { max-width: 120px; max-height: 30px; }
  .marque-name { font-size: 0.62rem; letter-spacing: 0.1em; }
}
@media (prefers-reduced-motion: reduce) {
  .marques-track { animation: none; flex-wrap: wrap; width: 100%; justify-content: center; }
}

/* ---------- Footer ---------- */
.site-footer {
  background: #1a1210;
  color: rgba(245, 235, 224, 0.78);
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-brand .logo-name {
  color: var(--gold-soft);
  font-size: 1.25rem;
  letter-spacing: 0.1em;
}

.footer-brand .logo-tag {
  color: rgba(245, 235, 224, 0.5);
  margin-bottom: 1rem;
}

.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 26rem;
}

.footer-col h4 {
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 0.9rem;
  font-weight: 500;
}

.footer-col a,
.footer-col p {
  display: block;
  font-size: 0.88rem;
  padding: 0.28rem 0;
  color: rgba(245, 235, 224, 0.72);
  transition: color 0.25s ease;
}

.footer-col a:hover {
  color: #fff;
}

.socials {
  display: flex;
  gap: 0.5rem;
  margin-top: 1rem;
}

.socials a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(184, 149, 106, 0.35);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--gold-soft);
  transition: all 0.25s ease;
}

.socials a:hover {
  background: var(--burgundy);
  border-color: var(--burgundy);
  color: #fff;
}

.socials svg {
  width: 16px;
  height: 16px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  font-size: 0.78rem;
  color: rgba(245, 235, 224, 0.45);
}

.footer-bottom a:hover {
  color: #fff;
}

@media (min-width: 800px) {
  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 2rem;
  }
}

/* ---------- Mentions page ---------- */
.legal-page {
  padding: 3rem 0 4rem;
}

.legal-page h1 {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  margin-bottom: 1.5rem;
  color: var(--burgundy);
}

.legal-page h2 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  margin: 1.75rem 0 0.6rem;
}

.legal-page p,
.legal-page li {
  color: var(--text-soft);
  margin-bottom: 0.65rem;
  line-height: 1.7;
  max-width: 48rem;
}

/* ---------- Reveal animations ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

/* ---- WP-specific tweaks ---- */
.admin-bar .site-header { top: 32px; }
@media screen and (max-width: 782px) {
  .admin-bar .site-header { top: 46px; }
}
.wp-block-image img { height: auto; }
.screen-reader-text {
  border: 0; clip: rect(1px, 1px, 1px, 1px); clip-path: inset(50%);
  height: 1px; margin: -1px; overflow: hidden; padding: 0;
  position: absolute; width: 1px; word-wrap: normal !important;
}
/* product cards from WP use slightly different class names */
.product-card-image {
  position: relative;
  aspect-ratio: 1;
  background: #fff;
  border: 1px solid var(--border-soft);
  overflow: hidden;
  margin-bottom: 0.75rem;
}
.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.product-card:hover .product-card-image img { transform: scale(1.04); }
.product-card h4 {
  font-size: 0.88rem;
  font-weight: 500;
  margin-bottom: 0.15rem;
  line-height: 1.35;
}
.product-card h4 a:hover { color: var(--burgundy); }
.product-card-category {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.2rem;
}
.product-card-price {
  font-size: 0.9rem;
  font-weight: 500;
}
.product-card-badge {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  background: var(--burgundy);
  color: #fff;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.55rem;
  z-index: 2;
}
.product-card-actions {
  position: absolute;
  inset: auto 0.75rem 0.75rem;
  display: flex;
  gap: 0.4rem;
  opacity: 0;
  transform: translateY(8px);
  transition: all 0.3s var(--ease);
  z-index: 2;
}
.product-card:hover .product-card-actions {
  opacity: 1;
  transform: none;
}
.product-card-actions .btn {
  flex: 1;
  padding: 0.55rem 0.4rem;
  font-size: 0.62rem;
  background: #fff;
  color: var(--text);
  border-color: #fff;
}
.product-card-actions .btn:hover {
  background: var(--burgundy);
  color: #fff;
  border-color: var(--burgundy);
}
/* map old fade-in to reveal */
.fade-in, .fade-in-left, .fade-in-right { opacity: 0; transform: translateY(18px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.fade-in.visible, .fade-in-left.visible, .fade-in-right.visible, .reveal.visible { opacity: 1; transform: none; }
/* brands */
.brands-grid, .marques-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem 1.75rem;
  padding: 1.5rem 0 0.25rem;
}
.brand-item, .marque {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  color: var(--text-muted);
  font-weight: 500;
}
/* newsletter strip in footer area */
.newsletter {
  background: var(--cream-dark);
  border-top: 1px solid var(--border-soft);
  padding: 2.5rem 0;
  text-align: center;
}
.newsletter h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 0.4rem;
}
.newsletter p {
  color: var(--text-soft);
  font-size: 0.92rem;
  margin-bottom: 1.1rem;
}
.newsletter-form {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  max-width: 480px;
  margin: 0 auto;
}
.newsletter-form input {
  flex: 1 1 220px;
  background: #fff;
  border: 1px solid var(--border-soft);
  padding: 0.8rem 0.9rem;
}
.newsletter-form button {
  background: var(--burgundy);
  color: #fff;
  padding: 0.8rem 1.3rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
}
.newsletter-form button:hover { background: var(--burgundy-dark); }
.back-to-top {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--burgundy);
  color: #fff;
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
  z-index: 50;
  border: none;
  cursor: pointer;
}
.back-to-top.visible { opacity: 1; pointer-events: auto; }
/* section cream alias */
.section-cream { background: var(--cream-dark); border-block: 1px solid var(--border-soft); }
.section-dark { background: #1a1210; color: #f5ebe0; }
.section-dark .section-title, .section-dark h2 { color: var(--gold-soft); }
.section-header { text-align: center; margin-bottom: 2rem; }
.section-header .subtitle, .section-header .eyebrow { margin-bottom: 0.5rem; }
.section-header h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.85rem, 3vw, 2.45rem);
  line-height: 1.15;
}
.section-header .separator {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 0.85rem auto 0.85rem;
}
.section-header p { color: var(--text-soft); max-width: 36rem; margin: 0 auto; font-size: 0.95rem; }
/* about grid reuse boutique */
.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 900px) {
  .about-grid { grid-template-columns: 1.1fr 1fr; gap: 2.5rem; }
}
.about-image img { width: 100%; height: 100%; object-fit: cover; min-height: 280px; }
.about-image { overflow: hidden; background: var(--sand); }
.featured-product-content h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.7rem, 2.8vw, 2.2rem);
  font-weight: 500;
  margin-bottom: 0.9rem;
}
.featured-product-content p {
  color: var(--text-soft);
  margin-bottom: 0.85rem;
  line-height: 1.75;
}
/* contact form plain fields */
.contact-form input,
.contact-form textarea {
  width: 100%;
  background: #fff;
  border: 1px solid var(--border-soft);
  padding: 0.8rem 0.9rem;
  margin-bottom: 0.75rem;
  outline: none;
}
.contact-form input:focus,
.contact-form textarea:focus { border-color: var(--burgundy); }
.contact-form textarea { min-height: 120px; resize: vertical; }
.contact-detail {
  display: flex;
  gap: 0.85rem;
  margin-bottom: 1.1rem;
}
.contact-detail h4 {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 0.2rem;
  font-weight: 500;
}
.contact-detail p, .contact-detail a { color: var(--text-soft); font-size: 0.95rem; }
.contact-icon { font-size: 1.1rem; line-height: 1; }
/* social links footer text */
.social-links { display: flex; gap: 1rem; }
.social-links a:hover { color: #fff; }
/* ensure products grid works with old class too */
.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 0.85rem;
}
@media (min-width: 800px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); gap: 1.5rem 1.25rem; }
}
@media (min-width: 1100px) {
  .products-grid { grid-template-columns: repeat(4, 1fr); }
}
/* mobile menu old class */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(42, 34, 30, 0.4);
  backdrop-filter: blur(4px);
}
.mobile-menu.active {
  display: block;
}
.mobile-menu-panel,
.mobile-menu > a,
.mobile-menu nav {
  /* panel handled in header structure */
}
.mobile-menu.active::before { content: none; }
/* When using simple link list as mobile menu children */
.mobile-menu:not(.has-panel) {
  /* if only links, style as panel on right */
}
.mobile-menu.active > a:first-child ~ a,
.mobile-menu {
  /* override: make active menu a right panel of links */
}
/* simpler: full screen cream panel with links stacked */
.mobile-menu.active {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: stretch;
  gap: 0;
  background: var(--ivory);
  padding: 2rem 1.5rem;
}
.mobile-menu a {
  display: block;
  padding: 0.95rem 0;
  border-bottom: 1px solid var(--border-soft);
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  text-align: center;
}

/* =========================================================
   v4 — Boutique, PDP, Panier, Nav compacte
   ========================================================= */

.product-card-brand {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 0.15rem;
}

.btn-add-mini {
  margin-top: 0.55rem;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--burgundy);
  border-bottom: 1px solid var(--burgundy);
  padding: 0.15rem 0;
  cursor: pointer;
  background: none;
  transition: color 0.2s ease, border-color 0.2s ease;
}
.btn-add-mini:hover { color: var(--burgundy-dark); border-color: var(--burgundy-dark); }

/* ---- Nav compact + mega Boutique ---- */
/* legacy header-main overrides neutralized in v5.1 */
.main-nav ul {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  min-height: auto;
  padding: 0;
  border: 0;
}
.main-nav a {
  padding: 0.55rem 0.85rem;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--text-soft);
}
.main-nav a:hover { color: var(--burgundy); }
.main-nav a::after { display: none; }

.has-mega { position: relative; }
.nav-boutique-trigger {
  display: inline-flex !important;
  align-items: center;
  gap: 0.3rem;
}
.nav-chevron { transition: transform 0.25s ease; }
.has-mega:hover .nav-chevron { transform: rotate(180deg); }

.mega-panel {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(6px);
  min-width: 320px;
  background: var(--ivory);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow);
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  z-index: 120;
}
.has-mega:hover .mega-panel,
.has-mega:focus-within .mega-panel {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.mega-all {
  display: block !important;
  padding: 0.75rem 0.85rem !important;
  margin-bottom: 0.5rem;
  background: var(--cream-dark);
  border: 1px solid var(--border-soft);
  text-transform: none !important;
  letter-spacing: 0 !important;
}
.mega-all strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--text);
  letter-spacing: 0.02em;
  text-transform: none;
  font-weight: 600;
}
.mega-all span {
  font-size: 0.78rem;
  color: var(--text-muted);
  letter-spacing: 0;
  text-transform: none;
  font-weight: 400;
}
.mega-cats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.15rem;
}
.mega-cats a {
  padding: 0.55rem 0.7rem !important;
  font-size: 0.7rem !important;
}

.cart-badge.is-empty { opacity: 0.35; }
.header-search { display: none !important; }

.mobile-close {
  align-self: flex-end;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
}
.mobile-menu .mobile-sub {
  font-size: 0.75rem !important;
  padding-left: 1rem !important;
  color: var(--text-soft) !important;
  text-transform: none !important;
  letter-spacing: 0.04em !important;
}

/* ---- Shop ---- */
.shop-page { padding-bottom: 3.5rem; }
.shop-banner {
  background: var(--cream-dark);
  border-bottom: 1px solid var(--border-soft);
  padding: 2.25rem 0 1.75rem;
  text-align: center;
}
.shop-banner-lead {
  color: var(--text-soft);
  margin: 0.65rem auto 0.9rem;
  max-width: 32rem;
  font-size: 0.95rem;
}
.breadcrumb {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  justify-content: center;
}
.breadcrumb a:hover { color: var(--burgundy); }
.pdp-breadcrumb { justify-content: flex-start; margin: 1.25rem 0 1.5rem; }

.shop-layout { padding-top: 1.75rem; }

.shop-cats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  justify-content: center;
}
.shop-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.55rem 0.95rem;
  border: 1px solid var(--border-soft);
  background: #fff;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--text-soft);
  transition: all 0.25s ease;
}
.shop-chip:hover { border-color: var(--burgundy); color: var(--burgundy); }
.shop-chip.is-active {
  background: var(--burgundy);
  border-color: var(--burgundy);
  color: #fff;
}
.chip-count {
  font-size: 0.65rem;
  opacity: 0.7;
}

.shop-filters {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  background: #fff;
  border: 1px solid var(--border-soft);
  padding: 1.15rem;
  margin-bottom: 1.25rem;
}
@media (min-width: 700px) {
  .shop-filters {
    grid-template-columns: 1.4fr 1fr 0.7fr 0.7fr 1fr auto;
    align-items: end;
  }
}
.filter-field label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
}
.filter-field input,
.filter-field select {
  width: 100%;
  background: var(--cream);
  border: 1px solid var(--border-soft);
  padding: 0.7rem 0.8rem;
  outline: none;
}
.filter-field input:focus,
.filter-field select:focus { border-color: var(--burgundy); }
.filter-actions {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.filter-actions .btn { padding: 0.75rem 1.1rem; }

.shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
}
.shop-count { font-size: 0.88rem; color: var(--text-soft); }
.shop-count strong { color: var(--text); font-weight: 500; }

.shop-empty {
  text-align: center;
  padding: 3.5rem 1rem;
}
.shop-empty h3 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.shop-empty p { color: var(--text-soft); margin-bottom: 1.25rem; }

.shop-pagination { margin-top: 2rem; }
.shop-pagination .page-numbers {
  display: flex;
  justify-content: center;
  gap: 0.35rem;
  list-style: none;
  flex-wrap: wrap;
}
.shop-pagination a,
.shop-pagination span {
  display: inline-grid;
  place-items: center;
  min-width: 36px;
  height: 36px;
  padding: 0 0.5rem;
  border: 1px solid var(--border-soft);
  background: #fff;
  font-size: 0.85rem;
}
.shop-pagination .current {
  background: var(--burgundy);
  border-color: var(--burgundy);
  color: #fff;
}

/* ---- Product detail (PDP) ---- */
.pdp { padding-bottom: 3.5rem; }
.pdp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
  align-items: start;
}
@media (min-width: 900px) {
  .pdp-grid {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 2.75rem;
  }
}

.pdp-gallery { position: sticky; top: 100px; }
.pdp-main-wrap {
  background: #fff;
  border: 1px solid var(--border-soft);
  aspect-ratio: 1;
  overflow: hidden;
  margin-bottom: 0.65rem;
}
.pdp-main-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pdp-thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.45rem;
}
.pdp-thumb {
  border: 1px solid var(--border-soft);
  background: #fff;
  padding: 0;
  cursor: pointer;
  aspect-ratio: 1;
  overflow: hidden;
  opacity: 0.75;
  transition: opacity 0.2s ease, border-color 0.2s ease;
}
.pdp-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pdp-thumb.is-active,
.pdp-thumb:hover {
  opacity: 1;
  border-color: var(--burgundy);
}

.pdp-kicker {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.85rem;
  margin-bottom: 0.65rem;
}
.pdp-cat,
.pdp-brand {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
}
.pdp-cat { color: var(--text-muted); }
.pdp-brand { color: var(--burgundy); }

.pdp-title {
  font-family: var(--font-serif);
  font-size: clamp(1.85rem, 3vw, 2.4rem);
  font-weight: 500;
  line-height: 1.15;
  margin-bottom: 0.75rem;
}
.pdp-price {
  font-size: 1.35rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  margin-bottom: 0.55rem;
}
.pdp-stock {
  font-size: 0.82rem;
  margin-bottom: 1.15rem;
}
.pdp-stock.is-in { color: #2f6b4f; }
.pdp-stock.is-out { color: var(--text-muted); }

.pdp-description {
  color: var(--text-soft);
  font-size: 0.95rem;
  line-height: 1.75;
  margin-bottom: 1.35rem;
}
.pdp-description p { margin-bottom: 0.65rem; }

.pdp-specs {
  border-top: 1px solid var(--border-soft);
  border-bottom: 1px solid var(--border-soft);
  padding: 0.35rem 0;
  margin-bottom: 1.5rem;
}
.pdp-spec {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 0.75rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--border-soft);
}
.pdp-spec:last-child { border-bottom: 0; }
.pdp-spec dt {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 500;
  padding-top: 0.15rem;
}
.pdp-spec dd {
  font-size: 0.95rem;
  color: var(--text);
}

.pdp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: stretch;
  margin-bottom: 0.9rem;
}
.pdp-add { flex: 1; min-width: 180px; }

.qty-control {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border-soft);
  background: #fff;
}
.qty-btn {
  width: 40px;
  height: 44px;
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 1.1rem;
  color: var(--text);
  background: none;
  border: none;
}
.qty-btn:hover { color: var(--burgundy); }
.qty-input {
  width: 48px;
  height: 44px;
  text-align: center;
  border: none;
  border-inline: 1px solid var(--border-soft);
  background: transparent;
  font-size: 0.95rem;
  -moz-appearance: textfield;
}
.qty-input::-webkit-outer-spin-button,
.qty-input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.pdp-hint {
  font-size: 0.82rem;
  color: var(--text-soft);
  line-height: 1.55;
  margin-bottom: 1.25rem;
}
.pdp-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.pdp-related { margin-top: 3.5rem; padding-top: 2rem; border-top: 1px solid var(--border-soft); }

/* ---- Toast ---- */
.cart-toast {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: #1a1210;
  color: #f5ebe0;
  padding: 0.85rem 1.35rem;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  z-index: 300;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  box-shadow: var(--shadow);
}
.cart-toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ---- Cart page ---- */
.cart-page { padding: 1.5rem 0 3.5rem; }
.cart-header { margin: 0.5rem 0 1.75rem; }
.cart-empty {
  text-align: center;
  padding: 3rem 1rem;
  background: #fff;
  border: 1px solid var(--border-soft);
}
.cart-empty p { color: var(--text-soft); margin-bottom: 1.25rem; }

.cart-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  align-items: start;
}
@media (min-width: 900px) {
  .cart-layout { grid-template-columns: 1.3fr 0.9fr; gap: 2rem; }
}

.cart-item {
  display: grid;
  grid-template-columns: 96px 1fr auto;
  gap: 1rem;
  padding: 1rem;
  background: #fff;
  border: 1px solid var(--border-soft);
  margin-bottom: 0.75rem;
  align-items: center;
}
.cart-item-img {
  aspect-ratio: 1;
  background: var(--cream);
  overflow: hidden;
  border: 1px solid var(--border-soft);
}
.cart-item-img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item-brand {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 0.2rem;
}
.cart-item h3 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: 0.25rem;
}
.cart-item-price { font-size: 0.88rem; color: var(--text-soft); margin-bottom: 0.55rem; }
.cart-item-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}
.cart-remove {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  cursor: pointer;
  background: none;
  border: none;
  text-decoration: underline;
}
.cart-remove:hover { color: var(--burgundy); }
.cart-item-line {
  font-weight: 500;
  font-size: 0.95rem;
  white-space: nowrap;
}
@media (max-width: 600px) {
  .cart-item { grid-template-columns: 80px 1fr; }
  .cart-item-line { grid-column: 2; }
}

.cart-summary {
  background: #fff;
  border: 1px solid var(--border-soft);
  padding: 1.5rem;
  position: sticky;
  top: 100px;
}
.cart-summary h2 {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.cart-summary-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.92rem;
  color: var(--text-soft);
  margin-bottom: 0.55rem;
}
.cart-summary-total {
  font-size: 1.1rem;
  color: var(--text);
  font-weight: 500;
  padding-top: 0.75rem;
  margin-top: 0.5rem;
  border-top: 1px solid var(--border-soft);
  margin-bottom: 1.35rem;
}

.cart-lead {
  max-width: 36rem;
  color: var(--muted, #6b5f56);
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0.5rem 0 0;
}
.resa-info {
  background: #faf6f1;
  border: 1px solid #e8dfd4;
  border-radius: 6px;
  padding: 0.85rem 1rem;
  margin: 0.75rem 0 1rem;
  font-size: 0.85rem;
  line-height: 1.45;
  color: #2a221e;
}
.resa-info p { margin: 0.25rem 0; }
.resa-fee-note {
  margin-top: 0.5rem !important;
  padding-top: 0.5rem;
  border-top: 1px dashed #e0d4c8;
  color: #6b1e2f;
}
.cart-fee-row { color: #6b1e2f; font-weight: 500; }
.cart-fee-row small { font-weight: 400; color: #6b5f56; }
.field-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
@media (max-width: 520px) {
  .field-row-2 { grid-template-columns: 1fr; }
}
.fulfillment {
  border: 0;
  margin: 0 0 1rem;
  padding: 0;
}
.fulfillment legend {
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.65rem;
  font-weight: 500;
}
.fulfill-option {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 0.85rem;
  border: 1px solid var(--border-soft);
  margin-bottom: 0.5rem;
  cursor: pointer;
  background: var(--cream);
  transition: border-color 0.2s ease;
}
.fulfill-option:has(input:checked) {
  border-color: var(--burgundy);
  background: #fff;
}
.fulfill-option input { margin-top: 0.25rem; }
.fulfill-option strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.15rem;
}
.fulfill-option small {
  color: var(--text-muted);
  font-size: 0.78rem;
  line-height: 1.4;
}

.checkout-form .field { margin-bottom: 0.75rem; }
.checkout-form label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
}
.checkout-form input,
.checkout-form textarea {
  width: 100%;
  border: 1px solid var(--border-soft);
  background: var(--cream);
  padding: 0.75rem 0.85rem;
  outline: none;
}
.checkout-form input:focus,
.checkout-form textarea:focus { border-color: var(--burgundy); }
.checkout-submit { width: 100%; margin-top: 0.5rem; }
.checkout-note {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-top: 0.75rem;
  line-height: 1.45;
}

.cart-success { padding: 2rem 0; }
.cart-success-card {
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
  background: #fff;
  border: 1px solid var(--border-soft);
  padding: 2.5rem 1.5rem;
}
.cart-success-card p { color: var(--text-soft); margin: 0.75rem 0 1.5rem; }

/* Page banner legacy */
.page-banner {
  background: var(--cream-dark);
  border-bottom: 1px solid var(--border-soft);
  padding: 2rem 0;
  text-align: center;
}
.page-banner h1 {
  font-family: var(--font-serif);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 500;
}

/* =========================================================
   v5 — Header redesign + topbar élégante
   ========================================================= */

/* Hide WP admin bar completely on front */
html { margin-top: 0 !important; }
#wpadminbar { display: none !important; }

.topbar {
  background: linear-gradient(90deg, #4a1522 0%, #6b1e2f 45%, #8a3044 100%);
  color: rgba(255, 248, 242, 0.92);
  border-bottom: none;
  position: relative;
  overflow: hidden;
}
.topbar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(212, 188, 150, 0.12), transparent);
  pointer-events: none;
}
.topbar-inner {
  min-height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-block: 0.4rem;
}
.topbar-msg {
  margin: 0;
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 400;
  text-align: center;
  position: relative;
  z-index: 1;
}
.topbar-highlight {
  color: #f0d9b0;
  font-weight: 500;
}
.topbar-sep {
  margin: 0 0.55rem;
  opacity: 0.45;
}
@media (max-width: 700px) {
  .topbar-hide-sm { display: none; }
  .topbar-sep.topbar-hide-sm { display: none; }
}

.site-header {
  background: rgba(250, 246, 241, 0.94);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-soft);
}
.header-shell {
  padding-block: 0.55rem 0.15rem;
}
/* Logo GAUCHE — Explorer + panier DROITE (flex forcé) */
.header-top {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 1rem;
  min-height: 64px;
  width: 100%;
}
.header-left {
  display: flex !important;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
  flex: 0 1 auto !important;
  order: 1 !important;
  margin-right: auto !important;
}
.header-left .logo {
  text-align: left !important;
  justify-self: start !important;
}
.header-right {
  display: flex !important;
  align-items: center;
  justify-content: flex-end !important;
  gap: 0.55rem;
  flex: 0 0 auto !important;
  order: 2 !important;
  margin-left: auto !important;
  margin-right: 0 !important;
}
.menu-toggle { flex-shrink: 0; }

/* Explore & order — next to search/cart */
.btn-explore {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 0.85rem 0.45rem 0.7rem;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 999px;
  color: var(--text);
  max-width: 240px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.btn-explore:hover {
  border-color: var(--burgundy);
  box-shadow: 0 6px 20px rgba(107, 30, 47, 0.1);
  background: #fff;
}
.btn-explore svg { color: var(--burgundy); flex-shrink: 0; }
.btn-explore-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
  min-width: 0;
}
.btn-explore-text strong {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text);
}
.btn-explore-text em {
  font-style: normal;
  font-size: 0.62rem;
  color: var(--text-muted);
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 899px) {
  .btn-explore-text { display: none; }
  .btn-explore {
    width: 38px;
    height: 38px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
  }
}

/* Center nav */
.main-nav {
  display: none;
  border-top: 1px solid var(--border-soft);
  margin-top: 0.35rem;
}
.main-nav ul {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.1rem 0.15rem;
  min-height: 40px;
  padding: 0.15rem 0 0.35rem;
  border: 0;
}
.main-nav a {
  display: block;
  padding: 0.5rem 0.85rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-soft);
  position: relative;
  transition: color 0.25s ease;
}
.main-nav a::after {
  content: "";
  position: absolute;
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.28rem;
  height: 1px;
  background: var(--burgundy);
  transform: scaleX(0);
  transition: transform 0.3s var(--ease);
  display: block;
}
.main-nav a:hover {
  color: var(--burgundy);
}
.main-nav a:hover::after {
  transform: scaleX(1);
}
@media (min-width: 900px) {
  .main-nav { display: block; }
  .menu-toggle { display: none; }
  .header-top {
    display: flex;
    justify-content: space-between;
  }
  .header-right {
    margin-left: auto;
  }
}

.mobile-cta {
  background: var(--burgundy) !important;
  color: #fff !important;
  text-align: center !important;
  margin: 0.5rem 0 1rem !important;
  border-radius: 4px;
  letter-spacing: 0.1em !important;
}
.mobile-cta:hover { opacity: 0.92; }

/* Design skin body classes (vars overridden by studio plugin) */
body.skin-noir-or {
  --cream: #12100e;
  --cream-dark: #1a1612;
  --ivory: #1c1814;
  --text: #f5ebe0;
  --text-soft: #c9b8a6;
  --text-muted: #9a8876;
  --burgundy: #c9a36a;
  --burgundy-dark: #e0bc84;
  --border-soft: rgba(255,255,255,0.08);
  --border: rgba(201,163,106,0.35);
  background: var(--cream);
  color: var(--text);
}
body.skin-noir-or .site-header,
body.skin-noir-or .cat-card,
body.skin-noir-or .product-card-image,
body.skin-noir-or .contact-card,
body.skin-noir-or .review-card {
  background: #1a1612;
}
body.skin-noir-or .btn-explore { background: #1a1612; color: #f5ebe0; }

/* =========================================================
   MOBILE REWORK — max-width 899px ONLY
   Desktop / PC rules above are NEVER modified here.
   ========================================================= */
@media (max-width: 899px) {
  /* --- Base --- */
  .container {
    width: min(100% - 1.5rem, var(--container));
  }

  /* --- Topbar --- */
  .topbar-msg {
    font-size: 0.58rem;
    letter-spacing: 0.1em;
    line-height: 1.35;
    padding: 0 0.25rem;
  }

  /* --- Header / Nav --- */
  .site-header {
    position: sticky;
    top: 0;
  }
  .header-shell {
    padding-block: 0.4rem 0.2rem;
  }
  .header-top {
    min-height: 56px;
    gap: 0.5rem;
  }
  .header-left .logo-name {
    font-size: 0.95rem;
    letter-spacing: 0.08em;
  }
  .header-left .logo-tag {
    font-size: 0.52rem;
    letter-spacing: 0.1em;
    max-width: 42vw;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .btn-explore {
    width: 40px;
    height: 40px;
    padding: 0;
    border-radius: 50%;
    justify-content: center;
  }
  .btn-explore-text {
    display: none !important;
  }
  .icon-btn,
  .cart-link {
    width: 40px;
    height: 40px;
  }
  .main-nav {
    display: none !important; /* mobile uses burger menu only */
  }

  /* Mobile drawer cleaner */
  .mobile-menu.active {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    padding: 1rem 1.15rem 2rem;
    gap: 0;
    overflow-y: auto;
  }
  .mobile-menu a {
    padding: 0.95rem 0.25rem;
    font-size: 0.82rem;
    letter-spacing: 0.1em;
  }
  .mobile-cta {
    margin: 0.75rem 0 1rem !important;
    padding: 0.95rem 1rem !important;
    border-radius: 6px !important;
  }
  .mobile-sub {
    padding-left: 0.75rem !important;
    opacity: 0.85;
  }

  /* --- Hero --- */
  .hero-grid {
    display: flex;
    flex-direction: column;
  }
  .hero-copy {
    order: 1;
    padding: 1.5rem 0 1.25rem;
    max-width: none;
  }
  .hero h1 {
    font-size: clamp(1.65rem, 7.5vw, 2.1rem);
    line-height: 1.15;
    margin-bottom: 0.75rem;
  }
  .hero-lead {
    font-size: 0.9rem;
    margin-bottom: 1.15rem;
    max-width: none;
  }
  .hero-copy .btn {
    width: 100%;
    max-width: 100%;
  }
  .hero-dots {
    margin-top: 1rem;
    justify-content: center;
  }
  .hero-visual {
    order: 2;
    min-height: 0;
    width: 100%;
  }
  .hero-visual img {
    min-height: 200px;
    max-height: 260px;
    width: 100%;
    object-fit: cover;
  }

  /* --- Vitrine strip --- */
  .vitrine-strip {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 2px;
  }
  .vitrine-strip a:nth-child(5) {
    grid-column: span 2;
    aspect-ratio: 16/7 !important;
  }
  .vitrine-strip a,
  .vitrine-strip figure {
    aspect-ratio: 1 !important;
  }

  /* --- Categories --- */
  .section {
    padding: 2rem 0;
  }
  .section-tight {
    padding: 1.5rem 0;
  }
  .categories {
    grid-template-columns: 1fr !important;
    gap: 0.85rem;
  }
  .cat-card-body {
    padding: 1rem 1rem 1.1rem;
  }
  .cat-card h3 {
    font-size: 1.15rem;
  }

  /* --- Products --- */
  .products-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 0.75rem 0.55rem !important;
  }
  .section-head {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 0.5rem;
    margin-bottom: 1.15rem;
  }
  .section-title {
    font-size: 1.55rem;
  }
  .product-name,
  .product-card h4 {
    font-size: 0.78rem;
  }
  .product-price,
  .product-card-price {
    font-size: 0.82rem;
  }
  .btn-add-mini {
    font-size: 0.62rem;
  }
  .product-card-actions {
    display: none; /* clutter on touch */
  }

  /* --- Boutique --- */
  .boutique-grid {
    grid-template-columns: 1fr !important;
    gap: 1.15rem;
  }
  .boutique-gallery {
    grid-template-columns: 1fr 1fr;
    gap: 0.45rem;
  }
  .boutique-gallery figure:first-child {
    grid-column: span 2;
    min-height: 180px !important;
  }
  .boutique-copy h2,
  .boutique-copy .section-title {
    font-size: 1.55rem;
  }

  /* --- Trust --- */
  .trust-grid {
    grid-template-columns: 1fr !important;
    gap: 0.85rem;
    padding: 1.25rem 0;
  }
  .trust-item {
    gap: 0.65rem;
  }

  /* --- Reviews --- */
  .reviews-grid {
    grid-template-columns: 1fr !important;
  }

  /* --- Contact --- */
  .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 1rem;
  }
  .contact-card {
    padding: 1.2rem 1rem;
  }
  .form-row {
    grid-template-columns: 1fr !important;
  }

  /* --- Footer --- */
  .footer-grid {
    grid-template-columns: 1fr !important;
    gap: 1.35rem;
  }
  .site-footer {
    padding: 2rem 0 1.25rem;
  }

  /* --- Shop / boutique page --- */
  .shop-banner {
    padding: 1.5rem 0 1.15rem;
  }
  .shop-banner .section-title {
    font-size: 1.6rem;
  }
  .shop-filters {
    grid-template-columns: 1fr !important;
    gap: 0.65rem;
    padding: 0.9rem;
  }
  .filter-actions {
    width: 100%;
  }
  .filter-actions .btn {
    flex: 1;
  }
  .shop-cats {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.35rem;
    gap: 0.4rem;
  }
  .shop-chip {
    flex: 0 0 auto;
    white-space: nowrap;
    padding: 0.5rem 0.75rem;
    font-size: 0.65rem;
  }

  /* --- Product detail (PDP) --- */
  .pdp {
    padding-bottom: 2rem;
  }
  .pdp-breadcrumb {
    font-size: 0.68rem;
    margin: 0.85rem 0 1rem;
    flex-wrap: wrap;
    gap: 0.25rem;
    line-height: 1.4;
  }
  .pdp-grid {
    grid-template-columns: 1fr !important;
    gap: 1.15rem !important;
  }
  .pdp-gallery {
    position: relative !important;
    top: auto !important;
  }
  .pdp-main-wrap {
    aspect-ratio: 1;
    border-radius: 0;
  }
  .pdp-thumbs {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.35rem;
    margin-top: 0.5rem;
  }
  .pdp-info {
    padding: 0 0 0.5rem;
  }
  .pdp-title {
    font-size: 1.55rem;
    line-height: 1.2;
    margin-bottom: 0.55rem;
  }
  .pdp-price {
    font-size: 1.25rem;
    margin-bottom: 0.4rem;
  }
  .pdp-specs {
    margin-bottom: 1.15rem;
  }
  .pdp-spec {
    grid-template-columns: 100px 1fr;
    gap: 0.5rem;
    padding: 0.55rem 0;
  }
  .pdp-actions {
    flex-direction: column;
    align-items: stretch;
    gap: 0.65rem;
    position: sticky;
    bottom: 0;
    background: linear-gradient(180deg, transparent, var(--cream) 18%);
    padding: 0.75rem 0 0.35rem;
    z-index: 5;
  }
  .pdp-add {
    width: 100%;
    min-width: 0;
  }
  .qty-control {
    width: 100%;
    justify-content: space-between;
  }
  .qty-control .qty-btn {
    flex: 0 0 48px;
  }
  .qty-input {
    flex: 1;
  }
  .pdp-related {
    margin-top: 2rem;
    padding-top: 1.25rem;
  }
  .pdp-related .section-head {
    flex-direction: column;
    align-items: flex-start;
  }

  /* --- Cart page --- */
  .cart-layout {
    grid-template-columns: 1fr !important;
  }
  .cart-item {
    grid-template-columns: 72px 1fr !important;
    gap: 0.75rem;
    padding: 0.85rem;
  }
  .cart-item-line {
    grid-column: 2;
    text-align: left;
  }
  .cart-summary {
    position: relative !important;
    top: auto !important;
  }

  /* --- Marques carousel mobile already ok --- */
  .marques-carousel {
    mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  }
}
