/** Shopify CDN: Minification failed

Line 159:0 All "@import" rules must come first

**/
/* ============================================================
   MAISON AURUM — SYSTÈME DESIGN ULTRA LUXE
   aurum-luxury.css — v1.0
   
   INSTALLATION SHOPIFY :
   1. Admin → Thèmes → Modifier le code
   2. Assets → Ajouter un fichier → coller ce fichier
   3. layout/theme.liquid → avant </head> ajouter :
      {{ 'aurum-luxury.css' | asset_url | stylesheet_tag }}
   ============================================================ */


/* ============================================================
   1. TOKENS & VARIABLES
   ============================================================ */

:root {

  /* — Palette principale — */
  --au-teal:           #4A9B8E;
  --au-teal-light:     #7ABDB4;
  --au-teal-pale:      #EAF4F2;
  --au-ivory:          #F7F4EF;
  --au-ivory-deep:     #F0ECE4;
  --au-stone:          #E8E2D9;
  --au-stone-mid:      #D5CEC4;
  --au-champagne:      #C9A96E;
  --au-gold:           #B89A6A;
  --au-gold-pale:      #E8DBCA;
  --au-mineral:        #8C8882;
  --au-mineral-light:  #B5B2AC;
  --au-charcoal:       #2C2A27;
  --au-charcoal-soft:  #4A4843;
  --au-white:          #FFFFFF;

  /* — Typographie — */
  --font-editorial: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-body:      'Inter', 'DM Sans', system-ui, sans-serif;

  /* — Échelle typographique — */
  --text-display:  clamp(52px, 7vw, 108px);
  --text-hero:     clamp(36px, 5vw, 72px);
  --text-title:    clamp(28px, 3.5vw, 48px);
  --text-subtitle: clamp(20px, 2.5vw, 32px);
  --text-body:     16px;
  --text-small:    14px;
  --text-label:    11px;

  /* — Espacements luxe — */
  --space-3xs: 4px;
  --space-2xs: 8px;
  --space-xs:  16px;
  --space-sm:  24px;
  --space-md:  40px;
  --space-lg:  clamp(60px, 7vw, 100px);
  --space-xl:  clamp(100px, 12vw, 160px);
  --space-2xl: clamp(140px, 16vw, 220px);

  /* — Transitions premium — */
  --ease-luxury:  cubic-bezier(0.25, 0.10, 0.25, 1.00);
  --ease-out:     cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:      cubic-bezier(0.4, 0, 1, 1);
  --dur-instant:  150ms;
  --dur-fast:     300ms;
  --dur-med:      600ms;
  --dur-slow:     900ms;
  --dur-reveal:   1200ms;

  /* — Bordures — */
  --border-hair:    0.5px solid rgba(44, 42, 39, 0.15);
  --border-light:   0.5px solid rgba(44, 42, 39, 0.25);
  --border-gold:    0.5px solid rgba(184, 154, 106, 0.35);
  --border-gold-md: 1px solid rgba(184, 154, 106, 0.5);

  /* — Rayons — */
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-pill: 100px;

  /* — Ombres discrètes — */
  --shadow-soft: 0 2px 24px rgba(44, 42, 39, 0.06);
  --shadow-card: 0 4px 40px rgba(44, 42, 39, 0.08);
  --shadow-hover:0 8px 56px rgba(44, 42, 39, 0.12);

  /* — Z-index — */
  --z-base:    0;
  --z-raised:  10;
  --z-overlay: 50;
  --z-modal:   100;
  --z-top:     200;
}


/* ============================================================
   2. RESET & BASE
   ============================================================ */

*, *::before, *::after {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

html {
  scroll-behavior: smooth;
  text-rendering: optimizeLegibility;
}

body {
  background-color: var(--au-ivory);
  color: var(--au-charcoal);
  font-family: var(--font-body);
  font-size: var(--text-body);
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0.01em;
}

img, video {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
  cursor: pointer;
}

::selection {
  background: var(--au-teal-pale);
  color: var(--au-charcoal);
}

/* Scrollbar raffinée */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--au-ivory); }
::-webkit-scrollbar-thumb {
  background: var(--au-stone-mid);
  border-radius: var(--radius-pill);
}
::-webkit-scrollbar-thumb:hover { background: var(--au-mineral); }


/* ============================================================
   3. TYPOGRAPHIE ÉDITORIALE
   ============================================================ */

