/* ============================================================
   VARIABLES
   ============================================================ */
:root {
    --primary:      #9B4F6B;
    --primary-dark: #7D3A54;
    --primary-text: #ffffff;
    --bg:           #fdfcfb;
    --bg-surface:   #f7f4f1;
    --card:         #ffffff;
    --text:         #1a1018;
    --text-secondary: #5c4d56;  /* 8.1:1 sur #fdfcfb ✓ WCAG AAA */
    --header-h:     3.75rem;
    --text-muted:   #6f6068;    /* 5.6:1 sur #f7f4f1 ✓ WCAG AA */
    --border:       rgba(0,0,0,0.07);
    --border-strong:rgba(0,0,0,0.13);
    --font-body:    'DM Sans', sans-serif;
    --font-display: 'Playfair Display', serif;
    --radius-img:   8px;
    --max-w:        72rem;
    --max-w-md:     56rem;
    --max-w-sm:     44rem;
}

body.dark-theme {
    --bg:           #130d11;
    --bg-surface:   #1e1520;
    --card:         #1e1520;
    --text:         #f0eaed;
    --text-secondary:#c4adb8;  /* 8.0:1 sur #130d11 ✓ */
    --text-muted:   #9c8492;   /* 5.5:1 sur #130d11 ✓ */
    --border:       rgba(255,255,255,0.07);
    --border-strong:rgba(255,255,255,0.13);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transition: background-color 0.4s, color 0.4s;
    line-height: 1.65;
}

img    { max-width: 100%; display: block; }
a      { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; background: none; border: none; }
address { font-style: normal; }

h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; }

.hidden { display: none !important; }
.sr-only {
    position: absolute; width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0,0,0,0); white-space: nowrap; border-width: 0;
}

/* ============================================================
   BANNIÈRE PROMO
   ============================================================ */
.promo-banner {
    background: var(--primary);
    color: var(--primary-text);
    padding: 0.55rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    font-size: 0.8rem;
    font-weight: 500;
    text-align: center;
    position: relative;
    z-index: 60;
}
.promo-banner.hidden-banner { display: none; }
.promo-banner__text {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    flex-wrap: wrap;
    justify-content: center;
}
.promo-banner__text i { display: inline-block; width: 1em; height: 1em; }
.promo-sep { opacity: 0.5; margin: 0 0.25rem; }
.promo-banner__close {
    position: absolute; right: 0.75rem;
    width: 1.75rem; height: 1.75rem;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary-text);
    opacity: 0.7;
    border-radius: 4px;
    transition: opacity 0.2s;
    font-size: 0.9rem;
    flex-shrink: 0;
}
.promo-banner__close i { display: inline-block; width: 1em; height: 1em; }
.promo-banner__close:hover { opacity: 1; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 50;
    background: transparent;
    transition: background 0.35s, box-shadow 0.35s;
}
.site-header.scrolled {
    background: rgba(253,252,251,0.97);
    backdrop-filter: blur(12px);
    box-shadow: 0 2px 16px rgba(0,0,0,0.08);
}
body.dark-theme .site-header {
    background: transparent;
}
body.dark-theme .site-header.scrolled {
    background: rgba(19,13,17,0.97);
    box-shadow: 0 2px 16px rgba(0,0,0,0.4);
}

.site-header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 1rem 1.5rem;
}

/* Logo wordmark */
.site-header__logo { transition: opacity 0.2s; }
.site-header__logo:hover { opacity: 0.75; }
.logo-wordmark {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: rgba(255,255,255,0.95);
    letter-spacing: 0.05em;
    transition: color 0.35s;
}
.logo-wordmark em { font-style: italic; color: rgba(255,200,210,0.9); transition: color 0.35s; }
.site-header.scrolled .logo-wordmark { color: var(--text); }
.site-header.scrolled .logo-wordmark em { color: var(--primary); }

