/* ============================================
   MoeDCare - Premium E-commerce Theme
   Shopify-ready Structure
   ============================================ */

:root {
    --violet: #3D2E4E;
    --violet-light: #5A4570;
    --rose-poudre: #F2C4C8;
    --rose-soft: #FFF0F1;
    --turquoise: #4ECDC4;
    --turquoise-light: #E8FAF8;
    --bleu-marine: #1A2744;
    --jaune-doux: #FFE66D;
    --vert-menthe: #95E1D3;
    --fuchsia: #D4567A;
    --blanc-creme: #FDFBF8;
    --gris-doux: #F5F3F0;
    --gris-border: #E8E5E1;
    --text-primary: #1A2744;
    --text-body: #4A5060;
    --text-muted: #8A8F9C;
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 60px rgba(0,0,0,0.12);
    --radius-sm: 0.5rem;
    --radius-md: 1rem;
    --radius-lg: 1.5rem;
    --radius-xl: 2rem;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--blanc-creme);
    color: var(--text-body);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Fraunces', Georgia, serif;
    font-weight: 600;
    line-height: 1.2;
    color: var(--text-primary);
}

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

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ============================================
   SECTION: Header / Navigation
   Shopify section: header
   ============================================ */
.shopify-section-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: all var(--transition);
}

.shopify-section-header.scrolled {
    background: rgba(253, 251, 248, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    z-index: 10;
}

.header-logo img {
    height: 56px;
    width: auto;
}

.header-logo-sr {
    position: absolute; width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.header-nav {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
}

.header-nav a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-body);
    transition: color var(--transition);
    position: relative;
    padding: 0.25rem 0;
}

.header-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--violet);
    transition: width var(--transition);
}

.header-nav a:hover { color: var(--violet); }
.header-nav a:hover::after { width: 100%; }

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.lang-toggle {
    display: flex;
    background: var(--gris-doux);
    border-radius: 2rem;
    padding: 3px;
}

.lang-toggle button {
    padding: 0.35rem 0.9rem;
    border: none;
    background: transparent;
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: all var(--transition);
    letter-spacing: 0.5px;
}

.lang-toggle button.active {
    background: white;
    color: var(--violet);
    box-shadow: var(--shadow-sm);
}

.header-cart {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1.5px solid var(--gris-border);
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    position: relative;
}

.header-cart:hover {
    border-color: var(--violet);
    background: var(--gris-doux);
}

.header-cart svg { width: 18px; height: 18px; color: var(--text-primary); }

.cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    width: 18px;
    height: 18px;
    background: var(--fuchsia);
    color: white;
    border-radius: 50%;
    font-size: 0.65rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    padding: 5px;
    z-index: 10;
}

.mobile-menu-btn span {
    width: 22px;
    height: 1.5px;
    background: var(--text-primary);
    transition: all var(--transition);
    display: block;
}

/* ============================================
   SECTION: Announcement Bar
   Shopify section: announcement-bar
   ============================================ */
.announcement-bar {
    background: var(--violet);
    color: white;
    text-align: center;
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
}

.shopify-section-header {
    top: 32px;
}

/* ============================================
   SECTION: Hero
   Shopify section: hero-banner
   ============================================ */
.shopify-section-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 140px;
    padding-bottom: 4rem;
    position: relative;
    overflow: hidden;
}

.shopify-section-hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    background: linear-gradient(135deg, var(--rose-soft) 0%, var(--turquoise-light) 100%);
    border-radius: 0 0 0 30%;
    z-index: 0;
}

.hero-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content { animation: heroFadeIn 0.8s ease-out; }

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    border: 1px solid var(--gris-border);
    padding: 0.5rem 1.2rem;
    border-radius: 2rem;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--violet);
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
}

.hero-badge svg { width: 16px; height: 16px; color: var(--fuchsia); }

.hero-title {
    font-size: clamp(2.2rem, 4.5vw, 3.5rem);
    color: var(--text-primary);
    margin-bottom: 1.5rem;
    max-width: 580px;
    letter-spacing: -0.02em;
}

.hero-title .highlight {
    color: var(--violet);
    position: relative;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -0.06em;
    left: 0;
    width: 100%;
    height: 0.18em;
    background: var(--rose-poudre);
    opacity: 0.6;
    z-index: -1;
    border-radius: 4px;
}

.hero-text {
    font-size: 1.05rem;
    color: var(--text-body);
    margin-bottom: 2.5rem;
    max-width: 520px;
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2.5rem;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    border-radius: 3rem;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all var(--transition);
    border: none;
    letter-spacing: 0.2px;
}

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

.btn-primary {
    background: var(--violet);
    color: white;
    box-shadow: 0 4px 16px rgba(61, 46, 78, 0.3);
}