/* Import polices premium */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Inter:wght@300;400;500&display=swap');

/* Titres — voix éditoriale de la maison */
h1, h2, h3,
.h1, .h2, .h3,
.au-heading {
  font-family: var(--font-editorial);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--au-charcoal);
}

h1, .h1 { font-size: var(--text-hero); }
h2, .h2 { font-size: var(--text-title); }
h3, .h3 { font-size: var(--text-subtitle); }

h4, h5, h6,
.h4, .h5, .h6 {
  font-family: var(--font-body);
  font-weight: 400;
  font-size: var(--text-small);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--au-mineral);
}

/* Eyebrow — label ultra-discret */
.au-eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-label);
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--au-mineral);
  display: block;
  margin-bottom: var(--space-sm);
}

/* Texte éditorial large */
.au-editorial {
  font-family: var(--font-editorial);
  font-size: var(--text-subtitle);
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: -0.01em;
  font-style: italic;
  color: var(--au-charcoal-soft);
}

/* Corps de texte raffiné */
p {
  line-height: 1.75;
  color: var(--au-charcoal-soft);
}

.au-text-lead {
  font-size: 18px;
  line-height: 1.7;
  color: var(--au-charcoal-soft);
  max-width: 60ch;
}


/* ============================================================
   4. HEADER & NAVIGATION PREMIUM
   ============================================================ */

/* Header — transformation complète */
.site-header,
header.site-header,
#shopify-section-header .site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-top);
  padding: 28px clamp(24px, 5vw, 80px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  border-bottom: 0.5px solid transparent;
  transition:
    background   var(--dur-med) var(--ease-luxury),
    padding      var(--dur-med) var(--ease-luxury),
    border-color var(--dur-med) var(--ease-luxury),
    backdrop-filter var(--dur-med);
}

.site-header.au-scrolled {
  background: rgba(247, 244, 239, 0.94);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  padding: 18px clamp(24px, 5vw, 80px);
  border-bottom: var(--border-gold);
}

/* Logo */
.site-header__logo,
.header__logo,
.site-header .logo {
  font-family: var(--font-editorial);
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--au-charcoal);
}

.site-header__logo img,
.header__logo img {
  height: 28px;
  width: auto;
}

/* Navigation principale */
.site-nav,
.header__nav,
.site-header nav {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav__link,
.header__nav a,
.site-nav a {
  font-family: var(--font-body);
  font-size: var(--text-label);
  font-weight: 400;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--au-charcoal);
  position: relative;
  padding-bottom: 2px;
  transition: color var(--dur-fast) var(--ease-luxury);
}

/* Soulignement animé au hover */
.site-nav__link::after,
.header__nav a::after,
.site-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 0.5px;
  background: var(--au-gold);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--dur-med) var(--ease-out);
}

.site-nav__link:hover::after,
.header__nav a:hover::after,
.site-nav a:hover::after {
  transform: scaleX(1);
}

.site-nav__link:hover,
.header__nav a:hover {
  color: var(--au-charcoal);
  opacity: 0.7;
}

/* Icônes header (panier, compte) */
.site-header__icons,
.header__icons {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.site-header__icons a,
.header__icons a {
  font-size: var(--text-label);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--au-charcoal);
  opacity: 0.75;
  transition: opacity var(--dur-fast);
}

.site-header__icons a:hover,
.header__icons a:hover {
  opacity: 1;
}

/* Ajout : espace pour le header fixed */
.au-header-offset,
.page-content:first-child,
main:first-child > *:first-child {
  padding-top: 88px;
}


/* ============================================================
   5. HERO SECTION CINÉMATOGRAPHIQUE
   ============================================================ */

.au-hero {
  position: relative;
  height: 100svh;
  min-height: 620px;
  overflow: hidden;
  background: var(--au-charcoal);
  display: flex;
  align-items: flex-end;
  padding: clamp(40px, 7vw, 96px) clamp(24px, 6vw, 96px);
}

.au-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.au-hero__media img,
.au-hero__media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 25%;
  opacity: 0;
  animation: auHeroReveal var(--dur-reveal) var(--ease-luxury) 0.1s forwards;
}

.au-hero__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    175deg,
    rgba(44, 42, 39, 0.10) 0%,
    rgba(44, 42, 39, 0.18) 40%,
    rgba(44, 42, 39, 0.55) 100%
  );
}