/* Nav */
.site-header__nav {
    display: none;
    align-items: center;
    gap: 2.25rem;
}
@media (min-width: 768px) { .site-header__nav { display: flex; } }
.site-header__nav a {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255,255,255,0.78);
    letter-spacing: 0.04em;
    transition: color 0.35s;
}
.site-header__nav a:hover { color: rgba(255,255,255,1) !important; }
.site-header.scrolled .site-header__nav a { color: var(--text-secondary); }
.site-header.scrolled .site-header__nav a:hover { color: var(--primary) !important; }

.nav-cta {
    padding: 0.5rem 1.2rem;
    background: var(--primary);
    color: var(--primary-text) !important;
    border-radius: 99px;
    font-weight: 600 !important;
    letter-spacing: 0.03em;
    transition: background 0.2s, transform 0.15s !important;
}
.nav-cta:hover { background: var(--primary-dark) !important; transform: translateY(-1px); }

.site-header__controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-icon {
    width: 2.25rem; height: 2.25rem;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 99px;
    color: rgba(255,255,255,0.82);
    font-size: 1rem;
    transition: border-color 0.35s, color 0.35s;
}
.btn-icon i { display: inline-block; width: 1em; height: 1em; }
.btn-icon:hover { border-color: rgba(255,255,255,0.7); color: rgba(255,255,255,1); }
.site-header.scrolled .btn-icon { border-color: var(--border-strong); color: var(--text-secondary); }
.site-header.scrolled .btn-icon:hover { border-color: var(--primary); color: var(--primary); }

.btn-menu { display: flex; }
@media (min-width: 768px) { .btn-menu { display: none; } }

.mobile-nav {
    display: flex;
    flex-direction: column;
    padding: 0.5rem 1.5rem 1rem;
    background: var(--card);
    border-top: 1px solid var(--border);
    gap: 0.2rem;
}
.mobile-nav a {
    padding: 0.55rem 0;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.2s;
}
.mobile-nav a:hover { color: var(--primary); }
.nav-cta--mobile {
    margin-top: 0.5rem;
    padding: 0.75rem 1rem !important;
    background: var(--primary);
    color: var(--primary-text) !important;
    border-radius: 99px;
    text-align: center;
    font-weight: 600 !important;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.75rem;
    background: var(--primary);
    color: var(--primary-text);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    border-radius: 99px;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    white-space: nowrap;
}
.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px color-mix(in srgb, var(--primary) 30%, transparent);
}
.btn-primary:active { transform: scale(0.98); }
.btn-primary.btn-full { width: 100%; justify-content: center; border-radius: 8px; }
.btn-primary i { display: inline-block; width: 1em; height: 1em; }

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.75rem;
    border: 1.5px solid rgba(255,255,255,0.45);
    color: #ffffff;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    border-radius: 99px;
    transition: background 0.2s, border-color 0.2s;
    white-space: nowrap;
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); }

/* ============================================================
   SECTIONS — partagé
   ============================================================ */
.section-header { text-align: center; margin-bottom: 3rem; }

.section-eyebrow {
    display: inline-block;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 0.75rem;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 600;
    color: var(--text);
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 0.95rem;
    max-width: 36rem;
    margin: 0.75rem auto 0;
}

/* ============================================================
   HERO
   ============================================================ */
.section-hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-bg__overlay {
    position: absolute; inset: 0;
    background: linear-gradient(
        to right,
        rgba(20,8,18,0.85) 0%,
        rgba(20,8,18,0.60) 55%,
        rgba(20,8,18,0.50) 100%
    );
}

.hero-content {
    position: relative; z-index: 1;
    max-width: var(--max-w);
    width: 100%;
    margin: 0 auto;
    padding: 6rem 1.5rem 4rem;
    max-width: 42rem;
    padding-left: max(1.5rem, calc((100vw - 72rem) / 2 + 1.5rem));
}

