/* ========================================
   VARIABLES & RESET
======================================== */
:root {
    --primary-red: #C8102E;
    --primary-green: #228B22;
    --cream: #F5F1E8;
    --dark-brown: #2C1810;
    --gold: #D4AF37;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --white: #ffffff;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.15);
    --shadow-lg: 0 8px 32px rgba(0,0,0,0.2);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    max-width: 100vw;
    width: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    max-width: 100vw;
    width: 100%;
    background-color: var(--cream);
    position: relative;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    overflow-x: hidden;
    overflow-y: visible;
}

/* ========================================
   TYPOGRAPHY
======================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

.section-title {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary-red);
    position: relative;
}

.title-underline {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-green), var(--primary-red));
    margin: 0 auto 2rem;
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

/* ========================================
   BUTTONS
======================================== */
.btn-primary, .btn-secondary, .btn-hero {
    display: inline-block;
    padding: 15px 40px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-red), #a00d24);
    color: var(--white);
    box-shadow: var(--shadow-md);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #a00d24, var(--primary-red));
    transition: left 0.3s;
    z-index: -1;
}

.btn-primary:hover::before {
    left: 0;
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--primary-red);
    transform: translateY(-2px);
}

/* ========================================
   NAVIGATION
======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
}

.nav-logo img {
    height: 90px;
    transition: var(--transition);
}

.nav-logo img:hover {
    transform: scale(1.05);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-red);
    transition: width 0.3s;
}

.nav-link:hover {
    color: var(--primary-red);
}

.nav-link:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: var(--transition);
    border-radius: 3px;
}

/* ========================================
   HERO SECTION
======================================== */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(200, 16, 46, 0.3), rgba(44, 24, 16, 0.5));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    padding: 0 20px;
}

.hero-title {
    font-size: 6rem;
    font-weight: 900;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.hero-subtitle {
    font-size: 2.5rem;
    font-weight: 400;
    letter-spacing: 0.3em;
    margin-bottom: 1rem;
    text-transform: uppercase;
}

.hero-tagline {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 0.05em;
}

/* Typing effect for tagline */
.typing {
    --typing-width: 44ch;
    width: 0;
    white-space: nowrap;
    overflow: hidden;
    border-right: 2px solid rgba(255,255,255,0.85);
    animation:
        typing 3s steps(44, end) 0.5s forwards,
        blink 0.8s step-end infinite 3.5s;
}

@keyframes typing {
    from { width: 0; }
    to { width: var(--typing-width); }
}

@keyframes blink {
    50% { border-color: transparent; }
}

.hero-badges {
    display: flex;
    gap: 3rem;
    justify-content: center;
    margin-bottom: 3rem;
}

/* Pop-in + stagger for badges */
.hero-badges .badge i {
    animation: popIn 700ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
.hero-badges .badge span {
    animation: fadeUp 700ms ease-out both;
}
.hero-badges .badge:nth-child(1) i { animation-delay: 0.9s; }
.hero-badges .badge:nth-child(2) i { animation-delay: 1.1s; }
.hero-badges .badge:nth-child(3) i { animation-delay: 1.3s; }
.hero-badges .badge:nth-child(1) span { animation-delay: 1.0s; }
.hero-badges .badge:nth-child(2) span { animation-delay: 1.2s; }
.hero-badges .badge:nth-child(3) span { animation-delay: 1.4s; }

@keyframes popIn {
    0% { opacity: 0; transform: translateY(12px) scale(0.8); }
    60% { opacity: 1; transform: translateY(-4px) scale(1.08); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-badges .badge:hover i {
    transform: translateY(-2px) scale(1.06);
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.25));
    transition: transform 200ms ease, filter 200ms ease;
}

.badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.badge i {
    font-size: 2.5rem;
    color: var(--gold);
}

.badge span {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1.25rem;
}

.scroll-indicator {
    display: inline-block;
    margin: 0 auto 0.75rem;
    animation: bounce 2s infinite;
    pointer-events: none;
}

.scroll-indicator i {
    font-size: 2rem;
    color: var(--white);
}

/* Animations */
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-14px);
    }
    60% {
        transform: translateY(-7px);
    }
}

.fade-in {
    animation: fadeIn 1s ease-out;
}

