/* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: #333;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===== VARIABLES ===== */
:root {
    --beige: #f0e8d8;
    --sage: #8faa8c;
    --sage-dark: #6d8a6a;
    --sage-light: #a8c4a5;
    --rose: #b87878;
    --rose-dark: #9e6565;
    --white: #ffffff;
    --dark: #333333;
    --cream: #faf5eb;
    --green-title: #8aab7f;
    --font-cursive: 'Dancing Script', cursive;
    --font-serif: 'Playfair Display', serif;
    --font-body: 'Helvetica Neue', Arial, sans-serif;
}

/* ===== TEXTURE BACKGROUND UTILITY ===== */
.bg-texture {
    position: relative;
}

.bg-texture::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('images/webp/bg_texture.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.10;
    mix-blend-mode: multiply;
    z-index: 0;
    pointer-events: none;
}

.bg-texture > * {
    position: relative;
    z-index: 1;
}

/* ===== HEADER ===== */
.site-header {
    background-color: var(--cream);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* --- État par défaut : 2 lignes centrées --- */
.header-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 0 0;
    transition: padding 0.3s ease;
}

.header-brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 8px 30px;
}

.header-logo {
    display: flex;
    align-items: center;
}

.header-logo img {
    height: 55px;
    width: auto;
    transition: height 0.3s ease, transform 0.3s;
}

.header-logo:hover img {
    transform: scale(1.03);
}

.header-mascot {
    display: flex;
    align-items: center;
    overflow: hidden;
    transition: max-width 0.35s ease, opacity 0.35s ease;
    max-width: 120px;
}

.header-mascot img {
    height: 55px;
    width: auto;
    transition: height 0.3s ease, transform 0.3s;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.header-mascot:hover img {
    transform: scale(1.08);
}

.site-nav {
    display: flex;
    justify-content: center;
    gap: 0;
    padding: 0 40px;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
    transition: padding 0.3s ease, max-width 0.3s ease;
}

.site-nav a {
    flex: 1;
    text-align: center;
    padding: 12px 20px;
    font-size: 1rem;
    color: var(--dark);
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease, padding 0.3s ease, font-size 0.3s ease;
    font-weight: 400;
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.site-nav a:hover,
.site-nav a.active {
    border-bottom: 2px solid var(--dark);
}

/* --- État compact au scroll : 1 ligne, logo gauche, nav droite --- */
.site-header.scrolled .header-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 6px 40px;
}

.site-header.scrolled .header-brand {
    justify-content: flex-start;
    gap: 10px;
    padding: 0;
}

.site-header.scrolled .header-mascot-right {
    max-width: 0;
    opacity: 0;
}

.site-header.scrolled .header-logo img,
.site-header.scrolled .header-mascot img {
    height: 30px;
}

.site-header.scrolled .site-nav {
    width: auto;
    max-width: none;
    margin: 0;
    padding: 0;
    justify-content: flex-end;
}

.site-header.scrolled .site-nav a {
    flex: none;
    font-size: 0.88rem;
    padding: 8px 14px;
}

/* ===== SCROLL ANIMATIONS ===== */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

/* Staggered delays for children */
.values-grid .fade-in-up:nth-child(2) { transition-delay: 0.1s; }
.values-grid .fade-in-up:nth-child(3) { transition-delay: 0.2s; }
.values-grid .fade-in-up:nth-child(4) { transition-delay: 0.3s; }
.slider-gallery .fade-in-up:nth-child(2) { transition-delay: 0.15s; }
.slider-gallery .fade-in-up:nth-child(3) { transition-delay: 0.3s; }
.process-steps .fade-in-up:nth-child(2) { transition-delay: 0.1s; }
.process-steps .fade-in-up:nth-child(4) { transition-delay: 0.2s; }
.process-steps .fade-in-up:nth-child(6) { transition-delay: 0.3s; }

/* ===== HERO SECTION (Accueil) ===== */
.hero {
    background-color: var(--sage);
    min-height: 580px;
    display: flex;
    align-items: center;
    padding: 70px 40px 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    gap: 48px;
    align-items: center;
}

.hero-left {
    flex: 1;
    color: var(--white);
    z-index: 4;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
    margin-right: -80px;
}

.hero-left h1 {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 18px;
    text-align: right;
}

.hero-left p {
    font-style: italic;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 16px;
}

.btn-hero {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    color: var(--sage-dark);
    padding: 12px 28px;
    border-radius: 30px;
    font-size: 0.95rem;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
    margin-top: 8px;
    text-decoration: none;
    font-style: normal;
}

.btn-hero:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    background: var(--cream);
}

.btn-hero i {
    transition: transform 0.3s;
}

.btn-hero:hover i {
    transform: translateX(4px);
}

.hero-center {
    flex: 0 0 690px;
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    margin-bottom: -70px;
}

.hero-duck {
    width: 100%;
    max-height: 930px;
    object-fit: contain;
    filter: drop-shadow(0 16px 32px rgba(0, 0, 0, 0.35));
    animation: float 4s ease-in-out infinite;
}

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

.hero-right {
    flex: 1.2;
    color: var(--white);
    z-index: 4;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
    margin-left: -80px;
}

.hero-right h2 {
    font-family: var(--font-cursive);
    font-size: 3.2rem;
    margin-bottom: 4px;
    line-height: 1.15;
}

.hero-right h3 {
    font-family: var(--font-cursive);
    font-size: 1.8rem;
    margin-bottom: 22px;
    opacity: 0.88;
}

.hero-right .separator {
    border: none;
    border-top: 2px dashed rgba(255, 255, 255, 0.5);
    margin: 15px 0;
}

.hero-tagline {
    font-style: italic;
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 16px;
    opacity: 0.92;
}

.hero-badges {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
    margin: 18px 0 28px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: var(--white);
    padding: 9px 18px;
    border-radius: 30px;
    font-size: 0.88rem;
    font-weight: 500;
    backdrop-filter: blur(4px);
    width: fit-content;
}

.hero-badge i {
    font-size: 0.85rem;
    opacity: 0.85;
}

/* ===== GRENOUILLE BRIDGE ===== */
.frog-bridge {
    position: relative;
    height: 0;
    z-index: 10;
    overflow: visible;
}
.frog-sitter {
    position: absolute;
    top: -100px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: auto;
    z-index: 10;
    pointer-events: auto;
    cursor: pointer;
    filter: drop-shadow(0 4px 8px rgba(0,0,0,0.2));
}