.hero-kicker {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-bottom: 1.25rem;
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 7vw, 5rem);
    font-weight: 600;
    color: #ffffff;
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 1.5rem;
}
.hero-title em { font-style: italic; color: color-mix(in srgb, var(--primary) 70%, #ffb8d0); }

.hero-subtitle {
    font-size: clamp(0.9rem, 2vw, 1.05rem);
    color: rgba(255,255,255,0.68);
    line-height: 1.75;
    margin-bottom: 2.5rem;
    max-width: 34rem;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
@media (min-width: 480px) { .hero-actions { flex-direction: row; align-items: center; } }

/* Badges flottants */
.hero-badges {
    position: absolute;
    bottom: 3rem; right: 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    z-index: 1;
}
@media (max-width: 640px) { .hero-badges { display: none; } }

.hero-badge-pill {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.9rem;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 99px;
    color: rgba(255,255,255,0.85);
    font-size: 0.78rem;
    font-weight: 500;
    backdrop-filter: blur(8px);
}
.hero-badge-pill i { color: #fbbf24; font-size: 0.9rem; display: inline-block; width: 1em; height: 1em; }

.hero-scroll {
    position: absolute; bottom: 2rem; left: 50%;
    transform: translateX(-50%);
    color: rgba(255,255,255,0.35);
    font-size: 1.5rem;
    z-index: 1;
    animation: bounce 2s infinite;
}
.hero-scroll i { display: inline-block; width: 1em; height: 1em; }

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(6px); }
}

/* ============================================================
   COLLECTIONS
   ============================================================ */
.section-collections {
    padding: 5rem 1.5rem;
    max-width: 84rem;
    margin: 0 auto;
}

/* Grilles */
.collections-grid-2col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}
.collections-grid-3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.collections-grid-4col {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}
/* Mise en avant : 1 grande + 3 petites */
.collections-featured {
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    grid-template-rows: auto auto;
    gap: 1rem;
}
.collections-featured .collection-card:first-child {
    grid-row: 1 / 3;
}
.collections-featured .collection-card:first-child .collection-card__img-wrap {
    aspect-ratio: 2/3;
}
@media (max-width: 900px) {
    .collections-grid-4col { grid-template-columns: repeat(2, 1fr); }
    .collections-grid-3col { grid-template-columns: repeat(2, 1fr); }
    .collections-featured  { grid-template-columns: 1fr 1fr; }
    .collections-featured .collection-card:first-child { grid-row: auto; }
    .collections-featured .collection-card:first-child .collection-card__img-wrap { aspect-ratio: 3/4; }
}
@media (max-width: 540px) {
    .collections-grid-2col,
    .collections-grid-3col,
    .collections-grid-4col { grid-template-columns: 1fr; }
    .collections-featured   { grid-template-columns: 1fr; }
}

/* ── Carte collection ── */
.collection-card {
    position: relative;
    animation: fadeInUp 0.45s ease-out both;
    cursor: pointer;
}

/* Style Épuré (défaut) */
body.card-clean .collection-card {}
body.card-shadow .collection-card {
    border-radius: calc(var(--radius-img) + 4px);
    overflow: hidden;
    box-shadow: 0 6px 30px rgba(0,0,0,0.12);
}
body.dark-theme.card-shadow .collection-card { box-shadow: 0 6px 30px rgba(0,0,0,0.5); }
body.card-border .collection-card {
    border-radius: calc(var(--radius-img) + 4px);
    overflow: hidden;
    border: 2px solid var(--border-strong);
}

/* Image */
.collection-card__img-wrap {
    aspect-ratio: 3/4;
    overflow: hidden;
    border-radius: var(--radius-img);
    position: relative;
    background: var(--bg-surface);
}
.collection-card__img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25,0.46,0.45,0.94);
    display: block;
}
.collection-card:hover .collection-card__img { transform: scale(1.06); }

/* Badge (ex : Nouveautés, Exclusif) */
.collection-card__badge {
    position: absolute;
    top: 0.75rem; left: 0.75rem;
    background: var(--primary);
    color: var(--primary-text);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.2rem 0.65rem;
    border-radius: 99px;
}