.btn-primary:hover {
    background: var(--violet-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(61, 46, 78, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--text-primary);
    border: 1.5px solid var(--gris-border);
}

.btn-outline:hover {
    border-color: var(--violet);
    background: var(--gris-doux);
}

.hero-trust-mini {
    display: flex;
    gap: 2rem;
    font-size: 0.82rem;
    color: var(--text-muted);
}

.hero-trust-mini span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.hero-trust-mini svg { width: 14px; height: 14px; color: var(--turquoise); }

/* Hero Visual */
.hero-visual {
    position: relative;
    animation: heroImageIn 1s ease-out 0.2s both;
}

@keyframes heroImageIn {
    from { opacity: 0; transform: scale(0.95); }
    to { opacity: 1; transform: scale(1); }
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    aspect-ratio: 3/4;
    box-shadow: var(--shadow-xl);
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-float-badge {
    position: absolute;
    background: white;
    padding: 0.8rem 1.2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    animation: floatBadge 4s ease-in-out infinite;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.hero-float-badge.top-right {
    top: 8%;
    right: -16px;
    animation-delay: 0s;
}

.hero-float-badge.bottom-left {
    bottom: 25%;
    left: -20px;
    animation-delay: 2s;
}

.hero-float-badge.bottom-right {
    bottom: 5%;
    right: -10px;
    animation-delay: 1s;
}

@keyframes floatBadge {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.float-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.float-icon.eco { background: var(--turquoise-light); }
.float-icon.heart { background: var(--rose-soft); }
.float-icon.flag { background: #FFF8E1; }

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

.float-text {
    font-size: 0.75rem;
    line-height: 1.3;
}

.float-text strong {
    display: block;
    color: var(--text-primary);
    font-size: 0.8rem;
}

.float-text span {
    color: var(--text-muted);
}

/* ============================================
   SECTION: Trust Bar
   Shopify section: trust-bar
   ============================================ */
.shopify-section-trust {
    background: white;
    border-top: 1px solid var(--gris-border);
    border-bottom: 1px solid var(--gris-border);
    padding: 1.2rem 0;
}

.trust-bar {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-body);
}

.trust-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.trust-icon svg { width: 16px; height: 16px; }
.trust-icon.shipping { background: var(--turquoise-light); color: var(--turquoise); }
.trust-icon.charity { background: var(--rose-soft); color: var(--fuchsia); }
.trust-icon.organic { background: #F0FFF4; color: #38A169; }
.trust-icon.made { background: #FFF8E1; color: #D69E2E; }

/* ============================================
   SECTION: Image Gallery (under hero)
   Shopify section: gallery-strip
   ============================================ */
.shopify-section-gallery {
    padding: 2rem 0;
    background: var(--gris-doux);
}

.gallery-strip {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.gallery-strip-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/5;
}

.gallery-strip-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-strip-item:hover img {
    transform: scale(1.05);
}

/* ============================================
   SECTION: Our Story
   Shopify section: story
   ============================================ */
.shopify-section-story {
    padding: 6rem 0;
    background: white;
}

.story-layout {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Team Photo - Fixed portrait display */
.team-photo-frame {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 1 / 1;
    margin: 0 0 1.5rem;
}

.team-photo-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.team-caption {
    font-family: 'Fraunces', serif;
    font-size: 1.1rem;
    color: var(--violet);
    font-weight: 500;
}

.team-caption span {
    display: block;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 400;
    margin-top: 0.3rem;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.story-visual {
    position: relative;
}

.story-image-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.story-image-main img {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
}

.story-accent-shape {
    position: absolute;
    width: 160px;
    height: 160px;
    border-radius: var(--radius-xl);
    background: linear-gradient(135deg, var(--rose-poudre), var(--turquoise-light));
    bottom: -24px;
    right: -24px;
    z-index: -1;
}

.story-text .section-label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--fuchsia);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.story-text h2 {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.story-text p {
    color: var(--text-body);
    margin-bottom: 1.2rem;
    font-size: 1rem;
}

.story-quote {
    background: var(--gris-doux);
    padding: 1.5rem 2rem;
    border-radius: var(--radius-md);
    border-left: 3px solid var(--violet);
    margin: 2rem 0;
    font-style: italic;
    font-size: 1rem;
    color: var(--text-primary);
    line-height: 1.7;
}

/* Meaning Box */
.meaning-box {
    background: var(--gris-doux);
    padding: 2rem;
    border-radius: var(--radius-lg);
    margin-top: 2rem;
}

.meaning-box h4 {
    font-size: 1.15rem;
    margin-bottom: 1.2rem;
    color: var(--violet);
}

.meaning-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.meaning-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
}

.meaning-emoji {
    font-size: 1.3rem;
    flex-shrink: 0;
    width: 2rem;
    text-align: center;
}

.meaning-content strong {
    color: var(--text-primary);
    font-size: 0.95rem;
}

.meaning-content span {
    display: block;
    font-size: 0.88rem;
    color: var(--text-muted);
    margin-top: 0.15rem;
}

/* ============================================
   SECTION: Products Collection
   Shopify section: collection
   ============================================ */
.shopify-section-collection {
    padding: 6rem 0;
    background: var(--blanc-creme);
}

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

.section-label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--fuchsia);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.section-subtitle {
    font-size: 1rem;
    color: var(--text-body);
    max-width: 680px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Gender Filter */
.filter-bar {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
}

.filter-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1.3rem;
    border-radius: 2rem;
    border: 1.5px solid var(--gris-border);
    background: white;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: all var(--transition);
}

.filter-btn svg { width: 16px; height: 16px; }

.filter-btn.active {
    border-color: var(--violet);
    background: var(--violet);
    color: white;
}

.filter-btn:hover:not(.active) {
    border-color: var(--violet);
    color: var(--violet);
}

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

.product-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gris-border);
    transition: all var(--transition);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.product-card-image {
    aspect-ratio: 1;
    background: var(--gris-doux);
    position: relative;
    overflow: hidden;
}

.product-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.product-carousel img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.product-carousel img.active {
    opacity: 1;
    position: relative;
}

.carousel-dots {
    position: absolute;
    bottom: 0.8rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.35rem;
    z-index: 5;
}

.carousel-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    padding: 0;
}

.carousel-dot.active {
    background: white;
    width: 18px;
    border-radius: 3px;
}

.product-tag {
    position: absolute;
    top: 0.8rem;
    left: 0.8rem;
    background: var(--violet);
    color: white;
    padding: 0.3rem 0.9rem;
    border-radius: 2rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.product-card-body {
    padding: 1.5rem;
}

.product-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.4rem;
    font-family: 'Fraunces', serif;
}

.product-desc {
    color: var(--text-muted);
    font-size: 0.88rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 1.2rem;
}

.feature-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    background: var(--gris-doux);
    padding: 0.3rem 0.7rem;
    border-radius: 2rem;
    font-size: 0.72rem;
    color: var(--text-body);
    font-weight: 500;
}

.feature-pill svg { width: 12px; height: 12px; color: var(--turquoise); }

.product-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.product-price {
    font-family: 'Fraunces', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
}

.product-price .currency {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-muted);
}

.btn-add-cart {
    background: var(--violet);
    color: white;
    padding: 0.7rem 1.4rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.82rem;
    border: none;
    transition: all var(--transition);
    letter-spacing: 0.2px;
}

.btn-add-cart:hover {
    background: var(--violet-light);
    transform: scale(1.03);
}

.product-size-link {
    display: block;
    margin-top: 0.8rem;
    color: var(--violet);
    font-size: 0.82rem;
    font-weight: 500;
    transition: color var(--transition);
}

.product-size-link:hover {
    color: var(--fuchsia);
    text-decoration: underline;
}

/* ===== Modif JEFF_V2 : 2 modèles, toggle H/F, liens infos, fiche produit modal ===== */
.products-grid--two {
    grid-template-columns: repeat(2, 1fr);
    max-width: 780px;
    margin-left: auto;
    margin-right: auto;
}

/* Toggle homme/femme sur la carte */
.gender-toggle {
    position: absolute;
    left: 12px;
    bottom: 12px;
    display: inline-flex;
    gap: 4px;
    background: rgba(255, 255, 255, 0.92);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    padding: 4px;
    border-radius: 999px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
    z-index: 3;
}
.gender-btn {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    border: none;
    background: transparent;
    color: var(--text-secondary);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 999px;
    cursor: pointer;
    transition: all var(--transition);
}
.gender-btn:hover { color: var(--violet); }
.gender-btn.active { background: var(--violet); color: #fff; }

/* Liens infos (matières + guide des tailles) */
.product-info-links {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.2rem;
    margin-top: 0.9rem;
}
.product-info-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: none;
    border: none;
    padding: 0;
    color: var(--violet);
    font-size: 0.82rem;
    font-weight: 500;
    cursor: pointer;
    transition: color var(--transition);
}
.product-info-link:hover { color: var(--fuchsia); text-decoration: underline; }
.product-info-link svg { width: 15px; height: 15px; }

/* Fiche produit modal (matières + guide des tailles) */
.product-modal .modal { max-width: 720px; }
.pm-section { margin-bottom: 2rem; }
.pm-section:last-child { margin-bottom: 0; }
.pm-section > h4 {
    font-size: 1.15rem;
    color: var(--text-primary);
    margin-bottom: 0.9rem;
}
.pm-care {
    margin-top: 1rem;
    color: var(--text-secondary);
    font-size: 0.9rem;
    line-height: 1.6;
}
.product-modal .product-features { margin-top: 0; }

/* Glyphe œ du logo (modif #13 / #14) */
.brand-oe {
    color: var(--violet);
    font-weight: 700;
    font-style: normal;
}
.meaning-emoji.brand-oe {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}
.brand-moed .brand-oe { font-size: 1.05em; }

/* ============================================
   SIZE CHART
   ============================================ */
.size-chart-block {
    margin-top: 4rem;
    background: white;
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    border: 1px solid var(--gris-border);
}

.size-chart-block h3 {
    text-align: center;
    color: var(--text-primary);
    margin-bottom: 0.4rem;
}

.size-chart-subtitle {
    text-align: center;
    color: var(--text-muted);
    font-size: 0.92rem;
    margin-bottom: 1.2rem;
}

.size-intro {
    text-align: center;
    font-size: 0.95rem;
    color: var(--text-body);
    max-width: 700px;
    margin: 0 auto 1.5rem;
}

.size-table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
    font-size: 0.9rem;
}

.size-table thead { background: var(--gris-doux); }

.size-table th {
    padding: 0.9rem 1rem;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.85rem;
}

.size-table th:first-child { border-radius: var(--radius-sm) 0 0 0; }
.size-table th:last-child { border-radius: 0 var(--radius-sm) 0 0; }

.size-table td {
    padding: 0.8rem 1rem;
    border-bottom: 1px solid var(--gris-doux);
    color: var(--text-body);
}

.size-table tbody tr:hover { background: var(--gris-doux); }

.size-note {
    margin-top: 1.5rem;
    padding: 1rem 1.5rem;
    background: #FFF8E1;
    border-radius: var(--radius-md);
    font-size: 0.88rem;
    color: var(--text-body);
    text-align: center;
    border: 1px solid #FFE0B2;
}

.size-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
    margin-top: 1.5rem;
}

