/* Style KODA KAFÉ - Version Professionnelle */
:root {
    --primary-color: #1e3a8a; /* Bleu profond */
    --secondary-color: #F4A261;
    --accent-color: #2A9D8F;
    --dark-color: #2C3E50;
    --light-color: #F8F9FA;
    --text-color: #333333;
    --border-color: #E9ECEF;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --hero-scroll: 0;
}

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background: var(--light-color);
    overflow-x: hidden;
}

/* Loader DA blanche/rose avec palmier en monogramme ANIMÉ */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        url("assets/icons/aloe.png") repeat,
        linear-gradient(180deg, #fff 0%, #efe6d5 100%);
    background-size: 150px, cover;
    background-blend-mode: soft-light, normal;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    animation: loaderBgMove 6s ease-in-out infinite;
}

@keyframes loaderBgMove {
    0% { background-position: 0 0, center; }
    50% { background-position: 20px 40px, center; }
    100% { background-position: 0 0, center; }
}

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

.loader-content {
    text-align: center;
    position: relative;
}

.loader-circle {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    border: 4px solid #ddd0b8;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
}

.loader-circle::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 4px solid transparent;
    border-top-color: #c4a882;
    animation: loaderSpin 1s linear infinite;
}

@keyframes loaderSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.loader-inner-circle {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: #c4a882;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 30px rgba(196, 168, 130, 0.5);
}

.loader-kk {
    font-size: 1.5rem;
    font-weight: 900;
    font-family: 'Playfair Display', serif;
    color: white;
    text-transform: uppercase;
}

.loader-logo-img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.loader-text {
    font-size: 1.4rem;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: #c4a882;
    letter-spacing: -0.5px;
}

/* ========================================
   HEADER - Style Bon Bouquet (transparent)
   ======================================== */
.bb-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 15px 0;
    background: transparent;
}

.bb-header__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Logo avec texte qui tourne À L'EXTÉRIEUR - 1.5x PLUS GROS */
.bb-logo {
    position: relative;
    width: 160px;
    height: 160px;
    margin-top: 20px;
}

.bb-logo__text-svg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 160px;
    height: 160px;
    transform: translate(-50%, -50%);
    animation: rotateText 12s linear infinite;
}

.bb-logo__rotating-text {
    font-family: 'Poppins', sans-serif;
    font-size: 9px;
    font-weight: 800;
    fill: white;
    letter-spacing: 3px;
    text-transform: uppercase;
}

@keyframes rotateText {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

.bb-logo__circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background: #c4a882;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(196, 168, 130, 0.5);
    z-index: 2;
}

.bb-logo__img {
    width: 90px;
    height: 90px;
    object-fit: contain;
}

/* Navigation style Bon Bouquet - Plus gros */
.bb-nav {
    display: flex;
    gap: 12px;
}

.bb-nav__btn {
    position: relative;
    width: 124px;
    height: 124px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.3s ease;
}

