/*
Theme Name: Polene Destock
Theme URI: https://poleneparis.fr
Description: Theme luxe maroquinerie
Version: 1.0.0
Author: Studio
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
Text Domain: polene
License: Proprietary
*/

/* ═══════════════════════════════════════
   Design System — Variables
═══════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;1,300;1,400&family=Jost:wght@300;400;500&display=swap');

:root {
  /* Fond */
  --lux-bg:           #FFFFFF;
  --lux-bg-soft:      #F9F8F6;
  --lux-bg-dark:      #1C1C1A;

  /* Texte */
  --lux-text:         #1A1A18;
  --lux-text-muted:   #8A8178;
  --lux-text-white:   #F7F4F0;

  /* Accent */
  --lux-accent:       #9B7E5A;
  --lux-accent-light: #C4A882;

  /* Bordures */
  --lux-border:       #E5E0D9;
  --lux-border-strong:#C8BFB4;

  /* Typographies */
  --lux-heading:      'Cormorant Garamond', Georgia, serif;
  --lux-body:         'Jost', system-ui, sans-serif;

  /* Transitions */
  --lux-ease:         cubic-bezier(0.25, 0.1, 0.25, 1);
}

/* ═══════════════════════════════════════
   Reset & Base
═══════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }

body {
  font-family: var(--lux-body);
  font-weight: 300;
  font-size: 15px;
  line-height: 1.6;
  color: var(--lux-text);
  background: var(--lux-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a { color: inherit; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: inherit; cursor: pointer; }

/* WooCommerce reset — on override tout */
.woocommerce .products,
.woocommerce ul.products,
.woocommerce-page .products { list-style: none; padding: 0; }
.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering { display: none; }
.woocommerce .price del { color: var(--lux-text-muted); }
.woocommerce .price ins { text-decoration: none; }
.woocommerce .star-rating { display: none; }
.woocommerce .onsale { display: none; }

/* ═══════════════════════════════════════
   CTA Buttons
═══════════════════════════════════════ */
.lux-btn {
  display: inline-block;
  font-family: var(--lux-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 13px 40px;
  transition: all 0.4s var(--lux-ease);
  cursor: pointer;
  background: transparent;
  border: none;
}
.lux-btn--light {
  border: 1px solid rgba(255,255,255,0.65);
  color: #fff;
}
.lux-btn--light:hover {
  background: #fff;
  color: var(--lux-text);
  border-color: #fff;
}
.lux-btn--dark {
  border: 1px solid rgba(26,26,24,0.55);
  color: var(--lux-text);
}
.lux-btn--dark:hover {
  background: var(--lux-text);
  color: #fff;
  border-color: var(--lux-text);
}

/* ═══════════════════════════════════════
   Countdown Bar
═══════════════════════════════════════ */
.lux-cd { width: 100%; position: relative; z-index: 10; background: var(--lux-bg-dark); }
.lux-cd__bar {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 10px; padding: 12px 20px; min-height: 44px;
}
.lux-cd__msg {
  font-family: var(--lux-body); font-size: 10px; font-weight: 400;
  letter-spacing: 0.16em; text-transform: uppercase; color: #fff; white-space: nowrap;
}
.lux-cd__sep { font-family: var(--lux-body); font-size: 10px; color: rgba(255,255,255,0.3); }
.lux-cd__timer {
  font-family: var(--lux-body); font-size: 11px; font-weight: 400;
  letter-spacing: 0.12em; color: #fff; font-variant-numeric: tabular-nums; white-space: nowrap;
}
.lux-cd__colon { color: rgba(255,255,255,0.4); padding: 0 1px; }
.lux-cd__cta {
  font-family: var(--lux-body); font-size: 10px; font-weight: 400;
  letter-spacing: 0.16em; text-transform: uppercase; color: #fff;
  text-decoration: underline; text-underline-offset: 3px;
  text-decoration-thickness: 1px; text-decoration-color: rgba(255,255,255,0.4);
  transition: text-decoration-color 0.3s; white-space: nowrap;
}
.lux-cd__cta:hover { text-decoration-color: #fff; }

/* ═══════════════════════════════════════
   Navbar
═══════════════════════════════════════ */
.lux-nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--lux-bg); border-bottom: 1px solid var(--lux-border);
}
.lux-nav__inner {
  max-width: 1440px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr auto 1fr; align-items: center;
  padding: 0 40px; height: 56px;
}
.lux-nav__left { justify-self: start; }
.lux-nav__right { justify-self: end; }
.lux-nav__logo {
  font-family: var(--lux-heading); font-weight: 300;
  font-size: 22px; letter-spacing: 0.06em;
  color: var(--lux-text); text-decoration: none;
  justify-self: center; text-align: center;
}
.lux-nav__links {
  display: flex; align-items: center; gap: 28px; list-style: none;
}
.lux-nav__links a {
  font-family: var(--lux-body); font-size: 11px; font-weight: 400;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--lux-text); text-decoration: none;
  transition: opacity 0.3s;
}
.lux-nav__links a:hover { opacity: 0.5; }
.lux-nav__right { display: flex; align-items: center; gap: 20px; }
.lux-nav__cart {
  font-family: var(--lux-body); font-size: 11px; font-weight: 400;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--lux-text); text-decoration: none;
  transition: opacity 0.3s;
}
.lux-nav__cart:hover { opacity: 0.5; }
.lux-nav__cart-count {
  font-size: 9px; vertical-align: super; margin-left: 2px;
}

/* Mobile nav */
.lux-nav__toggle {
  display: none; background: none; border: none; padding: 4px;
  cursor: pointer; color: var(--lux-text);
}
.lux-nav__toggle svg { width: 22px; height: 22px; }

@media (max-width: 768px) {
  .lux-nav__inner { padding: 0 20px; }
  .lux-nav__toggle { display: block; }
  .lux-nav__links {
    display: none; position: absolute; top: 56px; left: 0; right: 0;
    background: var(--lux-bg); flex-direction: column; padding: 24px 20px;
    border-bottom: 1px solid var(--lux-border); gap: 16px;
  }
  .lux-nav__links.is-open { display: flex; }
}

/* ═══════════════════════════════════════
   Hero Editorial
═══════════════════════════════════════ */
.lux-hero {
  position: relative; width: 100%; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.lux-hero--small  { height: 60vh; min-height: 380px; }
.lux-hero--medium { height: 78vh; min-height: 480px; }
.lux-hero--large  { height: 90vh; min-height: 560px; }
.lux-hero--full   { height: 100svh; min-height: 600px; }

.lux-hero__bg { position: absolute; inset: 0; }
.lux-hero__img {
  width: 100%; height: 100%; object-fit: cover; object-position: center; display: block;
}
.lux-hero__video {
  width: 100%; height: 100%; object-fit: cover; object-position: center; display: block;
}
.lux-hero__image {
  width: 100%; height: 100%; object-fit: cover; object-position: center; display: block;
}
.lux-hero__overlay {
  position: absolute; inset: 0; background: #000; pointer-events: none;
}
.lux-hero__content {
  position: relative; z-index: 2; padding: 0 32px; max-width: 960px; width: 100%;
}
.lux-hero__content--center { text-align: center; }
.lux-hero__content--left {
  text-align: left; padding-left: 80px; max-width: 680px; margin-right: auto;
}
.lux-hero__eyebrow {
  font-family: var(--lux-body); font-size: 10px; font-weight: 400;
  letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.75; margin: 0 0 18px;
}
.lux-hero__heading {
  font-family: var(--lux-heading); font-weight: 300;
  font-size: clamp(44px, 6.5vw, 92px); line-height: 1.08;
  letter-spacing: 0.03em; margin: 0 0 40px; color: inherit;
}

@media (max-width: 768px) {
  .lux-hero--large, .lux-hero--full { height: 82vh; }
  .lux-hero__heading { font-size: clamp(38px, 11vw, 56px); }
  .lux-hero__content { padding: 0 24px; }
  .lux-hero__content--left { padding-left: 24px; }
}

/* ═══════════════════════════════════════
   Strip Products (horizontal scroll)
═══════════════════════════════════════ */
.lux-strip { width: 100%; }
.lux-strip__header {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0 40px 20px; max-width: 1440px; margin: 0 auto;
}
.lux-strip__label {
  font-family: var(--lux-body); font-size: 10px; font-weight: 400;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--lux-text-muted);
}
.lux-strip__see-all {
  font-family: var(--lux-body); font-size: 10px; font-weight: 400;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--lux-text);
  text-decoration: none; border-bottom: 1px solid currentColor;
  padding-bottom: 1px; transition: opacity 0.3s ease;
}
.lux-strip__see-all:hover { opacity: 0.45; }
.lux-strip__scroll {
  overflow-x: auto; -webkit-overflow-scrolling: touch;
  scrollbar-width: none; cursor: grab; user-select: none;
}
.lux-strip__scroll::-webkit-scrollbar { display: none; }
.lux-strip__scroll:active { cursor: grabbing; }
.lux-strip__track {
  display: flex; gap: 14px; padding: 0 40px 4px; width: max-content;
}
.lux-strip__item { display: block; text-decoration: none; flex-shrink: 0; width: 148px; }
.lux-strip__thumb {
  width: 148px; height: 188px; overflow: hidden; background: var(--lux-bg-soft);
}
.lux-strip__img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.55s ease;
}
.lux-strip__item:hover .lux-strip__img { transform: scale(1.05); }
.lux-strip__info { padding: 9px 0 0; display: flex; flex-direction: column; gap: 3px; }
.lux-strip__name {
  font-family: var(--lux-heading); font-size: 14px; font-weight: 400;
  color: var(--lux-text); line-height: 1.25;
}
.lux-strip__price {
  font-family: var(--lux-body); font-size: 11px; font-weight: 400; color: var(--lux-text);
}
.lux-strip__compare {
  font-family: var(--lux-body); font-size: 10px; font-weight: 300;
  color: var(--lux-text-muted); text-decoration: line-through; text-decoration-thickness: 1px;
}