.fade-in-delay {
    animation: fadeIn 1s ease-out 0.3s backwards;
}

.fade-in-delay-2 {
    animation: fadeIn 1s ease-out 0.6s backwards;
}

.fade-in-delay-3 {
    animation: fadeIn 1s ease-out 0.9s backwards;
}

.fade-in-delay-4 {
    animation: fadeIn 1s ease-out 1.2s backwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ========================================
   ABOUT SECTION
======================================== */
.about {
    padding: 100px 0;
    background: var(--white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    padding: 2rem;
}

.about-intro {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--primary-red);
    margin-bottom: 1.5rem;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

.about-quote {
    font-size: 1.2rem;
    font-style: italic;
    text-align: center;
    padding: 2rem;
    background: var(--cream);
    border-left: 4px solid var(--primary-red);
    margin: 2rem 0;
    position: relative;
}

.about-quote i {
    color: var(--primary-red);
    font-size: 1.5rem;
}

.about-awards {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.award-badge {
    height: 80px;
    filter: grayscale(30%);
    transition: var(--transition);
}

.award-badge:hover {
    filter: grayscale(0%);
    transform: scale(1.1);
}

.about-image {
    position: relative;
}

.menu-image img, .menu-image video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.image-frame img {
    width: 100%;
    height: 540px;
    object-fit: cover;
    object-position: center 5%; /* Remonte davantage le cadrage pour voir le visage */
    transition: var(--transition);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(200, 16, 46, 0.9), transparent);
    padding: 2rem;
    transform: translateY(100%);
    transition: var(--transition);
}

.image-frame:hover .image-overlay {
    transform: translateY(0);
}

.overlay-content {
    text-align: center;
    color: var(--white);
}

.overlay-content i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--gold);
}

.overlay-content p {
    font-size: 1.2rem;
    font-weight: 600;
}

/* ========================================
   PIZZAS SECTION
======================================== */
.pizzas {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
    overflow: visible;
}

.pizzas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

/* Carrousel pour pizzas (mobile) */
.pizzas-carousel {
    display: none;
    position: relative;
    width: 100%;
    max-width: 100vw;
    overflow: hidden;
    padding: 0;
}

.pizzas-carousel-track {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    /* padding pour centrer la première carte */
    padding: 1rem calc((100vw - min(360px, 80vw)) / 2);
    scroll-padding-left: calc((100vw - min(360px, 80vw)) / 2);
    scroll-padding-right: calc((100vw - min(360px, 80vw)) / 2);
    width: 100%;
}

.pizzas-carousel-track::-webkit-scrollbar {
    display: none;
}

.pizzas-carousel .pizza-card {
    flex: 0 0 80vw;
    max-width: 360px;
    scroll-snap-align: center;
    scroll-snap-stop: always;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--text-light);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.carousel-dot.active {
    background: var(--primary-red);
    width: 30px;
    border-radius: 5px;
}

.carousel-nav {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary-red);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    z-index: 20;
}

.carousel-nav:hover {
    background: var(--primary-red);
    color: var(--white);
    transform: translateY(-50%) scale(1.1);
}

.carousel-nav.prev {
    left: 5px;
}

.carousel-nav.next {
    right: 5px;
}

.pizza-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    cursor: pointer;
}

.pizza-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.pizza-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.pizza-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.pizza-card:hover .pizza-image img {
    transform: scale(1.1);
}

.pizza-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gold);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: var(--shadow-sm);
}

.pizza-content {
    padding: 2rem;
}

.pizza-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.pizza-name {
    font-size: 1.8rem;
    color: var(--primary-red);
    font-weight: 700;
}

.pizza-price {
    font-size: 1.5rem;
    color: var(--primary-green);
    font-weight: 700;
}