/* Couleurs différentes pour chaque bouton comme la référence */
.bb-nav__btn--concept { background: #c4a882; } /* Bleu clair */
.bb-nav__btn--menu { background: #93c5fd; } /* Vert */
.bb-nav__btn--lieu { background: #b8976a; } /* Rose */
.bb-nav__btn--contact { background: #ddd0b8; } /* Rose clair */

.bb-nav__text-svg {
    position: absolute;
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease;
}

.bb-nav__rotating-text {
    font-family: 'Poppins', sans-serif;
    font-size: 8px;
    font-weight: 700;
    fill: white;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.bb-nav__icon {
    font-size: 1.8rem;
    z-index: 2;
}

.bb-nav__icon-img {
    width: 50px;
    height: 50px;
    object-fit: contain;
    z-index: 2;
}

/* Animation rotation au survol */
.bb-nav__btn:hover {
    transform: scale(1.1);
}

.bb-nav__btn:hover .bb-nav__text-svg {
    animation: rotateNav 3s linear infinite;
}

@keyframes rotateNav {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.bb-logo__initials {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 900;
    color: #c4a882;
}

.bb-logo__text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.bb-logo__title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 900;
    color: #124E66;
    text-transform: lowercase;
}

.bb-logo__subtitle {
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #c4a882;
}

.bb-nav {
    display: flex;
    gap: 20px;
}

.bb-nav__pill {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 2px solid rgba(255,255,255,0.6);
    background: rgba(255,255,255,0.4);
    color: #124E66;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    will-change: transform;
}

.bb-nav__icon {
    font-size: 1.4rem;
    margin-bottom: 6px;
}

.bb-nav__label {
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.bb-nav__pill:hover {
    animation: pillSpin 2s linear infinite;
    transform: scale(1.08);
    box-shadow: 0 12px 25px rgba(0,0,0,0.15);
}

@keyframes pillSpin {
    from { transform: scale(1.08) rotate(0deg); }
    to { transform: scale(1.08) rotate(360deg); }
}

/* ========================================
   HERO - Scroll Animation avec Frames PNG
   ======================================== */
.bb-hero {
    position: relative;
    height: 300vh;
    overflow: visible;
}

.bb-hero__bg {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.bb-hero__bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    will-change: transform;
    transform-origin: center center;
    transition: none;
}

.bb-hero__content {
    position: fixed;
    bottom: 120px;
    left: 60px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    z-index: 10;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

/* Brunch Breakfast en bas à gauche */
.bb-hero__title-bottom {
    display: flex;
    flex-direction: column;
}

.bb-hero__cta-bottom {
    display: inline-block;
    padding: 12px 35px;
    background: #93c5fd;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    pointer-events: auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bb-hero__cta-bottom:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(147, 197, 253, 0.5);
}

/* Grosse pastille Café des Vagues qui fade out au scroll */
.bb-hero__pastille {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    z-index: 15;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.bb-hero__pastille-img {
    width: 200px;
    height: 200px;
    padding: 30px;
    background: #c4a882;
    border-radius: 50%;
    box-shadow: 0 20px 60px rgba(196, 168, 130, 0.6);
    animation: floatPastille 3s ease-in-out infinite;
}

.bb-hero__pastille-text {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 900;
    font-style: normal;
    color: white;
    text-shadow: 3px 3px 20px rgba(0,0,0,0.4);
    letter-spacing: 3px;
    text-transform: lowercase;
}

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

.bb-hero__line1,
.bb-hero__line2 {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 900;
    color: white;
    text-shadow: 3px 3px 10px rgba(0,0,0,0.3);
    line-height: 1;
    text-transform: lowercase;
}

.bb-hero__line2 {
    font-style: normal;
    font-size: 4rem;
    color: #93c5fd;
}

.bb-hero__logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 30px;
    opacity: 0;
    animation: heroLogoIn 1s ease forwards;
    animation-delay: 1s;
}

@keyframes heroLogoIn {
    to { opacity: 1; }
}

.bb-hero__logo-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(255,255,255,0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    animation: logoPulse 3s ease-in-out infinite;
}

@keyframes logoPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.bb-hero__logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: #c4a882;
}

.bb-hero__logo-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.3);
    margin-top: 15px;
    letter-spacing: 0.1em;
}

.bb-hero__cta {
    margin-top: 40px;
    padding: 15px 50px;
    background: #c4a882;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-decoration: none;
    cursor: pointer;
    pointer-events: auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bb-hero__cta:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(196, 168, 130, 0.5);
}

/* ========================================
   CONCEPT - Style girly rose
   ======================================== */
.bb-concept {
    position: relative;
    padding: 100px 60px;
    min-height: 100vh;
    background: #ddd0b8;
    overflow: hidden;
}

.bb-concept__bg {
    position: absolute;
    inset: 0;
    background: #ddd0b8;
}

/* Blob bleu en haut à gauche */
.bb-concept__bg::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -15%;
    width: 60%;
    height: 80%;
    background: #93c5fd;
    border-radius: 0 0 60% 0;
    transform: scale(var(--blob-scale, 1)) rotate(var(--blob-rotate, 0deg)) translateX(var(--blob-shift, 0px));
    transition: transform 0.4s ease-out;
}

/* Blob bleu en bas */
.bb-concept__bg::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: 10%;
    width: 50%;
    height: 60%;
    background: #7db8fc;
    border-radius: 50% 80% 0 0;
    transform: scale(var(--blob-scale, 1)) rotate(calc(var(--blob-rotate, 0deg) * -1)) translateY(var(--blob-shift, 0px));
    transition: transform 0.4s ease-out;
}

/* Blobs supplémentaires */
.bb-concept__blobs {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.bb-concept__blob {
    position: absolute;
    background: #93c5fd;
    transition: transform 0.3s ease-out;
}

.bb-concept__blob--1 {
    top: 60%;
    right: -10%;
    width: 40%;
    height: 50%;
    border-radius: 60% 0 0 40%;
    background: #7db8fc;
}

.bb-concept__header {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 60px;
}

.bb-concept__title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 900;
    color: white;
    text-transform: lowercase;
}

.bb-concept__icon {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.bb-concept__icon--rotate {
    animation: slowRotate 10s linear infinite;
}

@keyframes slowRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.bb-concept__content {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.bb-concept__text {
    color: white;
}

.bb-concept__text h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.bb-concept__text p {
    font-size: 1.1rem;
    line-height: 1.8;
    opacity: 0.95;
}

.bb-concept__text strong {
    color: #ffeb3b;
}

.bb-concept__image {
    position: relative;
}

.bb-concept__image-wrapper {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: none;
}

.bb-concept__photo {
    width: 100%;
    height: auto;
    min-height: 450px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.8s ease;
}

.bb-concept__image-wrapper:hover .bb-concept__photo {
    transform: scale(1.05);
}

.bb-concept__deco {
    position: absolute;
    width: 80px;
    height: 80px;
    object-fit: contain;
    bottom: -30px;
    right: -30px;
}

.bb-concept__deco--rotate {
    animation: slowRotate 8s linear infinite reverse;
}

/* ========================================
   MENU GALLERY - Style Bon Bouquet avec formes organiques
   ======================================== */
.bb-menu-gallery {
    position: relative;
    min-height: 100vh;
    padding: 80px 40px;
    overflow: hidden;
}

.bb-menu-gallery__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #efe6d5 0%, #ddd0b8 30%, #c4a882 60%, #ddd0b8 100%);
}

/* Titre MENU */
.bb-menu-gallery__title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
}

.bb-menu-gallery__title h2 {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 900;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    text-decoration: underline;
    text-underline-offset: 15px;
    text-decoration-thickness: 3px;
}

/* Grille de photos */
.bb-menu-gallery__grid {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 20px;
    max-width: 1400px;
    margin: 0 auto;
    min-height: 80vh;
}

/* Photos avec formes organiques */
.bb-menu-gallery__item {
    position: relative;
    overflow: hidden;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    transition: transform 0.5s ease, border-radius 0.5s ease;
}

.bb-menu-gallery__item:nth-child(odd) {
    border-radius: 70% 30% 30% 70% / 60% 40% 60% 40%;
}

.bb-menu-gallery__item:nth-child(3n) {
    border-radius: 50% 50% 30% 70% / 40% 60% 40% 60%;
}

.bb-menu-gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.bb-menu-gallery__item:hover {
    transform: scale(1.05) rotate(2deg);
    z-index: 5;
}

.bb-menu-gallery__item:hover img {
    transform: scale(1.1);
}

/* Overlay nom et prix au hover */
.bb-menu-gallery__overlay {
    position: absolute;
    inset: 0;
    background: rgba(196, 168, 130, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: inherit;
}

.bb-menu-gallery__item:hover .bb-menu-gallery__overlay {
    opacity: 1;
}

.bb-menu-gallery__overlay span:first-child {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    text-align: center;
}

.bb-menu-gallery__overlay span:last-child {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
}

/* Positions spécifiques pour chaque item */
.bb-menu-gallery__item--1 { grid-area: 1 / 1 / 2 / 2; }
.bb-menu-gallery__item--2 { grid-area: 1 / 2 / 2 / 3; }
.bb-menu-gallery__item--3 { grid-area: 1 / 3 / 2 / 4; }
.bb-menu-gallery__item--4 { grid-area: 1 / 4 / 2 / 5; }
.bb-menu-gallery__item--5 { grid-area: 2 / 1 / 3 / 2; }
.bb-menu-gallery__item--6 { grid-area: 2 / 4 / 3 / 5; }
.bb-menu-gallery__item--7 { grid-area: 3 / 1 / 4 / 2; }
.bb-menu-gallery__item--8 { grid-area: 3 / 2 / 4 / 3; }
.bb-menu-gallery__item--9 { grid-area: 3 / 3 / 4 / 4; }
.bb-menu-gallery__item--10 { grid-area: 3 / 4 / 4 / 5; }
.bb-menu-gallery__item--11 { grid-area: 2 / 2 / 3 / 3; transform: translateY(30px); }
.bb-menu-gallery__item--12 { grid-area: 2 / 3 / 3 / 4; transform: translateY(-30px); }

/* Formes fleur décoratives */
.bb-menu-gallery__flower {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 400px;
    background: rgba(196, 168, 130, 0.5);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    z-index: 5;
    pointer-events: none;
}

.bb-menu-gallery__flower--2 {
    width: 350px;
    height: 350px;
    background: rgba(147, 197, 253, 0.4);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    animation: flowerRotate 20s linear infinite;
}

@keyframes flowerRotate {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* ========================================
   GALERIE MENU - Style original
   ======================================== */

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Sections - Exactement comme dans la photo */
section:not(.bb-hero):not(.bb-concept):not(.bb-menu-gallery):not(.bb-instagram) {
    padding: 100px 0;
    background: white;
}

/* Concept Section - Exact comme dans la photo */
.concept-frame {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.concept-text h2 {
    font-size: 2.8rem;
    font-weight: 900;
    font-family: 'Playfair Display', serif;
    color: #000;
    text-transform: lowercase;
    letter-spacing: -1px;
    margin-bottom: 30px;
    line-height: 1;
}

.concept-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 40px;
}

.concept-image {
    border-radius: 8px;
    overflow: hidden;
}

.concept-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Menu Gallery - Exact comme dans la photo */
.menu-gallery-frame {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.menu-gallery-header {
    text-align: center;
    margin-bottom: 60px;
}

.menu-gallery-header h2 {
    font-size: 2.8rem;
    font-weight: 900;
    font-family: 'Playfair Display', serif;
    color: #000;
    text-transform: lowercase;
    letter-spacing: -1px;
    margin-bottom: 20px;
    line-height: 1;
}

.menu-gallery-header p {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
}

.gallery-container {
    position: relative;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: #f5f5f5;
}

.gallery-image-wrapper {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.gallery-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
    text-transform: lowercase;
}

.gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

/* Lieu Section - Exact comme dans la photo */
.lieu-frame {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

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

.lieu-info h2 {
    font-size: 2.8rem;
    font-weight: 900;
    font-family: 'Playfair Display', serif;
    color: #000;
    text-transform: lowercase;
    letter-spacing: -1px;
    margin-bottom: 30px;
    line-height: 1;
}

.lieu-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
}

.lieu-map {
    border-radius: 8px;
    overflow: hidden;
    height: 400px;
}

/* ========================================
   INSTAGRAM - Style Bon Bouquet
   ======================================== */
.bb-instagram {
    position: relative;
    min-height: 100vh;
    padding: 80px 40px;
    overflow: hidden;
}

.bb-instagram__bg {
    position: absolute;
    inset: 0;
    background: 
        url("assets/icons/aloe.png") repeat,
        linear-gradient(180deg, #eff6ff 0%, #bfdbfe 50%, #93c5fd 100%);
    background-size: 180px, cover;
    background-blend-mode: soft-light, normal;
}

.bb-instagram__logo {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
    z-index: 10;
}

.bb-instagram__logo-svg {
    width: 80px;
    height: 80px;
    animation: rotateInsta 15s linear infinite;
}

@keyframes rotateInsta {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.bb-instagram__title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    font-style: italic;
    color: #93c5fd;
    margin-top: 10px;
}

.bb-instagram__photos {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
    z-index: 5;
}

.bb-instagram__card {
    width: 280px;
    height: 380px;
    border: 8px solid #93c5fd;
    border-radius: 20px;
    overflow: hidden;
    background: white;
    box-shadow: 0 15px 40px rgba(0,0,0,0.2);
    transition: transform 0.5s ease;
}

.bb-instagram__card--1 {
    transform: rotate(-8deg) translateY(20px);
}

.bb-instagram__card--2 {
    transform: rotate(0deg) scale(1.05);
    z-index: 2;
}

.bb-instagram__card--3 {
    transform: rotate(8deg) translateY(20px);
}

.bb-instagram__card:hover {
    transform: rotate(0deg) scale(1.1);
    z-index: 10;
}

.bb-instagram__card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bb-instagram__profile {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 10;
}

.bb-instagram__profile-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #eff6ff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.bb-instagram__profile-img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.bb-instagram__handle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.bb-instagram__follow {
    display: inline-block;
    padding: 12px 40px;
    background: #93c5fd;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bb-instagram__follow:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(147, 197, 253, 0.4);
}

/* ========================================
   CONTACT - Style Bon Bouquet
   ======================================== */
.bb-contact {
    position: relative;
    padding: 100px 60px;
    min-height: 80vh;
    overflow: hidden;
}

.bb-contact__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #ddd0b8 0%, #efe6d5 50%, #fff 100%);
}

.bb-contact__content {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 10;
}

.bb-contact__title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    font-style: italic;
    color: #c4a882;
    text-align: center;
    margin-bottom: 15px;
}

.bb-reservation__subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    color: #888;
    text-align: center;
    margin-bottom: 60px;
}

.bb-reservation__card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.bb-reservation__info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.bb-contact__item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(196, 168, 130, 0.2);
}

.bb-contact__icon {
    font-size: 2rem;
}

.bb-contact__item h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.bb-contact__item p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
}