@media (max-width: 768px) {
  .lux-strip__track { padding: 0 20px 4px; gap: 12px; }
  .lux-strip__header { padding: 0 20px 16px; }
  .lux-strip__item { width: 124px; }
  .lux-strip__thumb { width: 124px; height: 158px; }
}

/* ═══════════════════════════════════════
   Split Editorial
═══════════════════════════════════════ */
.lux-split { width: 100%; overflow: hidden; }
.lux-split__wrap {
  display: grid; grid-template-columns: 60% 40%; min-height: 640px;
}
.lux-split--photo-right .lux-split__wrap { grid-template-columns: 40% 60%; }
.lux-split--photo-right .lux-split__photo { order: 2; }
.lux-split--photo-right .lux-split__products { order: 1; }

.lux-split__photo { position: relative; overflow: hidden; }
.lux-split__photo-inner { height: 100%; }
.lux-split__photo-img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.7s ease;
}
.lux-split__photo-img--placeholder {
  object-fit: contain; padding: 40px; background: var(--lux-bg-soft);
}
.lux-split__photo:hover .lux-split__photo-img { transform: scale(1.03); }
.lux-split__caption {
  position: absolute; bottom: 16px; left: 20px;
  font-family: var(--lux-body); font-size: 10px; font-weight: 300;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.75); margin: 0;
}
.lux-split__products {
  display: flex; flex-direction: column; justify-content: center;
  padding: 48px 44px; gap: 28px;
}
.lux-split__hd { margin-bottom: 4px; }
.lux-split__title {
  font-family: var(--lux-heading); font-weight: 300;
  font-size: clamp(26px, 2.8vw, 42px); line-height: 1.1;
  color: var(--lux-text); margin: 0 0 10px;
}
.lux-split__subtitle {
  font-family: var(--lux-body); font-size: 13px; font-weight: 300;
  line-height: 1.75; color: var(--lux-text-muted); margin: 0;
}
.lux-split__cta { margin-top: 24px; }
.lux-split__cards { display: flex; flex-direction: column; gap: 16px; }
.lux-split__card {
  display: grid; grid-template-columns: 76px 1fr; gap: 16px;
  text-decoration: none; align-items: center;
}
.lux-split__card-img-wrap {
  width: 76px; height: 96px; overflow: hidden;
  background: var(--lux-bg); flex-shrink: 0;
}
.lux-split__card-img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.5s ease;
}
.lux-split__card:hover .lux-split__card-img { transform: scale(1.06); }
.lux-split__card-info { display: flex; flex-direction: column; gap: 5px; }
.lux-split__card-name {
  font-family: var(--lux-heading); font-size: 16px; font-weight: 400;
  color: var(--lux-text); line-height: 1.2;
}
.lux-split__card-price {
  font-family: var(--lux-body); font-size: 12px; font-weight: 300;
  color: var(--lux-text-muted);
}

@media (max-width: 960px) {
  .lux-split__wrap,
  .lux-split--photo-right .lux-split__wrap { grid-template-columns: 1fr; }
  .lux-split--photo-right .lux-split__photo { order: 1; }
  .lux-split--photo-right .lux-split__products { order: 2; }
  .lux-split__photo-inner { min-height: 380px; }
  .lux-split__products { padding: 32px 24px; }
}

/* ═══════════════════════════════════════
   Silence (full-width photo pause)
═══════════════════════════════════════ */
.lux-silence {
  width: 100%; display: block; overflow: hidden; line-height: 0; font-size: 0;
}
.lux-silence--natural { height: auto; }
.lux-silence--medium  { height: 52vw; max-height: 720px; }
.lux-silence--tall    { height: 64vw; max-height: 900px; }
.lux-silence--banner  { height: 34vw; max-height: 520px; }
.lux-silence--large   { height: auto; }
.lux-silence__img { width: 100%; display: block; transition: transform 0.8s ease; }
.lux-silence--large .lux-silence__img { height: auto; object-fit: contain; }
.lux-silence--natural .lux-silence__img { height: auto; }
.lux-silence--medium .lux-silence__img,
.lux-silence--tall .lux-silence__img,
.lux-silence--banner .lux-silence__img { height: 100%; object-fit: cover; }

@media (max-width: 768px) {
  .lux-silence--medium { height: 72vw; max-height: 480px; }
  .lux-silence--tall   { height: 90vw; max-height: 560px; }
  .lux-silence--banner { height: 60vw; max-height: 360px; }
}

/* ═══════════════════════════════════════
   Grid Products
═══════════════════════════════════════ */
.lux-grid { width: 100%; }
.lux-grid__container { max-width: 1440px; margin: 0 auto; padding: 0 40px; }
.lux-grid__hd {
  display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 36px;
}
.lux-grid__title {
  font-family: var(--lux-heading); font-weight: 300;
  font-size: clamp(28px, 3.5vw, 48px); color: var(--lux-text);
  margin: 0; letter-spacing: 0.02em;
}
.lux-grid__see-all {
  font-family: var(--lux-body); font-size: 10px; font-weight: 400;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--lux-text);
  text-decoration: none; border-bottom: 1px solid currentColor;
  padding-bottom: 1px; opacity: 0.8; transition: opacity 0.3s;
}
.lux-grid__see-all:hover { opacity: 0.4; }
.lux-grid__items {
  display: grid; grid-template-columns: repeat(var(--cols, 4), 1fr); gap: 24px;
}
.lux-grid__card--wide { grid-column: span 2; }
.lux-grid__card--wide .lux-grid__img-wrap { aspect-ratio: 3/2; }
.lux-grid__card { display: block; text-decoration: none; }
.lux-grid__img-wrap {
  position: relative; overflow: hidden; aspect-ratio: 3/4; background: var(--lux-bg-soft);
}
.lux-grid__img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; display: block;
  transition: opacity 0.55s ease, transform 0.65s ease;
}
.lux-grid__img--hover { opacity: 0; }
.lux-grid__card:hover .lux-grid__img--primary { opacity: 0; transform: scale(1.04); }
.lux-grid__card:hover .lux-grid__img--hover   { opacity: 1; transform: scale(1.04); }
.lux-grid__img-wrap:not(:has(.lux-grid__img--hover)) .lux-grid__img--primary {
  position: static; width: 100%; height: 100%;
}
.lux-grid__card:hover .lux-grid__img-wrap:not(:has(.lux-grid__img--hover)) .lux-grid__img--primary {
  opacity: 1; transform: scale(1.04);
}
.lux-grid__card-info {
  padding: 13px 0 0; display: flex; justify-content: space-between;
  align-items: flex-start; gap: 8px;
}
.lux-grid__card-left { display: flex; flex-direction: column; gap: 3px; }
.lux-grid__card-name {
  font-family: var(--lux-heading); font-size: 17px; font-weight: 400;
  color: var(--lux-text); margin: 0; line-height: 1.2;
}
.lux-grid__card-variants {
  font-family: var(--lux-body); font-size: 10px; font-weight: 300;
  letter-spacing: 0.08em; color: var(--lux-text-muted);
}
.lux-grid__card-prices {
  display: flex; flex-direction: column; align-items: flex-end; gap: 2px; padding-top: 3px;
}
.lux-grid__card-price {
  font-family: var(--lux-body); font-size: 13px; font-weight: 400;
  color: var(--lux-text); white-space: nowrap;
}
.lux-grid__card-compare {
  font-family: var(--lux-body); font-size: 11px; font-weight: 300;
  color: var(--lux-text-muted); white-space: nowrap;
  text-decoration: line-through; text-decoration-thickness: 1px;
}