.au-hero__content {
  position: relative;
  z-index: 2;
  color: var(--au-ivory);
  max-width: 700px;
}

.au-hero__eyebrow {
  font-family: var(--font-body);
  font-size: var(--text-label);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(247, 244, 239, 0.75);
  display: block;
  margin-bottom: 20px;
  opacity: 0;
  animation: auSlideUp var(--dur-slow) var(--ease-out) 0.7s forwards;
}

.au-hero__headline {
  font-family: var(--font-editorial);
  font-size: var(--text-display);
  font-weight: 300;
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--au-ivory);
  margin: 0 0 var(--space-md);
  opacity: 0;
  animation: auSlideUp var(--dur-slow) var(--ease-out) 0.9s forwards;
}

.au-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: var(--text-label);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--au-ivory);
  padding-bottom: 3px;
  border-bottom: var(--border-hair);
  border-bottom-color: rgba(247, 244, 239, 0.45);
  opacity: 0;
  animation: auSlideUp var(--dur-slow) var(--ease-out) 1.1s forwards;
  transition:
    border-color var(--dur-med),
    gap var(--dur-fast);
}

.au-hero__cta::after {
  content: '→';
  font-size: 13px;
  transition: transform var(--dur-fast) var(--ease-out);
}

.au-hero__cta:hover {
  border-bottom-color: rgba(247, 244, 239, 0.9);
  gap: 18px;
}

.au-hero__cta:hover::after {
  transform: translateX(4px);
}

/* Scroll indicator */
.au-hero__scroll {
  position: absolute;
  bottom: 40px;
  right: clamp(24px, 5vw, 64px);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: auFadeIn 1s var(--ease-luxury) 1.6s forwards;
}

.au-hero__scroll span {
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: rgba(247, 244, 239, 0.5);
  writing-mode: vertical-lr;
}

.au-hero__scroll-line {
  width: 0.5px;
  height: 48px;
  background: rgba(247, 244, 239, 0.3);
  position: relative;
  overflow: hidden;
}

.au-hero__scroll-line::after {
  content: '';
  position: absolute;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(247, 244, 239, 0.8);
  animation: auScrollLine 2s var(--ease-in) 2s infinite;
}

@keyframes auHeroReveal {
  0%   { opacity: 0; transform: scale(1.04); }
  100% { opacity: 1; transform: scale(1); }
}

@keyframes auSlideUp {
  0%   { opacity: 0; transform: translateY(22px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes auFadeIn {
  to { opacity: 1; }
}

@keyframes auScrollLine {
  0%   { top: -100%; }
  100% { top: 200%; }
}


/* ============================================================
   6. SECTIONS GÉNÉRALES — RYTHME & RESPIRATION
   ============================================================ */

.au-section {
  padding: var(--space-xl) clamp(24px, 6vw, 96px);
}

.au-section--ivory   { background: var(--au-ivory); }
.au-section--stone   { background: var(--au-stone); }
.au-section--charcoal {
  background: var(--au-charcoal);
  color: var(--au-ivory);
}
.au-section--charcoal h1,
.au-section--charcoal h2,
.au-section--charcoal h3 {
  color: var(--au-ivory);
}

.au-section__header {
  max-width: 680px;
  margin-bottom: var(--space-lg);
}

.au-section__header--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.au-divider {
  width: 32px;
  height: 0.5px;
  background: var(--au-gold);
  margin: var(--space-sm) 0;
}

.au-divider--center {
  margin-left: auto;
  margin-right: auto;
}

/* Reveal au scroll — état initial */
.au-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity   var(--dur-slow) var(--ease-out),
    transform var(--dur-slow) var(--ease-out);
}

.au-reveal.au-visible {
  opacity: 1;
  transform: translateY(0);
}

.au-reveal--delay-1 { transition-delay: 100ms; }
.au-reveal--delay-2 { transition-delay: 200ms; }
.au-reveal--delay-3 { transition-delay: 300ms; }
.au-reveal--delay-4 { transition-delay: 450ms; }


/* ============================================================
   7. GRILLE PRODUITS ÉDITORIALE
   ============================================================ */

/* Remplacement de la grille standard Shopify */
.collection-grid,
.product-grid,
.grid--3-col,
.grid--4-col {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(280px, 100%), 1fr));
  gap: clamp(16px, 2.5vw, 32px);
  padding: 0;
}