.bb-reservation__cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: white;
    border-radius: 30px;
    padding: 50px 40px;
    box-shadow: 0 20px 60px rgba(196, 168, 130, 0.25);
    text-align: center;
}

.bb-reservation__phone-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #93c5fd 0%, #c4a882 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 2rem;
    color: white;
    animation: phonePulse 2s ease-in-out infinite;
}

@keyframes phonePulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(147, 197, 253, 0.4); }
    50% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(147, 197, 253, 0); }
}

.bb-reservation__phone-number {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
    text-decoration: none;
}

.bb-reservation__phone-number a {
    color: inherit;
    text-decoration: none;
}

.bb-reservation__call-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 45px;
    background: linear-gradient(135deg, #93c5fd 0%, #7db8fc 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    letter-spacing: 0.5px;
}

.bb-reservation__call-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(147, 197, 253, 0.5);
}

.bb-reservation__call-btn i {
    font-size: 1.2rem;
}

.bb-reservation__note {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    color: #999;
    margin-top: 20px;
}

/* Instagram Section - Exact comme dans la photo */
.instagram-frame {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.instagram-header {
    text-align: center;
    margin-bottom: 60px;
}

.instagram-header h2 {
    font-size: 2.8rem;
    font-weight: 900;
    font-family: 'Playfair Display', serif;
    color: #000;
    text-transform: lowercase;
    letter-spacing: -1px;
    margin-bottom: 20px;
    line-height: 1;
}

.instagram-header p {
    font-size: 1.1rem;
    color: #666;
    margin: 0;
}

.instagram-feed {
    margin-bottom: 40px;
}

.feed-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.feed-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    background: #f5f5f5;
}

.feed-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.feed-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feed-item:hover .feed-overlay {
    opacity: 1;
}

.feed-overlay i {
    font-size: 2.5rem;
    color: white;
}

.instagram-cta {
    text-align: center;
}

.btn-instagram {
    display: inline-block;
    padding: 12px 30px;
    background: #000;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: lowercase;
    transition: all 0.3s ease;
}

.btn-instagram:hover {
    background: #333;
    transform: translateY(-2px);
}

/* Concept Section */
.concept {
    background: white;
}

.concept-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    margin-bottom: 100px;
}

.concept-text h2 {
    font-size: 3.5rem;
    font-weight: 900;
    font-family: 'Playfair Display', serif;
    color: var(--dark-color);
    margin-bottom: 30px;
    text-transform: lowercase;
    letter-spacing: -1px;
    line-height: 1.1;
}

.concept-text p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 40px;
    font-weight: 400;
}

.concept-image img {
    width: 100%;
    height: auto;
    border-radius: 30px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    transition: all 0.5s ease;
}

.concept-image img:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.2);
}

.concept-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.feature h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 20px;
    text-transform: lowercase;
    letter-spacing: -0.5px;
}

.feature p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-color);
    opacity: 0.8;
}

/* Menu Categories Section - Style HungryFamily */
.menu-categories {
    background: var(--light-color);
    overflow: hidden;
    padding: 120px 0;
}

.categories-scroll {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.category-row {
    display: flex;
    gap: 40px;
    white-space: nowrap;
    padding: 60px 0;
    width: 200%;
}

.category-item {
    font-size: 4rem;
    font-weight: 900;
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    text-transform: lowercase;
    white-space: nowrap;
    padding: 20px 40px;
    border-radius: 20px;
    background: white;
    border: 3px solid var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    flex-shrink: 0;
    transition: all 0.4s ease;
    letter-spacing: -1px;
    -webkit-text-stroke: 2px var(--primary-color);
    -webkit-text-fill-color: transparent;
    text-stroke: 2px var(--primary-color);
    text-fill-color: transparent;
}

.category-item:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    -webkit-text-stroke: 3px var(--primary-color);
    text-stroke: 3px var(--primary-color);
}

.scroll-left {
    animation: scrollLeft 25s linear infinite;
}

.scroll-right {
    animation: scrollRight 30s linear infinite;
}

@keyframes scrollLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@keyframes scrollRight {
    0% {
        transform: translateX(-50%);
    }
    100% {
        transform: translateX(0);
    }
}

/* Menu Gallery Section - Professionnel */
.menu-gallery {
    background: white;
    padding: 120px 0;
}

.menu-gallery-header {
    text-align: center;
    margin-bottom: 80px;
}

.menu-gallery-header h2 {
    font-size: 3.5rem;
    font-weight: 900;
    font-family: 'Playfair Display', serif;
    color: var(--dark-color);
    margin-bottom: 20px;
    text-transform: lowercase;
    letter-spacing: -1px;
}

.menu-gallery-header p {
    font-size: 1.3rem;
    color: var(--text-color);
    opacity: 0.8;
}

.gallery-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.gallery-item {
    position: relative;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    aspect-ratio: 1;
}

.gallery-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
}

.gallery-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
    border-radius: 50%;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
    padding: 40px 20px 20px;
    transform: translateY(100%);
    transition: all 0.4s ease;
    border-radius: 0 0 50% 50%;
}

.gallery-overlay h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 5px;
    text-transform: lowercase;
}

.gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

.gallery-item:hover {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.2);
}