@media (max-width: 1100px) {
  .lux-grid__items { grid-template-columns: repeat(3, 1fr); }
  .lux-grid__card--wide { grid-column: span 1; }
  .lux-grid__card--wide .lux-grid__img-wrap { aspect-ratio: 3/4; }
}
@media (max-width: 768px) {
  .lux-grid__container { padding: 0 20px; }
  .lux-grid__items { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .lux-grid__hd { margin-bottom: 20px; }
}

/* ═══════════════════════════════════════
   Values Band
═══════════════════════════════════════ */
.lux-values { width: 100%; }
.lux-values__inner {
  max-width: 1440px; margin: 0 auto; padding: 0 40px;
  display: grid; grid-template-columns: 38% 62%; gap: 80px; align-items: center;
}
.lux-values__quote {
  font-family: var(--lux-heading); font-style: italic; font-weight: 300;
  font-size: clamp(20px, 2.4vw, 34px); line-height: 1.55;
  color: var(--lux-text); margin: 0 0 28px;
  letter-spacing: 0.01em; border: none; padding: 0;
}
.lux-values__cta { display: inline-block; }
.lux-values__pillars {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
}
.lux-values__num {
  display: block; font-family: var(--lux-body); font-size: 10px; font-weight: 300;
  letter-spacing: 0.16em; color: var(--lux-text-muted); margin-bottom: 12px;
}
.lux-values__pillar-title {
  font-family: var(--lux-heading); font-size: 20px; font-weight: 400;
  color: var(--lux-text); margin: 0 0 10px; line-height: 1.2;
}
.lux-values__pillar-text {
  font-family: var(--lux-body); font-size: 12px; font-weight: 300;
  line-height: 1.85; color: var(--lux-text-muted); margin: 0;
}

@media (max-width: 1100px) {
  .lux-values__inner { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 768px) {
  .lux-values__inner { padding: 0 24px; }
  .lux-values__pillars { grid-template-columns: 1fr; gap: 28px; }
}

/* ═══════════════════════════════════════
   Categories Title (oversized links)
═══════════════════════════════════════ */
.lux-cat { width: 100%; text-align: center; }
.lux-cat__nav { display: flex; flex-direction: column; align-items: center; gap: 0; }
.lux-cat__link {
  display: block; font-family: var(--lux-heading); font-weight: 300;
  font-size: clamp(52px, 9vw, 128px); line-height: 1.0;
  letter-spacing: 0.06em; color: var(--lux-text); text-decoration: none;
  text-transform: uppercase; transition: opacity 0.3s ease;
}
.lux-cat__link:hover { opacity: 0.45; }

@media (max-width: 768px) {
  .lux-cat__link { font-size: clamp(36px, 11vw, 64px); letter-spacing: 0.04em; }
}

/* ═══════════════════════════════════════
   Collection / Shop page background
═══════════════════════════════════════ */
.lux-wc-main,
.woocommerce-page.tax-product_cat,
.woocommerce-page.post-type-archive-product,
.woocommerce-shop {
  background: #F9F8F6;
}
.lux-wc-main { padding-bottom: 80px; }

/* ═══════════════════════════════════════
   Collection Header
═══════════════════════════════════════ */
.lux-col-hd {
  width: 100%; padding: 60px 40px 40px; text-align: center; position: relative;
}
.lux-col-hd--with-image {
  padding: 0; min-height: 340px;
  display: flex; align-items: flex-end; justify-content: center;
}
.lux-col-hd__media { position: absolute; inset: 0; }
.lux-col-hd__img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lux-col-hd__overlay { position: absolute; inset: 0; background: #000; }
.lux-col-hd__content {
  position: relative; z-index: 2; max-width: 640px; margin: 0 auto;
}
.lux-col-hd__content--over-image { padding: 40px 24px 48px; color: #fff; }
.lux-col-hd__eyebrow {
  font-family: var(--lux-body); font-size: 10px; font-weight: 400;
  letter-spacing: 0.2em; text-transform: uppercase; opacity: 0.7; margin: 0 0 12px;
}
.lux-col-hd__title {
  font-family: var(--lux-heading); font-weight: 300;
  font-size: clamp(36px, 5vw, 64px); letter-spacing: 0.04em;
  line-height: 1.05; margin: 0 0 16px; color: inherit;
}
.lux-col-hd__desc {
  font-family: var(--lux-body); font-size: 13px; font-weight: 300;
  line-height: 1.75; color: inherit; opacity: 0.8; margin: 0;
}

@media (max-width: 768px) {
  .lux-col-hd { padding: 48px 24px 32px; }
  .lux-col-hd--with-image { min-height: 240px; }
}

/* ═══════════════════════════════════════
   Accessories Nav (tabs)
═══════════════════════════════════════ */
.lux-acc-nav { width: 100%; }
.lux-acc-nav__header {
  text-align: left; padding: 0 40px 28px; max-width: 1400px; margin: 0 auto;
}
.lux-acc-nav__eyebrow {
  font-family: var(--lux-body); font-size: 10px; font-weight: 400;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--lux-text-muted); margin: 0 0 10px;
}
.lux-acc-nav__title {
  font-family: var(--lux-heading); font-weight: 300;
  font-size: clamp(32px, 4vw, 52px); letter-spacing: 0.03em;
  line-height: 1.05; color: var(--lux-text); margin: 0 0 12px;
}
.lux-acc-nav__desc {
  font-family: var(--lux-body); font-size: 13px; font-weight: 300;
  line-height: 1.75; color: var(--lux-text-muted); margin: 0;
}
.lux-acc-nav__tabs { border-bottom: 1px solid var(--lux-border); overflow: hidden; }
.lux-acc-nav__tabs-inner {
  display: flex; align-items: center; gap: 0;
  padding: 0 40px; max-width: 1400px; margin: 0 auto;
  overflow-x: auto; scrollbar-width: none;
}
.lux-acc-nav__tabs-inner::-webkit-scrollbar { display: none; }
.lux-acc-nav__tab {
  flex-shrink: 0; font-family: var(--lux-body); font-size: 12px; font-weight: 300;
  letter-spacing: 0.04em; color: var(--lux-text-muted); text-decoration: none;
  padding: 14px 20px; position: relative; transition: color 0.25s ease;
  white-space: nowrap; cursor: pointer;
}
.lux-acc-nav__tab:hover { color: var(--lux-text); }
.lux-acc-nav__tab--active { color: var(--lux-text); font-weight: 400; }
.lux-acc-nav__tab--active::after {
  content: ''; position: absolute; bottom: -1px; left: 20px; right: 20px;
  height: 1px; background: var(--lux-text);
}

@media (max-width: 768px) {
  .lux-acc-nav__header { padding: 0 24px 20px; }
  .lux-acc-nav__tabs-inner { padding: 0 16px; }
  .lux-acc-nav__tab { padding: 12px 14px; font-size: 11px; }
}

/* ═══════════════════════════════════════
   PDP — Product Detail Page
═══════════════════════════════════════ */
.lux-pdp {
  display: flex; flex-wrap: wrap;
  width: 100%; max-width: 100vw; overflow-x: hidden;
}
.lux-pdp * { box-sizing: border-box; }
.lux-pdp form {
  display: block; width: 100%; margin: 0;
}

.lux-pdp__gallery {
  position: relative; width: 100%; background: var(--lux-bg-soft);
}
.lux-pdp__gallery-track {
  display: flex; overflow-x: auto; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch; scrollbar-width: none; scroll-behavior: smooth;
}
.lux-pdp__gallery-track::-webkit-scrollbar { display: none; }
.lux-pdp__gallery-slide {
  flex: 0 0 100%; scroll-snap-align: start; aspect-ratio: 3/4; overflow: hidden;
}
.lux-pdp__gallery-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lux-pdp__gallery-dots {
  position: absolute; bottom: 14px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 6px; pointer-events: none;
}
.lux-pdp__gallery-dot {
  width: 5px; height: 5px; border-radius: 50%; background: rgba(255,255,255,0.45);
  transition: background 0.3s ease, transform 0.3s ease;
}
.lux-pdp__gallery-dot.is-active { background: rgba(255,255,255,0.95); transform: scale(1.3); }

.lux-pdp__info { width: 100%; max-width: 100%; padding: 20px 20px 60px; background: var(--lux-bg); box-sizing: border-box; overflow-x: hidden; }

.lux-pdp__header {
  display: flex; justify-content: space-between; align-items: flex-start;
  gap: 12px; margin-bottom: 20px; width: 100%;
}
.lux-pdp__header-left { min-width: 0; flex: 1 1 auto; }
.lux-pdp__title {
  font-family: var(--lux-heading); font-weight: 300;
  font-size: clamp(22px, 5vw, 32px); line-height: 1.1;
  color: var(--lux-text); margin: 0 0 4px; letter-spacing: 0.02em;
}
.lux-pdp__subtitle {
  font-family: var(--lux-body); font-size: 11px; font-weight: 400;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--lux-text-muted); margin: 0;
}
.lux-pdp__price-wrap {
  display: flex; flex-direction: column; align-items: flex-end; gap: 2px; flex-shrink: 0;
}
.lux-pdp__price {
  font-family: var(--lux-body); font-size: 16px; font-weight: 400;
  color: var(--lux-text); white-space: nowrap;
}
.lux-pdp__compare {
  font-family: var(--lux-body); font-size: 12px; font-weight: 300;
  color: var(--lux-text-muted); text-decoration: line-through;
  text-decoration-thickness: 1px; white-space: nowrap;
}

/* Color strip */
.lux-pdp__colors { margin-bottom: 24px; }
.lux-pdp__colors-scroll {
  overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch;
  margin: 0 -20px; padding: 0 20px;
}
.lux-pdp__colors-scroll::-webkit-scrollbar { display: none; }
.lux-pdp__colors-track { display: flex; gap: 8px; width: max-content; padding-bottom: 4px; }
.lux-pdp__color-item {
  display: block; flex-shrink: 0; width: 60px; height: 76px; overflow: hidden;
  background: var(--lux-bg-soft); border: 1.5px solid transparent;
  transition: border-color 0.2s ease; text-decoration: none;
}
.lux-pdp__color-item.is-active { border-color: var(--lux-text); }
.lux-pdp__color-item.is-soldout { opacity: 0.35; }
.lux-pdp__color-img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* Add to cart */
.lux-pdp__atc {
  display: block; width: 100%; max-width: 100%; padding: 16px 12px;
  background: var(--lux-text); color: var(--lux-bg);
  font-family: var(--lux-body); font-size: 11px; font-weight: 400;
  letter-spacing: 0.14em; text-transform: uppercase; border: none;
  cursor: pointer; transition: background 0.3s ease; margin-bottom: 28px;
  box-sizing: border-box; white-space: normal; overflow-wrap: break-word;
  text-align: center;
  -webkit-appearance: none; appearance: none; border-radius: 0;
}
.lux-pdp__atc:hover { background: #333; }
.lux-pdp__atc--soldout {
  background: var(--lux-bg-soft); color: var(--lux-text-muted); cursor: default;
}

/* Tabs */
.lux-pdp__tabs { margin-bottom: 8px; }
.lux-pdp__tabs-nav {
  display: flex; gap: 0; border-bottom: 1px solid var(--lux-border);
  margin-bottom: 20px; overflow-x: auto; scrollbar-width: none;
}
.lux-pdp__tabs-nav::-webkit-scrollbar { display: none; }
.lux-pdp__tab-btn {
  flex-shrink: 0; padding: 10px 14px; background: none; border: none;
  border-bottom: 1.5px solid transparent; margin-bottom: -1px;
  font-family: var(--lux-body); font-size: 10px; font-weight: 400;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--lux-text-muted); cursor: pointer;
  transition: color 0.2s, border-color 0.2s;
}
.lux-pdp__tab-btn.is-active {
  color: var(--lux-text); border-bottom-color: var(--lux-text);
}
.lux-pdp__tab-pane { display: none; }
.lux-pdp__tab-pane.is-active { display: block; }
.lux-pdp__tab-content {
  font-family: var(--lux-body); font-size: 13px; font-weight: 300;
  line-height: 1.8; color: var(--lux-text-muted);
}
.lux-pdp__tab-content p { margin: 0 0 12px; }
.lux-pdp__tab-content p:last-child { margin-bottom: 0; }

/* Accordions */
.lux-pdp__accordions { margin-top: 8px; }
.lux-pdp__accordion { border-top: 1px solid var(--lux-border); }
.lux-pdp__accordion:last-child { border-bottom: 1px solid var(--lux-border); }
.lux-pdp__accordion-summary {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 0; cursor: pointer; list-style: none;
}
.lux-pdp__accordion-summary::-webkit-details-marker { display: none; }
.lux-pdp__accordion-title {
  font-family: var(--lux-body); font-size: 11px; font-weight: 400;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--lux-text);
}
.lux-pdp__accordion-icon {
  font-family: var(--lux-body); font-size: 18px; font-weight: 300;
  color: var(--lux-text); line-height: 1; transition: transform 0.3s ease;
}
.lux-pdp__accordion[open] .lux-pdp__accordion-icon { transform: rotate(45deg); }
.lux-pdp__accordion-body {
  padding: 0 0 20px; font-family: var(--lux-body); font-size: 13px; font-weight: 300;
  line-height: 1.8; color: var(--lux-text-muted);
}

/* Discover all link */
.lux-pdp__discover { margin-bottom: 20px; }
.lux-pdp__discover-link {
  font-family: var(--lux-body); font-size: 11px; font-weight: 400;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--lux-text-muted); text-decoration: none;
  border-bottom: 1px solid var(--lux-border);
  padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.lux-pdp__discover-link:hover {
  color: var(--lux-text); border-bottom-color: var(--lux-text);
}

/* Savoir-faire story (PDP bottom) */
.lux-pdp__story {
  display: grid; grid-template-columns: 1fr;
  margin-top: 48px; width: 100%; flex-basis: 100%;
}
.lux-pdp__story-text {
  padding: 40px 20px; order: 2;
}
.lux-pdp__story-title {
  font-family: var(--lux-heading); font-weight: 300;
  font-size: clamp(22px, 4vw, 32px); line-height: 1.15;
  letter-spacing: 0.02em; color: var(--lux-text);
  margin: 0 0 16px;
}
.lux-pdp__story-body {
  font-family: var(--lux-body); font-size: 13px; font-weight: 300;
  line-height: 1.85; color: var(--lux-text-muted); margin: 0;
}
.lux-pdp__story-image { order: 1; }
.lux-pdp__story-img {
  width: 100%; height: auto; display: block; object-fit: cover;
}

@media (min-width: 769px) {
  .lux-pdp__gallery { position: sticky; top: 0; height: 100vh; max-height: 100vh; width: 50%; }
  .lux-pdp__gallery-track { height: 100%; }
  .lux-pdp__gallery-slide { aspect-ratio: unset; height: 100%; }
  .lux-pdp__info { width: 50%; padding: 40px 48px 80px; max-width: 560px; }
  .lux-pdp__story {
    grid-template-columns: 1fr 1fr;
  }
  .lux-pdp__story-text { padding: 64px 48px; order: 1; display: flex; flex-direction: column; justify-content: center; }
  .lux-pdp__story-image { order: 2; }
  .lux-pdp__story-img { height: 100%; max-height: 560px; }
}

/* ═══════════════════════════════════════
   Savoir-Faire
═══════════════════════════════════════ */
.lux-sf { width: 100%; }
.lux-sf__text-block { padding: 48px 20px 36px; max-width: 680px; }
.lux-sf__title {
  font-family: var(--lux-heading); font-weight: 300;
  font-size: clamp(22px, 4vw, 34px); line-height: 1.15;
  letter-spacing: 0.02em; color: var(--lux-text); margin: 0 0 18px;
}
.lux-sf__body {
  font-family: var(--lux-body); font-size: 13px; font-weight: 300;
  line-height: 1.85; color: var(--lux-text-muted);
}
.lux-sf__body p { margin: 0 0 14px; }
.lux-sf__body p:last-child { margin-bottom: 0; }
.lux-sf__photo { width: 100%; overflow: hidden; line-height: 0; }
.lux-sf__img { width: 100%; display: block; object-fit: cover; aspect-ratio: 3/4; }

@media (min-width: 769px) {
  .lux-sf__text-block { padding: 72px 64px 48px; }
  .lux-sf__img { aspect-ratio: 16/9; max-height: 680px; }
}

/* Savoir-Faire Page */
.lux-sfp { width: 100%; }

/* Promo banner */
.lux-sfp__promo {
  width: 100%; background: var(--lux-bg-dark); color: var(--lux-text-white);
  text-align: center; padding: 20px 24px;
}
.lux-sfp__promo-badge {
  display: inline-block; border: 1px solid rgba(255,255,255,0.4);
  padding: 3px 14px; font-family: var(--lux-body); font-size: 9px;
  letter-spacing: 0.18em; text-transform: uppercase; margin-bottom: 10px;
}
.lux-sfp__promo-text {
  font-family: var(--lux-body); font-size: 11px; font-weight: 400;
  letter-spacing: 0.12em; text-transform: uppercase;
  margin: 0 0 14px; line-height: 1.6;
}
.lux-sfp__promo-cta {
  font-family: var(--lux-body); font-size: 10px; font-weight: 400;
  letter-spacing: 0.16em; text-transform: uppercase; color: #fff;
  text-decoration: underline; text-underline-offset: 3px;
  text-decoration-thickness: 1px; text-decoration-color: rgba(255,255,255,0.5);
  transition: text-decoration-color 0.3s;
}
.lux-sfp__promo-cta:hover { text-decoration-color: #fff; }

/* Hero section */
.lux-sfp__hero {
  text-align: center; padding: 64px 24px 52px; max-width: 720px; margin: 0 auto;
}
.lux-sfp__eyebrow {
  font-family: var(--lux-body); font-size: 10px; font-weight: 400;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--lux-text-muted); margin: 0 0 24px;
}
.lux-sfp__title {
  font-family: var(--lux-heading); font-weight: 300;
  font-size: clamp(32px, 8vw, 58px); line-height: 1.08;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--lux-text); margin: 0;
}