/* ===== VALUES SECTION ===== */
.values-section {
    background-color: var(--cream);
    padding: 70px 40px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.value-card {
    text-align: center;
    padding: 35px 20px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s, box-shadow 0.3s;
}

.value-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.value-icon {
    width: 65px;
    height: 65px;
    background: var(--sage);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin: 0 auto 20px;
    transition: transform 0.3s;
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
}

.value-card h3 {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.value-card p {
    font-size: 0.88rem;
    color: #666;
    line-height: 1.6;
}

/* ===== BOUTIQUE PREVIEW SECTION ===== */
.boutique-preview {
    background-color: var(--sage);
    padding: 60px 20px 70px;
    text-align: center;
    position: relative;
}

.boutique-preview-header {
    margin-bottom: 40px;
}

.boutique-preview-header h2 {
    font-family: var(--font-serif);
    font-size: 2.4rem;
    color: var(--white);
    margin-bottom: 10px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.boutique-preview-header p {
    font-style: italic;
    color: rgba(255, 255, 255, 0.85);
    font-size: 1.05rem;
}

.btn-boutique {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--white);
    color: var(--sage-dark);
    padding: 14px 35px;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 30px;
    transition: all 0.3s;
    margin-top: 40px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
}

.btn-boutique:hover {
    background-color: var(--cream);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn-boutique i {
    transition: transform 0.3s;
}

.btn-boutique:hover i {
    transform: translateX(4px);
}

/* ===== SLIDER GALLERY ===== */
.slider-gallery {
    display: flex;
    gap: 40px;
    flex-wrap: nowrap;
    max-width: 1100px;
    margin: 0 auto;
    padding: 20px 20px 30px;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    mask-image: linear-gradient(to right, transparent 0, #000 60px, #000 calc(100% - 60px), transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0, #000 60px, #000 calc(100% - 60px), transparent 100%);
}

.slider-gallery::-webkit-scrollbar { display: none; }

.slider-item {
    flex: 0 0 auto;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    overflow: hidden;
    position: relative;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.slider-item:hover {
    transform: scale(1.05);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.35);
}

.slider-item > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.slider-item .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.35);
    transition: background 0.3s;
    z-index: 2;
}

.slider-item:hover .overlay {
    background: rgba(0, 0, 0, 0.5);
}

.slider-item .overlay span {
    color: var(--white);
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 700;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 10px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

/* ===== PROCESS SECTION ===== */
.process-section {
    background-color: var(--cream);
    padding: 70px 40px;
}

.process-header {
    text-align: center;
    margin-bottom: 50px;
}

.process-header h2 {
    font-family: var(--font-serif);
    font-size: 2.4rem;
    color: var(--dark);
    margin-bottom: 10px;
}

.process-header p {
    font-style: italic;
    color: #888;
    font-size: 1.05rem;
}

.process-steps {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 0;
    max-width: 1100px;
    margin: 0 auto;
}

.process-step {
    flex: 1;
    max-width: 230px;
    text-align: center;
    padding: 0 15px;
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: var(--sage);
    color: var(--white);
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: 50%;
    margin-bottom: 12px;
}

.step-icon {
    width: 70px;
    height: 70px;
    background: var(--white);
    border: 3px solid var(--sage);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--sage);
    margin: 0 auto 16px;
    transition: all 0.3s;
}

.process-step:hover .step-icon {
    background: var(--sage);
    color: var(--white);
    transform: scale(1.1);
}

.process-step h3 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--dark);
}

.process-step p {
    font-size: 0.85rem;
    color: #666;
    line-height: 1.6;
}

.process-connector {
    display: flex;
    align-items: center;
    padding-top: 55px;
    color: var(--sage);
    font-size: 1rem;
    opacity: 0.5;
}

/* ===== PROCESS COMPACT (boutique) ===== */
.process-compact {
    padding: 22px 40px 18px;
}

.process-compact .process-steps {
    max-width: 960px;
    gap: 0;
}

.process-compact .process-step {
    max-width: 190px;
    padding: 0 10px;
}

.process-compact .step-number {
    width: 24px;
    height: 24px;
    font-size: 0.75rem;
    margin-bottom: 8px;
}

.process-compact .step-icon {
    width: 44px;
    height: 44px;
    font-size: 1rem;
    margin-bottom: 8px;
    border-width: 2px;
}

.process-compact .process-step h3 {
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.process-compact .process-step p {
    font-size: 0.75rem;
    line-height: 1.45;
    color: #888;
}

.process-compact .process-connector {
    padding-top: 36px;
    font-size: 0.8rem;
}

.page-title-section .process-compact {
    margin-top: 30px;
}

.page-title-section .process-compact .process-step {
    background: rgba(255, 255, 255, 0.18);
    border-radius: 14px;
    padding: 16px 12px;
    backdrop-filter: blur(4px);
}

.page-title-section .process-compact .process-step h3 {
    color: var(--white);
    text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.page-title-section .process-compact .process-step p {
    color: rgba(255, 255, 255, 0.9);
}

.page-title-section .process-compact .process-connector {
    color: rgba(255, 255, 255, 0.7);
}

.page-title-section .process-compact .step-number {
    background: var(--white);
    color: var(--sage-dark);
}

.page-title-section .process-compact .step-icon {
    border-color: rgba(255, 255, 255, 0.8);
    color: var(--white);
    background: rgba(255, 255, 255, 0.2);
}

/* ===== CTA SECTION ===== */
.cta-section {
    background-color: var(--rose);
    padding: 70px 40px;
    text-align: center;
    position: relative;
}

.cta-content h2 {
    font-family: var(--font-serif);
    font-size: 2.4rem;
    color: var(--white);
    margin-bottom: 15px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto 30px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.15);
}

.btn-cta-primary {
    background: var(--white);
    color: var(--rose-dark);
}

.btn-cta-primary:hover {
    background: var(--cream);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

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

.btn-cta-secondary:hover {
    background: var(--white);
    color: var(--rose-dark);
    transform: translateY(-2px);
}

.cta-socials {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.cta-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    font-size: 1.3rem;
    color: var(--white);
    transition: transform 0.3s, opacity 0.3s;
}

.cta-socials a:hover {
    transform: scale(1.2);
    opacity: 0.8;
}

/* ===== FOOTER CTA (index.html uniquement) ===== */
.footer-cta {
    width: 100%;
    text-align: center;
    padding-bottom: 24px;
}

.footer-cta h2 {
    font-family: var(--font-serif);
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 10px;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.footer-cta p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    max-width: 560px;
    margin: 0 auto 20px;
    line-height: 1.65;
}

.footer-separator {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.25);
    margin-bottom: 24px;
}

/* ===== FOOTER ===== */
.site-footer {
    background-color: var(--rose);
    color: var(--white);
    padding: 32px 48px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    position: relative;
    overflow: hidden;
}

.footer-left {
    flex: 1;
    min-width: 200px;
    z-index: 1;
}

.footer-left h3 {
    font-family: var(--font-cursive);
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.footer-left p {
    font-size: 0.85rem;
    margin-bottom: 4px;
}

.footer-left a {
    text-decoration: underline;
}

.footer-socials {
    display: flex;
    gap: 12px;
    margin-top: 10px;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    font-size: 1.25rem;
    transition: transform 0.3s, opacity 0.3s;
}

.footer-socials a:hover {
    opacity: 0.7;
    transform: scale(1.15);
}

.footer-center {
    flex: 0 0 auto;
    z-index: 1;
}

.footer-center img {
    max-height: 150px;
    border-radius: 8px;
    opacity: 0.9;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.2));
}

