/* ============================================
   RESET & VARIABLES
   ============================================ */

:root {
    /* Palette de couleurs */
    --color-primary: #F7B6C8;        /* Rose poudré */
    --color-accent: #E84A7A;         /* Framboise */
    --color-secondary: #B9A8FF;      /* Lavande */
    --color-background: #FFF7F2;     /* Crème */
    --color-text: #1F1F2A;           /* Encre */
    --color-success: #7FE7C4;        /* Vert menthe */
    
    /* Typographies */
    --font-heading: 'Fraunces', serif;
    --font-body: 'Poppins', sans-serif;
    
    /* Spacing */
    --section-padding-desktop: 80px;
    --section-padding-mobile: 48px;
    --max-width: 1120px;
    
    /* Radius */
    --radius-button: 999px;
    --radius-card: 24px;
    
    /* Transitions */
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-background);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    min-width: 0;
    max-width: 100%;
    padding-left: env(safe-area-inset-left);
    padding-right: env(safe-area-inset-right);
}

.container {
    width: 100%;
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 24px;
    min-width: 0;
}

/* Éviter tout débordement horizontal (images, tableaux, etc.) */
img, video, iframe {
    max-width: 100%;
    height: auto;
}

/* ============================================
   PROMO BAR
   ============================================ */

.promo-bar {
    background: var(--color-secondary);
    color: white;
    text-align: center;
    padding: 10px 16px;
    font-size: clamp(12px, 2.5vw, 14px);
    font-weight: 500;
    position: relative;
    z-index: 1000;
    width: 100%;
}

.promo-bar p {
    display: inline-block;
    max-width: 100%;
    word-wrap: break-word;
}

.promo-bar p::before {
    content: '✦';
    margin-right: 8px;
    opacity: 0.7;
}

.promo-bar p::after {
    content: '✦';
    margin-left: 8px;
    opacity: 0.7;
}

/* ============================================
   HEADER STICKY
   ============================================ */

.header {
    position: sticky;
    top: 0;
    background: rgba(255, 247, 242, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(31, 31, 42, 0.08);
    z-index: 999;
    transition: var(--transition);
}

.header .container {
    padding-left: 50px;
    padding-right: 50px;
}

.header.scrolled {
    padding: 12px 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    padding: 20px 0;
    transition: var(--transition);
}

.header.scrolled .header-content {
    padding: 12px 0;
}

.header-content .btn-primary {
    flex-shrink: 0;
}

.logo a {
    font-family: var(--font-heading);
    font-size: clamp(16px, 4vw, 24px);
    font-weight: 700;
    color: var(--color-text);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-shrink: 0;
}

.nav-menu a {
    color: var(--color-text);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: var(--transition);
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-accent);
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--color-text);
    transition: var(--transition);
}

/* CTA dans le menu mobile (masqué sur desktop) */
.header-cta-mobile {
    display: none;
}

/* À partir de 972px : un seul bouton "Créer mon bandana" dans le header (celui avec texte blanc) */
@media (min-width: 973px) {
    .header .nav-menu .header-cta-mobile {
        display: none !important;
    }
}

/* ============================================
   MENU MOBILE (PANNEAU MODALE)
   ============================================ */

.mobile-menu-overlay {
    display: none;
}

.mobile-menu-overlay.active {
    display: block;
}

@media (min-width: 969px) {
    .mobile-menu-overlay {
        display: none !important;
    }
}