/* Full-width image */
.lux-sfp__photo { width: 100%; overflow: hidden; line-height: 0; }
.lux-sfp__photo-img { width: 100%; display: block; object-fit: cover; aspect-ratio: 4/3; }

/* Editorial text */
.lux-sfp__content { padding: 56px 24px 60px; max-width: 680px; margin: 0 auto; }
.lux-sfp__text {
  font-family: var(--lux-body); font-size: 15px; font-weight: 300;
  line-height: 1.85; color: var(--lux-text);
}
.lux-sfp__text p { margin: 0 0 24px; }
.lux-sfp__text p:last-child { margin-bottom: 0; }

@media (min-width: 769px) {
  .lux-sfp__hero { padding: 96px 48px 72px; }
  .lux-sfp__photo-img { aspect-ratio: 16/7; }
  .lux-sfp__content { padding: 80px 48px 80px; max-width: 760px; }
  .lux-sfp__text { font-size: 16px; }
}

/* ═══════════════════════════════════════
   Cart Page
═══════════════════════════════════════ */
.lux-cart { width: 100%; max-width: 720px; margin: 0 auto; padding: 0 20px; }

.lux-cart__header {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 28px 0 20px; border-bottom: 1px solid var(--lux-border);
}
.lux-cart__title {
  font-family: var(--lux-heading); font-weight: 300;
  font-size: 22px; color: var(--lux-text); margin: 0;
}
.lux-cart__count {
  font-family: var(--lux-body); font-size: 10px; font-weight: 400;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--lux-text-muted);
}