/* Infos sous l'image */
.collection-card__info {
    padding: 1rem 0.25rem 0;
}

.collection-card__label {
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--primary);
    margin-bottom: 0.3rem;
}

.collection-card__title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
    transition: color 0.2s;
}
.collection-card:hover .collection-card__title { color: var(--primary); }

.collection-card__desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.collection-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.collection-card__count {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.collection-card__price {
    font-family: var(--font-display);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary);
    display: none;  /* masqué par défaut, affiché via .show-prices */
}
body.show-prices .collection-card__price { display: block; }

.collection-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.2s, gap 0.2s;
    margin-top: 0.75rem;
}
.collection-card__cta i { display: inline-block; width: 1em; height: 1em; }
.collection-card:hover .collection-card__cta { color: var(--primary); gap: 0.55rem; }

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(16px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ============================================================
   AVIS CLIENTS
   ============================================================ */
.section-testimonials {
    padding: 5rem 1.5rem;
    background: var(--bg-surface);
}

.rating-summary {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
    flex-wrap: wrap;
}
.rating-stars { display: flex; gap: 2px; color: #f59e0b; font-size: 1.05rem; }
.rating-stars i { display: inline-block; width: 1em; height: 1em; }
.rating-value  { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; }
.rating-count  { color: var(--text-muted); font-size: 0.85rem; }

.testimonials-grid {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}
@media (min-width: 900px) { .testimonials-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 540px) { .testimonials-grid { grid-template-columns: 1fr; } }

.testimonial-card {
    background: var(--card);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    animation: fadeInUp 0.4s ease-out both;
}
body.card-shadow .testimonial-card { box-shadow: 0 2px 16px rgba(0,0,0,0.06); border-color: transparent; }
body.dark-theme.card-shadow .testimonial-card { box-shadow: 0 2px 16px rgba(0,0,0,0.3); }
body.card-border .testimonial-card { border: 2px solid var(--border-strong); }

.testimonial-card__stars { display: flex; gap: 2px; color: #f59e0b; }
.testimonial-card__stars i { font-size: 0.85rem; display: inline-block; width: 1em; height: 1em; }

.testimonial-card__text {
    font-size: 0.875rem;
    color: var(--text-secondary);
    line-height: 1.75;
    flex: 1;
    font-style: italic;
    font-family: var(--font-display);
}
.testimonial-card__text::before { content: '\201C'; }
.testimonial-card__text::after  { content: '\201D'; }

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-top: 1px solid var(--border);
    padding-top: 0.8rem;
}
.testimonial-card__avatar {
    width: 2.5rem; height: 2.5rem;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: color-mix(in srgb, var(--primary) 15%, transparent);
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
}
.testimonial-card__name { font-size: 0.85rem; font-weight: 600; line-height: 1.2; }
.testimonial-card__meta { font-size: 0.72rem; color: var(--text-muted); }

/* ============================================================
   BOUTIQUE / MAP
   ============================================================ */
.section-map { padding: 5rem 1.5rem; }

.map-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    gap: 4rem;
    align-items: center;
}
@media (min-width: 768px) { .map-inner { grid-template-columns: 1fr 1.2fr; } }

.map-info .section-title { text-align: left; }

.map-intro {
    color: var(--text-secondary);
    font-size: 0.92rem;
    line-height: 1.7;
    margin: 0.75rem 0 1.5rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}
.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
}
.contact-item > i {
    width: 2.1rem; height: 2.1rem;
    background: color-mix(in srgb, var(--primary) 10%, transparent);
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary);
    font-size: 1rem;
    flex-shrink: 0;
}
.contact-item i.ph { display: inline-block; width: 1em; height: 1em; }
.contact-item > div { display: flex; flex-direction: column; gap: 0.1rem; }
.contact-item strong {
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}
.contact-item span, .contact-item a {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.55;
}
.contact-item a:hover { color: var(--primary); }