/* Format éditorial alterné (à appliquer sur .collection-grid--editorial) */
.collection-grid--editorial {
  grid-template-columns: repeat(12, 1fr);
  gap: clamp(12px, 2vw, 24px);
}

.collection-grid--editorial .product-card:nth-child(1) { grid-column: span 7; }
.collection-grid--editorial .product-card:nth-child(2) { grid-column: span 5; }
.collection-grid--editorial .product-card:nth-child(3) { grid-column: span 5; }
.collection-grid--editorial .product-card:nth-child(4) { grid-column: span 7; }
.collection-grid--editorial .product-card:nth-child(n+5) { grid-column: span 4; }

/* Carte produit — transformation complète */
.product-card,
.card-wrapper,
.product-item {
  background: var(--au-white);
  border: none;
  overflow: hidden;
  cursor: pointer;
  position: relative;
}

/* Conteneur image produit */
.product-card__image,
.card__media,
.product-item__image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  background: var(--au-ivory-deep);
}

.product-card__image img,
.card__media img,
.product-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 800ms var(--ease-luxury);
  will-change: transform;
}

.product-card:hover .product-card__image img,
.card-wrapper:hover .card__media img,
.product-item:hover .product-item__image img {
  transform: scale(1.04);
}

/* Image secondaire au hover */
.product-card__image--secondary {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity var(--dur-med) var(--ease-luxury);
}

.product-card:hover .product-card__image--secondary {
  opacity: 1;
}

/* Badge produit — élégant */
.product-badge,
.badge {
  position: absolute;
  top: 16px;
  left: 16px;
  font-family: var(--font-body);
  font-size: 9px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--au-ivory);
  background: var(--au-charcoal);
  padding: 5px 10px;
  border-radius: 0;
  z-index: 2;
}

.product-badge--new { background: var(--au-teal); }
.product-badge--exclusive { background: var(--au-gold); color: var(--au-charcoal); }

/* Informations produit */
.product-card__info,
.card__content,
.product-item__info {
  padding: var(--space-sm) 0 var(--space-xs);
  border-top: var(--border-hair);
}

.product-card__collection,
.card__collection {
  font-size: var(--text-label);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--au-mineral);
  display: block;
  margin-bottom: 6px;
}

.product-card__title,
.card__heading,
.product-item__title {
  font-family: var(--font-editorial);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: -0.01em;
  line-height: 1.2;
  color: var(--au-charcoal);
  margin: 0 0 10px;
}

.product-card__price,
.price,
.product-item__price {
  font-family: var(--font-body);
  font-size: var(--text-small);
  font-weight: 300;
  letter-spacing: 0.05em;
  color: var(--au-charcoal-soft);
}

/* Prix barré */
.price--on-sale .price-item--regular {
  text-decoration: line-through;
  color: var(--au-mineral-light);
  margin-right: 8px;
}

/* Bouton ajout rapide discret */
.product-card__quick-add {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 14px var(--space-sm);
  background: rgba(247, 244, 239, 0.96);
  backdrop-filter: blur(8px);
  font-size: var(--text-label);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--au-charcoal);
  text-align: center;
  border-top: var(--border-hair);
  transform: translateY(100%);
  transition: transform var(--dur-fast) var(--ease-out);
}

.product-card:hover .product-card__quick-add {
  transform: translateY(0);
}


/* ============================================================
   8. FICHE PRODUIT LUXE
   ============================================================ */

.au-product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
  padding: var(--space-lg) clamp(24px, 6vw, 96px);
  min-height: 100vh;
}

/* Galerie produit */
.au-product__gallery {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 12px;
  position: sticky;
  top: 100px;
}

.au-product__thumbs {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.au-product__thumb {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--au-ivory-deep);
  cursor: pointer;
  border: 0.5px solid transparent;
  transition: border-color var(--dur-fast);
}

.au-product__thumb.active,
.au-product__thumb:hover {
  border-color: var(--au-gold);
}

.au-product__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-med) var(--ease-luxury);
}

.au-product__thumb:hover img {
  transform: scale(1.06);
}

.au-product__main-image {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--au-ivory-deep);
  position: relative;
  cursor: zoom-in;
}

.au-product__main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--dur-slow) var(--ease-luxury);
}

.au-product__main-image:hover img {
  transform: scale(1.08);
}

/* Informations produit */
.au-product__info {
  padding-top: var(--space-md);
}

