:root {
    --primary-color: #FFD700;
    /* Gold */
    --primary-hover: #e6c200;
    --secondary-color: #B8860B;
    /* Dark Gold for gradient */
    --bg-dark: #0f1115;
    --bg-darker: #090a0c;
    --bg-card: #16181d;
    --text-main: #e0e6ed;
    --text-muted: #94a3b8;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    --nav-height: 80px;
    --border-radius: 12px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-dark);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography & Utilities */
h1,
h2,
h3,
.logo {
    font-family: var(--font-heading);
    color: #fff;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

.mt-4 {
    margin-top: 2rem;
}

.section-padding {
    padding: 100px 0;
}

/* Compensation pour le header fixe lors du scroll vers les ancres */
section,
.footer,
[id] {
    scroll-margin-top: 90px;
}

.bg-darker {
    background-color: var(--bg-darker);
}

.section-title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.section-subtitle {
    color: var(--primary-color);
    font-size: 1.1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 3rem;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color);
    color: #fff;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background-color: transparent;
    color: var(--primary-color);
}

.btn-secondary {
    background-color: transparent;
    color: #fff;
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
    border: 2px solid rgba(255, 255, 255, 0.2);
    margin-left: 1rem;
}

.btn-secondary:hover {
    border-color: #fff;
    background-color: rgba(255, 255, 255, 0.05);
}

.btn-outline {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
    padding-bottom: 4px;
    font-weight: 600;
}

.btn-outline:hover {
    color: #fff;
    border-color: #fff;
}

