/* ============================================================
   SLIM GAIN – FEUILLE DE STYLE PRINCIPALE
   ============================================================ */

/* ─── Variables ─── */
:root {
    --primary-color: #ffb3c6;
    --secondary-color: #ff8fab;
    --accent-color: #fb6f92;
    --dark-bg: rgba(20, 20, 25, 0.85);
    --text-light: #fefefe;
    --text-dark: #333;
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

/* ─── Reset ─── */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-light);
    background-image: url('Asset/WhatsApp Image 2026-05-29 at 23.44.55.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    -webkit-text-size-adjust: 100%;
    /* Empêche le zoom auto iOS */
}

h1,
h2,
h3 {
    font-family: 'Playfair Display', serif;
}

/* ─── Overlay de fond ─── */
.background-overlay {
    position: fixed;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(30, 10, 20, 0.7) 100%);
    z-index: -1;
}

/* ─── Glass panel ─── */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    border-radius: 20px;
}

/* ============================================================
   LOADER
   ============================================================ */
.loader-wrapper {
    position: fixed;
    inset: 0;
    background: rgba(10, 5, 15, 0.95);
    backdrop-filter: blur(15px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loader-wrapper.hidden {
    opacity: 0;
    visibility: hidden;
}

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

.loader-logo {
    width: 100px;
    animation: pulseLogo 2s infinite ease-in-out;
    z-index: 2;
}

.spinner {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: var(--primary-color);
    border-bottom-color: var(--accent-color);
    animation: spin 1.5s linear infinite;
    z-index: 1;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

@keyframes pulseLogo {

    0%,
    100% {
        transform: scale(0.9);
        opacity: 0.8;
        filter: drop-shadow(0 0 10px rgba(255, 179, 198, 0.5));
    }

    50% {
        transform: scale(1.1);
        opacity: 1;
        filter: drop-shadow(0 0 25px rgba(251, 111, 146, 0.8));
    }
}

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */
header {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background: rgba(0, 0, 0, 0.45);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
}

header.scrolled {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom: none;
    padding: 10px 5%;
}

/* Logo */
.logo-container .logo {
    height: 55px;
    display: block;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
    animation: navLogoSpin 6s linear infinite;
    transform-style: preserve-3d;
}

.logo-container .logo:hover {
    animation-duration: 2s;
}

@keyframes navLogoSpin {
    to {
        transform: rotateY(360deg);
    }
}

/* Nav links */
nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 400;
    font-size: 1rem;
    position: relative;
    padding: 5px 0;
    transition: color 0.3s;
    white-space: nowrap;
}

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

nav a:hover {
    color: var(--primary-color);
}

nav a:hover::after {
    width: 100%;
}

/* Actions (panier + burger) */
.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-shrink: 0;
}

.cart-btn {
    background: transparent;
    border: 1px solid var(--primary-color);
    color: white;
    padding: 7px 14px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s;
    white-space: nowrap;
}

.cart-btn:hover {
    background: var(--primary-color);
    color: #000;
}

#cart-count {
    background: var(--accent-color);
    color: white;
    padding: 2px 6px;
    border-radius: 10px;
    font-size: 0.75rem;
    font-weight: bold;
    min-width: 20px;
    text-align: center;
}

/* Bouton burger – masqué sur desktop */
.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
    padding: 4px;
}

.mobile-menu-btn span {
    display: block;
    width: 26px;
    height: 3px;
    background: white;
    border-radius: 3px;
    transition: transform 0.35s, opacity 0.35s;
}

.mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ============================================================
   PANIER SIDEBAR
   ============================================================ */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -110%;
    width: 100%;
    max-width: 400px;
    height: 100%;
    height: 100dvh;
    background: rgba(20, 20, 25, 0.97);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    z-index: 2000;
    transition: right 0.4s ease;
    display: flex;
    flex-direction: column;
    border-left: 1px solid var(--glass-border);
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.6);
}

.cart-sidebar.open {
    right: 0;
}

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

.cart-header h2 {
    color: var(--primary-color);
    font-size: 1.4rem;
}

.close-btn {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    padding: 0 5px;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 15px 20px;
    -webkit-overflow-scrolling: touch;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.cart-item-info h4 {
    margin-bottom: 4px;
    font-size: 0.95rem;
}

.cart-item-info span {
    font-size: 0.85rem;
    opacity: 0.7;
}

.cart-item-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
    flex-shrink: 0;
}