.au-product__collection {
  font-size: var(--text-label);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--au-teal);
  display: block;
  margin-bottom: var(--space-xs);
}

.au-product__title {
  font-family: var(--font-editorial);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--au-charcoal);
  margin: 0 0 var(--space-xs);
}

.au-product__subtitle {
  font-family: var(--font-editorial);
  font-size: 18px;
  font-weight: 300;
  font-style: italic;
  color: var(--au-mineral);
  margin-bottom: var(--space-md);
}

.au-product__price {
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 300;
  letter-spacing: 0.03em;
  color: var(--au-charcoal);
  margin-bottom: var(--space-md);
  padding-bottom: var(--space-md);
  border-bottom: var(--border-hair);
}

/* Sélecteur de taille premium */
.au-size-selector {
  margin-bottom: var(--space-md);
}

.au-size-selector__label {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: var(--space-xs);
}

.au-size-selector__label span:first-child {
  font-size: var(--text-label);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--au-charcoal);
}

.au-size-selector__guide {
  font-size: 11px;
  color: var(--au-teal);
  letter-spacing: 0.06em;
  cursor: pointer;
  border-bottom: 0.5px solid var(--au-teal-light);
}

.au-size-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.au-size-option {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--au-charcoal-soft);
  border: 0.5px solid var(--au-stone-mid);
  background: transparent;
  cursor: pointer;
  transition:
    border-color var(--dur-fast),
    color        var(--dur-fast),
    background   var(--dur-fast);
}

.au-size-option:hover {
  border-color: var(--au-charcoal);
  color: var(--au-charcoal);
}

.au-size-option.selected,
.au-size-option[aria-selected="true"] {
  border-color: var(--au-charcoal);
  background: var(--au-charcoal);
  color: var(--au-ivory);
}

.au-size-option.unavailable {
  opacity: 0.3;
  cursor: not-allowed;
  text-decoration: line-through;
}

/* CTA Principal — "Acquérir cette pièce" */
.au-btn-primary,
.btn--primary,
button[name="add"],
.product-form__submit {
  width: 100%;
  padding: 18px var(--space-md);
  background: var(--au-charcoal);
  color: var(--au-ivory);
  font-family: var(--font-body);
  font-size: var(--text-label);
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition:
    background var(--dur-med) var(--ease-luxury),
    color      var(--dur-med) var(--ease-luxury);
  margin-bottom: 12px;
}

.au-btn-primary::before,
button[name="add"]::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--au-teal);
  transform: translateX(-101%);
  transition: transform var(--dur-med) var(--ease-out);
}

.au-btn-primary:hover::before,
button[name="add"]:hover::before {
  transform: translateX(0);
}

.au-btn-primary span,
button[name="add"] span {
  position: relative;
  z-index: 1;
}

/* Bouton secondaire */
.au-btn-secondary {
  width: 100%;
  padding: 16px var(--space-md);
  background: transparent;
  color: var(--au-charcoal);
  font-family: var(--font-body);
  font-size: var(--text-label);
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  border: var(--border-light);
  cursor: pointer;
  transition:
    border-color var(--dur-fast),
    background   var(--dur-fast);
}

.au-btn-secondary:hover {
  background: var(--au-ivory-deep);
  border-color: var(--au-charcoal);
}

/* Rassurance discrète */
.au-reassurance {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: var(--space-md) 0;
  border-top: var(--border-hair);
  margin-top: var(--space-md);
}

.au-reassurance__item {
  display: flex;
  align-items: center;
  gap: 14px;
}

.au-reassurance__icon {
  width: 20px;
  height: 20px;
  color: var(--au-teal);
  flex-shrink: 0;
  opacity: 0.8;
}

.au-reassurance__text {
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--au-charcoal-soft);
}

/* Onglets description produit */
.au-product-tabs {
  margin-top: var(--space-lg);
  border-top: var(--border-hair);
}

.au-product-tabs__nav {
  display: flex;
  gap: 0;
  border-bottom: var(--border-hair);
}

.au-product-tabs__tab {
  padding: 16px 0;
  margin-right: var(--space-md);
  font-size: var(--text-label);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--au-mineral);
  background: none;
  border: none;
  border-bottom: 0.5px solid transparent;
  cursor: pointer;
  transition: color var(--dur-fast), border-color var(--dur-fast);
}