.size-visual {
    position: relative;
    cursor: zoom-in;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: linear-gradient(145deg, #e8ecf0 0%, #d5dbe3 100%);
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.size-visual:hover {
    transform: scale(1.02);
    box-shadow: var(--shadow-lg);
}

.size-visual img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.size-visual-zoom {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    pointer-events: none;
}

.size-visual-zoom svg { width: 18px; height: 18px; color: var(--violet); }

.size-legend {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
    justify-content: center;
}

.size-legend-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-body);
}

.size-legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* Lightbox */
.lightbox-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 3000;
    padding: 2rem;
    cursor: zoom-out;
}

.lightbox-overlay.active { display: flex; }

.lightbox-overlay img {
    max-width: 90vw;
    max-height: 90vh;
    object-fit: contain;
    border-radius: var(--radius-md);
    animation: modalIn 0.25s ease-out;
}

.size-photos {
    margin-top: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.size-photo-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    text-align: center;
}

.size-photo-single {
    max-width: 500px;
    margin: 0 auto;
}

.size-photo-card img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    margin-bottom: 0.8rem;
}

.size-photo-label {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9rem;
}

.size-morphology-text {
    margin-top: 1.5rem;
    font-size: 0.92rem;
    color: var(--text-body);
    text-align: center;
}

/* ============================================
   SECTION: Lifestyle Gallery
   Shopify section: lifestyle
   ============================================ */
.shopify-section-lifestyle {
    padding: 2rem 0 4rem;
    background: var(--blanc-creme);
}

.lifestyle-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.lifestyle-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
}

.lifestyle-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.lifestyle-item:hover img { transform: scale(1.05); }

/* ============================================
   SECTION: Testimonial / Quote
   Shopify section: testimonial
   ============================================ */
.shopify-section-testimonial {
    padding: 5rem 0;
    background: var(--violet);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.shopify-section-testimonial::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--fuchsia) 0%, transparent 60%);
    opacity: 0.08;
}

.testimonial-content {
    max-width: 750px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
}