@media (max-width: 968px) {
    .mobile-menu-overlay {
        display: block;
        position: fixed;
        inset: 0;
        z-index: 997;
        visibility: hidden;
        opacity: 0;
        transition: visibility 0.3s ease, opacity 0.3s ease;
        pointer-events: none;
    }
    
    .mobile-menu-overlay.active {
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
    }
    
    .mobile-menu-backdrop {
        position: absolute;
        inset: 0;
        background: rgba(31, 31, 42, 0.35);
        backdrop-filter: blur(4px);
        cursor: pointer;
    }
    
    .mobile-menu-panel {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        max-width: 340px;
        background: var(--color-background);
        border-radius: var(--radius-card) 0 0 var(--radius-card);
        box-shadow: -8px 0 40px rgba(0, 0, 0, 0.12);
        display: flex;
        flex-direction: column;
        padding: 24px 20px 32px;
        transform: translateX(100%);
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        z-index: 1;
    }
    
    .mobile-menu-overlay.active .mobile-menu-panel {
        transform: translateX(0);
    }
    
    .mobile-menu-header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 28px;
        padding-bottom: 16px;
        border-bottom: 1px solid rgba(31, 31, 42, 0.08);
    }
    
    .mobile-menu-title {
        font-family: var(--font-heading);
        font-size: 22px;
        font-weight: 700;
        color: var(--color-text);
        margin: 0;
    }
    
    .mobile-menu-close {
        width: 44px;
        height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
        background: transparent;
        border: none;
        border-radius: 50%;
        cursor: pointer;
        font-size: 28px;
        line-height: 1;
        color: var(--color-text);
        transition: var(--transition);
    }
    
    .mobile-menu-close:hover {
        background: rgba(31, 31, 42, 0.06);
        color: var(--color-accent);
    }
    
    .mobile-menu-nav {
        display: flex;
        flex-direction: column;
        gap: 4px;
        margin-bottom: 24px;
    }
    
    .mobile-menu-nav a {
        color: var(--color-text);
        text-decoration: none;
        font-weight: 500;
        font-size: 17px;
        padding: 12px 0;
        border-radius: 12px;
        padding-left: 12px;
        transition: var(--transition);
    }
    
    .mobile-menu-nav a:hover {
        background: rgba(232, 74, 122, 0.08);
        color: var(--color-accent);
    }
    
    .mobile-menu-ctas {
        display: flex;
        flex-direction: column;
        gap: 12px;
        margin-bottom: 20px;
    }
    
    .mobile-menu-ctas .btn {
        width: 100%;
        justify-content: center;
    }
    
    .mobile-menu-badges {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-top: auto;
        padding-top: 16px;
        border-top: 1px solid rgba(31, 31, 42, 0.08);
    }
    
    .mobile-menu-badges .badge {
        font-size: 11px;
        padding: 6px 10px;
    }
}

/* ============================================
   BOUTONS
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: var(--radius-button);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    position: relative;
}

.btn-primary {
    background: var(--color-accent);
    color: white;
}

.btn-primary:hover {
    background: #D13A6A;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(232, 74, 122, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--color-accent);
    border: 2px solid var(--color-accent);
}

.btn-secondary:hover {
    background: var(--color-accent);
    color: white;
}

.btn-large {
    padding: 12px 28px;
    font-size: 15px;
}

.sparkle {
    margin-left: 8px;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.2); }
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    padding: 2rem 0 1.25rem 0;
    min-height: 0;
    display: flex;
    align-items: center;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: center;
}

.hero-text {
    min-width: 0;
}

.hero-text h1 {
    font-family: var(--font-heading);
    font-size: clamp(26px, 5.5vw, 40px);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 12px;
    color: var(--color-text);
    word-wrap: break-word;
}

.hero-text h1 .highlight {
    background: linear-gradient(180deg, transparent 60%, var(--color-primary) 60%);
    padding: 0 4px;
}

.hero-subtitle {
    font-size: clamp(14px, 2.2vw, 16px);
    color: rgba(31, 31, 42, 0.7);
    margin-bottom: 16px;
    line-height: 1.5;
    word-wrap: break-word;
}

.hero-ctas {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.hero-badges {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.badge {
    background: white;
    padding: 6px 12px;
    border-radius: var(--radius-button);
    font-size: 12px;
    font-weight: 500;
    border: 1px solid rgba(31, 31, 42, 0.08);
    color: var(--color-text);
}

.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bandana-mockup {
    position: relative;
    width: 100%;
    max-width: 280px;
}

.bandana-stack {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
}

.bandana-item {
    position: absolute;
    width: 80%;
    aspect-ratio: 1;
    border-radius: 50%;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.bandana-1 {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    top: 0;
    left: 10%;
    z-index: 3;
    transform: rotate(-5deg);
}

.bandana-2 {
    background: linear-gradient(135deg, var(--color-secondary) 0%, #8B7AE8 100%);
    top: 10%;
    left: 0;
    z-index: 2;
    transform: rotate(5deg);
}

.bandana-3 {
    background: linear-gradient(135deg, var(--color-background) 0%, var(--color-primary) 100%);
    top: 20%;
    left: 20%;
    z-index: 1;
    transform: rotate(-3deg);
}

.label-sticker {
    position: absolute;
    bottom: -12px;
    right: 12px;
    background: white;
    padding: 8px 14px;
    border-radius: 10px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(31, 31, 42, 0.08);
}

.new-badge {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--color-success);
    color: var(--color-text);
    padding: 6px 12px;
    border-radius: var(--radius-button);
    font-size: 11px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(127, 231, 196, 0.3);
}

/* Élément masqué dans le hero : bulle verte "Nouveauté : Broderie prénom!" */
.hero .new-badge.is-hidden {
    display: none;
}