.btn-map-cta { margin-top: 0.25rem; }

.map-container {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0,0,0,0.10);
    border: 1px solid var(--border);
    aspect-ratio: 16/9;
}
body.dark-theme .map-container { box-shadow: 0 8px 40px rgba(0,0,0,0.45); }
.map-container iframe { width: 100%; height: 100%; display: block; }

/* ============================================================
   NEWSLETTER
   ============================================================ */
.section-newsletter {
    background: color-mix(in srgb, var(--primary) 8%, var(--bg));
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 3.5rem 1.5rem;
}

.newsletter-inner {
    max-width: 52rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    text-align: center;
}
@media (min-width: 700px) {
    .newsletter-inner {
        flex-direction: row;
        text-align: left;
    }
}

.newsletter-text { flex: 1; }
.newsletter-text i {
    font-size: 2rem;
    color: var(--primary);
    display: block;
    margin-bottom: 0.75rem;
}
.newsletter-text i.ph { display: inline-block; width: 1em; height: 1em; }
.newsletter-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.4rem;
}
.newsletter-subtitle { font-size: 0.875rem; color: var(--text-muted); }

.newsletter-form { flex: 1; width: 100%; }
.newsletter-input-wrap {
    display: flex;
    gap: 0.5rem;
    border: 1.5px solid var(--border-strong);
    border-radius: 99px;
    padding: 0.3rem 0.3rem 0.3rem 1.25rem;
    background: var(--card);
    transition: border-color 0.2s, box-shadow 0.2s;
}
.newsletter-input-wrap:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary) 15%, transparent);
}
.newsletter-input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-family: var(--font-body);
    font-size: 0.875rem;
    color: var(--text);
    min-width: 0;
}
.newsletter-input::placeholder { color: var(--text-muted); }
.newsletter-btn { border-radius: 99px; padding: 0.65rem 1.25rem; font-size: 0.82rem; }
.newsletter-btn i { display: inline-block; width: 1em; height: 1em; }

.newsletter-success {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: #166534;
    margin-top: 0.5rem;
}
body.dark-theme .newsletter-success { color: #86efac; }
.newsletter-success i { display: inline-block; width: 1em; height: 1em; }

/* ============================================================
   CONTACT
   ============================================================ */
.section-contact { padding: 5rem 1.5rem; background: var(--bg-surface); }

.contact-inner { max-width: var(--max-w-sm); margin: 0 auto; }

.contact-form {
    background: var(--card);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}
body.card-shadow .contact-form { box-shadow: 0 4px 32px rgba(0,0,0,0.08); border-color: transparent; }
body.dark-theme.card-shadow .contact-form { box-shadow: 0 4px 32px rgba(0,0,0,0.35); }

.form-row { display: grid; gap: 1.25rem; }
@media (min-width: 480px) { .form-row { grid-template-columns: 1fr 1fr; } }

.form-label {
    display: block;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 0.35rem;
}
.form-label abbr { text-decoration: none; }

.form-input {
    width: 100%;
    padding: 0.8rem 1rem;
    background: var(--bg);
    border: 1.5px solid var(--border-strong);
    border-radius: 8px;
    color: var(--text);
    font-family: var(--font-body);
    font-size: 0.875rem;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    appearance: none;
}
.form-input::placeholder { color: var(--text-muted); }
.form-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary) 18%, transparent);
}
.form-input.error { border-color: #dc2626; }
select.form-input { cursor: pointer; resize: none; }
textarea.form-input { resize: vertical; }
input[type="date"].form-input { cursor: pointer; }

.form-error {
    font-size: 0.72rem;
    color: #dc2626;
    margin-top: 0.3rem;
}

.form-feedback {
    display: flex; align-items: center; justify-content: center; gap: 0.75rem;
    padding: 1rem; border-radius: 8px; font-size: 0.875rem; text-align: center;
}
.form-feedback--success {
    background: #fdf2f8;
    color: #831843;
    border: 1px solid #fbcfe8;
}
body.dark-theme .form-feedback--success {
    background: #2d0a1f;
    color: #f9a8d4;
    border-color: #831843;
}
.form-feedback i { font-size: 1.4rem; color: var(--primary); display: inline-block; width: 1em; height: 1em; }

/* Réassurance */
.contact-reassurance {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}
.reassurance-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}
.reassurance-item i { color: var(--primary); display: inline-block; width: 1em; height: 1em; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: #130d11;
    color: rgba(255,255,255,0.7);
}
body.dark-theme .site-footer {
    background: #0a060a;
    border-top: 1px solid var(--border);
}