.pizza-description {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.btn-order {
    display: block;
    width: 100%;
    padding: 15px;
    background: var(--primary-red);
    color: var(--white);
    text-align: center;
    text-decoration: none;
    border-radius: 10px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-order:hover {
    background: var(--primary-green);
    transform: translateY(-2px);
}

/* Memo save button variant inside summary */
.btn-memo-save {
    background: var(--primary-green);
}
.btn-memo-save:hover {
    background: var(--primary-red);
}

/* ========================================
   CONFIGURATOR SECTION
======================================== */
.configurator {
    padding: 100px 0;
    background: var(--white);
}

.configurator-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.config-step {
    display: none;
    animation: fadeIn 0.5s;
}

.config-step.active {
    display: block;
}

.step-title {
    background: linear-gradient(135deg, var(--primary-red), var(--primary-green));
    color: var(--white);
    padding: 1.5rem 2rem;
    border-radius: 15px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.5rem;
}

.step-number {
    background: var(--white);
    color: var(--primary-red);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.bases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.base-option {
    background: var(--cream);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 3px solid transparent;
    position: relative;
}

.base-option:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.base-option.selected {
    border-color: var(--primary-red);
    background: var(--white);
}

.base-option.selected::after {
    content: '✓';
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--primary-red);
    color: var(--white);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.base-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.base-price {
    font-size: 1.5rem;
    color: var(--primary-green);
    font-weight: 700;
}

.ingredients-categories {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.category-btn {
    padding: 10px 20px;
    border: 2px solid var(--primary-red);
    background: transparent;
    color: var(--primary-red);
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
}

.category-btn:hover, .category-btn.active {
    background: var(--primary-red);
    color: var(--white);
}

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1rem;
}

.ingredient-option {
    background: var(--cream);
    padding: 1.5rem 1rem;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
}

.ingredient-option:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.ingredient-option.selected {
    border-color: var(--primary-green);
    background: var(--white);
}

.ingredient-option.selected::after {
    content: '✓';
    position: absolute;
    top: 5px;
    right: 5px;
    background: var(--primary-green);
    color: var(--white);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    font-weight: 700;
}

.ingredient-name {
    font-weight: 500;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.ingredients-grid.premium .ingredient-option {
    background: linear-gradient(135deg, #fff9e6, #ffe6cc);
    border: 2px solid var(--gold);
}

.ingredients-grid.premium .ingredient-option.selected {
    background: var(--white);
    border-color: var(--gold);
}

.ingredients-grid.premium .ingredient-option.selected::after {
    background: var(--gold);
}

/* Order Summary */
.order-summary {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    position: sticky;
    top: 120px;
    height: fit-content;
}

.summary-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--cream);
}

.summary-header h3 {
    font-size: 1.8rem;
    color: var(--primary-red);
}

.btn-reset {
    background: transparent;
    border: 1px solid var(--text-light);
    color: var(--text-light);
    padding: 8px 16px;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
}

.btn-reset:hover {
    background: var(--primary-red);
    color: var(--white);
    border-color: var(--primary-red);
}

.summary-item {
    margin-bottom: 1.5rem;
}

.summary-label {
    font-weight: 600;
    color: var(--text-dark);
    display: block;
    margin-bottom: 0.5rem;
}

.summary-value {
    color: var(--text-light);
    display: block;
    margin-bottom: 0.3rem;
}

.summary-price {
    color: var(--primary-green);
    font-weight: 600;
}

.ingredients-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.ingredient-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem;
    background: var(--cream);
    border-radius: 5px;
    font-size: 0.9rem;
}

.summary-divider {
    height: 2px;
    background: var(--cream);
    margin: 2rem 0;
}

.summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.total-label {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.total-price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-red);
}

/* ========================================
   MENU SECTION
======================================== */
.menu {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
}

.menu-category {
    margin-bottom: 4rem;
}

.category-title {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 2rem;
    text-align: center;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* Desserts: layout spécial pour vidéo verticale Instagram */
.dessert-special-card {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    max-width: 1000px;
    margin: 0 auto;
    transition: var(--transition);
}

.dessert-special-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.dessert-media {
    width: 100%;
    height: 400px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--cream) 0%, #f5f5f5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.dessert-media video {
    height: 100%;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.dessert-info {
    padding: 2.5rem;
}

.dessert-name {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.dessert-desc {
    margin-bottom: 2rem;
}

.dessert-base,
.dessert-supplements {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    align-items: flex-start;
}

.dessert-base i {
    color: var(--primary-red);
    font-size: 1.3rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.dessert-supplements i {
    color: var(--primary-green);
    font-size: 1.2rem;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.dessert-base span {
    font-size: 1.2rem;
    line-height: 1.6;
    color: var(--text-dark);
    font-weight: 500;
}

.dessert-supplements span {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-light);
}

.dessert-price {
    font-size: 2.2rem;
    color: var(--primary-green);
    font-weight: 700;
}

/* Desktop: layout horizontal */
@media (min-width: 768px) {
    .dessert-special-card {
        display: flex;
        align-items: stretch;
    }
    
    .dessert-media {
        width: 380px;
        height: auto;
        flex-shrink: 0;
    }
    
    .dessert-media video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    .dessert-info {
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 3rem;
    }
    
    .dessert-name {
        font-size: 3rem;
    }
}

.menu-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.menu-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.menu-image {
    height: 250px;
    overflow: hidden;
}

.menu-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.menu-card:hover .menu-image img {
    transform: scale(1.1);
}

.menu-content {
    padding: 1.5rem;
}

.menu-item-name {
    font-size: 1.5rem;
    color: var(--primary-red);
    margin-bottom: 0.5rem;
}

.menu-item-description {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.menu-item-price {
    font-size: 1.3rem;
    color: var(--primary-green);
    font-weight: 700;
}

.boissons-list {
    max-width: 800px;
    margin: 0 auto;
}

.boisson-item {
    background: var(--white);
    padding: 1.5rem 2rem;
    border-radius: 10px;
    margin-bottom: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.boisson-item:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.item-name {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1.1rem;
    flex: 1;
}

.item-desc {
    color: var(--text-light);
    font-size: 0.9rem;
    flex: 2;
    padding: 0 1rem;
}

.item-price {
    color: var(--primary-green);
    font-weight: 700;
    font-size: 1.2rem;
}

.wine-section {
    margin-top: 3rem;
    text-align: center;
}

.wine-highlight {
    background: linear-gradient(135deg, var(--primary-red), var(--primary-green));
    color: var(--white);
    padding: 3rem;
    border-radius: 20px;
    max-width: 600px;
    margin: 0 auto;
    box-shadow: var(--shadow-lg);
}

.wine-highlight i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--gold);
}

.wine-highlight p {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.wine-price {
    font-size: 2rem;
    font-weight: 700;
}

/* ========================================
   MEMOS SECTION
======================================== */
.memos {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--cream) 0%, var(--white) 100%);
}

.memo-actions {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 1.5rem;
}

.memo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.memo-card {
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    overflow: hidden;
    transition: var(--transition);
}

.memo-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.memo-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    border-bottom: 2px solid var(--cream);
}

.memo-title {
    font-size: 1.2rem;
    color: var(--primary-red);
    font-weight: 700;
}

.memo-body {
    padding: 1rem 1.25rem;
    display: grid;
    gap: 0.6rem;
}

.memo-row {
    display: flex;
    justify-content: space-between;
    gap: 0.8rem;
    background: var(--cream);
    border-radius: 10px;
    padding: 0.6rem 0.8rem;
    font-size: 0.95rem;
    align-items: flex-start;
}

.memo-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.25rem;
    border-top: 2px solid var(--cream);
}
.memo-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    justify-content: flex-end;
}