.footer-links {
    flex: 1;
    min-width: 180px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-end;
    z-index: 1;
}

.footer-links a {
    font-size: 0.9rem;
    text-decoration: underline;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 0.7;
}

.footer-copyright {
    width: 100%;
    text-align: right;
    font-size: 0.75rem;
    margin-top: 14px;
    padding: 10px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    opacity: 0.75;
    z-index: 1;
}

/* ===== PAGE BOUTIQUE ===== */
.page-title-section {
    background-color: var(--sage);
    text-align: center;
    padding: 52px 20px 48px;
    position: relative;
    overflow: hidden;
}

.page-title-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.page-title-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(255,255,255,0.22);
    color: var(--white);
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.35);
    backdrop-filter: blur(4px);
}

.page-title-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255,255,255,0.6);
    font-size: 0.75rem;
    width: 100%;
    max-width: 340px;
}

.page-title-divider span {
    flex: 1;
    height: 1px;
    background: rgba(255,255,255,0.4);
}

.page-title-divider i {
    color: rgba(255,255,255,0.85);
    font-size: 0.7rem;
}

/* ===== BALEINE SCROLL ===== */
.boutique-scroll-whale {
    position: fixed;
    top: -200px;
    left: -300px;
    height: 110px;
    width: auto;
    pointer-events: auto;
    cursor: pointer;
    z-index: 1; /* derrière les fiches (z-index: 2) */
    filter: drop-shadow(0 6px 12px rgba(0,0,0,0.25));
    animation: fishSwim 1.1s ease-in-out infinite;
    transition: opacity 0.4s;
    opacity: 0;
    --flip: -1; /* -1 = face à droite (LTR), 1 = face à gauche (RTL) */
}

.boutique-scroll-whale.visible {
    opacity: 1;
}

/* Déformation ondulante — le flip horizontal est piloté par --flip */
@keyframes fishSwim {
    0%   { transform: scaleX(var(--flip)) scaleY(1); }
    25%  { transform: scaleX(var(--flip)) scaleY(0.82); }
    50%  { transform: scaleX(var(--flip)) scaleY(1); }
    75%  { transform: scaleX(var(--flip)) scaleY(0.82); }
    100% { transform: scaleX(var(--flip)) scaleY(1); }
}

/* Coeurs jaillissant des baleines au clic */
.whale-heart {
    position: fixed;
    pointer-events: none;
    color: #ff5b8a;
    z-index: 2;
    will-change: transform, opacity;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
    animation: whaleHeartBurst 1.1s ease-out forwards;
}
@keyframes whaleHeartBurst {
    0%   { transform: translate(0, 0) scale(0.4); opacity: 0; }
    15%  { opacity: 1; transform: translate(calc(var(--tx) * 0.2), calc(var(--ty) * 0.2)) scale(1.1); }
    100% { transform: translate(var(--tx), var(--ty)) scale(0.9); opacity: 0; }
}

.page-title-section h1 {
    font-family: 'Dancing Script', cursive;
    font-size: 4.5rem;
    font-weight: 700;
    color: var(--white);
    margin: 0;
    text-shadow: 0 3px 14px rgba(0, 0, 0, 0.2);
    line-height: 1.1;
}

.page-title-section p {
    font-style: italic;
    color: var(--white);
    font-size: 1.05rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

/* ===== SHOP TOOLBAR ===== */
.shop-toolbar {
    background-color: var(--sage);
    padding: 0 20px 10px;
    position: relative;
}

.toolbar-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* Search */
.search-wrapper {
    position: relative;
    max-width: 420px;
    margin: 0 auto;
    width: 100%;
}

.search-wrapper i {
    position: absolute;
    left: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: #999;
    font-size: 0.9rem;
}

.search-wrapper input {
    width: 100%;
    padding: 10px 14px 10px 38px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 30px;
    background: rgba(255,255,255,0.85);
    font-size: 0.95rem;
    font-family: var(--font-body);
    color: var(--dark);
    outline: none;
    transition: border-color 0.3s, background 0.3s;
}

.search-wrapper input:focus {
    border-color: var(--white);
    background: var(--white);
}

.search-wrapper input::placeholder {
    color: #999;
    font-style: italic;
}

/* Filter buttons */
.filter-bar {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.filter-row {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}

.filter-btn {
    padding: 8px 18px;
    border: 2px solid rgba(255,255,255,0.6);
    border-radius: 25px;
    background: transparent;
    color: var(--white);
    font-size: 0.88rem;
    font-family: var(--font-body);
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.filter-btn i {
    margin-right: 5px;
    font-size: 0.8rem;
}

.filter-btn:hover {
    background: rgba(255,255,255,0.2);
}

.filter-btn.active {
    background: var(--white);
    color: var(--sage-dark);
    border-color: var(--white);
    font-weight: 600;
}

/* Sort bar */
.sort-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.product-count {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.85);
    font-style: italic;
}

.sort-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.sort-wrapper label {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.85);
    white-space: nowrap;
}

.sort-wrapper select {
    padding: 6px 12px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 6px;
    background: rgba(255,255,255,0.85);
    font-size: 0.85rem;
    font-family: var(--font-body);
    color: var(--dark);
    cursor: pointer;
    outline: none;
}

.sort-wrapper select:focus {
    border-color: var(--white);
    background: var(--white);
}

/* ===== PRODUCT GRID ===== */
.products-section {
    background-color: var(--sage);
    padding: 30px 20px 60px;
    position: relative;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
    gap: 28px;
    max-width: 1100px;
    margin: 0 auto;
}

/* No results */
.grid-loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: var(--white);
    opacity: 0.7;
}

.grid-loading i {
    font-size: 2rem;
    margin-bottom: 12px;
    display: block;
}

.grid-loading p {
    font-size: 1rem;
    font-style: italic;
}

.no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: var(--white);
}

.no-results i {
    font-size: 2.5rem;
    opacity: 0.6;
    margin-bottom: 15px;
}

.no-results p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    font-style: italic;
}

.no-results button {
    padding: 10px 25px;
    border: 2px solid var(--white);
    border-radius: 25px;
    background: transparent;
    color: var(--white);
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s;
}

.no-results button:hover {
    background: var(--white);
    color: var(--sage-dark);
}

/* ===== PRODUCT CARD (new layout) ===== */
.product-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    z-index: 2; /* passe devant la baleine */
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.2);
}

/* Image wrapper with category tag */
.product-image-wrapper {
    position: relative;
    overflow: hidden;
}

.product-card .product-image {
    width: 100%;
    height: 260px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.4s;
}

.product-card:hover .product-image {
    transform: scale(1.04);
}

.category-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(255,255,255,0.92);
    color: var(--sage-dark);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* Card body */
.product-body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-header {
    margin-bottom: 10px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 8px;
}

.product-header-name {
    flex: 1;
    min-width: 0;
}

.product-card h2 {
    font-family: var(--font-serif);
    font-size: 1.35rem;
    display: inline;
    color: var(--dark);
}

.product-card .product-subtitle {
    font-style: italic;
    color: #888;
    display: inline;
    margin-left: 6px;
    font-size: 0.95rem;
}