.site-footer__inner {
    max-width: var(--max-w);
    margin: 0 auto;
    padding: 3.5rem 1.5rem 2rem;
    display: grid;
    gap: 2.5rem;
}
@media (min-width: 768px) {
    .site-footer__inner { grid-template-columns: 1.5fr 1fr 1fr 1fr; align-items: start; }
}

.footer-logo {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.6rem;
    letter-spacing: 0.04em;
}
.footer-logo em { font-style: italic; color: var(--primary); }
.footer-tagline { font-size: 0.85rem; line-height: 1.6; max-width: 20rem; margin-bottom: 1rem; }

.footer-social {
    display: flex;
    gap: 0.75rem;
}
.footer-social a {
    width: 2.25rem; height: 2.25rem;
    display: flex; align-items: center; justify-content: center;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 50%;
    color: rgba(255,255,255,0.5);
    font-size: 1rem;
    transition: border-color 0.2s, color 0.2s;
}
.footer-social a i { display: inline-block; width: 1em; height: 1em; }
.footer-social a:hover { border-color: var(--primary); color: var(--primary); }

.footer-nav { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-nav__title {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
    margin-bottom: 0.4rem;
}
.footer-nav a {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.55);
    transition: color 0.2s;
}
.footer-nav a:hover { color: #ffffff; }

.footer-contact-block { display: flex; flex-direction: column; gap: 0.7rem; }
.footer-contact-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: rgba(255,255,255,0.55);
    transition: color 0.2s;
}
.footer-contact-link i { color: var(--primary); display: inline-block; width: 1em; height: 1em; }
.footer-contact-link:hover { color: #ffffff; }
.footer-hours { font-size: 0.8rem; color: rgba(255,255,255,0.35); line-height: 1.6; margin-top: 0.25rem; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 1.25rem 1.5rem;
    max-width: var(--max-w);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    align-items: center;
    text-align: center;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.28);
}
@media (min-width: 640px) {
    .footer-bottom { flex-direction: row; justify-content: space-between; }
}
.footer-legal a { color: rgba(255,255,255,0.28); transition: color 0.2s; }
.footer-legal a:hover { color: rgba(255,255,255,0.65); }

/* ============================================================
   WIDGET PERSONNALISATION
   ============================================================ */
#demo-widget-trigger {
    position: fixed; bottom: 1.5rem; right: 1.5rem;
    width: 3.5rem; height: 3.5rem;
    background: linear-gradient(145deg, #d4d4d4, #a0a0a0);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.25),
                inset 0 1px 0 rgba(255,255,255,0.5),
                inset 0 -1px 0 rgba(0,0,0,0.1);
    z-index: 10000;
    color: #3a3a3a;
    font-size: 1.6rem;
    transition: transform 0.35s cubic-bezier(0.175,0.885,0.32,1.275), box-shadow 0.2s;
}
#demo-widget-trigger i { display: inline-block; width: 1em; height: 1em; }
#demo-widget-trigger:hover {
    transform: scale(1.1) rotate(60deg);
    box-shadow: 0 6px 25px rgba(0,0,0,0.35), inset 0 1px 0 rgba(255,255,255,0.5);
}