.tag {
    display: inline-block;
    padding: 4px 10px;
    background: #fff;
    border: 1px solid var(--cream);
    border-radius: 999px;
    font-size: 0.85rem;
    color: var(--text-dark);
}

.memo-empty {
    color: var(--text-light);
}

.memo-actions-row {
    display: flex;
    gap: 0.6rem;
    padding: 0 1.25rem 1rem;
}

.btn-memo {
    flex: 1;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid var(--cream);
    background: var(--white);
    color: var(--text-dark);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-memo:hover {
    background: var(--primary-red);
    color: var(--white);
    border-color: var(--primary-red);
}

/* ========================================
   MODAL (SAVE MEMO)
======================================== */
.modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}
.modal.open { display: flex; }
.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.45);
}
.modal-content {
    position: relative;
    width: min(560px, 92vw);
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    animation: fadeIn 0.3s ease-out;
}
.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    border-bottom: 2px solid var(--cream);
}
.modal-title { color: var(--primary-red); font-size: 1.4rem; }
.modal-close { background: transparent; border: 0; font-size: 1.2rem; cursor: pointer; color: var(--text-light); }
.modal-close:hover { color: var(--primary-red); }
.modal-body { padding: 1rem 1.25rem; }
.modal-footer { padding: 1rem 1.25rem; display: flex; gap: 0.6rem; justify-content: flex-end; border-top: 2px solid var(--cream); }
.form-field { display: grid; gap: 0.4rem; }
.form-field label { font-weight: 600; color: var(--text-dark); }
.input { border: 1px solid #ddd; border-radius: 10px; padding: 12px 14px; font-size: 1rem; outline: none; }
.input:focus { border-color: var(--primary-red); box-shadow: 0 0 0 3px rgba(200,16,46,0.12); }
.hint { color: var(--text-light); font-size: 0.85rem; }
.btn-cancel { background: var(--white); }
.btn-confirm { background: var(--primary-green); color: var(--white); border-color: var(--primary-green); }
.btn-confirm:hover { background: var(--primary-red); border-color: var(--primary-red); }

/* Memo card recap tweaks */
.memo-subtitle { color: var(--text-light); font-size: 0.95rem; }
.memo-badge { display: inline-block; padding: 4px 10px; background: var(--cream); border-radius: 999px; font-size: 0.85rem; color: var(--text-dark); }

/* ========================================
   CONTACT SECTION
======================================== */
.contact {
    padding: 100px 0;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: var(--cream);
    padding: 2rem;
    border-radius: 15px;
    display: flex;
    gap: 1.5rem;
    align-items: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}

.info-card:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.info-icon {
    background: var(--primary-red);
    color: var(--white);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.info-content h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--primary-red);
}