/* ============================================
   SECTION HEADERS
   ============================================ */

.gallery-section .section-header {
    margin-bottom: 24px;
}

.gallery-section .section-header h2 {
    font-size: 28px;
    margin-bottom: 6px;
}

.gallery-section .section-subtitle {
    font-size: 14px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--color-text);
    position: relative;
    display: inline-block;
}

.section-header h2::before,
.section-header h2::after {
    content: '✦';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: var(--color-primary);
    opacity: 0.6;
}

.section-header h2::before {
    left: -40px;
}

.section-header h2::after {
    right: -40px;
}

/* Éviter que les étoiles dépassent sur petits écrans */
@media (max-width: 768px) {
    .section-header h2::before {
        left: -24px;
    }
    .section-header h2::after {
        right: -24px;
    }
}

@media (max-width: 480px) {
    .section-header h2::before,
    .section-header h2::after {
        display: none;
    }
}

.section-subtitle {
    font-size: 18px;
    color: rgba(31, 31, 42, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   COLLECTIONS / PRODUCTS
   ============================================ */

.collections {
    padding: var(--section-padding-desktop) 0;
    background: white;
}

.collections-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
    align-items: start;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.product-card {
    background: var(--color-background);
    border-radius: var(--radius-card);
    border: 1px solid rgba(31, 31, 42, 0.08);
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.product-image {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
}

.product-placeholder {
    width: 100%;
    height: 100%;
    transition: var(--transition);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: var(--transition);
}

.product-card:hover .product-placeholder,
.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-btn {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(20px);
    opacity: 0;
    transition: var(--transition);
}

.product-card:hover .product-btn {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.btn-product-rose {
    background: var(--color-accent);
    color: white;
}

.btn-product-rose:hover {
    background: #D13A6A;
}

.btn-product-lavande {
    background: var(--color-secondary);
    color: white;
}

.btn-product-lavande:hover {
    background: #9B88E8;
}

.btn-product-rouge {
    background: #E84A7A;
    color: white;
}

.btn-product-rouge:hover {
    background: #C93A6A;
}

.product-info {
    padding: 24px;
}

.product-info h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    margin-bottom: 8px;
    color: var(--color-text);
}

.product-price {
    font-size: 18px;
    font-weight: 600;
    color: var(--color-accent);
    margin-bottom: 16px;
}

.product-options {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.option-pill {
    background: white;
    padding: 6px 12px;
    border-radius: var(--radius-button);
    font-size: 12px;
    font-weight: 500;
    border: 1px solid rgba(31, 31, 42, 0.08);
    color: var(--color-text);
}

/* ============================================
   PERSONNALISATION
   ============================================ */

.personnalisation {
    padding: var(--section-padding-desktop) 0;
}

.steps-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 40px;
}

.steps-grid {
    display: grid;
    gap: 24px;
}

.step-card {
    background: white;
    padding: 32px;
    border-radius: var(--radius-card);
    border: 1px solid rgba(31, 31, 42, 0.08);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    transition: var(--transition);
    text-align: center;
    position: relative;
}

.step-card::before {
    content: '✦';
    position: absolute;
    top: 16px;
    right: 16px;
    font-size: 16px;
    opacity: 0.3;
    color: var(--color-primary);
}

.step-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.step-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    color: var(--color-text);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    margin: 0 auto 16px;
}

.step-icon-rose {
    background: var(--color-primary);
}

.step-icon-lavande {
    background: var(--color-secondary);
}

.step-icon-vert {
    background: var(--color-success);
}

.step-stars {
    font-size: 18px;
    margin-bottom: 16px;
    color: #FFD700;
}

.step-card h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--color-text);
}