#demo-widget-overlay {
    position: fixed; inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
    opacity: 0; visibility: hidden;
    backdrop-filter: blur(4px);
    transition: opacity 0.3s, visibility 0.3s;
}
#demo-widget-overlay.open { opacity: 1; visibility: visible; }

#demo-widget-modal {
    position: fixed; top: 50%; left: 50%;
    transform: translate(-50%, -40%) scale(0.9);
    width: min(92%, 22rem);
    background: var(--card);
    color: var(--text);
    padding: 1.5rem;
    border-radius: 16px;
    box-shadow: 0 24px 60px rgba(0,0,0,0.18);
    border: 1px solid var(--border);
    z-index: 10001;
    opacity: 0; visibility: hidden;
    max-height: 90svh; overflow-y: auto;
    transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
}
body.dark-theme #demo-widget-modal { box-shadow: 0 24px 60px rgba(0,0,0,0.55); }
#demo-widget-modal.open {
    opacity: 1; visibility: visible;
    transform: translate(-50%, -50%) scale(1);
}

.widget-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}
.widget-title { font-family: var(--font-body); font-size: 0.95rem; font-weight: 700; }
.widget-close {
    width: 2rem; height: 2rem;
    display: flex; align-items: center; justify-content: center;
    color: var(--text-muted); font-size: 1.1rem; border-radius: 6px;
    transition: color 0.2s, background 0.2s;
}
.widget-close i { display: inline-block; width: 1em; height: 1em; }
.widget-close:hover { color: var(--text); background: var(--border); }

.demo-option { margin-bottom: 1.25rem; }
.demo-option__label {
    display: block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.6rem;
}

/* Toggle switch */
.toggle-label {
    display: flex; justify-content: space-between; align-items: center;
    cursor: pointer; font-size: 0.875rem; font-weight: 500;
}
.toggle { position: relative; display: inline-block; width: 2.75rem; height: 1.5rem; flex-shrink: 0; }
.toggle__input { position: absolute; opacity: 0; width: 0; height: 0; }
.toggle__track {
    position: absolute; inset: 0;
    background: #d1d5db; border-radius: 9999px;
    transition: background 0.2s; cursor: pointer;
}
.toggle__track::after {
    content: ''; position: absolute; top: 2px; left: 2px;
    width: 1.2rem; height: 1.2rem;
    background: #ffffff; border-radius: 50%; transition: transform 0.2s;
}
.toggle__input:checked ~ .toggle__track { background: var(--primary); }
.toggle__input:checked ~ .toggle__track::after { transform: translateX(1.25rem); }
.toggle__input:focus ~ .toggle__track {
    box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary) 25%, transparent);
}

/* Color presets */
.color-presets { display: flex; justify-content: space-between; gap: 0.5rem; }
.color-preset {
    width: 3rem; height: 3rem; border-radius: 50%;
    border: 2px solid transparent;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
    transition: transform 0.2s;
    flex-shrink: 0;
}
.color-preset:hover { transform: scale(1.1); }
.color-preset.active { box-shadow: 0 0 0 3px var(--bg), 0 0 0 5px var(--text); }
.color-preset--custom {
    position: relative; overflow: hidden; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
}
.color-preset__rainbow {
    position: absolute; inset: 0;
    background: conic-gradient(red, yellow, lime, aqua, blue, magenta, red);
    pointer-events: none;
}
.color-preset--custom i {
    position: relative; z-index: 1; color: #ffffff; font-size: 1rem;
    filter: drop-shadow(0 1px 2px rgba(0,0,0,0.5));
    pointer-events: none; display: inline-block; width: 1em; height: 1em;
}
.color-preset--custom input[type="color"] {
    position: absolute; inset: 0; opacity: 0; width: 100%; height: 100%; cursor: pointer;
}

/* Option buttons */
.btn-group {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.4rem;
}
.btn-group--4 { grid-template-columns: repeat(4, 1fr); }