.product-card .product-description {
    font-size: 0.88rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 14px;
}

.product-info {
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid #eee;
}

.product-info .label {
    font-size: 0.82rem;
    color: #999;
    margin-bottom: 2px;
}

.product-info .label i {
    width: 16px;
    text-align: center;
    margin-right: 4px;
    color: var(--sage);
}

.product-header .price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--sage-dark);
    white-space: nowrap;
    flex-shrink: 0;
    margin-top: 2px;
}

.product-header .price-tbd {
    font-size: 0.9rem;
    color: #aaa;
    font-style: italic;
    font-weight: 400;
    white-space: nowrap;
    flex-shrink: 0;
    margin-top: 4px;
}

/* Actions */
.product-actions {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-card .link-pourquoi {
    display: block;
    font-weight: 600;
    text-decoration: underline;
    color: var(--dark);
    font-size: 0.88rem;
    transition: color 0.3s;
    text-align: center;
}

.product-card .link-pourquoi:hover {
    color: var(--sage-dark);
}

.btn-product {
    display: block;
    width: 100%;
    padding: 12px;
    background: var(--dark);
    color: var(--white);
    font-size: 0.95rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
    text-align: center;
    font-family: var(--font-body);
}

.btn-product:hover {
    background: var(--sage-dark);
}

/* Stock disponibilité */
.stock-sur-demande {
    font-weight: 700;
    color: var(--rose, #e57373);
}
.stock-dispo {
    font-weight: 700;
    color: #388e3c;
}

/* Badge (indisponible) */
.badge {
    position: absolute;
    top: 12px;
    right: 12px;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

.badge-unavailable {
    background: var(--rose);
    color: var(--white);
}

/* ===== PAGE DÉTAIL PRODUIT ===== */
.product-detail-section {
    position: relative;
    min-height: 60vh;
    animation: detailFadeIn 0.4s ease;
}

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

.detail-hero-back {
    max-width: 1060px;
    margin: 0 auto 20px;
}

.detail-back {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    color: #8faa8c;
    font-weight: 600;
    font-size: 0.92rem;
    text-decoration: none;
    transition: color 0.2s;
}

.detail-back:hover {
    color: #7a9477;
}

/* -- Hero section (image + carte) -- */
.detail-hero-section {
    background: var(--cream);
    padding: 24px 20px 50px;
}

.detail-hero-inner {
    max-width: 1060px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    align-items: stretch;
}

.detail-image-wrapper {
    flex: 1;
    max-width: 520px;
    align-self: flex-start;
    border-radius: 16px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
    position: relative;
    z-index: 2;
}

.detail-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.detail-image-wrapper:hover img {
    transform: scale(1.04);
}

/* Tags sur l'image */
.detail-tags {
    position: absolute;
    top: 16px;
    left: 16px;
    display: flex;
    gap: 8px;
    z-index: 2;
}

.detail-tag {
    padding: 5px 14px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    text-transform: uppercase;
    color: var(--white);
    background: var(--sage-dark);
}

.detail-tag.tag-promo {
    background: var(--rose);
}

.detail-tag.tag-new {
    background: var(--sage-dark);
}

/* -- Carte infos -- */
.detail-card {
    flex: 0 0 360px;
    background: var(--white);
    border-radius: 16px;
    padding: 36px 32px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    z-index: 2;
}

.detail-card-header {
    margin-bottom: 12px;
}

.detail-card-name {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    color: var(--dark);
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}

.detail-card-subtitle {
    font-family: var(--font-cursive);
    font-size: 1.25rem;
    color: var(--sage-dark);
    display: block;
    margin-top: 4px;
}

.detail-card-availability {
    margin-bottom: 16px;
}

.detail-availability-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.82rem;
    font-weight: 600;
    padding: 5px 14px;
    border-radius: 20px;
}

.detail-availability-badge.in-stock {
    background: #e8f5e9;
    color: #2e7d32;
}

.detail-availability-badge.out-of-stock {
    background: #fff3e0;
    color: #e65100;
}

.detail-card-separator {
    height: 1px;
    background: #eee;
    margin-bottom: 20px;
}

.detail-card-infos {
    display: flex;
    gap: 0;
    margin-bottom: 24px;
}

.detail-card-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 16px;
    background: var(--cream);
    border-radius: 10px;
}

.detail-card-col:first-child {
    margin-right: 12px;
}

.detail-card-col-prix {
    align-items: center;
    text-align: center;
}

.detail-link-pourquoi {
    display: block;
    margin-top: 6px;
    font-weight: 600;
    text-decoration: underline;
    color: var(--dark);
    font-size: 0.88rem;
    transition: color 0.3s;
    text-align: center;
}

.detail-link-pourquoi:hover {
    color: var(--sage-dark);
}

.detail-card-label {
    font-size: 0.78rem;
    color: #888;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.detail-card-label i {
    font-size: 0.72rem;
    color: var(--sage);
}

.detail-card-value {
    font-size: 1.55rem;
    font-weight: 700;
    color: var(--dark);
}

.detail-card-col-prix .detail-card-value {
    font-size: 2.1rem;
    margin-bottom: -4px;
}

/* ===== COLORIS (detail page) ===== */
.detail-coloris {
    margin: 8px 0 16px;
    text-align: center;
}

.detail-coloris-label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    color: #888;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.detail-coloris-label i {
    margin-right: 4px;
}

.detail-coloris-list {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.coloris-circle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    border: 3px solid transparent;
    transition: transform 0.2s, border-color 0.2s, box-shadow 0.2s;
    position: relative;
}

.coloris-circle:hover {
    transform: scale(1.15);
}

.coloris-circle.active {
    border-color: var(--sage-dark);
    box-shadow: 0 0 0 2px var(--sage-light);
}

.detail-coloris-name {
    display: block;
    font-size: 0.82rem;
    color: var(--dark);
    font-weight: 600;
    margin-top: 8px;
    min-height: 1.2em;
}

.detail-commander-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.detail-btn-commander {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px;
    background: var(--sage-dark);
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    text-align: center;
    font-family: var(--font-body);
    margin-bottom: 0;
}

.detail-btn-commander:hover {
    background: var(--dark);
    transform: translateY(-1px);
}

.detail-stripe-note {
    font-size: 0.75rem;
    color: #8a8a8a;
    display: flex;
    align-items: center;
    gap: 5px;
}

.detail-stripe-note i {
    font-size: 0.7rem;
    color: #635bff;
}

.detail-card-note {
    font-size: 0.8rem;
    color: #999;
    text-align: center;
    margin: 0;
}

.detail-card-note i {
    color: var(--rose);
    font-size: 0.75rem;
}

/* -- Corps : description & caractéristiques -- */
.detail-body {
    background: #f5f0e6;
    padding: 50px 20px 60px;
}

.detail-body-inner {
    max-width: 1060px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.detail-section-card {
    background: var(--white);
    border-radius: 16px;
    padding: 36px 40px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    position: relative;
    z-index: 2;
}

.detail-description h2 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--dark);
    font-weight: 700;
    margin-bottom: 18px;
    line-height: 1.4;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--cream);
}