.step-card p {
    color: rgba(31, 31, 42, 0.7);
    font-size: 16px;
}

.size-guide-card {
    background: white;
    padding: 32px;
    border-radius: var(--radius-card);
    color: var(--color-text);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(31, 31, 42, 0.08);
    position: sticky;
    top: 100px;
}

.size-guide-card h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    margin-bottom: 24px;
    position: relative;
}

.size-guide-card {
    position: relative;
}

.size-guide-card::before {
    content: '✦';
    position: absolute;
    top: -10px;
    right: 20px;
    font-size: 24px;
    color: var(--color-primary);
    opacity: 0.4;
}

.size-guide-card::after {
    content: '❤';
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-size: 20px;
    opacity: 0.3;
}

.size-list {
    margin-bottom: 32px;
}

.size-item {
    display: flex;
    gap: 16px;
    margin-bottom: 16px;
    align-items: baseline;
}

.size-label {
    font-weight: 700;
    font-size: 20px;
    min-width: 40px;
}

.size-desc {
    font-size: 15px;
    opacity: 0.9;
}

/* ============================================
   AVIS & À PROPOS
   ============================================ */

.avis-apropos {
    padding: var(--section-padding-desktop) 0;
    background: white;
}

.avis-apropos-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.reviews-stats-inline {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 32px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-divider {
    color: rgba(31, 31, 42, 0.2);
    font-size: 24px;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 14px;
    color: rgba(31, 31, 42, 0.7);
}

.review-card {
    background: var(--color-background);
    padding: 32px;
    border-radius: var(--radius-card);
    border: 1px solid rgba(31, 31, 42, 0.08);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.review-stars {
    font-size: 20px;
    margin-bottom: 16px;
}

.review-text {
    font-size: 16px;
    font-style: italic;
    margin-bottom: 16px;
    color: var(--color-text);
    line-height: 1.6;
}

.review-author {
    font-size: 14px;
    font-weight: 600;
    color: rgba(31, 31, 42, 0.6);
}

.apropos-text h2 {
    font-family: var(--font-heading);
    font-size: 42px;
    margin-bottom: 24px;
    color: var(--color-text);
}

.apropos-text p {
    font-size: 18px;
    color: rgba(31, 31, 42, 0.7);
    margin-bottom: 32px;
    line-height: 1.8;
}

.values-pills {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.value-pill {
    background: var(--color-primary);
    color: var(--color-text);
    padding: 12px 24px;
    border-radius: var(--radius-button);
    font-weight: 600;
    font-size: 14px;
}

.atelier-placeholder {
    background: linear-gradient(135deg, var(--color-background) 0%, var(--color-primary) 100%);
    border-radius: var(--radius-card);
    aspect-ratio: 4/3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(31, 31, 42, 0.08);
}

.handmade-icon {
    font-size: 64px;
    margin-bottom: 16px;
}

.atelier-placeholder p {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--color-text);
}

.atelier-photo {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: var(--radius-card);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(31, 31, 42, 0.08);
}

/* ============================================
   FAQ & NEWSLETTER
   ============================================ */

.faq-newsletter {
    padding: var(--section-padding-desktop) 0;
    background: white;
}

.faq-newsletter-layout {
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.faq-list {
    max-width: 640px;
    width: 100%;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(31, 31, 42, 0.08);
    margin-bottom: 16px;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-body);
    font-size: 18px;
    font-weight: 600;
    color: var(--color-text);
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--color-accent);
}

.faq-icon {
    font-size: 24px;
    font-weight: 300;
    transition: var(--transition);
    color: var(--color-accent);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 0;
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding: 0 0 24px 0;
}

.faq-answer p {
    color: rgba(31, 31, 42, 0.7);
    line-height: 1.8;
    font-size: 16px;
}

/* ============================================
   REASSURANCE
   ============================================ */

.reassurance {
    padding: var(--section-padding-desktop) 0;
}

.reassurance-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.reassurance-item {
    text-align: center;
    padding: 32px;
}

.reassurance-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.reassurance-item h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--color-text);
}