/* Navbar */
.header {
    height: var(--nav-height);
    background-color: rgba(15, 17, 21, 0.9);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.logo {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo img {
    height: 50px;
    width: auto;
    object-fit: contain;
    transition: var(--transition);
}

.logo:hover img {
    transform: scale(1.05);
}

.highlight {
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
}

.nav-links a:hover,
.nav-links a.active {
    color: #fff;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 30px;
    height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

/* Hamburger → X animation */
.hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

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

/* Alias for mentions-legales compatibility */
.mobile-menu-btn {
    display: none;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    /* Center content for the glass effect focus */
    position: relative;
    padding-top: var(--nav-height);
    background: url('../img/hero-oven.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* Liquid Glass Effect - Full Overlay */
.hero-content {
    background: rgba(15, 17, 21, 0.2);
    /* Darker, subtle tint for contrast */
    backdrop-filter: blur(8px);
    /* Reduced blur as requested */
    -webkit-backdrop-filter: blur(8px);
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-content h1 {
    font-size: clamp(2.2rem, 6vw, 5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.text-gradient {
    background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    color: #f1f5f9;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

/* Strengths Cards */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.card {
    background-color: var(--bg-card);
    padding: 3rem 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.icon-box {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.card p {
    color: var(--text-muted);
}

/* Menu Grid */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 400px), 1fr));
    gap: 2rem;
}

.menu-item {
    background-color: var(--bg-card);
    padding: 2rem;
    border-radius: var(--border-radius);
    border-left: 4px solid var(--primary-color);
    transition: var(--transition);
}

.menu-item:hover {
    background-color: lighten(var(--bg-card), 5%);
    transform: scale(1.02);
}

.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.menu-header h3 {
    font-size: 1.4rem;
    font-family: var(--font-body);
    font-weight: 600;
}

.price {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.menu-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Reviews */
.reviews-slider {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.review-card {
    background-color: var(--bg-card);
    padding: 2rem;
    border-radius: var(--border-radius);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.review-card:hover {
    border-color: rgba(255, 215, 0, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3);
}

.stars {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.review-card p {
    font-style: italic;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.author {
    font-weight: 600;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.rating-badge {
    background: rgba(255, 159, 28, 0.1);
    color: var(--primary-color);
    display: inline-block;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    margin-top: 1rem;
}

/* Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.info-list li {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    color: var(--text-muted);
}

.info-list li strong {
    color: #fff;
}

.map-frame {
    width: 100%;
    height: 350px;
    background-color: var(--bg-card);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.map-frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Footer */
.footer {
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    background: var(--bg-darker);
}

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

.footer-logo img {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-logo p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

.footer-links h4,
.footer-contact h4 {
    color: #fff;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.9rem;
}

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

.footer-contact p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.85rem;
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

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

/* Animations */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
}

.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

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

.delay-1 {
    animation-delay: 0.2s;
    transition-delay: 0.2s;
}

.delay-2 {
    animation-delay: 0.4s;
    transition-delay: 0.4s;
}

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

/* ========================
   TABLET BREAKPOINT
======================== */
@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .section-padding {
        padding: 70px 0;
    }

    .review-header {
        flex-direction: column;
        gap: 1rem;
    }

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

/* ========================
   MOBILE BREAKPOINT
======================== */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        position: fixed;
        right: -100%;
        top: 0;
        height: 100vh;
        width: 75%;
        max-width: 320px;
        background-color: var(--bg-dark);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        border-left: 1px solid rgba(255, 255, 255, 0.1);
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links a {
        font-size: 1.1rem;
        padding: 0.75rem 0;
    }

    .hero {
        text-align: center;
        justify-content: center;
    }

    .hero-content p {
        padding: 0 1rem;
    }

    .hero-buttons {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        align-items: center;
    }

    .btn-secondary {
        margin-left: 0;
    }

    .cards-grid {
        grid-template-columns: 1fr;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }

    .section-padding {
        padding: 60px 0;
    }

    .group-title {
        font-size: 1.5rem;
    }

    .menu-banner {
        padding: 2rem 1.5rem;
    }

    .banner-content h3 {
        font-size: 1.8rem;
    }

    .price-tag {
        font-size: 2rem;
    }

    .reviews-slider {
        grid-template-columns: 1fr;
    }
}

/* ========================
   SMALL MOBILE BREAKPOINT
======================== */
@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .section-padding {
        padding: 50px 0;
    }

    .hero-buttons {
        width: 100%;
        padding: 0 2rem;
    }

    .btn-primary,
    .btn-secondary,
    .btn-ubereats {
        width: 100%;
        text-align: center;
        justify-content: center;
    }

    .card {
        padding: 2rem 1.5rem;
    }

    .menu-item {
        padding: 1.5rem;
    }

    .review-card {
        min-width: 260px;
        padding: 1.5rem;
    }

    .review-card p {
        font-size: 0.95rem;
    }

    .map-frame {
        height: 250px;
    }

    .info-list li {
        font-size: 1rem;
    }
}

/* Tabs */
.menu-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    background: transparent;
    border: 1px solid var(--text-muted);
    color: var(--text-muted);
    padding: 10px 24px;
    border-radius: 50px;
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 600;
    transition: var(--transition);
}

.tab-btn:hover,
.tab-btn.active {
    background: var(--primary-color);
    color: #fff;
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(255, 159, 28, 0.3);
}

/* Menu Groups */
.menu-group {
    display: none;
    animation: fadeIn 0.5s ease;
}

.menu-group.active {
    display: block;
}

.group-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    margin-top: 2rem;
    color: #fff;
    border-left: 5px solid var(--primary-color);
    padding-left: 1rem;
}

.review-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
}

.review-header .section-title {
    margin-bottom: 0;
}

.review-header .rating-badge {
    margin-top: 0;
}

/* Menu Items Updates */
.badge-new {
    background-color: #e63946;
    color: #fff;
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 4px;
    vertical-align: middle;
    margin-left: 8px;
    text-transform: uppercase;
}

.full-width-desc {
    grid-column: 1 / -1;
    text-align: center;
    color: var(--text-muted);
    margin-top: 1rem;
}

/* Sauces Grid */
.sauces-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(110px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    padding: 1rem;
}

.sauce-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    transition: var(--transition);
}

.sauce-item:hover {
    transform: translateY(-5px);
}

.sauce-img-wrapper {
    width: 90px;
    height: 90px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.sauce-item:hover .sauce-img-wrapper {
    border-color: var(--primary-color);
    background: rgba(255, 215, 0, 0.05);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.sauce-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

.sauce-item span {
    color: #fff;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    text-align: center;
}

/* Removed old sauce list styles */

/* Menu Banner */
.menu-banner {
    background: linear-gradient(135deg, var(--primary-color), #f72585);
    border-radius: var(--border-radius);
    padding: 3rem;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.banner-content h3 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.price-tag {
    font-size: 3rem;
    font-weight: 800;
    background: #fff;
    color: #333;
    display: inline-block;
    padding: 5px 20px;
    border-radius: 50px;
    margin: 1rem 0;
    transform: rotate(-3deg);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Supplements Banner */
.supplements-banner {
    background: linear-gradient(135deg, #2d9c5e, #1ea456);
    border-radius: var(--border-radius);
    padding: 2.5rem;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.supplements-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 1px;
}

.supplements-list {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 1.1rem;
}

.supplement-item {
    color: #fff;
    font-weight: 400;
}

.supplement-item strong {
    font-weight: 700;
    color: var(--primary-color);
}

.supplement-divider {
    color: rgba(255, 255, 255, 0.6);
    font-weight: 700;
}

@media (max-width: 768px) {
    .supplements-content h3 {
        font-size: 1.5rem;
    }

    .supplements-list {
        font-size: 0.95rem;
        gap: 0.5rem;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

/* Mobile Tabs */
@media (max-width: 768px) {
    .menu-tabs {
        gap: 0.5rem;
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 1rem;
        scrollbar-width: none;
    }

    .tab-btn {
        flex: 0 0 auto;
        font-size: 0.9rem;
        padding: 8px 16px;
    }
}

/* Price Options Grid for Barquettes */
.price-options {
    display: flex;
    justify-content: space-between;
    margin-top: 1.5rem;
    gap: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.price-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background: rgba(255, 255, 255, 0.03);
    padding: 0.8rem;
    border-radius: 8px;
    flex: 1;
    transition: var(--transition);
}

.price-option:hover {
    background: rgba(255, 255, 255, 0.08);
}

.price-option .qty {
    font-size: 0.85rem;
    text-transform: uppercase;
    color: var(--text-muted);
    letter-spacing: 1px;
    margin-bottom: 0.3rem;
    font-weight: 600;
}

.price-option .val {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.1rem;
}

/* Social Media Integration */

.social-section h3 {
    font-size: 1.5rem;
    color: #fff;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

.social-icons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.social-icons a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    /* Circle shape matching modern UI */
    color: var(--text-muted);
    transition: var(--transition);
}

.social-icons a:hover {
    background: rgba(255, 215, 0, 0.1);
    /* Gold tint */
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.social-icons img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

/* Uber Eats Button - Hero */
.btn-ubereats {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: #06C167;
    color: #fff;
    padding: 14px 24px;
    border-radius: 50px;
    font-weight: 600;
    margin-left: 1rem;
    transition: all 0.3s ease;
    border: 2px solid #06C167;
    vertical-align: middle;
    position: relative;
    top: -3px;
}

.btn-ubereats img {
    height: 24px;
    width: auto;
    border-radius: 4px;
}

.btn-ubereats:hover {
    background: #05a857;
    border-color: #05a857;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(6, 193, 103, 0.4);
}

/* Uber Eats Link - Contact Section */
.ubereats-section h3 {
    font-size: 1.2rem;
    color: #fff;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.ubereats-link {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, #06C167, #05a857);
    padding: 1rem 1.5rem;
    border-radius: var(--border-radius);
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(6, 193, 103, 0.3);
}

.ubereats-link img {
    height: 40px;
    width: auto;
    border-radius: 8px;
}

.ubereats-link span {
    color: #fff;
    font-weight: 600;
    font-size: 1.1rem;
}

.ubereats-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(6, 193, 103, 0.5);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .btn-ubereats {
        margin-left: 0;
        margin-top: 1rem;
    }
}

/* Phone link - Clickable on mobile */
.phone-link {
    color: var(--primary-color);
    font-weight: 600;
    transition: all 0.3s ease;
}

.phone-link:hover {
    color: #fff;
    text-decoration: underline;
}

/* Cookie Banner RGPD */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(15, 17, 21, 0.98);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 2rem;
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner.hiding {
    transform: translateY(100%);
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-text h3 {
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 0.5rem;
    font-family: var(--font-heading);
}

.cookie-text p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin: 0;
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-shrink: 0;
}

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.cookie-btn.accept {
    background: var(--primary-color);
    color: #fff;
}

.cookie-btn.accept:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.3);
}

.cookie-btn.refuse {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-btn.refuse:hover {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .cookie-btn {
        flex: 1;
        max-width: 150px;
    }
}

/* Mentions Légales Page */
.legal-section {
    padding-top: 120px;
    min-height: 100vh;
}

.legal-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--primary-color);
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
}

.legal-block {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--border-radius);
    padding: 2rem;
    margin-bottom: 1.5rem;
}

.legal-block h2 {
    font-size: 1.3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-family: var(--font-heading);
}

.legal-block p {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.legal-block ul {
    list-style: none;
    padding: 0;
}

.legal-block li {
    color: var(--text-muted);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.legal-block li:last-child {
    border-bottom: none;
}

.legal-block a {
    color: var(--primary-color);
}

.legal-block a:hover {
    text-decoration: underline;
}

.legal-footer {
    text-align: center;
    margin-top: 2rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Footer Legal Link */
.footer-legal-link {
    color: var(--text-muted);
    transition: color 0.3s ease;
}

.footer-legal-link:hover {
    color: var(--primary-color);
}

/* ========================
   POPUP TIRAMISUS
   ======================== */

/* Popup Container */
.tiramisu-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.tiramisu-popup.show {
    opacity: 1;
    visibility: visible;
}

/* Overlay */
.popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
}

/* Popup Content */
.popup-content {
    position: relative;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 20px;
    padding: 3rem 2rem;
    max-width: 800px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(212, 168, 71, 0.2);
    transform: scale(0.7) translateY(-50px);
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55),
        opacity 0.3s ease;
}

.tiramisu-popup.show .popup-content {
    transform: scale(1) translateY(0);
    opacity: 1;
}

/* Close Button */
.popup-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(212, 168, 71, 0.2);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    z-index: 10;
}

.popup-close:hover {
    background: var(--primary-color);
    color: #000;
    transform: rotate(90deg);
}

/* Popup Title */
.popup-content h2 {
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    text-shadow: 0 2px 10px rgba(212, 168, 71, 0.3);
}

/* Tiramisus Grid */
.tiramisus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 1.5rem;
    padding: 1rem 0;
}

.tiramisu-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem;
    background: linear-gradient(145deg, rgba(30, 30, 45, 0.9), rgba(20, 20, 35, 0.95));
    border-radius: 20px;
    border: 1px solid rgba(212, 168, 71, 0.15);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    animation: scaleIn 0.5s ease backwards;
    overflow: hidden;
}

.tiramisu-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tiramisu-item:nth-child(1) {
    animation-delay: 0.05s;
}

.tiramisu-item:nth-child(2) {
    animation-delay: 0.1s;
}

.tiramisu-item:nth-child(3) {
    animation-delay: 0.15s;
}

.tiramisu-item:nth-child(4) {
    animation-delay: 0.2s;
}

.tiramisu-item:nth-child(5) {
    animation-delay: 0.25s;
}

.tiramisu-item:nth-child(6) {
    animation-delay: 0.3s;
}

.tiramisu-item:nth-child(7) {
    animation-delay: 0.35s;
}

.tiramisu-item:nth-child(8) {
    animation-delay: 0.4s;
}

.tiramisu-item:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(212, 168, 71, 0.5);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(212, 168, 71, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.tiramisu-item:hover::before {
    opacity: 1;
}

/* Image - Sans pastille circulaire */
.tiramisu-img-wrapper {
    width: 130px;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    padding: 0;
    transition: transform 0.4s ease;
}

.tiramisu-item:hover .tiramisu-img-wrapper {
    transform: scale(1.08);
}

.tiramisu-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 12px;
    filter: drop-shadow(0 8px 16px rgba(0, 0, 0, 0.5));
    transition: filter 0.3s ease;
}

.tiramisu-item:hover img {
    filter: drop-shadow(0 12px 24px rgba(212, 168, 71, 0.3));
}

/* Tiramisu Name */
.tiramisu-item span {
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    text-align: center;
    letter-spacing: 0.5px;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(212, 168, 71, 0.15), rgba(212, 168, 71, 0.05));
    border-radius: 20px;
    border: 1px solid rgba(212, 168, 71, 0.2);
    transition: all 0.3s ease;
}

.tiramisu-item:hover span {
    background: linear-gradient(135deg, rgba(212, 168, 71, 0.3), rgba(212, 168, 71, 0.1));
    color: var(--primary-color);
    border-color: rgba(212, 168, 71, 0.4);
}

/* Loading Spinner */
.loading-spinner {
    text-align: center;
    padding: 3rem;
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Bouton "Voir nos tiramisus" dans le menu */
.tiramisu-toggle-link {
    display: inline-block;
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 0.5rem;
    cursor: pointer;
    text-decoration: underline;
    text-decoration-style: dotted;
    transition: var(--transition);
}

.tiramisu-toggle-link:hover {
    color: #fff;
    text-decoration-style: solid;
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 768px) {
    .popup-content {
        padding: 2rem 1.5rem;
        max-width: 95%;
    }

    .popup-content h2 {
        font-size: 1.5rem;
    }

    .tiramisus-grid {
        grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
        gap: 1rem;
    }

    .tiramisu-img-wrapper {
        width: 100px;
        height: 100px;
    }

    .tiramisu-item span {
        font-size: 0.85rem;
        padding: 0.4rem 0.8rem;
    }
}