.detail-description p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.85;
    margin-bottom: 12px;
}

.detail-caracteristiques h2 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--dark);
    font-weight: 700;
    margin-bottom: 24px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--cream);
    display: flex;
    align-items: center;
    gap: 10px;
}

.detail-caracteristiques h2 i {
    color: var(--sage);
    font-size: 1.2rem;
}

/* Grille de caractéristiques */
.detail-carac-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 14px;
}

.detail-carac-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 16px 18px;
    background: var(--cream);
    border-radius: 12px;
    transition: box-shadow 0.3s;
}

.detail-carac-item:hover {
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.detail-carac-icon {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--sage-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.85rem;
}

.detail-carac-text {
    flex: 1;
}

.detail-carac-text strong {
    display: block;
    font-size: 0.85rem;
    color: var(--dark);
    margin-bottom: 2px;
}

.detail-carac-text span {
    font-size: 0.88rem;
    color: #666;
    line-height: 1.5;
}

.carac-sublabel {
    display: block;
    font-size: 0.85rem;
    color: #666;
    line-height: 1.5;
}

/* ===== PAGE À PROPOS ===== */
/* ===== À PROPOS PAGE ===== */

/* Hero */
.about-hero {
    position: relative;
    height: 520px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--sage);
}

.about-hero-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.45;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
}

.about-hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.5);
    color: var(--white);
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.about-hero-content h1 {
    font-family: var(--font-cursive);
    font-size: 5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 16px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.about-hero-content h1 span {
    font-size: 3.5rem;
    opacity: 0.9;
}

.about-hero-content p {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    color: rgba(255,255,255,0.92);
    line-height: 1.7;
    text-shadow: 0 1px 8px rgba(0,0,0,0.25);
}

/* Wrapper */
.about-wrapper {
    background-color: var(--cream);
}

/* Story section */
.about-story {
    background-color: var(--cream);
    padding: 80px 40px;
    display: flex;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.about-story-deco {
    position: absolute;
    top: 70px;
    right: 40px;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--sage-light);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.3;
}

.about-story-deco i {
    font-size: 2rem;
    color: var(--sage-dark);
}

.about-story h2 {
    font-family: var(--font-serif);
    font-size: 2.8rem;
    font-weight: 700;
    min-width: 180px;
    line-height: 1.1;
    color: var(--dark);
}

.about-story h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 4px;
    background: var(--sage);
    border-radius: 2px;
    margin-top: 14px;
}

.about-story-text {
    flex: 1;
}

.about-story-text p {
    font-size: 1.07rem;
    line-height: 1.95;
    margin-bottom: 20px;
    color: #444;
}

.about-story-text p strong {
    color: var(--sage-dark);
}

/* Section intro fusionnée */
.about-intro {
    display: flex;
    gap: 70px;
    align-items: center;
    min-height: calc(100vh - 137px);
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 60px;
}

.about-intro-sketch {
    flex: 0 0 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-intro-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.about-intro-top h2 {
    font-family: var(--font-serif);
    font-size: 2.6rem;
    font-weight: 700;
    color: var(--dark);
    margin: 10px 0 14px;
    line-height: 1.3;
}

.about-intro-top h2 strong {
    color: var(--sage-dark);
}

.about-intro-top p {
    font-size: 1.08rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 10px;
}

.about-intro-top p strong {
    color: var(--sage-dark);
}

.about-intro-divider {
    width: 60px;
    height: 3px;
    background: var(--sage-light);
    border-radius: 2px;
    margin: 14px 0;
}

.about-intro-quote {
    background: rgba(143, 170, 140, 0.12);
    border-left: 4px solid var(--sage);
    border-radius: 0 8px 8px 0;
    padding: 12px 18px;
    font-family: var(--font-serif);
    font-size: 1rem;
    color: #444;
    margin-bottom: 18px;
    line-height: 1.7;
}

.about-intro-quote i {
    color: var(--sage-dark);
    margin-right: 8px;
}

/* De l'idée à la pièce (legacy, kept for CSS shared classes) */
.about-process {
    display: none;
}

.about-process-sketch {
    flex: 0 0 340px;
}

.about-process-sketch-frame {
    position: relative;
    background: var(--white);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 6px 30px rgba(0,0,0,0.08);
    border: 2px solid rgba(143, 170, 140, 0.25);
}

.about-process-sketch-frame img {
    width: 100%;
    border-radius: 10px;
}

.about-process-sketch-label {
    position: absolute;
    bottom: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--sage);
    color: var(--white);
    font-size: 0.82rem;
    font-weight: 600;
    padding: 6px 18px;
    border-radius: 50px;
    white-space: nowrap;
    letter-spacing: 0.5px;
}

.about-process-sketch-label i {
    margin-right: 6px;
}

.about-process-text {
    flex: 1;
}

.about-process-badge {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(143, 170, 140, 0.15);
    color: var(--sage-dark);
    font-size: 0.85rem;
    font-weight: 600;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 10px;
    border: 1px solid rgba(143, 170, 140, 0.3);
}

.about-process-text h2 {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark);
    line-height: 1.2;
    margin-bottom: 20px;
}

.about-process-text h2::after {
    content: '';
    display: block;
    width: 50px;
    height: 4px;
    background: var(--sage);
    border-radius: 2px;
    margin-top: 12px;
}

.about-process-text p {
    font-size: 1.05rem;
    line-height: 1.85;
    color: #555;
    margin-bottom: 16px;
}

.about-process-steps {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.about-process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
}

.step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--sage);
    color: var(--white);
    font-weight: 700;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.step-label {
    font-size: 0.82rem;
    color: var(--sage-dark);
    font-weight: 600;
    white-space: nowrap;
}

.step-label i {
    margin-right: 4px;
}

.about-process-arrow {
    color: var(--sage-light);
    font-size: 0.9rem;
    padding-bottom: 20px;
}

/* Atelier */
.about-atelier {
    position: relative;
    min-height: 812px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 60px 0 0 0;
    background-image: url('images/webp/atelier.jpg');
    background-size: cover;
    background-position: center 80%;
    background-attachment: fixed;
}

.about-atelier-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

.about-atelier-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px;
    max-width: 800px;
}

.about-atelier-quote {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-style: italic;
    color: var(--white);
    line-height: 1.7;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    margin: 0;
}

/* Values */
.about-values {
    background-color: var(--sage);
    padding: 70px 40px;
    position: relative;
}

.about-values-header {
    text-align: center;
    margin-bottom: 50px;
}

.about-values-header h2 {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--white);
}

.about-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.about-value-card {
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    backdrop-filter: blur(4px);
    transition: transform 0.3s, background 0.3s;
}

.about-value-card:hover {
    transform: translateY(-4px);
    background: rgba(255,255,255,0.22);
}

.about-value-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255,255,255,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.about-value-icon i {
    font-size: 1.5rem;
    color: var(--white);
}