.reassurance-item p {
    color: rgba(31, 31, 42, 0.7);
    font-size: 16px;
}

.newsletter-card {
    background: linear-gradient(135deg, rgba(185, 168, 255, 0.15) 0%, rgba(247, 182, 200, 0.15) 100%);
    padding: 40px;
    border-radius: var(--radius-card);
    border: 1px solid rgba(31, 31, 42, 0.08);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    position: sticky;
    top: 100px;
    position: relative;
}

.newsletter-card::before {
    content: '✦';
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 60px;
    opacity: 0.1;
    color: var(--color-secondary);
}

.newsletter-card::after {
    content: '❤';
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-size: 24px;
    opacity: 0.2;
}

.newsletter-card h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    margin-bottom: 24px;
    color: var(--color-text);
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
}

.newsletter-input {
    width: 100%;
    padding: 18px 24px;
    border-radius: var(--radius-button);
    border: 2px solid rgba(31, 31, 42, 0.1);
    font-family: var(--font-body);
    font-size: 16px;
    background: white;
    transition: var(--transition);
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--color-accent);
}

.newsletter-disclaimer {
    font-size: 12px;
    color: rgba(31, 31, 42, 0.5);
}

/* ============================================
   BANDANAS SHOWCASE SECTION
   ============================================ */