/* Empty cart */
.lux-cart__empty { text-align: center; padding: 80px 0; }
.lux-cart__empty-text {
  font-family: var(--lux-body); font-size: 15px; font-weight: 300;
  color: var(--lux-text-muted); margin: 0 0 24px;
}

/* Items */
.lux-cart__items { }
.lux-cart__item {
  display: flex; gap: 16px; padding: 24px 0;
  border-bottom: 1px solid var(--lux-border);
}
.lux-cart__item-img { flex-shrink: 0; width: 120px; }
.lux-cart__item-photo {
  width: 100%; aspect-ratio: 3/4; object-fit: cover;
  display: block; background: var(--lux-bg-soft);
}
.lux-cart__item-details { flex: 1; display: flex; flex-direction: column; justify-content: space-between; min-height: 100%; }
.lux-cart__item-top { display: flex; justify-content: space-between; align-items: flex-start; }
.lux-cart__item-info { }
.lux-cart__item-name {
  display: block; font-family: var(--lux-body); font-size: 13px; font-weight: 500;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--lux-text); text-decoration: none; line-height: 1.3;
}
.lux-cart__item-variant {
  display: block; margin-top: 4px;
  font-family: var(--lux-body); font-size: 11px; font-weight: 300;
  letter-spacing: 0.06em; text-transform: uppercase;
  color: var(--lux-text-muted);
}
.lux-cart__item-remove {
  font-size: 22px; color: var(--lux-text-muted); text-decoration: none;
  line-height: 1; padding: 0 4px; flex-shrink: 0;
  transition: color 0.2s;
}
.lux-cart__item-remove:hover { color: var(--lux-text); }

.lux-cart__item--gift { background: var(--lux-bg-soft); margin: 0 -20px; padding-left: 20px; padding-right: 20px; }
.lux-cart__item-gift-badge {
  display: inline-block; margin-top: 6px; padding: 2px 10px;
  font-family: var(--lux-body); font-size: 10px; font-weight: 400;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--lux-accent); border: 1px solid var(--lux-accent);
}

.lux-cart__item-bottom {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: auto; padding-top: 12px;
}
.lux-cart__item-actions {
  display: flex; align-items: center; gap: 12px;
}
.lux-cart__wishlist {
  background: none; border: none; cursor: pointer; padding: 0;
  color: var(--lux-text-muted); transition: color 0.2s;
}
.lux-cart__wishlist:hover { color: var(--lux-text); }
.lux-cart__qty-fixed {
  font-family: var(--lux-body); font-size: 13px; font-weight: 400;
  color: var(--lux-text-muted); padding: 0 8px;
}

/* Quantity */
.lux-cart__qty {
  display: inline-flex; align-items: center;
  border: 1px solid var(--lux-border); height: 36px;
}
.lux-cart__qty-btn {
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  background: none; border: none; cursor: pointer;
  font-family: var(--lux-body); font-size: 16px; color: var(--lux-text);
  transition: background 0.2s;
}
.lux-cart__qty-btn:hover { background: var(--lux-bg-soft); }
.lux-cart__qty-input {
  width: 32px; height: 36px; text-align: center;
  border: none; border-left: 1px solid var(--lux-border); border-right: 1px solid var(--lux-border);
  font-family: var(--lux-body); font-size: 13px; font-weight: 400;
  color: var(--lux-text); background: none;
  -moz-appearance: textfield;
}
.lux-cart__qty-input::-webkit-inner-spin-button,
.lux-cart__qty-input::-webkit-outer-spin-button { -webkit-appearance: none; margin: 0; }

.lux-cart__item-price {
  font-family: var(--lux-body); font-size: 15px; font-weight: 400;
  color: var(--lux-text);
}

/* Reassurance strip */
.lux-cart__reassurance {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; padding: 28px 0; border-bottom: 1px solid var(--lux-border);
  text-align: center;
}
.lux-cart__reassurance-item {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.lux-cart__reassurance-item svg { color: var(--lux-text-muted); }
.lux-cart__reassurance-item span {
  font-family: var(--lux-body); font-size: 11px; font-weight: 300;
  color: var(--lux-text-muted); line-height: 1.3;
}

/* Summary */
.lux-cart__summary { padding: 28px 0 40px; }
.lux-cart__total-row {
  display: flex; justify-content: space-between; align-items: baseline;
}
.lux-cart__total-label {
  font-family: var(--lux-body); font-size: 11px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--lux-text);
}
.lux-cart__total-value {
  font-family: var(--lux-body); font-size: 18px; font-weight: 400;
  color: var(--lux-text);
}
.lux-cart__shipping-note {
  font-family: var(--lux-body); font-size: 12px; font-weight: 300;
  color: var(--lux-text-muted); margin: 6px 0 24px;
}