.testimonial-quote-mark {
    font-family: 'Fraunces', serif;
    font-size: 6rem;
    line-height: 1;
    color: rgba(255,255,255,0.15);
    margin-bottom: -2rem;
}

.testimonial-text {
    font-family: 'Fraunces', serif;
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.testimonial-author {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* ============================================
   SECTION: Gift Card
   Shopify section: gift-card
   ============================================ */
.shopify-section-giftcard {
    padding: 6rem 0;
    background: var(--gris-doux);
}

.giftcard-layout {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
}

.giftcard-inner {
    background: white;
    border-radius: var(--radius-xl);
    padding: 3rem;
    border: 1px solid var(--gris-border);
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.giftcard-info h3 {
    font-size: 1.6rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.giftcard-info p {
    color: var(--text-body);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.giftcard-conditions {
    list-style: none;
    padding: 0;
    margin-bottom: 1.5rem;
}

.giftcard-conditions li {
    position: relative;
    padding-left: 1.2rem;
    margin-bottom: 0.4rem;
    color: var(--text-body);
    font-size: 0.88rem;
}

.giftcard-conditions li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--violet);
}

.giftcard-footnote {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.giftcard-footnote a { color: var(--violet); font-weight: 500; }

.giftcard-visual {
    background: linear-gradient(135deg, var(--turquoise), var(--vert-menthe));
    border-radius: var(--radius-lg);
    padding: 2rem;
    color: var(--text-primary);
}

.giftcard-visual-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.giftcard-visual-header img {
    height: 30px;
}

.giftcard-amount {
    font-family: 'Fraunces', serif;
    font-size: 2.2rem;
    font-weight: 700;
}

.giftcard-fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem 1.5rem;
    font-size: 0.82rem;
}

.giftcard-field-label { font-weight: 600; }

.giftcard-url {
    margin-top: 1rem;
    font-size: 0.82rem;
    opacity: 0.7;
}

/* ============================================
   SECTION: Impact
   Shopify section: impact
   ============================================ */
.shopify-section-impact {
    padding: 6rem 0;
    background: var(--bleu-marine);
    color: white;
    position: relative;
    overflow: hidden;
}

.shopify-section-impact::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -15%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--fuchsia) 0%, transparent 60%);
    opacity: 0.07;
}

.impact-header .section-label { color: var(--turquoise); }
.impact-header .section-title { color: white; }
.impact-header .section-subtitle { color: rgba(255,255,255,0.65); }

.impact-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.impact-card {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all var(--transition);
}

.impact-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-4px);
}

.impact-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
}

.impact-icon.comfort { background: linear-gradient(135deg, var(--turquoise), var(--vert-menthe)); }
.impact-icon.research { background: linear-gradient(135deg, var(--rose-poudre), var(--fuchsia)); }
.impact-icon.transparency { background: linear-gradient(135deg, var(--jaune-doux), var(--rose-poudre)); }

.impact-icon svg { width: 22px; height: 22px; color: var(--bleu-marine); }

.impact-card h3 {
    color: white;
    font-size: 1.15rem;
    margin-bottom: 0.6rem;
}

.impact-card p {
    color: rgba(255,255,255,0.6);
    font-size: 0.9rem;
    line-height: 1.6;
}

.donation-block {
    margin-top: 3rem;
    text-align: center;
    padding: 3rem;
    background: linear-gradient(135deg, rgba(255,107,157,0.12), rgba(78,205,196,0.12));
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255,255,255,0.08);
}

.donation-number {
    font-family: 'Fraunces', serif;
    font-size: 4.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--turquoise), var(--vert-menthe));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.donation-label {
    font-size: 1.15rem;
    margin-top: 0.5rem;
    color: rgba(255,255,255,0.8);
}

.donation-logo {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 0.8rem 1.5rem;
    border-radius: var(--radius-md);
    margin-top: 1.5rem;
}

.donation-logo img { height: 45px; }
.donation-logo span { color: var(--text-primary); font-weight: 600; font-size: 0.9rem; }

.donation-note {
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.5);
}

/* ============================================
   SECTION: Contact
   Shopify section: contact
   ============================================ */
.shopify-section-contact {
    padding: 6rem 0;
    background: var(--blanc-creme);
}

.contact-grid {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    font-size: 2rem;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.contact-info > p {
    color: var(--text-body);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: var(--radius-md);
    border: 1px solid var(--gris-border);
    transition: all var(--transition);
    margin-bottom: 0.75rem;
}

.contact-method:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-sm);
}

.contact-method-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gris-doux);
    flex-shrink: 0;
}

.contact-method-icon svg { width: 20px; height: 20px; color: var(--violet); }

.contact-method-text strong { display: block; color: var(--text-primary); font-size: 0.9rem; }
.contact-method-text span { font-size: 0.85rem; color: var(--text-muted); }

.social-links {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: white;
    border: 1px solid var(--gris-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-body);
    transition: all var(--transition);
}

.social-link:hover {
    background: var(--violet);
    border-color: var(--violet);
    color: white;
    transform: translateY(-2px);
}

.social-link svg { width: 18px; height: 18px; }

/* Contact Form */
.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: var(--radius-xl);
    border: 1px solid var(--gris-border);
    box-shadow: var(--shadow-md);
}

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

.form-group { margin-bottom: 1.2rem; }

.form-group label {
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 500;
    color: var(--text-primary);
    font-size: 0.85rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1.5px solid var(--gris-border);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.9rem;
    transition: all var(--transition);
    background: var(--blanc-creme);
    color: var(--text-body);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--violet);
    background: white;
    box-shadow: 0 0 0 3px rgba(61,46,78,0.08);
}

.form-group textarea { min-height: 100px; resize: vertical; }

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--violet);
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.checkbox-group label { margin: 0; font-size: 0.85rem; color: var(--text-body); }
.checkbox-group label a { color: var(--violet); font-weight: 500; }

.form-submit {
    width: 100%;
    padding: 1rem;
    background: var(--violet);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
}

.form-submit:hover {
    background: var(--violet-light);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(61,46,78,0.3);
}

/* ============================================
   SECTION: Shipping
   Shopify section: shipping
   ============================================ */