.gallery-item:hover .gallery-image-wrapper img {
    transform: scale(1.2);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

/* Menu PDF Section */
.menu-pdf {
    background: var(--gradient-1);
    text-align: center;
    padding: 120px 0;
    color: white;
}

.menu-pdf-content h2 {
    font-size: 3.5rem;
    font-weight: 900;
    font-family: 'Playfair Display', serif;
    margin-bottom: 20px;
    text-transform: lowercase;
    letter-spacing: -1px;
}

.menu-pdf-content p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.btn-download {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 20px 40px;
    background: white;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-download:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Lieu Section */
.lieu {
    background: white;
    padding: 120px 0;
}

.lieu-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.lieu-info h2 {
    font-size: 3.5rem;
    font-weight: 900;
    font-family: 'Playfair Display', serif;
    color: var(--dark-color);
    margin-bottom: 40px;
    text-transform: lowercase;
    letter-spacing: -1px;
}

.lieu-info p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 25px;
}

.lieu-cta {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

.btn-primary, .btn-secondary {
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: #c4a882;
    color: white;
}

.btn-secondary {
    background: transparent;
    color: #c4a882;
    border: 2px solid #c4a882;
}

.btn-primary:hover, .btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(196, 168, 130, 0.4);
}

.lieu-map {
    height: 500px;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.map-container {
    width: 100%;
    height: 100%;
}

/* Instagram Section */
.instagram {
    background: var(--light-color);
    padding: 120px 0;
}

.instagram-header {
    text-align: center;
    margin-bottom: 80px;
}

.instagram-header h2 {
    font-size: 3.5rem;
    font-weight: 900;
    font-family: 'Playfair Display', serif;
    color: var(--dark-color);
    margin-bottom: 20px;
    text-transform: lowercase;
    letter-spacing: -1px;
}

.instagram-header p {
    font-size: 1.3rem;
    color: var(--text-color);
    opacity: 0.8;
}

.feed-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.feed-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    aspect-ratio: 1;
    cursor: pointer;
}

.feed-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
}

.feed-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.feed-overlay i {
    font-size: 2.5rem;
    color: white;
    transform: scale(0.8);
    transition: all 0.3s ease;
}

.feed-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.feed-item:hover img {
    transform: scale(1.1);
}

.feed-item:hover .feed-overlay {
    opacity: 1;
}

.feed-item:hover .feed-overlay i {
    transform: scale(1);
}

/* FAQ Section */
.faq {
    background: white;
    padding: 120px 0;
}

.faq-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 30px;
    text-align: center;
}

.faq-content h2 {
    font-size: 3.5rem;
    font-weight: 900;
    font-family: 'Playfair Display', serif;
    color: var(--dark-color);
    margin-bottom: 60px;
    text-transform: lowercase;
    letter-spacing: -1px;
}

.faq-items {
    text-align: left;
}

.faq-item {
    background: var(--light-color);
    border-radius: 25px;
    margin-bottom: 25px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.faq-question {
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-color);
    text-transform: lowercase;
    letter-spacing: -0.5px;
}

.faq-question i {
    color: var(--primary-color);
    transition: transform 0.3s ease;
    font-size: 1.2rem;
}

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

.faq-answer p {
    padding: 0 40px 30px;
    color: var(--text-color);
    line-height: 1.7;
    font-size: 1.1rem;
}

.faq-item.active {
    background: white;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

/* Footer */
.footer {
    background: var(--dark-color);
    color: white;
    padding: 80px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 50px;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.footer-logo h3 {
    font-size: 2rem;
    font-weight: 900;
    font-family: 'Playfair Display', serif;
    margin-bottom: 15px;
    text-transform: lowercase;
    letter-spacing: -1px;
}

.footer-logo p {
    opacity: 0.8;
    font-size: 1rem;
    line-height: 1.7;
}

.footer-links h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: lowercase;
    letter-spacing: -0.5px;
}

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

.footer-links ul li {
    margin-bottom: 15px;
}

.footer-links ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
    text-transform: lowercase;
    font-size: 1rem;
}

.footer-links ul li a:hover {
    opacity: 1;
    color: var(--secondary-color);
    transform: translateX(5px);
}

.footer-social h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: lowercase;
    letter-spacing: -0.5px;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    width: 50px;
    height: 50px;
    background: #93c5fd;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-size: 20px;
}

.social-links a:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 10px 30px rgba(147, 197, 253, 0.5);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0.8;
    font-size: 0.9rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 30px;
}

.footer-credit {
    margin-top: 8px;
    font-size: 0.8rem;
    opacity: 0.7;
}

.footer-credit a {
    color: #93c5fd;
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.footer-credit a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* ========================================
   MODAL FICHE PLAT
   ======================================== */
.menu-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.menu-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.menu-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.menu-modal__card {
    position: relative;
    background: #fff;
    border-radius: 24px;
    max-width: 440px;
    width: 90vw;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.25);
    transform: translateY(30px) scale(0.95);
    transition: transform 0.35s ease;
}

.menu-modal.active .menu-modal__card {
    transform: translateY(0) scale(1);
}

.menu-modal__close {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 10;
    width: 36px;
    height: 36px;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    font-size: 1.4rem;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    transition: transform 0.2s ease;
}

.menu-modal__close:hover {
    transform: scale(1.1);
}

.menu-modal__img-wrap {
    width: 100%;
    height: 240px;
    overflow: hidden;
    border-radius: 24px 24px 0 0;
}

.menu-modal__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-modal__body {
    padding: 24px;
}

.menu-modal__header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 12px;
}

.menu-modal__name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: #1a1a1a;
    margin: 0;
}

.menu-modal__price {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: #c4a882;
    white-space: nowrap;
}

.menu-modal__desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 20px;
}

.menu-modal__detail {
    background: #f8f5f0;
    border-radius: 14px;
    padding: 16px;
    margin-bottom: 12px;
}

.menu-modal__detail h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: #c4a882;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.menu-modal__detail h4 i {
    font-size: 0.9rem;
}

.menu-modal__detail p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #444;
    margin: 0;
}

.menu-modal__detail--allergens {
    background: #fff5f5;
}

.menu-modal__detail--allergens h4 {
    color: #d97706;
}

/* Curseur pointer sur les items du menu */
.bb-menu-gallery__item {
    cursor: pointer;
}

/* ========================================
   TRAITEUR - Section demande de devis
   ======================================== */
.bb-traiteur {
    position: relative;
    padding: 100px 60px;
    min-height: 100vh;
    overflow: hidden;
}

.bb-traiteur__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #fff 0%, #efe6d5 40%, #ddd0b8 100%);
}

.bb-traiteur__content {
    position: relative;
    max-width: 1300px;
    margin: 0 auto;
    z-index: 10;
}

.bb-traiteur__header {
    text-align: center;
    margin-bottom: 60px;
}

.bb-traiteur__icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 15px;
}

.bb-traiteur__title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    font-style: italic;
    color: #c4a882;
    margin-bottom: 15px;
}

.bb-traiteur__subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.15rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.bb-traiteur__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.bb-traiteur__selections-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
}

.bb-traiteur__selections-hint {
    font-size: 0.95rem;
    color: #888;
    margin-bottom: 20px;
}