/* Checkout button */
.lux-cart__checkout-btn {
  display: block; width: 100%; padding: 18px;
  background: var(--lux-bg-dark); color: #fff;
  font-family: var(--lux-body); font-size: 11px; font-weight: 400;
  letter-spacing: 0.16em; text-transform: uppercase;
  text-align: center; text-decoration: none;
  border: none; cursor: pointer;
  transition: background 0.3s;
}
.lux-cart__checkout-btn:hover { background: #333; }

.lux-cart__secure {
  display: flex; align-items: center; gap: 8px;
  padding: 20px 0; margin-top: 20px;
  border-top: 1px solid var(--lux-border);
}
.lux-cart__secure svg { color: var(--lux-text-muted); }
.lux-cart__secure span {
  font-family: var(--lux-body); font-size: 12px; font-weight: 300;
  color: var(--lux-text);
}

/* Suggestions strip */
.lux-cart__suggestions {
  padding: 32px 0 48px; border-top: 1px solid var(--lux-border);
}
.lux-cart__suggestions-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 20px;
}
.lux-cart__suggestions-title {
  font-family: var(--lux-heading); font-weight: 300;
  font-size: 20px; color: var(--lux-text); margin: 0;
}
.lux-cart__suggestions-scroll {
  overflow-x: auto; scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.lux-cart__suggestions-scroll::-webkit-scrollbar { display: none; }
.lux-cart__suggestions-track {
  display: flex; gap: 16px; width: max-content;
}
.lux-cart__suggest-card {
  flex-shrink: 0; width: 160px; text-decoration: none;
}
.lux-cart__suggest-img-wrap {
  aspect-ratio: 3/4; overflow: hidden; background: var(--lux-bg-soft);
  margin-bottom: 8px;
}
.lux-cart__suggest-img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.4s var(--lux-ease);
}
.lux-cart__suggest-card:hover .lux-cart__suggest-img { transform: scale(1.04); }
.lux-cart__suggest-name {
  font-family: var(--lux-body); font-size: 11px; font-weight: 400;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--lux-text);
}

/* Suggestion arrows */
.lux-cart__suggestions-nav { display: flex; gap: 8px; }
.lux-cart__suggestions-arrow {
  width: 36px; height: 36px; display: flex; align-items: center; justify-content: center;
  background: none; border: none; cursor: pointer;
  color: var(--lux-text); transition: opacity 0.2s;
}
.lux-cart__suggestions-arrow:hover { opacity: 0.5; }
.lux-cart__suggest-img-wrap { position: relative; }
.lux-cart__suggest-wishlist {
  position: absolute; bottom: 8px; right: 8px;
  background: none; border: none; cursor: pointer; padding: 0;
  color: var(--lux-text-muted); transition: color 0.2s;
}
.lux-cart__suggest-wishlist:hover { color: var(--lux-text); }

/* Assistance */
.lux-cart__assistance {
  padding: 32px 0; border-top: 1px solid var(--lux-border);
}
.lux-cart__assistance-title {
  font-family: var(--lux-heading); font-weight: 300;
  font-size: 20px; color: var(--lux-text); margin: 0 0 12px;
}
.lux-cart__assistance-text {
  font-family: var(--lux-body); font-size: 14px; font-weight: 300;
  color: var(--lux-text); line-height: 1.6; margin: 0 0 20px;
}
.lux-cart__assistance-btn {
  display: block; width: 100%; padding: 16px;
  background: none; border: 1px solid var(--lux-border);
  font-family: var(--lux-body); font-size: 11px; font-weight: 400;
  letter-spacing: 0.12em; text-transform: uppercase;
  text-align: center; text-decoration: none;
  color: var(--lux-text); cursor: pointer;
  transition: background 0.3s, border-color 0.3s;
  margin-bottom: 10px;
}
.lux-cart__assistance-btn:hover {
  background: var(--lux-bg-soft); border-color: var(--lux-text-muted);
}

/* ═══════════════════════════════════════
   Politique / Legal Pages
═══════════════════════════════════════ */
.lux-politique { width: 100%; }
.lux-politique__container {
  max-width: 720px; margin: 0 auto;
  padding: 48px 24px 80px;
}
.lux-politique__title {
  font-family: var(--lux-heading); font-weight: 300;
  font-size: clamp(28px, 6vw, 42px); line-height: 1.1;
  color: var(--lux-text); margin: 0 0 40px;
}
.lux-politique__content h2 {
  font-family: var(--lux-body); font-weight: 500;
  font-size: 14px; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--lux-text);
  margin: 36px 0 12px; padding-top: 12px;
  border-top: 1px solid var(--lux-border);
}
.lux-politique__content h2:first-child { border-top: none; padding-top: 0; margin-top: 0; }
.lux-politique__content p {
  font-family: var(--lux-body); font-weight: 300;
  font-size: 14px; line-height: 1.7; color: var(--lux-text);
  margin: 0 0 12px;
}
.lux-politique__content ul, .lux-politique__content ol {
  font-family: var(--lux-body); font-weight: 300;
  font-size: 14px; line-height: 1.7; color: var(--lux-text);
  margin: 0 0 16px; padding-left: 20px;
}
.lux-politique__content li { margin-bottom: 6px; }
.lux-politique__content table {
  width: 100%; border-collapse: collapse; margin: 16px 0;
  font-family: var(--lux-body); font-size: 13px;
}
.lux-politique__content th, .lux-politique__content td {
  padding: 10px; text-align: left;
  border-bottom: 1px solid var(--lux-border);
}
.lux-politique__content th {
  font-weight: 500; background: var(--lux-bg-soft);
}
.lux-politique__content a {
  color: var(--lux-text); text-decoration: underline;
  text-underline-offset: 3px;
}
.lux-politique__content a:hover { color: var(--lux-accent); }

/* Hide WooCommerce default cart elements */
.woocommerce-cart .woocommerce-notices-wrapper { display: none; }
.woocommerce-cart .entry-title,
.woocommerce-cart .page-title,
.woocommerce-cart > .entry-header { display: none; }
.woocommerce .woocommerce-message,
.woocommerce .woocommerce-info { display: none; }
.woocommerce-cart main > section > h1,
.woocommerce-checkout main > section > h1 { display: none; }
.woocommerce-cart main > section { padding-top: 0 !important; }

/* ═══════════════════════════════════════
   FAQ Page
═══════════════════════════════════════ */
.lux-faq { width: 100%; }

/* Hero */
.lux-faq__hero {
  padding: 64px 24px 48px; max-width: 720px;
}
.lux-faq__title {
  font-family: var(--lux-heading); font-weight: 300;
  font-size: clamp(36px, 9vw, 64px); line-height: 1.05;
  letter-spacing: 0.02em; text-transform: uppercase;
  color: var(--lux-text); margin: 0 0 24px;
}
.lux-faq__subtitle {
  font-family: var(--lux-body); font-size: 14px; font-weight: 300;
  line-height: 1.7; color: var(--lux-text-muted); margin: 0;
  max-width: 480px;
}

/* Category cards */
.lux-faq__categories {
  display: grid; grid-template-columns: 1fr;
  gap: 1px; padding: 0 0 0; background: var(--lux-border);
}
.lux-faq__cat-card {
  display: block; padding: 40px 24px;
  background: var(--lux-bg-soft); text-decoration: none;
  transition: background 0.3s;
}
.lux-faq__cat-card:hover { background: #f0ece6; }
.lux-faq__cat-icon {
  display: block; margin-bottom: 16px; color: var(--lux-text);
}
.lux-faq__cat-title {
  font-family: var(--lux-heading); font-weight: 400;
  font-size: 22px; line-height: 1.2;
  color: var(--lux-text); margin: 0 0 8px;
}
.lux-faq__cat-desc {
  font-family: var(--lux-body); font-size: 13px; font-weight: 300;
  color: var(--lux-text-muted); margin: 0;
}

/* Sections */
.lux-faq__section {
  padding: 48px 24px 0;
}
.lux-faq__section-header {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 16px; margin-bottom: 0;
}
.lux-faq__section-title {
  font-family: var(--lux-body); font-size: 11px; font-weight: 400;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--lux-text); margin: 0;
}