.cart-item-price {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
}

.remove-item {
    background: rgba(255, 71, 87, 0.8);
    color: white;
    border: none;
    padding: 4px 9px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 0.75rem;
    transition: background 0.2s;
}

.remove-item:hover {
    background: #ff4757;
}

.cart-footer {
    padding: 20px;
    border-top: 1px solid var(--glass-border);
    flex-shrink: 0;
}

.cart-total {
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: flex;
    justify-content: space-between;
    font-weight: bold;
}

.checkout-btn {
    width: 100%;
    text-align: center;
    background: #25D366;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    font-size: 1rem;
    padding: 14px 20px;
}

.checkout-btn:hover {
    background: #1ebe57;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

.cart-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 1500;
    display: none;
    cursor: pointer;
}

.cart-overlay.active {
    display: block;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 5% 60px;
    text-align: center;
}

.hero-content {
    padding: 50px 40px;
    max-width: 800px;
    width: 100%;
    animation: fadeIn 1.5s ease-out;
}

.hero h1 {
    font-size: 3.8rem;
    margin-bottom: 20px;
    line-height: 1.15;
    background: linear-gradient(to right, #ffb3c6, #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.15rem;
    margin-bottom: 40px;
    opacity: 0.9;
    line-height: 1.6;
}

/* CTA Button */
.cta-button {
    display: inline-block;
    padding: 14px 36px;
    background: linear-gradient(45deg, var(--accent-color), var(--secondary-color));
    color: white;
    text-decoration: none;
    border-radius: 30px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    transition: transform 0.3s, box-shadow 0.3s;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(251, 111, 146, 0.4);
    -webkit-tap-highlight-color: transparent;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(251, 111, 146, 0.6);
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section {
    padding: 90px 5%;
}

.section-title {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 10px;
    color: var(--primary-color);
    line-height: 1.2;
}

.section-subtitle {
    text-align: center;
    margin: 10px auto 50px;
    font-size: 1.1rem;
    opacity: 0.8;
    max-width: 600px;
    line-height: 1.6;
}

/* ============================================================
   GRILLE PRODUITS
   ============================================================ */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 35px;
    max-width: 1200px;
    margin: 0 auto;
}

.large-grid {
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 30px;
}

/* Carte produit */
.product-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    overflow: hidden;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    display: flex;
    flex-direction: column;
    -webkit-tap-highlight-color: transparent;
}

.product-card:hover,
.product-card.active:hover {
    transform: translateY(-10px) !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 179, 198, 0.2);
    border-color: rgba(255, 179, 198, 0.4);
}

.premium-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 179, 198, 0.05) 100%);
}

.highlight-card {
    border: 1px solid var(--accent-color);
    box-shadow: 0 0 20px rgba(251, 111, 146, 0.2);
}

.product-image {
    height: 200px;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: #aaa;
    text-align: center;
    padding: 10px;
}

.product-image-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.product-info {
    padding: 25px;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 10px;
}

.product-info h3 {
    font-size: 1.35rem;
    color: var(--text-light);
    line-height: 1.3;
}

.product-info>p {
    opacity: 0.8;
    font-size: 0.95rem;
    line-height: 1.5;
}

.price {
    font-size: 1.35rem !important;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 !important;
}

.add-to-cart {
    padding: 11px 22px;
    background: transparent;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    border-radius: 25px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s;
    margin-top: auto;
    -webkit-tap-highlight-color: transparent;
}

.add-to-cart:hover,
.add-to-cart:active {
    background: var(--primary-color);
    color: #000;
}

/* ============================================================
   PAGE HEADER (pages secondaires)
   ============================================================ */
.page-header {
    padding: 130px 5% 45px;
    text-align: center;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.75) 0%, transparent 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}

/* ─── Bouton Retour ─── */
.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 10px 20px;
    border: 1px solid rgba(255, 179, 198, 0.35);
    border-radius: 30px;
    background: rgba(255, 179, 198, 0.08);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.3s ease;
    margin-bottom: 28px;
    -webkit-tap-highlight-color: transparent;
}