.shopify-section-shipping {
    padding: 6rem 0;
    background: white;
}

.shipping-layout {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.shipping-table-block {
    background: var(--blanc-creme);
    border-radius: var(--radius-xl);
    padding: 2rem;
    border: 1px solid var(--gris-border);
    margin-bottom: 2rem;
}

.shipping-table-block h4 {
    text-align: center;
    color: var(--text-primary);
    margin-bottom: 0.4rem;
}

.shipping-free-note {
    text-align: center;
    color: var(--fuchsia);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
}

.shipping-table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
    font-size: 0.9rem;
}

.shipping-table thead { background: var(--gris-doux); }

.shipping-table th {
    padding: 0.9rem 1rem;
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.85rem;
}

.shipping-table th:first-child { border-radius: var(--radius-sm) 0 0 0; }
.shipping-table th:last-child { border-radius: 0 var(--radius-sm) 0 0; }

.shipping-table td {
    padding: 0.8rem 1rem;
    border-bottom: 1px solid var(--gris-doux);
    color: var(--text-body);
}

.shipping-table tbody tr:hover { background: var(--gris-doux); }

.shipping-countries {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.shipping-country-card {
    background: var(--blanc-creme);
    border: 1px solid var(--gris-border);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}

.shipping-country-name {
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.shipping-country-text {
    font-size: 0.88rem;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ============================================
   SECTION: Newsletter
   Shopify section: newsletter
   ============================================ */
.shopify-section-newsletter {
    padding: 2rem 2rem 4rem;
}

.newsletter-box {
    max-width: 1000px;
    margin: 0 auto;
    background: linear-gradient(135deg, var(--turquoise), var(--vert-menthe));
    border-radius: var(--radius-xl);
    padding: 4rem 3rem;
    text-align: center;
}

.newsletter-box h3 {
    font-size: 1.8rem;
    color: var(--bleu-marine);
    margin-bottom: 0.75rem;
}

.newsletter-box > p {
    color: var(--bleu-marine);
    opacity: 0.75;
    margin-bottom: 2rem;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    font-size: 0.95rem;
}

.newsletter-form {
    display: flex;
    gap: 0.75rem;
    max-width: 500px;
    margin: 0 auto;
}

.newsletter-form input {
    flex: 1;
    padding: 0.9rem 1.2rem;
    border: none;
    border-radius: 3rem;
    font-size: 0.9rem;
    background: white;
    font-family: inherit;
}

.newsletter-form input:focus { outline: none; box-shadow: 0 0 0 3px rgba(26,39,68,0.15); }

.newsletter-form button {
    padding: 0.9rem 1.8rem;
    background: var(--bleu-marine);
    color: white;
    border: none;
    border-radius: 3rem;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all var(--transition);
}

.newsletter-form button:hover { background: var(--violet); }

/* ============================================
   SECTION: Footer
   Shopify section: footer
   ============================================ */
.shopify-section-footer {
    background: var(--bleu-marine);
    color: white;
    padding: 4rem 0 2rem;
}

.footer-layout {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.footer-brand .header-logo { margin-bottom: 1rem; }
.footer-brand .header-logo img { height: 36px; }

.footer-brand p {
    color: rgba(255,255,255,0.55);
    font-size: 0.9rem;
    max-width: 280px;
    line-height: 1.6;
}

.footer-col h4 {
    font-size: 0.9rem;
    margin-bottom: 1.2rem;
    color: white;
    font-weight: 600;
}

.footer-links {
    list-style: none;
}

.footer-links li { margin-bottom: 0.6rem; }

.footer-links a {
    color: rgba(255,255,255,0.55);
    font-size: 0.85rem;
    transition: color var(--transition);
}

.footer-links a:hover { color: var(--turquoise); }

.payment-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-top: 0.8rem;
}

.payment-pill {
    background: rgba(255,255,255,0.08);
    padding: 0.35rem 0.7rem;
    border-radius: 0.3rem;
    font-size: 0.72rem;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255,255,255,0.4);
    font-size: 0.82rem;
}

.footer-certifications {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.footer-cert {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255,255,255,0.06);
    padding: 0.4rem 0.8rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.6);
}

.footer-cert svg { width: 14px; height: 14px; }

/* ============================================
   MODAL: Preorder
   ============================================ */
.modal-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5);
    backdrop-filter: blur(4px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 2rem;
}

.modal-overlay.active { display: flex; }

.modal {
    background: white;
    border-radius: var(--radius-xl);
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalIn 0.25s ease-out;
}

@keyframes modalIn {
    from { opacity: 0; transform: translateY(20px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-header {
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--gris-doux);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h3 { color: var(--text-primary); font-size: 1.3rem; }

.modal-close {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: none;
    background: var(--gris-doux);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
}

.modal-close:hover { background: var(--rose-soft); }
.modal-close svg { width: 16px; height: 16px; }

.modal-body { padding: 2rem; }

/* Gift card modal */
.gc-amount-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}
.gc-amount-btn {
    padding: 0.7rem 0.5rem;
    border: 2px solid var(--gris-doux);
    border-radius: var(--radius-md);
    background: white;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    transition: all var(--transition);
}
.gc-amount-btn:hover { border-color: var(--violet); color: var(--violet); }
.gc-amount-btn.active {
    border-color: var(--violet);
    background: var(--violet);
    color: white;
}
.gc-preview {
    background: linear-gradient(135deg, var(--violet) 0%, var(--violet-light) 100%);
    border-radius: var(--radius-md);
    padding: 1.2rem 1.5rem;
    margin-bottom: 1.5rem;
    color: white;
}
.gc-preview-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.8rem;
    font-size: 0.85rem;
    opacity: 0.85;
}
.gc-preview-amount {
    font-size: 1.4rem;
    font-weight: 700;
}
.gc-preview-body {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 2rem;
    font-size: 0.85rem;
}
.gc-preview-body small { opacity: 0.7; }
.gc-preview-code {
    width: 100%;
    margin-top: 0.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    letter-spacing: 2px;
    opacity: 0.6;
}

.preorder-product-preview {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: var(--gris-doux);
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
}

.preorder-product-thumb {
    width: 80px; height: 80px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
    background: var(--gris-doux);
}

.preorder-product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.preorder-product-meta h4 { color: var(--text-primary); font-size: 1rem; margin-bottom: 0.2rem; }
.preorder-product-meta p { font-size: 0.85rem; color: var(--text-muted); }

/* ============================================
   SCROLL TO TOP
   ============================================ */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: none;
    background: var(--violet);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease, background 0.2s ease;
    z-index: 900;
}
.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.scroll-top:hover { background: var(--violet-light); }
.scroll-top svg { width: 22px; height: 22px; }