/* FAQ items (accordion) */
.lux-faq__items { border-top: 1px solid var(--lux-border); }
.lux-faq__item { border-bottom: 1px solid var(--lux-border); }
.lux-faq__question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; cursor: pointer; list-style: none; gap: 16px;
}
.lux-faq__question::-webkit-details-marker { display: none; }
.lux-faq__question span:first-child {
  font-family: var(--lux-body); font-size: 15px; font-weight: 300;
  color: var(--lux-text-muted); line-height: 1.4;
}
.lux-faq__icon {
  flex-shrink: 0; width: 16px; height: 16px; position: relative;
}
.lux-faq__icon::before, .lux-faq__icon::after {
  content: ''; position: absolute; background: var(--lux-text-muted);
  transition: transform 0.3s ease;
}
.lux-faq__icon::before {
  top: 50%; left: 0; right: 0; height: 1px; transform: translateY(-50%);
}
.lux-faq__icon::after {
  left: 50%; top: 0; bottom: 0; width: 1px; transform: translateX(-50%);
}
.lux-faq__item[open] .lux-faq__icon::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }

.lux-faq__answer {
  padding: 0 0 24px;
  font-family: var(--lux-body); font-size: 15px; font-weight: 300;
  line-height: 1.7; color: var(--lux-text-muted);
}
.lux-faq__answer p { margin: 0 0 12px; }
.lux-faq__answer p:last-child { margin-bottom: 0; }
.lux-faq__answer a {
  color: var(--lux-text); text-decoration: underline;
  text-underline-offset: 2px;
}

/* Contact CTA */
.lux-faq__contact {
  text-align: center; padding: 64px 24px 80px;
}
.lux-faq__contact-label {
  font-family: var(--lux-heading); font-weight: 300;
  font-size: 22px; color: var(--lux-text); margin: 0 0 16px;
}
.lux-faq__contact-text {
  font-family: var(--lux-body); font-size: 13px; font-weight: 300;
  line-height: 1.7; color: var(--lux-text-muted); margin: 0 0 28px;
}
.lux-faq__contact-btn {
  display: inline-block; padding: 16px 40px;
  font-family: var(--lux-body); font-size: 11px; font-weight: 400;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--lux-bg); background: var(--lux-text);
  text-decoration: none; transition: background 0.3s;
}
.lux-faq__contact-btn:hover { background: #333; }

@media (min-width: 769px) {
  .lux-faq__hero { padding: 96px 48px 64px; }
  .lux-faq__categories { grid-template-columns: repeat(3, 1fr); }
  .lux-faq__section { padding: 56px 48px 0; max-width: 800px; margin: 0 auto; }
  .lux-faq__contact { padding: 80px 48px 100px; }
}

/* ═══════════════════════════════════════
   PDP Story
═══════════════════════════════════════ */
.lux-story { width: 100%; }
.lux-story__hero {
  width: 100%; aspect-ratio: 16/9; overflow: hidden; max-height: 680px;
}
.lux-story__hero-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lux-story__narrative {
  max-width: 1440px; margin: 0 auto; padding: 80px 40px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.lux-story__narrative--full {
  grid-template-columns: 1fr; max-width: 720px; text-align: center;
}
.lux-story__eyebrow {
  font-family: var(--lux-body); font-size: 10px; font-weight: 400;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--lux-text-muted); margin: 0 0 16px;
}
.lux-story__title {
  font-family: var(--lux-heading); font-weight: 300;
  font-size: clamp(28px, 3.5vw, 48px); line-height: 1.1;
  color: var(--lux-text); margin: 0 0 24px; letter-spacing: 0.02em;
}
.lux-story__text {
  font-family: var(--lux-body); font-size: 14px; font-weight: 300;
  line-height: 1.85; color: var(--lux-text-muted);
}
.lux-story__text p { margin: 0 0 16px; }
.lux-story__text p:last-child { margin-bottom: 0; }
.lux-story__side-img-wrap {
  overflow: hidden; aspect-ratio: 3/4; background: var(--lux-bg-soft);
}
.lux-story__side-img { width: 100%; height: 100%; object-fit: cover; display: block; }

@media (max-width: 900px) {
  .lux-story__narrative { grid-template-columns: 1fr; gap: 32px; padding: 56px 24px; }
  .lux-story__hero { aspect-ratio: 4/3; max-height: 480px; }
}

/* ═══════════════════════════════════════
   Cart Page
═══════════════════════════════════════ */
.lux-cart { max-width: 760px; margin: 0 auto; padding: 60px 24px 100px; }
.lux-cart__title {
  font-family: var(--lux-heading); font-weight: 300;
  font-size: clamp(28px, 4vw, 44px); text-align: center;
  margin: 0 0 48px; letter-spacing: 0.04em;
}
.woocommerce-cart-form table {
  width: 100%; border-collapse: collapse;
}
.woocommerce-cart-form th {
  font-family: var(--lux-body); font-size: 10px; font-weight: 400;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--lux-text-muted); padding: 12px 0;
  border-bottom: 1px solid var(--lux-border); text-align: left;
}
.woocommerce-cart-form td {
  padding: 20px 0; border-bottom: 1px solid var(--lux-border);
  vertical-align: middle;
}
.woocommerce-cart-form .product-name a {
  font-family: var(--lux-heading); font-size: 16px; font-weight: 400;
  color: var(--lux-text); text-decoration: none;
}
.woocommerce-cart-form .product-price,
.woocommerce-cart-form .product-subtotal {
  font-family: var(--lux-body); font-size: 13px; font-weight: 400; color: var(--lux-text);
}
.woocommerce-cart-form .quantity input {
  width: 48px; text-align: center; border: 1px solid var(--lux-border);
  padding: 8px; font-family: var(--lux-body); font-size: 13px;
}
.woocommerce-cart-form .product-thumbnail img { width: 64px; height: 80px; object-fit: cover; }

/* ═══════════════════════════════════════
   Footer
═══════════════════════════════════════ */
.lux-footer {
  background: var(--lux-bg); color: var(--lux-text);
  padding: 64px 40px 32px;
  border-top: 1px solid var(--lux-border);
}
.lux-footer__inner {
  max-width: 1440px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
}
.lux-footer__logo {
  display: block; font-family: var(--lux-heading); font-size: 28px;
  font-weight: 300; letter-spacing: 0.06em; color: var(--lux-text);
  margin: 0 0 20px;
}
.lux-footer__desc {
  font-family: var(--lux-body); font-size: 14px; font-weight: 300;
  line-height: 1.7; color: var(--lux-text-muted); margin: 0 0 20px;
}
.lux-footer__contact {
  font-family: var(--lux-body); font-size: 14px; font-weight: 300;
  line-height: 1.7; color: var(--lux-text);
}
.lux-footer__contact p { margin: 0; }
.lux-footer__contact a { color: var(--lux-text); }
.lux-footer__col-title {
  display: block; font-family: var(--lux-body); font-size: 16px; font-weight: 500;
  color: var(--lux-text); margin: 0 0 20px;
}
.lux-footer__links { list-style: none; }
.lux-footer__links li { margin-bottom: 12px; }
.lux-footer__links a {
  font-family: var(--lux-body); font-size: 14px; font-weight: 300;
  color: var(--lux-text); text-decoration: none;
  opacity: 0.7; transition: opacity 0.3s;
}
.lux-footer__links a:hover { opacity: 1; }
.lux-footer__bottom {
  margin-top: 48px; padding-top: 24px;
  border-top: 1px solid var(--lux-border);
  display: flex; justify-content: space-between; align-items: center;
}
.lux-footer__copy {
  font-family: var(--lux-body); font-size: 10px; font-weight: 300;
  letter-spacing: 0.1em; color: var(--lux-text-muted);
}

@media (max-width: 768px) {
  .lux-footer { padding: 48px 24px 24px; }
  .lux-footer__inner { grid-template-columns: 1fr; gap: 40px; }
}