.back-btn svg {
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.back-btn:hover {
    background: rgba(255, 179, 198, 0.18);
    border-color: var(--primary-color);
    transform: translateX(-4px);
}

.back-btn:hover svg {
    transform: translateX(-4px);
}

/* ============================================================
   NOTRE HISTOIRE (aperçu accueil)
   ============================================================ */
.histoire-section {
    background: rgba(0, 0, 0, 0.12);
}

.histoire-container {
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
}

.ceo-photo-wrapper {
    flex: 0 0 auto;
    text-align: center;
}

.ceo-photo-frame {
    width: 270px;
    height: 330px;
    border-radius: 30px;
    overflow: hidden;
    border: 2px solid var(--glass-border);
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 179, 198, 0.12);
    position: relative;
}

.ceo-photo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ceo-photo-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(255, 179, 198, 0.05), rgba(251, 111, 146, 0.1));
    color: rgba(255, 179, 198, 0.7);
    padding: 20px;
    text-align: center;
}

.ceo-photo-placeholder p {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 0;
    opacity: 1;
}

.ceo-photo-placeholder span {
    font-size: 0.8rem;
    opacity: 0.6;
    line-height: 1.4;
}

.ceo-name {
    margin-top: 18px;
}

.ceo-name h3 {
    font-size: 1.15rem;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.ceo-name p {
    opacity: 0.7;
    font-size: 0.9rem;
}

.histoire-text {
    flex: 1;
}

.histoire-quote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.35rem;
    color: var(--primary-color);
    border-left: 3px solid var(--accent-color);
    padding-left: 22px;
    margin-bottom: 28px;
    line-height: 1.7;
}

.histoire-text p {
    font-size: 1.05rem;
    line-height: 1.9;
    opacity: 0.85;
    margin-bottom: 15px;
}

/* ============================================================
   PAGE NOTRE HISTOIRE (contenu)
   ============================================================ */
.story-container {
    max-width: 820px;
    margin: 0 auto;
    padding: 40px;
    font-size: 1.05rem;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.88);
}

.story-container p {
    margin-bottom: 20px;
}

.story-container h2 {
    color: var(--primary-color);
    margin: 40px 0 20px;
    font-size: 2rem;
    text-align: center;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
    padding: 60px 5% 20px;
    background: rgba(10, 5, 15, 0.65);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    padding: 40px;
    margin-bottom: 30px;
}

.footer-col h3 {
    color: var(--primary-color);
    margin-bottom: 18px;
    font-size: 1.2rem;
}

.footer-logo {
    height: 55px;
    margin-bottom: 14px;
}

.footer-col p {
    opacity: 0.75;
    line-height: 1.65;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 9px;
}

.footer-col ul a {
    color: white;
    text-decoration: none;
    opacity: 0.75;
    transition: color 0.3s, opacity 0.3s;
    font-size: 0.95rem;
}

.footer-col ul a:hover {
    color: var(--primary-color);
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    opacity: 0.55;
    font-size: 0.9rem;
}

/* ============================================================
   BOUTONS FLOTTANTS
   ============================================================ */
.whatsapp-btn {
    position: fixed;
    bottom: 22px;
    right: 22px;
    width: 58px;
    height: 58px;
    background-color: var(--accent-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 4px 15px rgba(251, 111, 146, 0.5);
    z-index: 999;
    transition: transform 0.3s;
    -webkit-tap-highlight-color: transparent;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
}

.back-to-top {
    position: fixed;
    bottom: 22px;
    left: 22px;
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--accent-color), var(--secondary-color));
    box-shadow: 0 4px 15px rgba(251, 111, 146, 0.4);
    border: none;
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 999;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    -webkit-tap-highlight-color: transparent;
}

.back-to-top.visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(251, 111, 146, 0.8);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Reveal au scroll */
.reveal {
    opacity: 0;
    will-change: transform, opacity, filter;
    transition: all 0.65s cubic-bezier(0.2, 0.8, 0.2, 1);
    pointer-events: none;
}

.reveal.active {
    opacity: 1;
    transform: none !important;
    filter: none !important;
    pointer-events: auto;
}

.reveal-up {
    transform: translateY(30px);
    filter: blur(4px);
}

.reveal-down {
    transform: translateY(-30px);
    filter: blur(4px);
}

.reveal-left {
    transform: translateX(-30px);
    filter: blur(4px);
}

.reveal-right {
    transform: translateX(30px);
    filter: blur(4px);
}

.reveal-zoom {
    transform: scale(0.95);
    filter: blur(4px);
}

.reveal-rotate {
    transform: translateY(40px) rotateX(-10deg) scale(0.98);
    filter: blur(5px);
    transform-origin: top center;
    perspective: 800px;
}