.about-value-card h3 {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.about-value-card p {
    font-size: 0.93rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.6;
}

/* Réseaux Sociaux */
.about-socials {
    padding: 70px 40px;
    text-align: center;
}

.about-socials-header {
    margin-bottom: 40px;
}

.about-socials-header h2 {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    color: var(--dark);
    margin-bottom: 12px;
}

.about-socials-header p {
    font-size: 1.05rem;
    color: var(--medium);
    max-width: 560px;
    margin: 0 auto;
}

.about-socials-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.about-social-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 22px 32px;
    border-radius: 16px;
    text-decoration: none;
    min-width: 280px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    box-shadow: 0 4px 18px rgba(0,0,0,0.10);
    color: #fff;
}

.about-social-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.18);
}

.about-social-facebook {
    background: linear-gradient(135deg, #1877f2, #0d5ec9);
}

.about-social-instagram {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.about-social-icon {
    font-size: 2.2rem;
    line-height: 1;
    flex-shrink: 0;
}

.about-social-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
    flex: 1;
}

.about-social-name {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 700;
}

.about-social-handle {
    font-size: 0.9rem;
    opacity: 0.88;
}

.about-social-arrow {
    font-size: 1rem;
    opacity: 0.75;
    flex-shrink: 0;
}

/* Gallery */
.about-gallery {
    padding: 80px 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.about-gallery-header {
    text-align: center;
    margin-bottom: 40px;
}

.about-gallery-header h2 {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.about-gallery-header p {
    color: #888;
    font-size: 1rem;
}

.about-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 40px;
}

.about-gallery-item {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 1;
    display: block;
}

.about-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.about-gallery-item:hover img {
    transform: scale(1.06);
}

.about-gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.55) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 16px;
    opacity: 0;
    transition: opacity 0.3s;
}

.about-gallery-item:hover .about-gallery-overlay {
    opacity: 1;
}

.about-gallery-overlay span {
    font-family: var(--font-serif);
    color: var(--white);
    font-size: 1rem;
    font-weight: 700;
}

/* CTA */
.about-cta {
    background-color: var(--beige);
    padding: 80px 40px;
    text-align: center;
    position: relative;
}

.about-cta-inner {
    max-width: 600px;
    margin: 0 auto;
}

.about-cta h2 {
    font-family: var(--font-serif);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 16px;
}

.about-cta p {
    font-size: 1.05rem;
    color: #666;
    margin-bottom: 32px;
    line-height: 1.7;
}

/* Legacy — keep for other possible uses */
.about-title-section {
    background-color: var(--sage);
    text-align: center;
    padding: 50px 20px 30px;
    position: relative;
}

.about-title-section h1 {
    font-family: var(--font-serif);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--dark);
}

/* ===== LEGAL / LIVRAISON PAGES ===== */
.legal-wrapper {
    background-color: var(--cream);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 40px 80px;
}

.legal-block {
    margin-bottom: 40px;
}

.legal-block h2 {
    font-family: var(--font-serif);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--sage-dark);
    margin-bottom: 16px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--sage-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.legal-block h2 i {
    color: var(--sage);
    font-size: 1.3rem;
}

.legal-block h3 {
    font-family: var(--font-serif);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--dark);
    margin: 24px 0 12px;
}

.legal-block p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 14px;
}

.legal-block ul {
    margin: 10px 0 16px 20px;
    list-style: disc;
}

.legal-block ul li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #444;
    margin-bottom: 6px;
}

.legal-block a {
    color: var(--sage-dark);
    text-decoration: underline;
    transition: color 0.3s;
}

.legal-block a:hover {
    color: var(--rose-dark);
}

.legal-update {
    text-align: center;
    border-top: 1px solid #ddd;
    padding-top: 30px;
    margin-top: 50px;
}

.legal-update p {
    color: #888;
    font-size: 0.95rem;
}