.bandanas-showcase {
    padding: var(--section-padding-desktop) 0;
    background: linear-gradient(180deg, #FFF7F2 0%, #FFE4E1 50%, #FFF7F2 100%);
    position: relative;
    overflow: hidden;
}

.bandanas-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(247, 182, 200, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(185, 168, 255, 0.15) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

.bandanas-showcase .container {
    position: relative;
    z-index: 1;
}

.bandanas-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.bandana-card {
    background: white;
    border-radius: var(--radius-card);
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.bandana-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(247, 182, 200, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: var(--transition);
}

.bandana-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 12px 40px rgba(232, 74, 122, 0.2);
}

.bandana-card:hover::before {
    opacity: 1;
}

.bandana-image-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1;
    margin-bottom: 20px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.bandana-image {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
}

.embroidery-preview {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 24px;
    text-align: center;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
    letter-spacing: 2px;
    line-height: 1.2;
    z-index: 2;
    position: relative;
}

.color-label {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    padding: 8px 20px;
    border-radius: 999px;
    color: white;
    font-weight: 600;
    font-size: 14px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(10px);
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.3);
    z-index: 3;
}

.btn-personnaliser {
    width: 100%;
    padding: 14px 24px;
    background: rgba(255, 255, 255, 0.9);
    border: 2px solid rgba(232, 74, 122, 0.2);
    border-radius: var(--radius-button);
    color: var(--color-accent);
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
    position: relative;
    z-index: 2;
}

.btn-personnaliser:hover {
    background: var(--color-accent);
    color: white;
    border-color: var(--color-accent);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(232, 74, 122, 0.3);
}

.filter-chips {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.filter-chip {
    padding: 12px 24px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid rgba(232, 74, 122, 0.2);
    color: var(--color-text);
    font-weight: 500;
    font-size: 15px;
    cursor: pointer;
    transition: var(--transition);
    font-family: var(--font-body);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
}

.filter-chip:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(247, 182, 200, 0.3);
}

.filter-chip.active {
    background: var(--color-accent);
    color: white;
    border-color: var(--color-accent);
    box-shadow: 0 4px 16px rgba(232, 74, 122, 0.3);
}

.embroidery-threads-decoration {
    position: absolute;
    bottom: -50px;
    left: 5%;
    width: 200px;
    height: 200px;
    background: 
        linear-gradient(45deg, #FFD700 0%, transparent 50%),
        linear-gradient(135deg, #FF69B4 0%, transparent 50%),
        linear-gradient(225deg, #40E0D0 0%, transparent 50%),
        linear-gradient(315deg, #9370DB 0%, transparent 50%);
    border-radius: 50%;
    opacity: 0.3;
    filter: blur(20px);
    z-index: 0;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

/* Responsive pour la section bandanas */
@media (max-width: 968px) {
    .bandanas-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
    
    .filter-chips {
        gap: 12px;
    }
    
    .filter-chip {
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media (max-width: 640px) {
    .bandanas-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .embroidery-preview {
        font-size: 20px;
    }
    
    .filter-chips {
        gap: 8px;
    }
    
    .filter-chip {
        padding: 8px 16px;
        font-size: 13px;
    }
}

/* ============================================
   GALLERY CAROUSEL
   ============================================ */

.gallery-section {
    padding: 1.25rem 0 2rem 0;
    background: var(--color-background);
    overflow: hidden;
    margin-top: -0.5rem;
}

.gallery-carousel-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: 0;
}

.gallery-carousel {
    display: flex;
    gap: 16px;
    animation: scrollGallery 30s linear infinite;
    will-change: transform;
}

.gallery-item {
    flex-shrink: 0;
    width: 295px;
    height: 295px;
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 28px rgba(0, 0, 0, 0.15);
}

.gallery-image {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: flex-end;
    padding: 10px;
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.gallery-overlay {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
}

.gallery-badge {
    background: rgba(255, 255, 255, 0.95);
    color: var(--color-accent);
    padding: 6px 12px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

@keyframes scrollGallery {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(calc(-295px * 8 - 16px * 8));
    }
}

/* Animation pour un défilement infini plus fluide */
.gallery-carousel {
    width: fit-content;
}

/* Pause au survol */
.gallery-carousel-wrapper:hover .gallery-carousel {
    animation-play-state: paused;
}

/* ============================================
   TARIFS & PERSONNALISATION
   ============================================ */

.tarifs-section {
    padding: var(--section-padding-desktop) 0;
    background: linear-gradient(180deg, #FFFBF8 0%, #FDF5F0 50%, #FFF7F2 100%);
    position: relative;
}

.tarifs-section .container {
    position: relative;
    z-index: 1;
}

.tarifs-section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.tarifs-section-header .tarifs-icon {
    display: inline-block;
    font-size: 2rem;
    margin-bottom: 0.75rem;
    opacity: 0.85;
}

.tarifs-section-header h2 {
    font-family: var(--font-heading);
    font-size: clamp(28px, 4vw, 38px);
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

.tarifs-subtitle {
    font-size: 1rem;
    color: rgba(31, 31, 42, 0.65);
    font-weight: 400;
    letter-spacing: 0.02em;
}

/* Grille 2 colonnes : table des tarifs */
.tarifs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.75rem;
    margin-bottom: 3rem;
}

.tarif-card {
    background: white;
    border-radius: 20px;
    padding: 1.75rem 1.5rem;
    box-shadow: 0 4px 24px rgba(232, 74, 122, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(31, 31, 42, 0.06);
    transition: var(--transition);
}

.tarif-card:hover {
    box-shadow: 0 8px 32px rgba(232, 74, 122, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
    transform: translateY(-2px);
}

.tarif-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.tarif-icon {
    font-size: 1.5rem;
    line-height: 1;
    opacity: 0.9;
}

.tarif-card h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--color-text);
    margin: 0;
}

.tarif-desc {
    font-size: 0.9rem;
    color: rgba(31, 31, 42, 0.7);
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

.tarif-table-wrapper {
    background: linear-gradient(135deg, #fdf8f6 0%, #fef9f7 100%);
    border-radius: 14px;
    padding: 0.25rem;
    border: 1px solid rgba(232, 74, 122, 0.1);
}

.tarif-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.95rem;
}

.tarif-table thead th {
    text-align: left;
    padding: 0.75rem 1rem;
    font-weight: 600;
    color: var(--color-text);
    border-bottom: 2px solid rgba(232, 74, 122, 0.2);
    font-family: var(--font-body);
}

.tarif-table tbody td {
    padding: 0.85rem 1rem;
    border-bottom: 1px solid rgba(31, 31, 42, 0.06);
    color: var(--color-text);
}

.tarif-table tbody tr:last-child td {
    border-bottom: none;
}

.tarif-price {
    color: var(--color-accent);
    font-size: 1.15rem;
    font-weight: 700;
}

.tarif-sur-demande {
    font-size: 0.9rem;
    color: rgba(31, 31, 42, 0.7);
    font-style: italic;
}

/* Options de personnalisation : fils */
.tarifs-custom-block {
    background: white;
    border-radius: 20px;
    padding: 2rem 1.75rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 24px rgba(232, 74, 122, 0.06), 0 2px 8px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(31, 31, 42, 0.06);
}

.tarifs-custom-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.tarifs-custom-header .tarifs-icon,
.tarifs-icon-palette,
.tarifs-icon-needle {
    font-size: 1.4rem;
    opacity: 0.9;
}

.tarifs-custom-block h3 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--color-text);
    margin: 0;
}

.tarifs-custom-lead {
    font-size: 1rem;
    color: var(--color-text);
    margin-bottom: 0.35rem;
}

.tarifs-custom-desc {
    font-size: 0.9rem;
    color: rgba(31, 31, 42, 0.65);
    margin-bottom: 1.25rem;
}

.thread-colors {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
}

.thread-pill {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--thread, #E84A7A);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.9);
    transition: var(--transition);
}

.thread-pill:hover {
    transform: scale(1.15);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

/* Fabrication main */
.tarifs-fabrication {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    background: white;
    border-radius: 20px;
    padding: 2rem 2rem;
    margin-bottom: 3rem;
    box-shadow: 0 4px 24px rgba(232, 74, 122, 0.06), 0 2px 8px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(31, 31, 42, 0.06);
}

.tarifs-fabrication-content {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.tarifs-fabrication-content h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 0.35rem;
}

.tarifs-fabrication-content p {
    font-size: 0.95rem;
    color: rgba(31, 31, 42, 0.7);
    margin: 0;
    max-width: 420px;
}

.tarifs-tambour-visual {
    flex-shrink: 0;
}

.tambour-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(145deg, #f5e6e0 0%, #f0d9d2 100%);
    border: 3px solid rgba(232, 74, 122, 0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: inset 0 2px 8px rgba(0, 0, 0, 0.06), 0 4px 12px rgba(0, 0, 0, 0.08);
}

.tambour-icon {
    font-size: 2rem;
    z-index: 1;
}

.tambour-stitches {
    position: absolute;
    inset: 8px;
    border-radius: 50%;
    border: 1px dashed rgba(232, 74, 122, 0.35);
    pointer-events: none;
}

/* Couleurs bandanas */
.tarifs-bandana-colors {
    background: white;
    border-radius: 20px;
    padding: 2rem 1.75rem;
    box-shadow: 0 4px 24px rgba(232, 74, 122, 0.06), 0 2px 8px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(31, 31, 42, 0.06);
}

.tarifs-colors-title {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 1.5rem;
}

.tarifs-colors-title .tarifs-icon {
    font-size: 1.4rem;
    opacity: 0.9;
}

.bandana-gammes {
    display: grid;
    gap: 1.5rem;
}

.bandana-gamme h4 {
    font-size: 1rem;
    font-weight: 600;
    color: rgba(31, 31, 42, 0.8);
    margin-bottom: 1rem;
}

.color-swatches {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.swatch {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--swatch, #E84A7A);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.95);
    transition: var(--transition);
}

.swatch:hover {
    transform: scale(1.12);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
}

/* Responsive Tarifs */
@media (max-width: 768px) {
    .tarifs-grid {
        grid-template-columns: 1fr;
    }
    
    .tarifs-fabrication {
        flex-direction: column;
        text-align: center;
    }
    
    .tarifs-fabrication-content {
        flex-direction: column;
        align-items: center;
    }
    
    .tarifs-fabrication-content p {
        max-width: 100%;
    }
}

@media (max-width: 640px) {
    .tarifs-section-header h2 {
        font-size: 26px;
    }
    
    .tarif-card,
    .tarifs-custom-block,
    .tarifs-fabrication,
    .tarifs-bandana-colors {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }
    
    .tarif-table thead th,
    .tarif-table tbody td {
        padding: 0.6rem 0.75rem;
        font-size: 0.9rem;
    }
    
    .tarif-price {
        font-size: 1.05rem;
    }
}

/* Responsive pour la galerie */
@media (max-width: 968px) {
    .gallery-item {
        width: 275px;
        height: 275px;
    }
    
    @keyframes scrollGallery {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-275px * 8 - 16px * 8));
        }
    }
}

@media (max-width: 640px) {
    .gallery-item {
        width: 255px;
        height: 255px;
    }
    
    .gallery-carousel {
        gap: 12px;
    }
    
    @keyframes scrollGallery {
        0% {
            transform: translateX(0);
        }
        100% {
            transform: translateX(calc(-255px * 8 - 12px * 8));
        }
    }
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    padding: 60px 0 24px;
    background: var(--color-text);
    color: white;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-family: var(--font-heading);
    font-size: 28px;
    margin-bottom: 12px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.footer-column h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-column a {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    margin-bottom: 12px;
    transition: var(--transition);
    font-size: 15px;
}

.footer-column a:hover {
    color: white;
    padding-left: 4px;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
}

/* ============================================
   ANIMATIONS SCROLL
   ============================================ */

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 968px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .hero-text h1 {
        font-size: 34px;
    }
    
    .collections-layout {
        grid-template-columns: 1fr;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
    
    .steps-container {
        grid-template-columns: 1fr;
    }
    
    .avis-apropos-content {
        grid-template-columns: 1fr;
    }
    
    .faq-newsletter-layout {
        grid-template-columns: 1fr;
    }
    
    .size-guide-card,
    .newsletter-card {
        position: static;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    /* Header : moins de padding sur tablette / mobile */
    .header .container {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .header-content {
        padding: 14px 0;
        gap: 16px;
    }
    
    .header.scrolled .header-content {
        padding: 10px 0;
    }
    
    /* Masquer le bouton CTA dans la barre, il sera dans le panneau menu */
    .header-content .btn-primary {
        display: none;
    }
    
    .logo a {
        font-size: 20px;
    }
    
    /* Ancien menu full-screen remplacé par le panneau modale */
    .header .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
        z-index: 999;
    }
    
    /* Hamburger → croix quand le menu est ouvert */
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-input {
        width: 100%;
    }
}

@media (max-width: 640px) {
    :root {
        --section-padding-desktop: 48px;
    }
    
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }
    
    .header .container {
        padding-left: 16px;
        padding-right: 16px;
    }
    
    .logo a {
        font-size: 17px;
    }
    
    .hero-text h1 {
        font-size: 28px;
    }
    
    .section-header h2 {
        font-size: 32px;
    }
    
    .gallery-section .section-header h2 {
        font-size: 24px;
    }
    
    .hero-ctas {
        flex-direction: column;
    }
    
    .btn-large {
        width: 100%;
    }
    
    .reviews-stats {
        flex-direction: column;
        gap: 32px;
    }
}

/* Très petits écrans (ex. iPhone SE) */
@media (max-width: 380px) {
    .container {
        padding-left: 12px;
        padding-right: 12px;
    }
    .header .container {
        padding-left: 12px;
        padding-right: 12px;
    }
    .hero-text h1 {
        font-size: 24px;
    }
}