/* ============================================================
   RESPONSIVE – TABLETTE (≤ 900px)
   ============================================================ */
@media (max-width: 900px) {

    /* Header – affiche le burger, masque la nav desktop */
    nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        height: 100dvh;
        background: rgba(10, 5, 15, 0.98);
        backdrop-filter: blur(15px);
        -webkit-backdrop-filter: blur(15px);
        display: flex;
        justify-content: center;
        align-items: center;
        transition: left 0.4s ease;
        z-index: 998;
    }

    nav.open {
        left: 0;
    }

    nav ul {
        flex-direction: column;
        text-align: center;
        gap: 28px;
    }

    nav a {
        font-size: 1.4rem;
    }

    .mobile-menu-btn {
        display: flex;
    }

    /* Hero */
    .hero h1 {
        font-size: 2.8rem;
    }

    /* Grilles */
    .product-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: 25px;
    }

    .large-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 22px;
    }

    /* Histoire */
    .histoire-container {
        gap: 40px;
    }

    .ceo-photo-frame {
        width: 220px;
        height: 270px;
    }

    /* Sections */
    .section {
        padding: 70px 5%;
    }

    .section-title {
        font-size: 2.4rem;
    }

    .histoire-quote {
        font-size: 1.2rem;
    }

    /* Footer */
    .footer-container {
        padding: 25px;
        gap: 30px;
    }

    /* Page header */
    .page-header {
        padding: 120px 5% 35px;
    }
}

/* ============================================================
   RESPONSIVE – MOBILE (≤ 600px)
   ============================================================ */
@media (max-width: 600px) {

    /* Header */
    header {
        padding: 12px 4%;
    }

    header.scrolled {
        padding: 8px 4%;
    }

    .logo-container .logo {
        height: 44px;
    }

    /* Hero */
    .hero {
        padding: 105px 4% 50px;
        min-height: 100svh;
    }

    .hero-content {
        padding: 24px 18px;
    }

    .hero h1 {
        font-size: 1.85rem;
    }

    .hero p {
        font-size: 0.95rem;
        margin-bottom: 28px;
    }

    .cta-button {
        padding: 13px 28px;
        font-size: 0.95rem;
    }

    /* Sections */
    .section {
        padding: 55px 4%;
    }

    .section-title {
        font-size: 1.9rem;
    }

    .section-subtitle {
        font-size: 0.95rem;
        margin-bottom: 35px;
    }

    /* Grille : 1 colonne sur mobile */
    .product-grid,
    .large-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .product-info {
        padding: 18px;
    }

    .product-info h3 {
        font-size: 1.15rem;
    }

    .product-image {
        height: 175px;
    }

    .product-image-img {
        height: 175px;
    }

    /* Notre histoire */
    .histoire-container {
        flex-direction: column;
        gap: 28px;
        align-items: center;
    }

    .ceo-photo-frame {
        width: 190px;
        height: 235px;
    }

    .histoire-quote {
        font-size: 1rem;
        padding-left: 16px;
    }

    .histoire-text p {
        font-size: 0.95rem;
    }

    /* Story container */
    .story-container {
        padding: 22px 16px;
        font-size: 0.95rem;
    }

    .story-container h2 {
        font-size: 1.6rem;
    }

    /* Footer */
    .footer-container {
        grid-template-columns: 1fr;
        padding: 18px;
        gap: 24px;
    }

    /* Panier plein écran sur mobile */
    .cart-sidebar {
        max-width: 100%;
    }

    .cart-header h2 {
        font-size: 1.2rem;
    }

    /* Boutons flottants */
    .whatsapp-btn {
        width: 50px;
        height: 50px;
        bottom: 15px;
        right: 15px;
    }

    .back-to-top {
        width: 46px;
        height: 46px;
        bottom: 15px;
        left: 15px;
    }

    /* Page header secondaire */
    .page-header {
        padding: 105px 4% 28px;
    }

    .page-header .section-title {
        font-size: 1.9rem;
    }

    /* Bouton retour */
    .back-btn {
        font-size: 0.82rem;
        padding: 8px 14px;
        margin-bottom: 20px;
    }
}

/* ─── Support dvh pour les nouveaux navigateurs ─── */
@supports (height: 100dvh) {
    .hero {
        min-height: 100dvh;
    }

    .cart-sidebar {
        height: 100dvh;
    }
}