/* Shipping table */
.shipping-table {
    width: 100%;
    border-collapse: collapse;
    margin: 12px 0 24px;
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.shipping-table thead {
    background-color: var(--sage);
}

.shipping-table th {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    padding: 14px 20px;
    text-align: left;
}

.shipping-table td {
    padding: 12px 20px;
    font-size: 1rem;
    color: #444;
    border-bottom: 1px solid #eee;
}

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

.shipping-table tbody tr:hover {
    background-color: rgba(143, 170, 140, 0.08);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .header-brand {
        gap: 10px;
        padding: 5px 15px;
    }

    .header-logo img,
    .header-mascot img {
        height: 42px;
    }

    .site-nav {
        padding: 0 15px;
    }

    .site-nav a {
        font-size: 0.85rem;
        padding: 10px;
    }

    .site-header.scrolled .header-inner {
        padding: 5px 16px;
    }

    .site-header.scrolled .header-logo img,
    .site-header.scrolled .header-mascot img {
        height: 24px;
    }

    .hero {
        padding: 30px 20px;
        min-height: auto;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    .hero-center {
        flex: none;
        width: 260px;
        order: -1;
    }

    .hero-left h1 {
        font-size: 1.8rem;
    }

    .hero-right h2 {
        font-size: 2rem;
    }

    .hero-right h3 {
        font-size: 1.3rem;
    }

    .hero-badges {
        justify-content: center;
    }

    /* Values responsive */
    .values-section {
        padding: 40px 20px;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .value-card {
        padding: 25px 15px;
    }

    .value-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .value-card h3 {
        font-size: 1rem;
    }

    /* Boutique preview responsive */
    .boutique-preview {
        padding: 40px 20px 50px;
    }

    .boutique-preview-header h2 {
        font-size: 1.8rem;
    }

    .slider-gallery {
        gap: 20px;
        padding: 15px 15px 25px;
    }

    .slider-item {
        width: 220px;
        height: 220px;
    }

    /* Process responsive */
    .process-section {
        padding: 40px 20px;
    }

    .process-header h2 {
        font-size: 1.8rem;
    }

    .process-steps {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .process-step {
        max-width: 100%;
    }

    .process-connector {
        padding-top: 0;
        transform: rotate(90deg);
    }

    .process-compact .process-steps {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 12px;
    }

    .process-compact .process-step {
        width: calc(50% - 20px);
        max-width: none;
        flex: none;
    }

    .process-compact .process-connector {
        display: none;
    }

    /* CTA responsive */
    .cta-section {
        padding: 50px 20px;
    }

    .cta-content h2 {
        font-size: 1.8rem;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-cta {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .site-footer {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 30px 20px;
    }

    .footer-socials {
        justify-content: center;
    }

    .footer-links {
        align-items: center;
    }

    .footer-copyright {
        text-align: center;
    }

    .page-title-section h1,
    .about-title-section h1 {
        font-size: 2.5rem;
    }

    .about-story {
        flex-direction: column;
        padding: 50px 20px;
        gap: 30px;
    }

    .about-story h2 {
        font-size: 2.2rem;
        min-width: unset;
    }

    .about-story-deco {
        display: none;
    }

    .about-hero {
        height: 380px;
    }

    .about-hero-content h1 {
        font-size: 3.5rem;
    }

    .about-hero-content h1 span {
        font-size: 2.5rem;
    }

    .about-intro {
        flex-direction: column;
        min-height: unset;
        padding: 40px 20px;
        gap: 30px;
    }

    .about-intro-sketch {
        flex: none;
        width: 100%;
        max-width: 260px;
        margin: 0 auto;
    }

    .about-intro-top h2 {
        font-size: 1.7rem;
    }

    .about-values {
        padding: 50px 20px;
    }

    .about-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-gallery {
        padding: 50px 20px;
    }

    .about-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-cta {
        padding: 60px 20px;
    }

    .about-cta h2 {
        font-size: 1.8rem;
    }

    .about-atelier {
        min-height: 350px;
        margin: 40px 0;
    }

    .about-atelier-quote {
        font-size: 1.2rem;
        padding: 20px;
    }

    /* Legal pages responsive */
    .legal-content {
        padding: 40px 20px 60px;
    }

    .legal-block h2 {
        font-size: 1.3rem;
    }

    .shipping-table th,
    .shipping-table td {
        padding: 10px 14px;
        font-size: 0.9rem;
    }

    .product-card .product-image {
        height: 200px;
    }

    /* Detail page responsive */
    .detail-hero-inner {
        flex-direction: column;
    }

    .detail-image-wrapper {
        max-width: 100%;
    }

    .detail-image-wrapper img {
        height: auto;
    }

    .detail-card {
        flex: none;
        width: 100%;
    }

    .detail-section-card {
        padding: 28px 22px;
    }

    .detail-carac-grid {
        grid-template-columns: 1fr;
    }

    .detail-card-name {
        font-size: 1.7rem;
    }

    /* Toolbar responsive */
    .toolbar-inner {
        gap: 12px;
    }

    .filter-bar {
        gap: 6px;
    }

    .filter-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }

    .sort-bar {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .sort-wrapper {
        justify-content: center;
    }

    .product-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .values-grid {
        grid-template-columns: 1fr;
    }

    .hero-left h1 {
        font-size: 1.5rem;
    }

    .btn-hero {
        font-size: 0.85rem;
        padding: 10px 22px;
    }

    .about-atelier {
        min-height: 280px;
        margin: 30px 0;
    }

    .about-atelier-quote {
        font-size: 1rem;
        padding: 15px;
    }

    .about-values-grid {
        grid-template-columns: 1fr;
    }

    .about-gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== POPUP TRANSPARENCE & MODAL POURQUOI CE PRIX ===== */
.overlay-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(51, 51, 51, 0.55);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.overlay-backdrop.visible {
    opacity: 1;
    pointer-events: all;
}

/* --- Popup transparence --- */
.popup-transparence {
    background: var(--cream);
    border-radius: 18px;
    padding: 40px 36px;
    max-width: 500px;
    width: 100%;
    text-align: center;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    transform: translateY(24px);
    transition: transform 0.35s ease;
}

.overlay-backdrop.visible .popup-transparence,
.overlay-backdrop.visible .modal-pourquoi {
    transform: translateY(0);
}

.popup-transparence .popup-icon {
    font-size: 2.2rem;
    color: var(--sage-dark);
    margin-bottom: 14px;
}

.popup-transparence h2 {
    font-family: var(--font-serif);
    font-size: 1.45rem;
    color: var(--green-title);
    margin-bottom: 14px;
}

.popup-transparence p {
    font-size: 0.93rem;
    color: var(--dark);
    line-height: 1.75;
    margin-bottom: 12px;
}

.popup-transparence .popup-highlight {
    display: inline-block;
    background: var(--beige);
    border: 1.5px solid var(--sage);
    border-radius: 20px;
    padding: 5px 16px;
    font-weight: 600;
    color: var(--sage-dark);
    font-size: 0.88rem;
    margin: 4px 0 16px;
}

.btn-popup-close {
    background: var(--sage);
    color: #fff;
    border: none;
    border-radius: 24px;
    padding: 12px 34px;
    font-size: 0.95rem;
    font-family: var(--font-body);
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 6px;
}

.btn-popup-close:hover {
    background: var(--sage-dark);
}

/* --- Modal pourquoi ce prix --- */
.modal-pourquoi {
    background: var(--cream);
    border-radius: 18px;
    padding: 36px 32px;
    max-width: 460px;
    width: 100%;
    max-height: 88vh;
    overflow-y: auto;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    transform: translateY(24px);
    transition: transform 0.35s ease;
}

.modal-close-btn {
    position: absolute;
    top: 14px;
    right: 16px;
    background: none;
    border: none;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    color: #999;
    padding: 4px 8px;
    transition: color 0.2s;
}

.modal-close-btn:hover {
    color: var(--dark);
}

.modal-pourquoi h2 {
    font-family: var(--font-serif);
    color: var(--green-title);
    font-size: 1.35rem;
    margin-bottom: 2px;
    padding-right: 32px;
}

.modal-subtitle {
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 22px;
}

.prix-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.91rem;
}

.prix-table tr {
    border-bottom: 1px solid #e6ddd0;
}

.prix-table tr:last-child {
    border-bottom: none;
}

.prix-table td {
    padding: 10px 6px;
    vertical-align: top;
}

.prix-table td:first-child {
    color: #666;
    width: 58%;
}

.prix-table td:last-child {
    font-weight: 500;
    text-align: right;
    white-space: nowrap;
}

.prix-table .row-total td {
    font-weight: 700;
    font-size: 1rem;
    color: var(--sage-dark);
    padding-top: 14px;
    border-top: 2px solid var(--sage-light);
}

.row-detail {
    display: block;
    font-size: 0.76rem;
    color: #aaa;
    margin-top: 2px;
    font-style: italic;
}

.modal-tva-note {
    font-size: 0.76rem;
    color: #bbb;
    margin-top: 18px;
    line-height: 1.6;
    font-style: italic;
}

@media (max-width: 600px) {
    .popup-transparence,
    .modal-pourquoi {
        padding: 28px 20px;
    }

    .popup-transparence h2 {
        font-size: 1.2rem;
    }
}

/* ===== Modale de confirmation devis ===== */
.devis-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(40, 25, 30, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity .25s ease, visibility .25s ease;
    backdrop-filter: blur(4px);
}
.devis-modal-overlay.is-open {
    opacity: 1;
    visibility: visible;
}
.devis-modal {
    background: #fff;
    border-radius: 20px;
    padding: 40px 36px 32px;
    max-width: 460px;
    width: 100%;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, .25);
    position: relative;
    transform: scale(.85);
    transition: transform .3s cubic-bezier(.34, 1.56, .64, 1);
}
.devis-modal-overlay.is-open .devis-modal {
    transform: scale(1);
}
.devis-modal__close {
    position: absolute;
    top: 12px;
    right: 16px;
    background: none;
    border: none;
    font-size: 28px;
    line-height: 1;
    color: #999;
    cursor: pointer;
    padding: 4px 10px;
    border-radius: 50%;
    transition: background .2s, color .2s;
}
.devis-modal__close:hover {
    background: #f3f3f3;
    color: #333;
}
.devis-modal__icon {
    margin: 0 auto 18px;
    width: 80px;
    height: 80px;
}
.devis-modal__icon svg { display: block; }
.devis-modal__circle {
    stroke: #8faa8c;
    stroke-dasharray: 226;
    stroke-dashoffset: 226;
    transform-origin: center;
}
.devis-modal__check {
    stroke: #8faa8c;
    stroke-dasharray: 60;
    stroke-dashoffset: 60;
}
.devis-modal-overlay.is-open.is-success .devis-modal__circle {
    animation: devisCircleDraw .6s ease-out forwards;
}
.devis-modal-overlay.is-open.is-success .devis-modal__check {
    animation: devisCheckDraw .4s .5s ease-out forwards;
}
.devis-modal.is-error .devis-modal__circle,
.devis-modal-overlay.is-error .devis-modal__circle {
    stroke: #c62828;
    stroke-dashoffset: 0;
}
.devis-modal-overlay.is-error .devis-modal__check {
    stroke: #c62828;
    stroke-dashoffset: 0;
    d: path("M28 28 L52 52 M52 28 L28 52");
}
.devis-modal-overlay.is-error .devis-modal__icon::before {
    content: "✕";
    display: block;
    width: 80px;
    height: 80px;
    line-height: 80px;
    font-size: 44px;
    color: #c62828;
    background: #fdecea;
    border-radius: 50%;
    font-weight: bold;
}
.devis-modal-overlay.is-error .devis-modal__icon svg { display: none; }
@keyframes devisCircleDraw {
    to { stroke-dashoffset: 0; }
}
@keyframes devisCheckDraw {
    to { stroke-dashoffset: 0; }
}
.devis-modal__title {
    margin: 0 0 12px;
    font-size: 1.6rem;
    color: #3d2f29;
    font-family: 'Playfair Display', Georgia, serif;
}
.devis-modal-overlay.is-error .devis-modal__title { color: #c62828; }
.devis-modal__text {
    margin: 0 0 26px;
    color: #6a5a53;
    font-size: 1rem;
    line-height: 1.55;
}
.devis-modal__btn {
    background: #8faa8c;
    color: #fff;
    border: none;
    padding: 12px 36px;
    border-radius: 50px;
    font-size: .98rem;
    font-weight: 700;
    cursor: pointer;
    transition: background .2s, transform .15s;
}
.devis-modal__btn:hover {
    background: #7a9477;
    transform: translateY(-1px);
}
.devis-modal-overlay.is-error .devis-modal__btn { background: #c62828; }
.devis-modal-overlay.is-error .devis-modal__btn:hover { background: #a91e1e; }


/* ==== Bannière de consentement aux cookies ==== */
html.mdc-cookie-locked, html.mdc-cookie-locked body { overflow: hidden; }
#mdc-cookie-banner {
    position: fixed; inset: 0; z-index: 99999;
    background: rgba(51, 51, 51, 0.65);
    backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px);
    display: flex; align-items: center; justify-content: center;
    padding: 20px; animation: mdcFadeIn .3s ease;
}
@keyframes mdcFadeIn { from { opacity: 0; } to { opacity: 1; } }
#mdc-cookie-banner .mdc-cookie-modal {
    background: var(--cream); color: var(--dark);
    max-width: 540px; width: 100%;
    border-radius: 18px; padding: 32px 28px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.35);
    border: 2px solid var(--sage-light);
    text-align: center; font-family: var(--font-body);
    animation: mdcPop .35s cubic-bezier(.2,.8,.3,1.2);
    max-height: 90vh; overflow-y: auto;
}
@keyframes mdcPop { from { transform: scale(.92); opacity: 0; } to { transform: scale(1); opacity: 1; } }
#mdc-cookie-banner .mdc-cookie-icon {
    font-size: 42px; color: var(--sage-dark); margin-bottom: 8px;
}
#mdc-cookie-banner h2 {
    font-family: var(--font-serif); color: var(--green-title);
    font-size: 1.6rem; margin: 4px 0 14px;
}
#mdc-cookie-banner p { margin: 10px 0; line-height: 1.55; font-size: 0.98rem; }
#mdc-cookie-banner ul {
    text-align: left; margin: 14px auto; padding: 14px 18px 14px 36px;
    background: var(--white); border-radius: 12px;
    border-left: 4px solid var(--sage); max-width: 460px;
}
#mdc-cookie-banner ul li { margin: 6px 0; line-height: 1.5; font-size: 0.93rem; }
#mdc-cookie-banner .mdc-cookie-note { font-size: 0.85rem; color: #666; font-style: italic; }
#mdc-cookie-banner .mdc-cookie-note a { color: var(--sage-dark); text-decoration: underline; }
#mdc-cookie-banner .mdc-cookie-actions { margin-top: 20px; }
#mdc-cookie-banner .btn-primary {
    background: var(--sage-dark); color: var(--white);
    border: none; padding: 14px 32px; border-radius: 30px;
    font-size: 1.05rem; font-weight: 600; cursor: pointer;
    font-family: var(--font-body); transition: all .2s ease;
    box-shadow: 0 4px 14px rgba(109,138,106,.35);
}
#mdc-cookie-banner .btn-primary:hover {
    background: var(--sage); transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(109,138,106,.45);
}
#mdc-cookie-banner .btn-primary i { margin-right: 6px; }
@media (max-width: 480px) {
    #mdc-cookie-banner .mdc-cookie-modal { padding: 24px 18px; }
    #mdc-cookie-banner h2 { font-size: 1.35rem; }
    #mdc-cookie-banner ul { padding: 12px 14px 12px 30px; }
}