/* ============================================
   CART ICON
   ============================================ */
.header-cart {
    position: relative;
    cursor: pointer;
}

.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 18px;
    height: 18px;
    background: var(--violet);
    color: white;
    border-radius: 50%;
    font-size: 0.65rem;
    font-weight: 700;
    display: none;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--blanc-creme);
    line-height: 1;
    z-index: 2;
}

.cart-badge.visible {
    display: flex;
}

/* ============================================
   PRODUCT OPTIONS (size, color, quantity)
   ============================================ */
.product-options {
    margin-bottom: 1rem;
}

.product-option-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 0.5rem;
    display: block;
}

.size-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 0.8rem;
}

.size-pill-input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.size-pill-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 32px;
    padding: 0 0.6rem;
    border: 1.5px solid var(--gris-border);
    border-radius: 2rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-body);
    cursor: pointer;
    transition: all var(--transition);
    user-select: none;
}

.size-pill-label:hover {
    border-color: var(--violet);
    color: var(--violet);
}

.size-pill-input:checked + .size-pill-label {
    border-color: var(--violet);
    background: var(--violet);
    color: white;
}

.size-pill-input:focus-visible + .size-pill-label {
    outline: 2px solid var(--violet);
    outline-offset: 2px;
}

.color-swatches {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    flex-wrap: wrap;
}

.color-swatch-input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.color-swatch-label {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.25rem 0.65rem 0.25rem 0.3rem;
    border: 1.5px solid var(--gris-border);
    border-radius: 2rem;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--text-body);
    cursor: pointer;
    transition: all var(--transition);
    user-select: none;
}

.color-swatch-label:hover {
    border-color: var(--violet);
}

.color-dot {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 1.5px solid rgba(0,0,0,0.1);
    flex-shrink: 0;
}

.color-swatch-input:checked + .color-swatch-label {
    border-color: var(--violet);
    background: rgba(61,46,78,0.06);
    color: var(--violet);
    font-weight: 600;
}

.color-swatch-input:focus-visible + .color-swatch-label {
    outline: 2px solid var(--violet);
    outline-offset: 2px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1.5px solid var(--gris-border);
    border-radius: 2rem;
    overflow: hidden;
    width: fit-content;
    margin-bottom: 1rem;
}

.qty-btn {
    width: 32px;
    height: 32px;
    border: none;
    background: transparent;
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-primary);
    cursor: pointer;
    transition: background var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.qty-btn:hover {
    background: var(--gris-doux);
}

.qty-display {
    min-width: 32px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-primary);
    padding: 0 0.25rem;
}

.product-card-footer-new {
    border-top: 1px solid var(--gris-doux);
    padding-top: 1rem;
    margin-top: 0.5rem;
}

.product-footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Overriding old .btn-add-cart for the new add-to-cart button */
.btn-add-cart-new {
    background: var(--violet);
    color: white;
    padding: 0.7rem 1.4rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.82rem;
    border: none;
    transition: all var(--transition);
    letter-spacing: 0.2px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.btn-add-cart-new svg {
    width: 15px;
    height: 15px;
}

.btn-add-cart-new:hover {
    background: var(--violet-light);
    transform: scale(1.03);
}

.btn-add-cart-new:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

/* ============================================
   CART DRAWER
   ============================================ */
.cart-drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(3px);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition), visibility var(--transition);
}

.cart-drawer-overlay.active {
    opacity: 1;
    visibility: visible;
}

.cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 420px;
    max-width: 100vw;
    height: 100vh;
    background: white;
    z-index: 1501;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: -8px 0 40px rgba(0,0,0,0.12);
}

.cart-drawer.active {
    transform: translateX(0);
}

.cart-drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.4rem 1.5rem;
    border-bottom: 1px solid var(--gris-border);
    flex-shrink: 0;
}

.cart-drawer-title {
    font-family: 'Fraunces', serif;
    font-size: 1.25rem;
    color: var(--text-primary);
    font-weight: 600;
}

.cart-drawer-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: var(--gris-doux);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background var(--transition);
    flex-shrink: 0;
}

.cart-drawer-close:hover {
    background: var(--rose-soft);
}

.cart-drawer-close svg {
    width: 16px;
    height: 16px;
}

.cart-drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 1.5rem;
}

.cart-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 1rem;
    color: var(--text-muted);
    text-align: center;
}

.cart-empty-state svg {
    width: 56px;
    height: 56px;
    color: var(--gris-border);
}

.cart-empty-state p {
    font-size: 0.95rem;
}

.cart-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid var(--gris-doux);
}

.cart-item:last-child {
    border-bottom: none;
}

.cart-item-info {
    flex: 1;
    min-width: 0;
}

.cart-item-name {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 0.9rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cart-item-variant {
    font-size: 0.8rem;
    color: var(--text-muted);
    margin-top: 0.15rem;
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 0;
    border: 1.5px solid var(--gris-border);
    border-radius: 2rem;
    overflow: hidden;
}

.cart-qty-btn {
    width: 26px;
    height: 26px;
    border: none;
    background: transparent;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
    cursor: pointer;
    transition: background var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-qty-btn:hover {
    background: var(--gris-doux);
}

.cart-qty-display {
    min-width: 26px;
    text-align: center;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-primary);
}

.cart-item-remove {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    padding: 0.2rem;
    font-size: 0.78rem;
    transition: color var(--transition);
    text-decoration: underline;
}

.cart-item-remove:hover {
    color: var(--fuchsia);
}

.cart-item-price {
    font-family: 'Fraunces', serif;
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-primary);
    white-space: nowrap;
    align-self: flex-start;
    padding-top: 0.15rem;
}