.au-product-tabs__tab.active,
.au-product-tabs__tab[aria-selected="true"] {
  color: var(--au-charcoal);
  border-bottom-color: var(--au-charcoal);
}

.au-product-tabs__panel {
  padding: var(--space-md) 0;
  display: none;
}

.au-product-tabs__panel.active { display: block; }


/* ============================================================
   9. SECTION MANIFESTE / STORYTELLING
   ============================================================ */

.au-manifeste {
  padding: var(--space-2xl) clamp(24px, 8vw, 140px);
  background: var(--au-ivory);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.au-manifeste::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse 80% 60% at 50% 50%,
    rgba(201, 169, 110, 0.06) 0%,
    transparent 70%
  );
  pointer-events: none;
}

.au-manifeste__quote {
  font-family: var(--font-editorial);
  font-size: clamp(32px, 4.5vw, 68px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--au-charcoal);
  max-width: 900px;
  margin: 0 auto var(--space-md);
  position: relative;
  z-index: 1;
}

.au-manifeste__author {
  font-size: var(--text-label);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--au-gold);
}


/* ============================================================
   10. SECTION ARTISANAT — FORMAT ÉDITORIAL
   ============================================================ */

.au-craft {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 70vh;
}

.au-craft__visual {
  position: relative;
  overflow: hidden;
  background: var(--au-stone);
}

.au-craft__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-luxury);
}

.au-craft:hover .au-craft__visual img {
  transform: scale(1.03);
}

.au-craft__content {
  background: var(--au-charcoal);
  color: var(--au-ivory);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(48px, 7vw, 100px) clamp(40px, 6vw, 88px);
}

.au-craft__content .au-eyebrow {
  color: var(--au-gold);
  opacity: 0.8;
}

.au-craft__content h2 {
  color: var(--au-ivory);
  margin-bottom: var(--space-md);
}

.au-craft__content p {
  color: rgba(247, 244, 239, 0.7);
  max-width: 44ch;
}

.au-craft__stat {
  margin-top: var(--space-lg);
  padding-top: var(--space-md);
  border-top: 0.5px solid rgba(247, 244, 239, 0.12);
  display: flex;
  gap: var(--space-md);
}

.au-craft__stat-item {}

.au-craft__stat-number {
  font-family: var(--font-editorial);
  font-size: 44px;
  font-weight: 300;
  color: var(--au-ivory);
  line-height: 1;
  display: block;
}

.au-craft__stat-label {
  font-size: var(--text-label);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(247, 244, 239, 0.45);
  margin-top: 6px;
  display: block;
}


/* ============================================================
   11. PREUVE SOCIALE PREMIUM
   ============================================================ */

.au-press {
  padding: var(--space-xl) clamp(24px, 6vw, 96px);
  background: var(--au-ivory-deep);
}

.au-press__logos {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(32px, 5vw, 72px);
}

.au-press__logo {
  opacity: 0.35;
  filter: grayscale(100%);
  height: 18px;
  width: auto;
  transition:
    opacity var(--dur-med),
    filter  var(--dur-med);
}

.au-press__logo:hover {
  opacity: 0.7;
  filter: grayscale(0%);
}

/* Avis client — format citation */
.au-reviews {
  padding: var(--space-xl) clamp(24px, 6vw, 96px);
}

.au-reviews__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: clamp(16px, 2.5vw, 28px);
}

.au-review {
  background: var(--au-white);
  border: var(--border-hair);
  padding: var(--space-md);
}

.au-review__stars {
  display: flex;
  gap: 3px;
  margin-bottom: var(--space-sm);
}

.au-review__star {
  width: 10px;
  height: 10px;
  background: var(--au-gold);
  clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.au-review__text {
  font-family: var(--font-editorial);
  font-size: 16px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.6;
  color: var(--au-charcoal-soft);
  margin-bottom: var(--space-sm);
}

.au-review__author {
  font-size: var(--text-label);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--au-mineral);
}


/* ============================================================
   12. NEWSLETTER — FORMAT PREMIUM
   ============================================================ */

.au-newsletter {
  padding: var(--space-xl) clamp(24px, 8vw, 140px);
  background: var(--au-charcoal);
  text-align: center;
}

.au-newsletter h2 {
  color: var(--au-ivory);
  max-width: 600px;
  margin: 0 auto var(--space-xs);
}

.au-newsletter p {
  color: rgba(247, 244, 239, 0.55);
  max-width: 42ch;
  margin: 0 auto var(--space-lg);
}