/* ── Bandeau cookie non-bloquant (conditions.html) ───────────── */
#mdc-cookie-strip {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
    background: var(--cream);
    border-top: 2px solid var(--sage-light);
    padding: 14px 24px;
    display: flex; align-items: center; gap: 16px; flex-wrap: wrap;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.08);
    animation: mdcFadeIn 0.3s ease;
}
.mdc-strip-text {
    flex: 1; font-size: 0.9rem; color: var(--dark); margin: 0;
}
.mdc-strip-text i { color: var(--sage-dark); margin-right: 6px; }
.mdc-strip-actions { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }
.mdc-strip-actions .btn-primary {
    padding: 10px 22px; font-size: 0.9rem;
}
.btn-secondary-outline {
    padding: 10px 22px; font-size: 0.9rem;
    border-radius: 30px; border: 2px solid var(--sage-dark);
    background: transparent; color: var(--sage-dark);
    cursor: pointer; font-family: inherit;
    transition: background 0.2s, color 0.2s;
}
.btn-secondary-outline:hover { background: var(--sage-dark); color: var(--white); }
@media (max-width: 600px) {
    #mdc-cookie-strip { flex-direction: column; align-items: flex-start; padding: 14px 16px; }
    .mdc-strip-actions { width: 100%; }
    .mdc-strip-actions button { flex: 1; text-align: center; }
}