.info-content p,
.info-content a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1.1rem;
}

.info-content a:hover {
    color: var(--primary-red);
}

.social-links h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-red);
}

.social-icons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-icon {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--cream);
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-dark);
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--primary-red);
    color: var(--white);
    transform: translateX(10px);
}

.social-icon i {
    font-size: 1.5rem;
}

.delivery-partners h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-red);
}

.delivery-icons {
    display: flex;
    gap: 1rem;
}

.delivery-icons img {
    height: 50px;
    transition: var(--transition);
}

.delivery-icons img:hover {
    transform: scale(1.1);
}

.contact-map {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-container {
    width: 100%;
    height: 100%;
    min-height: 500px;
}

/* ========================================
   CALL BUTTON
======================================== */
.call-button {
    position: fixed;
    bottom: 95px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-green);
    color: var(--white);
    border: none;
    border-radius: 50%;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    z-index: 999;
    transition: var(--transition);
    animation: phonePulse 2s ease-in-out infinite;
    text-decoration: none;
}

.call-button.visible {
    display: flex;
}

.call-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 30px rgba(46, 125, 50, 0.6);
    animation: none;
}

@keyframes phonePulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 4px 20px rgba(46, 125, 50, 0.4);
    }
    50% {
        transform: scale(1.08);
        box-shadow: 0 6px 30px rgba(46, 125, 50, 0.6);
    }
}

/* ========================================
   SCROLL TO TOP
======================================== */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary-red);
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    z-index: 999;
}

.scroll-top.visible {
    display: flex;
}

.scroll-top:hover {
    background: var(--primary-green);
    transform: translateY(-5px);
}

/* ========================================
   AOS ANIMATIONS
======================================== */
[data-aos] {
    opacity: 0;
    transition: opacity 0.6s, transform 0.6s;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(30px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(30px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

/* Addons (Calzone, Crème de Truffe) */
.addons-wrapper {
    margin-top: 1.5rem;
}

.addons-title {
    font-size: 1.1rem;
    color: var(--text-light);
    margin: 0 0 0.8rem 0.2rem;
}

.addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.addon-option {
    background: var(--cream);
    padding: 1.5rem;
    border-radius: 15px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
}

.addon-option:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.addon-option.selected {
    border-color: var(--primary-green);
    background: var(--white);
}

.addon-option.selected::after {
    content: '✓';
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--primary-green);
    color: var(--white);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.addon-name { font-weight: 600; margin-bottom: 0.4rem; }
.addon-price { color: var(--primary-green); font-weight: 700; }