.au-newsletter__form {
  display: flex;
  max-width: 440px;
  margin: 0 auto;
  border-bottom: 0.5px solid rgba(247, 244, 239, 0.3);
  align-items: center;
}

.au-newsletter__input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  padding: 14px 0;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--au-ivory);
  letter-spacing: 0.04em;
}

.au-newsletter__input::placeholder {
  color: rgba(247, 244, 239, 0.3);
  letter-spacing: 0.1em;
  font-size: var(--text-label);
  text-transform: uppercase;
}

.au-newsletter__submit {
  background: transparent;
  border: none;
  color: var(--au-ivory);
  font-size: var(--text-label);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 14px 0 14px var(--space-sm);
  opacity: 0.6;
  transition: opacity var(--dur-fast);
  white-space: nowrap;
}

.au-newsletter__submit:hover { opacity: 1; }


/* ============================================================
   13. FOOTER ÉDITORIAL
   ============================================================ */

.au-footer {
  background: var(--au-charcoal);
  color: rgba(247, 244, 239, 0.55);
  padding: var(--space-xl) clamp(24px, 6vw, 96px) var(--space-md);
}

.au-footer__top {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: clamp(32px, 5vw, 64px);
  padding-bottom: var(--space-lg);
  border-bottom: 0.5px solid rgba(247, 244, 239, 0.1);
  margin-bottom: var(--space-md);
}

.au-footer__brand {
  font-family: var(--font-editorial);
  font-size: 24px;
  font-weight: 300;
  letter-spacing: 0.1em;
  color: var(--au-ivory);
  margin-bottom: var(--space-sm);
}

.au-footer__tagline {
  font-size: 12px;
  letter-spacing: 0.1em;
  line-height: 1.8;
  color: rgba(247, 244, 239, 0.4);
  max-width: 26ch;
}

.au-footer__col-title {
  font-size: 9px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(247, 244, 239, 0.35);
  margin-bottom: var(--space-sm);
  display: block;
}

.au-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.au-footer__links a {
  font-size: 13px;
  letter-spacing: 0.04em;
  color: rgba(247, 244, 239, 0.5);
  transition: color var(--dur-fast);
}

.au-footer__links a:hover {
  color: var(--au-ivory);
}

.au-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(247, 244, 239, 0.2);
}


/* ============================================================
   14. PANIER & CHECKOUT PREMIUM
   ============================================================ */

/* Mini-panier slide */
.au-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(420px, 100vw);
  background: var(--au-ivory);
  z-index: var(--z-modal);
  transform: translateX(100%);
  transition: transform var(--dur-med) var(--ease-out);
  display: flex;
  flex-direction: column;
  box-shadow: -4px 0 48px rgba(44, 42, 39, 0.12);
}

.au-drawer.open { transform: translateX(0); }

.au-drawer__overlay {
  position: fixed;
  inset: 0;
  background: rgba(44, 42, 39, 0.4);
  z-index: calc(var(--z-modal) - 1);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-med);
}

.au-drawer__overlay.open {
  opacity: 1;
  pointer-events: all;
}

.au-drawer__header {
  padding: var(--space-md) var(--space-md) var(--space-sm);
  border-bottom: var(--border-hair);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.au-drawer__title {
  font-family: var(--font-editorial);
  font-size: 22px;
  font-weight: 300;
  color: var(--au-charcoal);
}

.au-drawer__close {
  font-size: var(--text-label);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--au-mineral);
  background: none;
  border: none;
  cursor: pointer;
  transition: color var(--dur-fast);
}

.au-drawer__close:hover { color: var(--au-charcoal); }

.au-drawer__items {
  flex: 1;
  overflow-y: auto;
  padding: var(--space-sm) var(--space-md);
}

.au-drawer__footer {
  padding: var(--space-md);
  border-top: var(--border-hair);
}

.au-drawer__total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: var(--space-md);
  font-size: var(--text-small);
  letter-spacing: 0.06em;
  color: var(--au-charcoal);
}


/* ============================================================
   15. ANIMATIONS & MICRO-INTERACTIONS
   ============================================================ */

/* Curseur personnalisé premium */
@media (pointer: fine) {
  body { cursor: none; }

  .au-cursor {
    position: fixed;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--au-charcoal);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 80ms, width 250ms var(--ease-out), height 250ms var(--ease-out), background 200ms;
    mix-blend-mode: multiply;
  }

  .au-cursor.au-cursor--hover {
    width: 40px;
    height: 40px;
    background: rgba(74, 155, 142, 0.15);
    border: 0.5px solid var(--au-teal);
  }
}