.cart-drawer-footer {
    padding: 1.2rem 1.5rem;
    border-top: 1px solid var(--gris-border);
    flex-shrink: 0;
    background: var(--blanc-creme);
}

.cart-subtotal {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 1rem;
}

.cart-subtotal-label {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-body);
}

.cart-subtotal-amount {
    font-family: 'Fraunces', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
}

.btn-checkout {
    width: 100%;
    padding: 1rem;
    background: var(--violet);
    color: white;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-checkout:hover {
    background: var(--violet-light);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(61,46,78,0.3);
}

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

.cart-note {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-align: center;
    margin-top: 0.75rem;
}

/* ============================================
   TOAST NOTIFICATION
   ============================================ */
.toast {
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%) translateY(80px);
    background: var(--text-primary);
    color: white;
    padding: 0.85rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.88rem;
    font-weight: 500;
    z-index: 3000;
    opacity: 0;
    transition: all 0.3s ease;
    white-space: nowrap;
    max-width: calc(100vw - 2rem);
    text-align: center;
    box-shadow: var(--shadow-lg);
    pointer-events: none;
}

.toast.visible {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
}

.toast.success {
    background: #059669;
}

.toast.error {
    background: var(--fuchsia);
}

/* ============================================
   RESPONSIVE - Cart specific
   ============================================ */