.bb-traiteur__options {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.bb-traiteur__option {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 20px;
    background: white;
    border-radius: 16px;
    cursor: pointer;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(196, 168, 130, 0.1);
    transition: all 0.3s ease;
}

.bb-traiteur__option:hover {
    border-color: #c4a882;
    box-shadow: 0 8px 25px rgba(196, 168, 130, 0.2);
    transform: translateY(-2px);
}

.bb-traiteur__option input[type="checkbox"] {
    display: none;
}

.bb-traiteur__option-check {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 10px;
    border: 2px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    color: transparent;
    font-size: 0.85rem;
}

.bb-traiteur__option input:checked ~ .bb-traiteur__option-check {
    background: linear-gradient(135deg, #93c5fd, #c4a882);
    border-color: #93c5fd;
    color: white;
}

.bb-traiteur__option input:checked ~ .bb-traiteur__option-info strong {
    color: #c4a882;
}

.bb-traiteur__option-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.bb-traiteur__option-info strong {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
    transition: color 0.3s ease;
}

.bb-traiteur__option-info span {
    font-size: 0.8rem;
    color: #999;
}

/* Formulaire traiteur */
.bb-traiteur__form-wrap {
    background: white;
    border-radius: 30px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(196, 168, 130, 0.2);
}

.bb-traiteur__form-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
}

.bb-traiteur__form {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.bb-traiteur__field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.bb-traiteur__field--full {
    grid-column: 1 / -1;
}

.bb-traiteur__field label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: #555;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bb-traiteur__field input,
.bb-traiteur__field textarea {
    padding: 14px 18px;
    border: 2px solid #e8e0d4;
    border-radius: 14px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    color: #333;
    background: #faf8f5;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    outline: none;
    resize: vertical;
}

.bb-traiteur__field input:focus,
.bb-traiteur__field textarea:focus {
    border-color: #c4a882;
    box-shadow: 0 0 0 4px rgba(196, 168, 130, 0.15);
}

.bb-traiteur__selected-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.bb-traiteur__tag {
    display: inline-block;
    padding: 6px 14px;
    background: linear-gradient(135deg, #93c5fd, #c4a882);
    color: white;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.bb-traiteur__submit {
    grid-column: 1 / -1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 40px;
    background: linear-gradient(135deg, #c4a882 0%, #b8976a 100%);
    color: white;
    border: none;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-top: 10px;
}

.bb-traiteur__submit:hover {
    transform: scale(1.03);
    box-shadow: 0 15px 40px rgba(196, 168, 130, 0.4);
}

.bb-traiteur__success {
    text-align: center;
    padding: 40px 20px;
}

.bb-traiteur__success-icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 15px;
}

.bb-traiteur__success h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
}

.bb-traiteur__success p {
    font-size: 1rem;
    color: #666;
}

/* ========================================
   CAFÉS CÉRAMIQUES
   ======================================== */
.bb-ceramique {
    position: relative;
    padding: 100px 60px;
    min-height: 80vh;
    overflow: hidden;
}

.bb-ceramique__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #93c5fd 0%, #7db8fc 30%, #bfdbfe 70%, #eff6ff 100%);
}

.bb-ceramique__content {
    position: relative;
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    z-index: 10;
}

.bb-ceramique__badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 30px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.bb-ceramique__title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: white;
    text-transform: lowercase;
    margin-bottom: 20px;
    line-height: 1.1;
}

.bb-ceramique__desc {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    margin-bottom: 35px;
}

.bb-ceramique__desc strong {
    color: #ffeb3b;
}

.bb-ceramique__cta-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.bb-ceramique__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: white;
    color: #333;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bb-ceramique__cta:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

.bb-ceramique__cta--secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
}

.bb-ceramique__cta--secondary:hover {
    background: rgba(255, 255, 255, 0.35);
}

.bb-ceramique__visual {
    position: relative;
    display: flex;
    gap: 20px;
}

.bb-ceramique__image-wrapper {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    flex: 1;
    transition: transform 0.5s ease;
}

.bb-ceramique__image-wrapper:hover {
    transform: translateY(-8px);
}

.bb-ceramique__image-wrapper--2 {
    margin-top: 60px;
}

.bb-ceramique__photo {
    width: 100%;
    height: 100%;
    min-height: 350px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.bb-ceramique__image-wrapper:hover .bb-ceramique__photo {
    transform: scale(1.05);
}

/* ========================================
   NUMBER CAKES
   ======================================== */
.bb-numbercakes {
    position: relative;
    padding: 100px 60px;
    overflow: hidden;
}

.bb-numbercakes__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #fff 0%, #fdf2f8 30%, #fce7f3 60%, #fff 100%);
}

.bb-numbercakes__content {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    z-index: 10;
}

.bb-numbercakes__header {
    text-align: center;
    margin-bottom: 60px;
}

.bb-numbercakes__icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 15px;
}

.bb-numbercakes__title {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 700;
    font-style: italic;
    color: #c4a882;
    margin-bottom: 15px;
}

.bb-numbercakes__subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    color: #666;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

.bb-numbercakes__subtitle strong {
    color: #c4a882;
}

.bb-numbercakes__gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.bb-numbercakes__card {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    aspect-ratio: 1;
    box-shadow: 0 15px 40px rgba(196, 168, 130, 0.2);
    transition: transform 0.5s ease, box-shadow 0.5s ease;
    cursor: pointer;
}

.bb-numbercakes__card:hover {
    transform: translateY(-10px) rotate(2deg);
    box-shadow: 0 25px 60px rgba(196, 168, 130, 0.35);
}

.bb-numbercakes__card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.bb-numbercakes__card:hover img {
    transform: scale(1.1);
}

.bb-numbercakes__card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 25px 20px 20px;
    background: linear-gradient(to top, rgba(196, 168, 130, 0.9), transparent);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.bb-numbercakes__card:hover .bb-numbercakes__card-overlay {
    transform: translateY(0);
}

.bb-numbercakes__card-overlay span {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
}

.bb-numbercakes__cta-wrap {
    text-align: center;
}

.bb-numbercakes__cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 45px;
    background: linear-gradient(135deg, #c4a882 0%, #b8976a 100%);
    color: white;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.bb-numbercakes__cta:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(196, 168, 130, 0.4);
}

.bb-numbercakes__note {
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    color: #999;
    margin-top: 15px;
}

/* ========================================
   INSTAGRAM FEED DÉFILABLE
   ======================================== */
.bb-instagram__feed-scroll {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-bottom: 40px;
    z-index: 5;
    mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 5%, black 95%, transparent);
}

.bb-instagram__feed-track {
    display: flex;
    gap: 20px;
    width: max-content;
    animation: instaScroll 35s linear infinite;
}

.bb-instagram__feed-track:hover {
    animation-play-state: paused;
}