.opt-btn {
    display: flex; flex-direction: column; align-items: center;
    gap: 0.25rem; padding: 0.5rem 0.25rem;
    border: 1px solid var(--border); border-radius: 8px;
    color: var(--text-muted); font-size: 0.65rem; font-weight: 500;
    text-align: center; line-height: 1.2;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.opt-btn:hover { border-color: var(--primary); color: var(--primary); }
.opt-btn.active {
    border-color: var(--primary) !important;
    background: color-mix(in srgb, var(--primary) 10%, transparent) !important;
    color: var(--primary) !important;
}
.opt-btn i { font-size: 1.1rem; display: inline-block; width: 1em; height: 1em; }
.opt-btn__preview { display: block; font-size: 1rem; margin-bottom: 0.1rem; }

/* Layout icons */
.layout-icon {
    display: block; width: 100%; height: 1.25rem;
    background: rgba(128,128,128,0.12); border-radius: 2px;
    position: relative; overflow: hidden;
}
.layout-icon--2col::before, .layout-icon--2col::after {
    content: ''; position: absolute;
    top: 2px; bottom: 2px; width: calc(50% - 3px);
    background: rgba(128,128,128,0.4); border-radius: 1px;
}
.layout-icon--2col::before { left: 2px; }
.layout-icon--2col::after  { right: 2px; }
.layout-icon--3col {
    display: flex; gap: 2px; padding: 2px; background: rgba(128,128,128,0.12);
}
.layout-icon--3col::before, .layout-icon--3col::after {
    content: ''; flex: 1; background: rgba(128,128,128,0.4); border-radius: 1px;
}
.layout-icon--4col {
    display: flex; gap: 2px; padding: 2px; background: rgba(128,128,128,0.12);
}
.layout-icon--4col::before { content: ''; flex: 1; background: rgba(128,128,128,0.4); border-radius: 1px; }
.layout-icon--4col::after  { content: ''; flex: 3; background: rgba(128,128,128,0.25); border-radius: 1px; }
.layout-icon--featured {
    display: grid; grid-template-columns: 1.5fr 1fr; gap: 2px; padding: 2px;
    background: rgba(128,128,128,0.12);
}
.layout-icon--featured::before {
    content: ''; background: rgba(128,128,128,0.5); border-radius: 1px; grid-row: 1/3;
}
.layout-icon--featured::after {
    content: ''; background: rgba(128,128,128,0.3); border-radius: 1px; height: 5px; align-self: center;
}

/* Card preview icons */
.card-prev {
    width: 24px; height: 16px;
    border-radius: 3px; margin-bottom: 2px;
}
.card-prev--clean  { background: rgba(128,128,128,0.12); }
.card-prev--shadow { background: rgba(128,128,128,0.12); box-shadow: 2px 2px 5px rgba(0,0,0,0.2); }
.card-prev--border { background: rgba(128,128,128,0.06); border: 2px solid rgba(128,128,128,0.4); }

/* Range slider */
.range-input { width: 100%; accent-color: var(--primary); cursor: pointer; height: 4px; }

/* ============================================================
   SCROLLBAR
   ============================================================ */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.1); border-radius: 2px; }
body.dark-theme ::-webkit-scrollbar-thumb { background: rgba(255,255,255,0.1); }

/* ============================================================
   SKELETON LOADING
   ============================================================ */
.skeleton-card {
    background: var(--bg-surface);
    border-radius: var(--radius-card, 12px);
    position: relative;
    overflow: hidden;
}
.skeleton-card::after {
    content: '';
    position: absolute;
    inset: 0;
    transform: translateX(-100%);
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.45) 50%, transparent 100%);
    animation: skeleton-shimmer 1.4s infinite;
}
body.dark-theme .skeleton-card::after {
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.08) 50%, transparent 100%);
}
@keyframes skeleton-shimmer { 100% { transform: translateX(100%); } }

.skeleton-collection { aspect-ratio: 3/4; min-height: 220px; }
.skeleton-testimonial { height: 180px; }