@media (max-width: 480px) {
    .cart-drawer {
        width: 100vw;
    }
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 2rem; }
    .hero-content { order: 2; }
    .hero-visual { order: 1; max-width: 400px; margin: 0 auto; }
    .hero-text { margin: 0 auto 2rem; }
    .hero-actions { justify-content: center; }
    .hero-trust-mini { justify-content: center; }
    .shopify-section-hero::before { width: 100%; border-radius: 0; }
    .gallery-strip { grid-template-columns: repeat(2, 1fr); }
    .story-grid { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .giftcard-inner { grid-template-columns: 1fr; }
    .impact-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .announcement-bar { font-size: 0.72rem; padding: 0.4rem 0.5rem; }
    .header-nav { display: none; }
    .lang-toggle { display: none; }
    .mobile-menu-btn { display: flex; }
    .hero-float-badge { display: none; }
    .gallery-strip { grid-template-columns: 1fr 1fr; gap: 0.75rem; }
    .products-grid { grid-template-columns: 1fr; }
    .lifestyle-grid { grid-template-columns: 1fr; }
    .shipping-countries { grid-template-columns: 1fr; }
    .gc-amount-grid { grid-template-columns: repeat(4, 1fr); }
    .size-content-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .newsletter-form { flex-direction: column; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .footer-brand p { margin: 0 auto; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .impact-grid { grid-template-columns: 1fr; }
    .size-photos { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .container { padding: 0 1.25rem; }
    .hero-title { font-size: 1.8rem; }
    .size-table { font-size: 0.82rem; }
    .size-table th, .size-table td { padding: 0.6rem 0.4rem; }
    .shopify-section-hero { padding-top: 120px; }
}

/* Mobile Navigation Overlay */
.mobile-nav-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(253,251,248,0.98);
    backdrop-filter: blur(12px);
    z-index: 999;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.mobile-nav-overlay.active { display: flex; }

.mobile-nav-overlay a {
    font-family: 'Fraunces', serif;
    font-size: 1.4rem;
    color: var(--text-primary);
    font-weight: 500;
    transition: color var(--transition);
}

.mobile-nav-overlay a:hover { color: var(--violet); }

/* Mobile language toggle in mobile nav */
.mobile-lang-toggle {
    display: flex;
    background: var(--gris-doux);
    border-radius: 2rem;
    padding: 3px;
    margin-top: 1rem;
}
.mobile-lang-toggle button {
    padding: 0.5rem 1.2rem;
    border: none;
    background: transparent;
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    transition: all var(--transition);
    letter-spacing: 0.5px;
    cursor: pointer;
}
.mobile-lang-toggle button.active {
    background: white;
    color: var(--violet);
    box-shadow: var(--shadow-sm);
}

/* ========== COOKIE CONSENT BANNER ========== */
.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #ffffff;
    box-shadow: 0 -2px 16px rgba(0, 0, 0, 0.12);
    padding: 1rem 1.5rem;
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
}

@media (min-width: 640px) {
    .cookie-banner {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 1.5rem;
    }
}

.cookie-banner__text {
    margin: 0;
    font-size: 0.875rem;
    color: var(--text-body, #4A5060);
    line-height: 1.5;
    flex: 1;
}

.cookie-banner__link {
    color: var(--violet, #3D2E4E);
    text-decoration: underline;
    white-space: nowrap;
}

.cookie-banner__link:hover {
    color: var(--violet-light, #5A4570);
}

.cookie-banner__actions {
    flex-shrink: 0;
}

.cookie-banner__btn {
    background: var(--violet, #3D2E4E);
    color: #ffffff;
    border: none;
    border-radius: 0.5rem;
    padding: 0.5rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
    white-space: nowrap;
}

.cookie-banner__btn:hover {
    background: var(--violet-light, #5A4570);
}

.cookie-banner__btn:focus-visible {
    outline: 2px solid var(--turquoise, #4ECDC4);
    outline-offset: 2px;
}

/* ============================================
   MOBILE OPTIMIZATION
   Touch-friendly, performant, conversion-focused
   ============================================ */

/* ------------------------------------------
   Performance : GPU hints & touch delay removal
   ------------------------------------------ */
.cart-drawer,
.cart-drawer-overlay,
.mobile-nav-overlay,
.modal-overlay,
.modal-container,
.toast,
.reveal {
    will-change: transform;
}

button,
.size-pill-label,
.color-swatch-label,
.qty-btn,
.btn-add-cart-new,
.scroll-top,
.cookie-banner__btn,
a[href] {
    touch-action: manipulation;
}

/* ------------------------------------------
   768px — Tablette et mobile paysage
   ------------------------------------------ */
@media (max-width: 768px) {

    /* Touch targets — size pills */
    .size-pill-label {
        min-width: 44px;
        min-height: 44px;
        padding: 0 0.75rem;
        font-size: 0.85rem;
    }

    /* Touch targets — color swatches */
    .color-dot {
        width: 24px;
        height: 24px;
    }

    .color-swatch-label {
        padding: 0.35rem 0.75rem 0.35rem 0.4rem;
        min-height: 40px;
    }

    /* Touch targets — quantity selector */
    .qty-btn {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
    }

    .qty-display {
        min-width: 40px;
        font-size: 1rem;
    }

    .quantity-selector {
        height: 40px;
    }

    /* Add to cart — full width, tall touch target */
    .btn-add-cart-new {
        width: 100%;
        min-height: 48px;
        justify-content: center;
        font-size: 0.92rem;
        padding: 0.85rem 1.5rem;
    }

    /* Cart drawer — full width & height */
    .cart-drawer {
        width: 100%;
        height: 100%;
        height: 100dvh; /* dynamic viewport height on iOS */
        top: 0;
        border-radius: 0;
    }

    .cart-drawer-body {
        -webkit-overflow-scrolling: touch;
        overscroll-behavior: contain;
    }

    .cart-drawer-close {
        width: 44px;
        height: 44px;
    }

    /* Gift card modal — 2 colonnes */
    .gc-amount-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    /* Trust bar — scroll horizontal sur mobile */
    .trust-bar {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        justify-content: flex-start;
        gap: 1.5rem;
        padding-left: 1.25rem;
        padding-right: 1.25rem;
        scrollbar-width: none;
    }

    .trust-bar::-webkit-scrollbar {
        display: none;
    }

    .trust-item {
        flex-shrink: 0;
        scroll-snap-align: start;
    }

    /* Tables (guide des tailles, livraison) — scroll horizontal */
    .size-table,
    .shipping-table {
        display: block;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        white-space: nowrap;
    }

    /* Cookie banner — empile verticalement */
    .cookie-banner {
        flex-direction: column;
        align-items: stretch;
        padding: 1rem;
        gap: 0.75rem;
    }

    .cookie-banner__actions {
        display: flex;
    }

    .cookie-banner__btn {
        flex: 1;
        min-height: 44px;
        text-align: center;
    }

    /* Scroll-to-top — plus petit et plus proche du bord */
    .scroll-top {
        width: 40px;
        height: 40px;
        bottom: 1.25rem;
        right: 1.25rem;
    }

    .scroll-top svg {
        width: 18px;
        height: 18px;
    }
}

/* ------------------------------------------
   480px — Mobile portrait
   ------------------------------------------ */
@media (max-width: 480px) {

    /* Grille produits — 1 colonne */
    .products-grid {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    /* Hero — typographie adaptée */
    .hero-text {
        font-size: 0.95rem;
    }

    .hero-actions {
        flex-direction: column;
        gap: 0.75rem;
    }

    .hero-actions .btn-primary,
    .hero-actions .btn-secondary {
        width: 100%;
        text-align: center;
        justify-content: center;
        min-height: 48px;
    }

    /* Footer — 1 colonne (déjà géré à 768px mais renfort sur 480px) */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Size pills — touch target complet sur petits écrans */
    .size-pill-label {
        min-width: 44px;
        min-height: 44px;
    }

    /* Color swatches — diamètre 32px sur mobile */
    .color-dot {
        width: 32px;
        height: 32px;
    }

    .color-swatch-label {
        padding: 0.3rem 0.75rem 0.3rem 0.35rem;
    }

    /* Quantity — confort tactile */
    .qty-btn {
        width: 44px;
        height: 44px;
    }

    .quantity-selector {
        height: 44px;
    }

    /* Modals — pleine largeur */
    .modal-container {
        width: 100%;
        max-width: 100%;
        margin: 0;
        border-radius: var(--radius-lg) var(--radius-lg) 0 0;
        position: fixed;
        bottom: 0;
        top: auto;
    }

    /* Gift card — espacement réduit */
    .gc-amount-grid {
        gap: 0.5rem;
    }

    /* Announcement bar — lisible */
    .announcement-bar {
        font-size: 0.7rem;
        padding: 0.35rem 0.5rem;
    }
}

/* ============================================
   STOCK: Out of stock sizes
   ============================================ */
.size-pill.out-of-stock {
    opacity: 0.35;
    text-decoration: line-through;
    cursor: not-allowed;
    pointer-events: none;
}

/* ============================================
   GIFT WRAP OPTION
   ============================================ */
.gift-wrap-option {
    margin-top: 1rem;
    padding: 1rem;
    background: var(--rose-soft);
    border-radius: var(--radius-md);
    border: 1px solid var(--rose-poudre);
}
.gift-wrap-option label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--text-primary);
    cursor: pointer;
}
.gift-wrap-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: var(--violet);
}
.gift-wrap-message {
    margin-top: 0.5rem;
    display: none;
}
.gift-wrap-message.visible {
    display: block;
}
.gift-wrap-message textarea {
    width: 100%;
    padding: 0.6rem;
    border: 1px solid var(--gris-border);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    font-family: 'DM Sans', sans-serif;
    resize: vertical;
    min-height: 60px;
}
.gift-wrap-note {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-top: 0.3rem;
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 1rem 2rem;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    z-index: 2500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}
.cookie-banner.visible {
    transform: translateY(0);
}
.cookie-banner-text {
    font-size: 0.85rem;
    color: var(--text-body);
    line-height: 1.5;
    flex: 1;
}
.cookie-banner-text a {
    color: var(--violet);
    font-weight: 500;
}
.cookie-banner-actions {
    display: flex;
    gap: 0.75rem;
    flex-shrink: 0;
}
.cookie-accept {
    background: var(--violet);
    color: white;
    border: none;
    padding: 0.6rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}
.cookie-accept:hover { background: var(--violet-light); }

@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        text-align: center;
        padding: 1rem;
        gap: 0.75rem;
    }
}