/* Loader page premium */
.au-loader {
  position: fixed;
  inset: 0;
  background: var(--au-charcoal);
  z-index: 9998;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: auLoaderOut 0.6s var(--ease-luxury) 1.4s forwards;
}

.au-loader__text {
  font-family: var(--font-editorial);
  font-size: 28px;
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--au-ivory);
  opacity: 0;
  animation: auLoaderFade 0.8s var(--ease-luxury) 0.2s forwards;
}

@keyframes auLoaderFade {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes auLoaderOut {
  from { opacity: 1; transform: translateY(0); }
  to   { opacity: 0; transform: translateY(-20px); pointer-events: none; }
}

/* Ligne animée sous les titres de section */
.au-section__title-animated {
  position: relative;
  display: inline-block;
}

.au-section__title-animated::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0;
  height: 0.5px;
  background: var(--au-gold);
  transition: width var(--dur-slow) var(--ease-out);
}

.au-visible .au-section__title-animated::after,
.au-section__title-animated.au-visible::after {
  width: 100%;
}


/* ============================================================
   16. MOBILE FIRST — RESPONSIVE
   ============================================================ */

@media screen and (max-width: 768px) {

  /* Navigation mobile */
  .site-header {
    padding: 20px 20px;
  }

  .site-header.au-scrolled {
    padding: 16px 20px;
  }

  /* Hero mobile */
  .au-hero {
    padding: 28px 20px 48px;
    align-items: flex-end;
  }

  .au-hero__headline {
    font-size: clamp(40px, 11vw, 56px);
    max-width: none;
  }

  /* Produit mobile — plein écran */
  .au-product {
    grid-template-columns: 1fr;
    padding: 0;
    gap: 0;
  }

  .au-product__gallery {
    grid-template-columns: 1fr;
    position: static;
  }

  .au-product__thumbs {
    flex-direction: row;
    overflow-x: auto;
    padding: 0 16px;
    gap: 6px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .au-product__thumbs::-webkit-scrollbar { display: none; }

  .au-product__thumb {
    width: 60px;
    flex-shrink: 0;
  }

  .au-product__main-image {
    aspect-ratio: 4 / 5;
  }

  .au-product__info {
    padding: var(--space-md) 20px;
    padding-bottom: 100px;
  }

  /* CTA sticky mobile */
  .au-product__cta-mobile {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: var(--z-overlay);
    padding: 12px 20px;
    background: rgba(247, 244, 239, 0.97);
    backdrop-filter: blur(16px);
    border-top: var(--border-hair);
  }

  /* Grille produits mobile */
  .collection-grid,
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 0 16px;
  }

  .collection-grid--editorial {
    grid-template-columns: 1fr;
  }

  .collection-grid--editorial .product-card {
    grid-column: span 1 !important;
  }

  /* Section artisanat mobile */
  .au-craft {
    grid-template-columns: 1fr;
  }

  .au-craft__visual {
    aspect-ratio: 3 / 2;
  }

  /* Footer mobile */
  .au-footer__top {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
  }

  .au-footer__brand-col {
    grid-column: span 2;
  }

  .au-manifeste {
    padding: var(--space-xl) 28px;
  }
}

@media screen and (max-width: 480px) {
  .collection-grid,
  .product-grid {
    grid-template-columns: 1fr;
  }

  .au-footer__top {
    grid-template-columns: 1fr;
  }

  .au-footer__brand-col {
    grid-column: span 1;
  }
}


/* ============================================================
   17. ÉTATS & ACCESSIBILITÉ
   ============================================================ */

/* Focus visible premium */
:focus-visible {
  outline: 1px solid var(--au-teal);
  outline-offset: 3px;
}

/* Skip to content */
.au-skip {
  position: absolute;
  top: -100%;
  left: 24px;
  z-index: 9999;
  background: var(--au-charcoal);
  color: var(--au-ivory);
  padding: 12px 20px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: top var(--dur-fast);
}

.au-skip:focus { top: 12px; }

/* Réduction du mouvement */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================================
   FIN — aurum-luxury.css v1.0
   Maison Aurum © Tous droits réservés
   ============================================================ */