@keyframes instaScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.bb-instagram__feed-card {
    flex: 0 0 280px;
    width: 280px;
    height: 280px;
    border-radius: 20px;
    overflow: hidden;
    border: 5px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.bb-instagram__feed-card:hover {
    transform: scale(1.08) rotate(2deg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    z-index: 10;
}

.bb-instagram__feed-card a {
    display: block;
    width: 100%;
    height: 100%;
}

.bb-instagram__feed-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.bb-instagram__feed-card:hover img {
    transform: scale(1.1);
}

/* ========================================
   RESPONSIVE MOBILE — Inspiré Bon Bouquet Café
   ======================================== */
@media (max-width: 768px) {

    /* ---- HEADER MOBILE ---- */
    /* Logo caché sur mobile, seulement les 4 boutons nav */
    .bb-header {
        padding: 10px 0;
    }

    .bb-header__container {
        flex-direction: row;
        justify-content: center;
        padding: 0 15px;
        gap: 0;
    }

    .bb-logo {
        display: none;
    }

    .bb-nav {
        gap: 10px;
        flex-wrap: nowrap;
    }

    .bb-nav__btn {
        width: 78px;
        height: 78px;
    }

    .bb-nav__icon-img {
        width: 28px;
        height: 28px;
    }

    .bb-nav__rotating-text {
        font-size: 5.5px;
        letter-spacing: 2.5px;
    }

    /* ---- HERO MOBILE ---- */
    .bb-hero {
        height: 200vh;
    }

    .bb-hero__content {
        bottom: 80px;
        left: 20px;
        right: 20px;
        gap: 12px;
    }

    .bb-hero__line1,
    .bb-hero__line2 {
        font-size: 2.4rem;
    }

    .bb-hero__line2 {
        font-size: 2rem;
    }

    .bb-hero__cta-bottom {
        padding: 10px 28px;
        font-size: 0.85rem;
    }

    .bb-hero__pastille {
        gap: 12px;
    }

    .bb-hero__pastille-img {
        width: 100px;
        height: 100px;
        padding: 16px;
    }

    .bb-hero__pastille-text {
        font-size: 1.3rem;
        letter-spacing: 2px;
    }

    /* ---- CONCEPT MOBILE ---- */
    .bb-concept {
        padding: 60px 20px;
        min-height: auto;
    }

    .bb-concept__content {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 0;
    }

    .bb-concept__text {
        order: 1;
    }

    .bb-concept__image {
        order: 2;
    }

    .bb-concept__title {
        font-size: 1.8rem;
    }

    .bb-concept__text h2 {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }

    .bb-concept__text h3 {
        font-size: 1.4rem;
    }

    .bb-concept__text p {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .bb-concept__image-wrapper {
        border-radius: 20px;
    }

    .bb-concept__photo {
        min-height: 280px;
        border-radius: 20px;
    }

    .bb-concept__bg::before {
        width: 70%;
        height: 60%;
        top: -5%;
        left: -20%;
    }

    .bb-concept__bg::after {
        width: 60%;
        height: 40%;
        bottom: -10%;
    }

    .bb-concept__blob--1 {
        width: 50%;
        height: 35%;
    }

    .bb-concept__header {
        margin-bottom: 30px;
    }

    .bb-concept__icon {
        width: 40px;
        height: 40px;
    }

    /* ---- MENU GALLERY MOBILE ---- */
    /* On garde les formes organiques (galets) comme sur desktop */
    .bb-menu-gallery {
        padding: 60px 12px;
        min-height: auto;
    }

    .bb-menu-gallery__title h2 {
        font-size: 2.2rem;
        letter-spacing: 0.12em;
    }

    .bb-menu-gallery__grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: auto;
        gap: 10px;
        min-height: auto;
    }

    /* Reset grid-area mais garder l'animation scroll */
    .bb-menu-gallery__item--1,
    .bb-menu-gallery__item--2,
    .bb-menu-gallery__item--3,
    .bb-menu-gallery__item--4,
    .bb-menu-gallery__item--5,
    .bb-menu-gallery__item--6,
    .bb-menu-gallery__item--7,
    .bb-menu-gallery__item--8,
    .bb-menu-gallery__item--9,
    .bb-menu-gallery__item--10,
    .bb-menu-gallery__item--11,
    .bb-menu-gallery__item--12 {
        grid-area: auto;
    }

    .bb-menu-gallery__item {
        height: 160px;
    }

    /* Garder les formes organiques galets sur mobile */
    .bb-menu-gallery__item:nth-child(1) { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; }
    .bb-menu-gallery__item:nth-child(2) { border-radius: 70% 30% 30% 70% / 60% 40% 60% 40%; }
    .bb-menu-gallery__item:nth-child(3) { border-radius: 50% 50% 30% 70% / 40% 60% 40% 60%; }
    .bb-menu-gallery__item:nth-child(4) { border-radius: 40% 60% 60% 40% / 50% 50% 50% 50%; }
    .bb-menu-gallery__item:nth-child(5) { border-radius: 60% 40% 50% 50% / 40% 60% 40% 60%; }
    .bb-menu-gallery__item:nth-child(6) { border-radius: 30% 70% 60% 40% / 60% 30% 70% 40%; }
    .bb-menu-gallery__item:nth-child(7) { border-radius: 70% 30% 40% 60% / 30% 70% 30% 70%; }
    .bb-menu-gallery__item:nth-child(8) { border-radius: 50% 50% 70% 30% / 60% 40% 60% 40%; }
    .bb-menu-gallery__item:nth-child(9) { border-radius: 40% 60% 30% 70% / 50% 50% 50% 50%; }
    .bb-menu-gallery__item:nth-child(10) { border-radius: 60% 40% 60% 40% / 40% 60% 40% 60%; }
    .bb-menu-gallery__item:nth-child(11) { border-radius: 30% 70% 50% 50% / 60% 30% 70% 40%; }
    .bb-menu-gallery__item:nth-child(12) { border-radius: 70% 30% 70% 30% / 30% 70% 30% 70%; }

    .bb-menu-gallery__overlay span:first-child {
        font-size: 0.85rem;
    }

    .bb-menu-gallery__overlay span:last-child {
        font-size: 1rem;
    }

    .bb-menu-gallery__flower {
        width: 180px;
        height: 180px;
    }

    .bb-menu-gallery__flower--2 {
        width: 160px;
        height: 160px;
    }

    /* ---- LIEU MOBILE ---- */
    section:not(.bb-hero):not(.bb-concept):not(.bb-menu-gallery):not(.bb-instagram) {
        padding: 60px 20px;
    }

    .lieu-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .lieu-frame {
        padding: 0 24px;
    }

    .lieu-map {
        height: 220px;
        border-radius: 15px;
    }

    .lieu-info h2 {
        font-size: 2rem;
    }

    .lieu-info p {
        font-size: 0.95rem;
    }

    .lieu-cta {
        flex-direction: column;
        gap: 10px;
    }

    .lieu-cta a {
        text-align: center;
    }

    /* ---- FAQ MOBILE ---- */
    .faq .container {
        padding: 0 4px;
    }

    .faq-question {
        padding: 16px;
    }

    .faq-question h3 {
        font-size: 0.95rem;
    }

    .faq-answer p {
        padding: 0 16px 16px;
        font-size: 0.88rem;
    }

    /* ---- TRAITEUR MOBILE ---- */
    .bb-traiteur {
        padding: 50px 24px;
        min-height: auto;
    }

    .bb-traiteur__title {
        font-size: 2rem;
    }

    .bb-traiteur__subtitle {
        font-size: 0.95rem;
        padding: 0 8px;
    }

    .bb-traiteur__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .bb-traiteur__option {
        padding: 12px 14px;
        gap: 10px;
        border-radius: 14px;
    }

    .bb-traiteur__option-check {
        width: 26px;
        height: 26px;
        min-width: 26px;
    }

    .bb-traiteur__option-info strong {
        font-size: 0.82rem;
    }

    .bb-traiteur__option-info span {
        font-size: 0.72rem;
    }

    .bb-traiteur__form-wrap {
        padding: 22px 18px;
        border-radius: 18px;
    }

    .bb-traiteur__form {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .bb-traiteur__field input,
    .bb-traiteur__field textarea {
        padding: 12px 14px;
        font-size: 0.9rem;
    }

    .bb-traiteur__submit {
        padding: 14px 28px;
        font-size: 0.9rem;
    }

    /* ---- CÉRAMIQUE MOBILE ---- */
    .bb-ceramique {
        padding: 50px 24px;
        min-height: auto;
    }

    .bb-ceramique__content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .bb-ceramique__title {
        font-size: 2rem;
    }

    .bb-ceramique__desc {
        font-size: 0.95rem;
    }

    .bb-ceramique__cta-group {
        flex-direction: column;
    }

    .bb-ceramique__cta {
        justify-content: center;
        padding: 14px 25px;
        font-size: 0.9rem;
    }

    .bb-ceramique__visual {
        flex-direction: row;
    }

    .bb-ceramique__image-wrapper--2 {
        margin-top: 30px;
    }

    .bb-ceramique__photo {
        min-height: 200px;
    }

    /* ---- NUMBER CAKES MOBILE ---- */
    .bb-numbercakes {
        padding: 50px 24px;
    }

    .bb-numbercakes__title {
        font-size: 2.2rem;
    }

    .bb-numbercakes__subtitle {
        font-size: 0.95rem;
    }

    .bb-numbercakes__gallery {
        grid-template-columns: 1fr 1fr;
        gap: 15px;
    }

    .bb-numbercakes__card:last-child {
        grid-column: 1 / -1;
        max-width: 60%;
        margin: 0 auto;
    }

    .bb-numbercakes__cta {
        padding: 15px 30px;
        font-size: 0.95rem;
    }

    .bb-numbercakes__note {
        font-size: 0.8rem;
    }

    /* ---- INSTAGRAM FEED MOBILE ---- */
    .bb-instagram__feed-card {
        flex: 0 0 220px;
        width: 220px;
        height: 220px;
        border-radius: 15px;
        border-width: 4px;
    }

    /* ---- INSTAGRAM MOBILE — Slider horizontal ---- */
    .bb-instagram {
        padding: 50px 0;
        min-height: auto;
    }

    .bb-instagram__logo {
        padding: 0 20px;
    }

    .bb-instagram__logo-svg {
        width: 50px;
        height: 50px;
    }

    .bb-instagram__title {
        font-size: 2rem;
    }

    .bb-instagram__photos {
        flex-direction: row;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 15px;
        padding: 20px 20px 10px;
        scrollbar-width: none;
    }

    .bb-instagram__photos::-webkit-scrollbar {
        display: none;
    }

    .bb-instagram__card {
        flex: 0 0 70vw;
        width: 70vw !important;
        height: 95vw !important;
        transform: rotate(0deg) !important;
        border-width: 5px;
        border-radius: 15px;
        scroll-snap-align: center;
    }

    .bb-instagram__card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .bb-instagram__profile {
        margin-top: 15px;
        padding: 0 20px;
    }

    .bb-instagram__profile-circle {
        width: 55px;
        height: 55px;
    }

    .bb-instagram__profile-img {
        width: 42px;
        height: 42px;
    }

    .bb-instagram__handle {
        font-size: 1rem;
    }

    .bb-instagram__follow {
        padding: 10px 30px;
        font-size: 0.8rem;
    }

    /* ---- RÉSERVATION MOBILE ---- */
    .bb-contact {
        padding: 50px 24px;
        min-height: auto;
    }

    .bb-contact__title {
        font-size: 2.2rem;
        margin-bottom: 10px;
    }

    .bb-reservation__subtitle {
        font-size: 1rem;
        margin-bottom: 35px;
    }

    .bb-reservation__card {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .bb-contact__item {
        padding: 18px;
        border-radius: 15px;
        gap: 15px;
    }

    .bb-contact__icon {
        font-size: 1.5rem;
    }

    .bb-contact__item h4 {
        font-size: 1rem;
    }

    .bb-contact__item p {
        font-size: 0.85rem;
    }

    .bb-reservation__cta {
        padding: 30px 20px;
        border-radius: 18px;
    }

    .bb-reservation__phone-icon {
        width: 65px;
        height: 65px;
        font-size: 1.6rem;
        margin-bottom: 20px;
    }

    .bb-reservation__phone-number {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .bb-reservation__call-btn {
        padding: 15px 35px;
        font-size: 1rem;
        gap: 10px;
    }

    .bb-reservation__note {
        font-size: 0.8rem;
        margin-top: 15px;
    }

    /* ---- FOOTER MOBILE ---- */
    .footer {
        padding: 40px 24px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .footer-logo h3 {
        font-size: 1.5rem;
    }

    .footer-logo p {
        font-size: 0.85rem;
    }

    .social-links {
        justify-content: center;
    }

    .social-links a {
        width: 42px;
        height: 42px;
        font-size: 16px;
    }

    .footer-bottom {
        padding: 20px 10px;
        font-size: 0.8rem;
    }

    .footer-credit {
        font-size: 0.75rem;
    }

    /* ---- MODAL MOBILE ---- */
    .menu-modal__card {
        width: 94vw;
        max-height: 90vh;
        border-radius: 20px;
    }

    .menu-modal__img-wrap {
        height: 200px;
        border-radius: 20px 20px 0 0;
    }

    .menu-modal__body {
        padding: 20px;
    }

    .menu-modal__name {
        font-size: 1.3rem;
    }

    .menu-modal__price {
        font-size: 1.2rem;
    }

    .menu-modal__desc {
        font-size: 0.9rem;
    }

    .menu-modal__detail {
        padding: 14px;
    }

    .menu-modal__detail h4 {
        font-size: 0.8rem;
    }

    .menu-modal__detail p {
        font-size: 0.85rem;
    }

    /* ---- FLUIDITÉ MOBILE ---- */
    body {
        overflow-x: hidden;
        -webkit-tap-highlight-color: transparent;
    }

    * {
        -webkit-tap-highlight-color: transparent;
    }

    /* ---- ANCIENNES CLASSES COMPAT ---- */
    .header-container { flex-direction: column; gap: 25px; }
    .nav-pastilles { flex-wrap: wrap; justify-content: center; }
    .hero { margin-top: 140px; }
    .concept-content { grid-template-columns: 1fr; gap: 60px; }
    .concept-features { grid-template-columns: 1fr; gap: 40px; }
    .gallery-grid { grid-template-columns: 1fr; gap: 30px; }
    .instagram-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .category-item { font-size: 2rem; padding: 15px 30px; }
    .carousel-container { width: 300px; height: 200px; }
    .carousel-item { min-width: 300px; height: 200px; }
}

/* ========================================
   RESPONSIVE TRÈS PETIT ÉCRAN (< 400px)
   ======================================== */
@media (max-width: 400px) {
    .bb-nav__btn {
        width: 65px;
        height: 65px;
    }

    .bb-nav__icon-img {
        width: 24px;
        height: 24px;
    }

    .bb-nav__rotating-text {
        font-size: 4.5px;
    }

    .bb-hero__line1,
    .bb-hero__line2 {
        font-size: 2rem;
    }

    .bb-hero__line2 {
        font-size: 1.6rem;
    }

    .bb-hero__pastille-img {
        width: 85px;
        height: 85px;
        padding: 14px;
    }

    .bb-hero__pastille-text {
        font-size: 1.1rem;
    }

    .bb-concept__title,
    .bb-concept__text h2 {
        font-size: 1.5rem;
    }

    .bb-menu-gallery__grid {
        gap: 8px;
    }

    .bb-menu-gallery__item {
        height: 140px;
    }

    .bb-menu-gallery__title h2 {
        font-size: 1.8rem;
    }

    .bb-instagram__card {
        flex: 0 0 80vw;
        width: 80vw !important;
        height: 110vw !important;
    }

    .bb-contact__title {
        font-size: 1.8rem;
    }

    .bb-reservation__call-btn {
        padding: 14px 28px;
        font-size: 0.9rem;
    }
}

/* ========================================
   SECTION BRUNCH DU SAMEDI
   ======================================== */
.bb-brunch {
    position: relative;
    padding: 100px 20px;
    text-align: center;
    overflow: hidden;
}

.bb-brunch__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #fdf6ee 0%, #fff 50%, #fdf6ee 100%);
    z-index: 0;
}

.bb-brunch__content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
}

.bb-brunch__badge {
    display: inline-block;
    background: linear-gradient(135deg, #c9a96e, #e6c88a);
    color: #fff;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.bb-brunch__title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 900;
    color: #2C3E50;
    margin-bottom: 8px;
    line-height: 1.1;
}

.bb-brunch__subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    color: #c9a96e;
    font-weight: 500;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.bb-brunch__desc {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.bb-brunch__formule {
    background: #fff;
    border: 2px solid #e6c88a;
    border-radius: 20px;
    padding: 24px 30px;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: 0 8px 30px rgba(201, 169, 110, 0.12);
}

.bb-brunch__formule-label {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #2C3E50;
}

.bb-brunch__formule-detail {
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
}

.bb-brunch__formule-price {
    font-family: 'Syne', sans-serif;
    font-size: 2rem;
    font-weight: 800;
    color: #c9a96e;
}

.bb-brunch__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #c9a96e, #b8944f);
    color: #fff;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(201, 169, 110, 0.3);
}

.bb-brunch__cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(201, 169, 110, 0.4);
    background: linear-gradient(135deg, #b8944f, #a07d3a);
}

/* ========================================
   SECTION CARTE - Version Fun
   ======================================== */
.bb-carte {
    position: relative;
    padding: 100px 20px;
    overflow: hidden;
}

.bb-carte__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #fff 0%, #faf5ed 30%, #f5ede0 70%, #fff 100%);
    z-index: 0;
}

.bb-carte__content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.bb-carte__title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 900;
    color: #2C3E50;
    text-align: center;
    margin-bottom: 6px;
}

.bb-carte__subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #c9a96e;
    text-align: center;
    font-style: italic;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

/* Catégories rondes avec emoji */
.bb-carte__categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
}

.bb-carte__cat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    background: #fff;
    border: 2px solid #ece4d6;
    border-radius: 20px;
    padding: 14px 16px 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 80px;
}

.bb-carte__cat:hover {
    border-color: #c9a96e;
    transform: translateY(-4px);
    box-shadow: 0 8px 20px rgba(201, 169, 110, 0.15);
}

.bb-carte__cat--active {
    background: linear-gradient(145deg, #c9a96e, #e6c88a);
    border-color: transparent;
    box-shadow: 0 8px 25px rgba(201, 169, 110, 0.35);
    transform: translateY(-4px);
}

.bb-carte__cat-icon {
    font-size: 1.8rem;
    line-height: 1;
}

.bb-carte__cat-label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.7rem;
    font-weight: 600;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bb-carte__cat--active .bb-carte__cat-label {
    color: #fff;
}

/* Panels */
.bb-carte__panels {
    position: relative;
}

.bb-carte__panel {
    display: none;
    animation: carteFadeIn 0.45s ease;
    text-align: center;
    padding: 40px 30px;
    border-radius: 30px;
    position: relative;
}

.bb-carte__panel--active {
    display: block;
}

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

/* Couleurs par catégorie */
.bb-carte__panel--sale { background: linear-gradient(160deg, #fef9f0, #fff8ee); }
.bb-carte__panel--sucre { background: linear-gradient(160deg, #fdf0f4, #fff5f8); }
.bb-carte__panel--chaudes { background: linear-gradient(160deg, #f5ede0, #faf5ed); }
.bb-carte__panel--gourmandes { background: linear-gradient(160deg, #f0ece6, #f8f4ee); }
.bb-carte__panel--frappes { background: linear-gradient(160deg, #e8f4f8, #f0f8fc); }
.bb-carte__panel--fraiches { background: linear-gradient(160deg, #e8f8f0, #f0fcf5); }
.bb-carte__panel--jus { background: linear-gradient(160deg, #fef5e8, #fff9f0); }
.bb-carte__panel--toppings { background: linear-gradient(160deg, #f8f0e8, #fcf5ed); }

.bb-carte__panel-icon {
    font-size: 3rem;
    margin-bottom: 10px;
    animation: panelIconBounce 0.6s ease;
}

@keyframes panelIconBounce {
    0% { transform: scale(0); }
    60% { transform: scale(1.3); }
    100% { transform: scale(1); }
}

.bb-carte__panel-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 8px;
}

.bb-carte__panel-badge {
    display: inline-block;
    background: rgba(201, 169, 110, 0.15);
    color: #b8944f;
    padding: 5px 16px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    margin-bottom: 24px;
}

/* Grille de cards */
.bb-carte__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-top: 10px;
}

.bb-carte__grid--compact {
    grid-template-columns: repeat(3, 1fr);
}

/* Card individuelle */
.bb-carte__card {
    background: #fff;
    border-radius: 18px;
    padding: 22px 16px 16px;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    text-align: left;
}

.bb-carte__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.bb-carte__card-price {
    position: absolute;
    top: -8px;
    right: 12px;
    background: linear-gradient(135deg, #c9a96e, #e6c88a);
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-family: 'Syne', sans-serif;
    font-size: 0.82rem;
    font-weight: 700;
    box-shadow: 0 3px 10px rgba(201, 169, 110, 0.3);
}

.bb-carte__card h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #2C3E50;
    margin-bottom: 4px;
    padding-right: 50px;
}

.bb-carte__card p {
    font-size: 0.78rem;
    color: #999;
    line-height: 1.4;
    font-style: italic;
}

/* Card mini (pour boissons sans description) */
.bb-carte__card--mini {
    padding: 20px 14px 14px;
    text-align: center;
}

.bb-carte__card--mini .bb-carte__card-price {
    top: -8px;
    right: 50%;
    transform: translateX(50%);
}

.bb-carte__card--mini h4 {
    padding-right: 0;
    font-size: 0.85rem;
    margin-top: 6px;
}

.bb-carte__note {
    margin-top: 20px;
    font-size: 0.8rem;
    color: #aaa;
    font-style: italic;
    text-align: center;
}

/* Responsive carte fun */
@media (max-width: 768px) {
    .bb-brunch { padding: 60px 24px; }
    .bb-brunch__title { font-size: 2.2rem; }
    .bb-brunch__subtitle { font-size: 1rem; }
    .bb-brunch__desc { font-size: 0.92rem; padding: 0 4px; }
    .bb-brunch__formule { padding: 16px 18px; margin: 0 4px; }
    .bb-brunch__cta { padding: 14px 30px; font-size: 0.9rem; }

    .bb-carte { padding: 60px 20px; }
    .bb-carte__title { font-size: 2.2rem; }

    /* Catégories : scroll horizontal sur 1 ligne */
    .bb-carte__categories {
        display: flex;
        flex-wrap: nowrap !important;
        overflow-x: auto !important;
        justify-content: flex-start;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        gap: 10px;
        padding: 4px 4px 12px;
        margin: 0 -4px 30px;
        scrollbar-width: none;
    }
    .bb-carte__categories::-webkit-scrollbar { display: none; }

    .bb-carte__cat {
        min-width: 70px;
        flex: 0 0 auto;
        padding: 10px 12px 8px;
        scroll-snap-align: start;
    }

    .bb-carte__cat-icon { font-size: 1.4rem; }
    .bb-carte__cat-label { font-size: 0.6rem; white-space: nowrap; }

    .bb-carte__panel { padding: 28px 16px; margin: 0 2px; }
    .bb-carte__panel-title { font-size: 1.5rem; }

    .bb-carte__grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
    .bb-carte__grid--compact { grid-template-columns: repeat(2, 1fr); }

    .bb-carte__card { padding: 18px 12px 12px; }
    .bb-carte__card h4 { font-size: 0.85rem; }
}

@media (max-width: 480px) {
    .bb-brunch { padding: 50px 20px; }
    .bb-brunch__title { font-size: 1.9rem; }
    .bb-brunch__formule { padding: 14px 14px; margin: 0; }
    .bb-brunch__formule-detail { font-size: 0.8rem; }
    .bb-brunch__cta { padding: 13px 26px; font-size: 0.85rem; }

    .bb-carte { padding: 50px 16px; }
    .bb-carte__title { font-size: 1.8rem; }

    .bb-carte__categories {
        gap: 8px;
        padding: 4px 2px 10px;
        margin: 0 -2px 24px;
    }
    .bb-carte__cat { min-width: 64px; padding: 8px 10px 6px; border-radius: 14px; }
    .bb-carte__cat-icon { font-size: 1.25rem; }
    .bb-carte__cat-label { font-size: 0.55rem; }

    .bb-carte__panel { padding: 22px 12px; border-radius: 20px; }
    .bb-carte__panel-icon { font-size: 2.2rem; }
    .bb-carte__panel-title { font-size: 1.3rem; }

    .bb-carte__grid { grid-template-columns: 1fr 1fr; gap: 8px; }
    .bb-carte__grid--compact { grid-template-columns: 1fr 1fr; }

    .bb-carte__card { border-radius: 14px; padding: 16px 10px 10px; }
    .bb-carte__card h4 { font-size: 0.78rem; padding-right: 40px; }
    .bb-carte__card p { font-size: 0.7rem; }
    .bb-carte__card-price { font-size: 0.72rem; padding: 3px 10px; }
}