/* ═══════════════════════════════════════
   Fade-in animation
═══════════════════════════════════════ */
.lux-fade-in {
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.lux-fade-in.is-visible { opacity: 1; transform: translateY(0); }

/* ═══════════════════════════════════════
   WooCommerce shop page override
═══════════════════════════════════════ */
.woocommerce ul.products li.product {
  margin: 0 !important; padding: 0 !important; float: none !important;
  width: auto !important; text-align: left;
}
.woocommerce ul.products li.product a img {
  margin: 0 !important;
}

/* ═══════════════════════════════════════
   Category Links (big text nav after hero)
═══════════════════════════════════════ */
.lux-catlinks {
  width: 100%; text-align: center; padding: 48px 24px 40px;
  overflow: hidden;
}
.lux-catlinks__inner {
  display: flex; flex-direction: column; align-items: center; gap: 0;
}
.lux-catlinks__link {
  display: block; font-family: var(--lux-heading); font-weight: 300;
  font-size: clamp(28px, 8vw, 96px); line-height: 1.15;
  letter-spacing: 0.04em; text-transform: uppercase;
  color: var(--lux-text); text-decoration: none;
  transition: opacity 0.3s ease;
  word-break: break-word;
}
.lux-catlinks__link:hover { opacity: 0.4; }
@media (min-width: 769px) {
  .lux-catlinks { padding: 72px 48px 64px; }
  .lux-catlinks__inner { flex-direction: row; gap: 48px; justify-content: center; flex-wrap: wrap; }
}

/* ═══════════════════════════════════════
   Strip — updated header styles
═══════════════════════════════════════ */
.lux-strip__header {
  display: flex; justify-content: space-between; align-items: baseline;
  padding: 0 24px 16px; max-width: 1440px; margin: 0 auto;
}
.lux-strip__header--stacked {
  flex-direction: column; align-items: center; text-align: center;
  gap: 12px; padding-bottom: 24px;
}
.lux-strip__title {
  font-family: var(--lux-heading); font-weight: 300;
  font-size: clamp(28px, 5vw, 48px); color: var(--lux-text);
  margin: 0; letter-spacing: 0.02em;
}
.lux-strip__see-all {
  font-family: var(--lux-body); font-size: 10px; font-weight: 400;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--lux-text);
  text-decoration: none; border-bottom: 1px solid currentColor;
  padding-bottom: 1px; opacity: 0.8; transition: opacity 0.3s;
}
.lux-strip__see-all:hover { opacity: 0.4; }

/* ═══════════════════════════════════════
   Showcase (Nanonimals / Boutique)
═══════════════════════════════════════ */
.lux-showcase {
  width: 100%; padding: 40px 24px;
}
.lux-showcase__inner {
  max-width: 1440px; margin: 0 auto;
}
.lux-showcase__image {
  overflow: hidden; border-radius: 0;
}
.lux-showcase__img {
  width: 100%; display: block; height: auto;
}
.lux-showcase__products {
  display: flex; justify-content: center; gap: 24px;
  padding: 28px 0 0;
}
.lux-showcase__product {
  display: block; width: 80px; height: 80px; flex-shrink: 0;
}
.lux-showcase__product-img {
  width: 100%; height: 100%; object-fit: contain; display: block;
}

@media (min-width: 769px) {
  .lux-showcase { padding: 60px 40px; }
  .lux-showcase__products { gap: 40px; padding-top: 36px; }
  .lux-showcase__product { width: 100px; height: 100px; }
}

/* ═══════════════════════════════════════
   Sub-collection strip (archive page)
═══════════════════════════════════════ */
.lux-subcol {
  width: 100%; padding: 20px 0;
  border-bottom: 1px solid var(--lux-border);
}
.lux-subcol__scroll {
  overflow-x: auto; scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.lux-subcol__scroll::-webkit-scrollbar { display: none; }
.lux-subcol__track {
  display: flex; gap: 28px; padding: 0 24px;
  width: max-content;
}
.lux-subcol__item {
  display: flex; flex-direction: column; align-items: center;
  gap: 8px; text-decoration: none; flex-shrink: 0;
  transition: opacity 0.3s;
}
.lux-subcol__item:hover { opacity: 0.6; }
.lux-subcol__item.is-active .lux-subcol__name {
  color: var(--lux-text); font-weight: 400;
}
.lux-subcol__thumb {
  width: 80px; height: 80px; overflow: hidden;
  background: var(--lux-bg-soft); border-radius: 0;
}
.lux-subcol__img {
  width: 100%; height: 100%; object-fit: contain; display: block;
}
.lux-subcol__name {
  font-family: var(--lux-body); font-size: 11px; font-weight: 300;
  letter-spacing: 0.04em; color: var(--lux-text-muted);
  text-align: center; white-space: nowrap;
}

@media (min-width: 769px) {
  .lux-subcol__track { padding: 0 40px; gap: 36px; }
  .lux-subcol__thumb { width: 100px; height: 100px; }
}

/* ═══════════════════════════════════════
   Filters bar (archive page)
═══════════════════════════════════════ */
.lux-filters {
  display: flex; justify-content: space-between; align-items: center;
  padding: 16px 24px;
  border-bottom: 1px solid var(--lux-border);
  max-width: 1440px; margin: 0 auto;
}
.lux-filters__label {
  font-family: var(--lux-body); font-size: 10px; font-weight: 400;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--lux-text-muted);
}
.lux-filters__count {
  font-family: var(--lux-body); font-size: 11px; font-weight: 300;
  color: var(--lux-text-muted);
}

/* ═══════════════════════════════════════
   Product badges
═══════════════════════════════════════ */
.lux-grid__badge {
  position: absolute; top: 12px; right: 12px;
  font-family: var(--lux-body); font-size: 9px; font-weight: 400;
  letter-spacing: 0.12em; text-transform: uppercase;
  padding: 5px 10px; z-index: 2;
}
.lux-grid__badge--soldout {
  background: rgba(255,255,255,0.85); color: var(--lux-text-muted);
}
.lux-grid__card.is-soldout .lux-grid__img { opacity: 0.6; }
.lux-grid__card.is-soldout .lux-grid__card-name { color: var(--lux-text-muted); }

/* Collection grid padding */
.lux-grid--collection { padding: 40px 0 80px; }

/* Empty state */
.lux-grid__empty {
  text-align: center; font-family: var(--lux-body); font-size: 14px;
  color: var(--lux-text-muted); padding: 80px 0;
}

/* Pagination */
.lux-pagination {
  text-align: center; padding-top: 48px;
  font-family: var(--lux-body); font-size: 13px;
}
.lux-pagination a, .lux-pagination span {
  display: inline-block; padding: 8px 14px; margin: 0 2px;
  color: var(--lux-text); text-decoration: none;
  transition: opacity 0.3s;
}
.lux-pagination a:hover { opacity: 0.5; }
.lux-pagination .current {
  border-bottom: 1px solid var(--lux-text); font-weight: 400;
}

/* ═══════════════════════════════════════
   Mobile Menu Drawer
═══════════════════════════════════════ */
.lux-drawer {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 9999;
  background: var(--lux-bg); transform: translateX(-100%);
  transition: transform 0.4s var(--lux-ease);
  overflow-y: auto; -webkit-overflow-scrolling: touch;
}
.lux-drawer.is-open { transform: translateX(0); }
.lux-drawer__header {
  display: flex; justify-content: flex-end;
  padding: 20px 24px;
}
.lux-drawer__close {
  background: none; border: none; cursor: pointer;
  color: var(--lux-text); padding: 8px;
}
.lux-drawer__nav { padding: 20px 24px 60px; }
.lux-drawer__list { list-style: none; }
.lux-drawer__item {
  border-bottom: 1px solid var(--lux-border);
}
.lux-drawer__link {
  display: block; width: 100%; padding: 18px 0;
  font-family: var(--lux-heading); font-size: 24px; font-weight: 300;
  color: var(--lux-text); text-decoration: none;
  background: none; border: none; cursor: pointer;
  text-align: left; letter-spacing: 0.01em;
}
.lux-drawer__link--toggle {
  display: flex; justify-content: space-between; align-items: center;
}
.lux-drawer__arrow {
  font-size: 20px; color: var(--lux-text-muted);
  transition: transform 0.3s ease;
}
.lux-drawer__item--has-sub.is-open .lux-drawer__arrow {
  transform: rotate(90deg);
}
.lux-drawer__sub {
  list-style: none; display: none; padding: 0 0 12px;
}
.lux-drawer__item--has-sub.is-open .lux-drawer__sub {
  display: block;
}
.lux-drawer__sublink {
  display: block; padding: 10px 0;
  font-family: var(--lux-body); font-size: 12px; font-weight: 400;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--lux-text-muted); text-decoration: none;
  transition: color 0.2s;
}
.lux-drawer__sublink:hover { color: var(--lux-text); }

/* ═══════════════════════════════════════
   Navbar — updated with search icon
═══════════════════════════════════════ */
.lux-nav__left {
  display: flex; align-items: center; gap: 12px;
}
.lux-nav__search-btn {
  background: none; border: none; cursor: pointer;
  color: var(--lux-text); padding: 4px;
  display: flex; align-items: center;
}
