
        :root {
            --taupe: #9b8579;
            --marron: #3f170e;
            --orange: #d56a34;
            --beige: #f8f6e8;
            --gold: #d4af37;
            --white: #ffffff;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Montserrat', sans-serif;
        }

        html,
        body {
            margin: 0;
            padding: 0;
            width: 100%;
            overflow-x: hidden;
        }

        body {
            background-color: var(--beige);
            color: var(--marron);
            line-height: 1.6;
        }

        /* Header */
        header {
            background-color: var(--white);
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 100;
            padding: 15px 0;
        }

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

        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-size: 28px;
            font-weight: 700;
            color: var(--marron);
            text-decoration: none;
            display: flex;
            align-items: center;
        }

        .logo-img {
            height: 50px;
        }

        .logo span {
            color: var(--orange);
        }

        nav ul {
            display: flex;
            list-style: none;
        }

        nav ul li {
            margin-left: 30px;
        }

        nav ul li a {
            color: var(--marron);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }

        nav ul li a:hover {
            color: var(--orange);
        }

        /* Hero Section */
        .hero {
            background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)), url('../img/ban.png');
            background-size: cover;
            background-position: center;
            height: 100vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            position: relative;
            color: #fff;
        }

        .hero-content {
            background-color: rgba(0, 0, 0, 0.5);
            padding: 60px 40px;
            border-radius: 20px;
            max-width: 800px;
            box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
        }

        .hero-content h1 {
            font-family: 'Playfair Display', serif;
            font-size: 48px;
            margin-bottom: 20px;
            color: var(--orange);
        }

        .hero-content h1 .brand {
            color: #fff;
        }

        .hero-content p {
            font-size: 20px;
            line-height: 1.6;
            color: #f1f1f1;
            margin-bottom: 25px;
        }

        .btn {
            display: inline-block;
            padding: 14px 36px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            transition: all 0.3s;
        }

        .btn-primary {
            background-color: var(--orange);
            color: white;
        }

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


        /* Sections */
        .section {
            padding: 60px 0;
        }

        .section-title {
            text-align: center;
            margin-bottom: 40px;
            position: relative;
        }

        .section-title h2 {
            font-size: 36px;
            display: inline-block;
            background-color: var(--beige);
            padding: 0 20px;
            position: relative;
            z-index: 1;
        }

        .section-title::after {
            content: "";
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            height: 1px;
            background-color: var(--taupe);
            z-index: 0;
        }

        /* Menu Tabs */
        .menu-tabs {
            display: flex;
            justify-content: center;
            gap: 20px;
            margin-bottom: 40px;
        }

        .menu-tab {
            padding: 10px 30px;
            background-color: var(--white);
            border: 2px solid var(--taupe);
            color: var(--marron);
            border-radius: 30px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }

        .menu-tab.active {
            background-color: var(--orange);
            color: white;
            border-color: var(--orange);
        }

        .menu-tab:hover:not(.active) {
            background-color: var(--taupe);
            color: white;
        }

        /* Menu Grid */
        .menu-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .menu-card {
            background-color: var(--white);
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            transition: transform 0.3s;
        }

        .menu-card:hover {
            transform: translateY(-10px);
        }

        .menu-img {
            height: 150px;
            overflow: hidden;
        }

        .menu-img img {
            width: 100%;
            height: 100%;
            object-fit: contain;
            transition: transform 0.5s;
        }

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

        .menu-content {
            padding: 20px;
        }

        .menu-content h3 {
            font-size: 22px;
            margin-bottom: 10px;
            color: var(--marron);
        }

        .menu-content p {
            color: var(--taupe);
            margin-bottom: 15px;
        }

        .menu-price {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }




        .menu-grid-carte {
            display: flex;
            flex-direction: column;
            gap: 40px;
            padding: 20px 0;
        }

        .carte-category h3 {
            font-size: 24px;
            margin-bottom: 15px;
            color: var(--marron);
            border-bottom: 2px solid var(--taupe);
            padding-bottom: 5px;
        }

        .carte-items {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
            gap: 20px;
        }

        .carte-card {
            background-color: var(--white);
            border: 1px solid var(--taupe);
            border-radius: 8px;
            padding: 10px 15px;
            text-align: center;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s;
        }

        .carte-card:hover {
            transform: translateY(-5px);
        }

        .carte-card h4 {
            font-size: 15px;
            color: var(--marron);
            margin-bottom: 8px;
        }

        .carte-card .price {
            font-size: 14px;
            font-weight: bold;
            color: var(--orange);
        }




        .price {
            font-size: 20px;
            font-weight: 700;
            color: var(--orange);
        }

        .btn-customize {
            background-color: var(--marron);
            color: white;
            border: none;
            padding: 8px 15px;
            border-radius: 20px;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .btn-customize:hover {
            background-color: var(--orange);
        }

        /* Footer */

        .footer-fullwidth {
            background-color: var(--marron);
            color: white;
            width: 100%;
            /*padding: 30px 0px 40px;
            margin-bottom: 80px;*/
        }

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

        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 50px;
            justify-items: center;
        }

        .footer-col {
            max-width: 300px;
            text-align: center;
        }

        .footer-col h3 {
            color: var(--orange);
            margin-bottom: 20px;
            font-size: 22px;
            font-weight: 600;
            letter-spacing: 0.5px;
            position: relative;
            display: inline-block;
        }

        .footer-col h3::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 50px;
            height: 2px;
            background-color: var(--orange);
        }

        .footer-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-list li {
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            font-size: 15px;
        }

        .footer-list a {
            color: white;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-list a:hover {
            color: var(--orange);
        }

        .social-links {
            margin-top: 20px;
            display: flex;
            justify-content: center;
            gap: 15px;
        }

        .social-links a {
            color: white;
            font-size: 20px;
            transition: all 0.3s;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background-color: rgba(255, 255, 255, 0.1);
        }

        .social-links a:hover {
            color: var(--orange);
            background-color: rgba(255, 255, 255, 0.2);
            transform: translateY(-3px);
        }

        .footer-bottom {
            margin-top: 60px;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .copyright {
            text-align: center;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
            letter-spacing: 0.5px;
        }

        /* Icônes */
        .far,
        .fas {
            width: 18px;
            text-align: center;
            color: var(--orange);
        }

        @media (max-width: 768px) {
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .footer-col {
                max-width: 100%;
            }

            .footer-list li {
                justify-content: flex-start;
            }
        }



        /* Cart Sidebar */
        .cart-sidebar {
            position: fixed;
            top: 0;
            right: -400px;
            width: 400px;
            height: 100%;
            background: var(--white);
            box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
            transition: right 0.3s ease;
            z-index: 1002;
            display: flex;
            flex-direction: column;
        }

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

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

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

        .cart-item {
            margin-bottom: 15px;
            padding-bottom: 15px;
            border-bottom: 1px solid #eee;
        }

        .cart-item:last-child {
            border-bottom: none;
        }

        .cart-footer {
            padding: 20px;
            border-top: 1px solid var(--taupe);
        }

        .cart-total {
            font-weight: bold;
            margin-bottom: 15px;
        }



        .carte-card .btn-customize {
            background-color: var(--marron);
            color: white;
            border: none;
            padding: 6px 12px;
            font-size: 14px;
            border-radius: 20px;
            margin-top: 8px;
            cursor: pointer;
            transition: background-color 0.3s;
        }

        .carte-card .btn-customize:hover {
            background-color: var(--orange);
        }

/* Bouton panier flottant : cercle + centrage parfait */
.floating-cart-btn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  border: 0;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;                 /* couleur de l’icône */
  display: flex;
  align-items: center;         /* centre verticalement */
  justify-content: flex-start; /* aligne à gauche */
  padding-left: 14px;          /* décale de X px vers la gauche */
  padding-right: 22px;         /* laisse de la place au badge à droite */
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0,0,0,.2);
  z-index: 99999;
  line-height: 1;
}

/* Taille et centrage de l’icône FA dans le cercle */
.floating-cart-btn i {
  font-size: 28px;                 /* ajuste la taille du pictogramme */
  line-height: 1;
  display: block;                  /* supprime la ligne de base typographique */
  color: currentColor;             /* hérite de .floating-cart-btn { color } */
}

/* Badge du panier */
.cart-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--marron);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}


        /* Toast Notification */
        .toast {
            position: fixed;
            bottom: 80px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--orange);
            color: white;
            padding: 12px 24px;
            border-radius: 8px;
            font-weight: 600;
            box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
            z-index: 1001;
            opacity: 0;
            transition: opacity 0.3s;
        }

        .toast.show {
            opacity: 1;
        }

        /* Testimonials Section */
        .testimonials-section {
            padding: 60px 0;
            background: #f9f9f9;
        }

        .testimonial-scroller {
            overflow: hidden;
            position: relative;
        }

        .scroller-track {
            display: flex;
width: max-content;
            animation: scroll 75s linear infinite;
}

  @keyframes scroll {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }
        }

        .testimonial-card {
            width: 240px;
            background: white;
            border-radius: 12px;
            padding: 20px;
            margin: 0 15px;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
        }

        .user-info {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .user-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-weight: bold;
            font-size: 18px;
            flex-shrink: 0;
        }


        /* Couleurs aléatoires gérées par JS */
        .user-avatar[data-color="1"] {
            background: #FF6B6B;
        }

        .user-avatar[data-color="2"] {
            background: #4ECDC4;
        }

        .user-avatar[data-color="3"] {
            background: #FFBE0B;
        }

        .user-avatar[data-color="4"] {
            background: #8338EC;
        }

        .user-avatar[data-color="5"] {
            background: #3A86FF;
        }

        .rating {
            color: #FFD700;
            font-size: 1rem;
            margin-top: 5px;
        }

        @keyframes scrollTestimonials {
            0% {
                transform: translateX(0);
            }

            100% {
                transform: translateX(-50%);
            }
        }

        /* Highlights Section */
        .highlights-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 30px;
            text-align: center;
            margin-top: 30px;
        }

        .highlight-card {
            background-color: var(--white);
            padding: 30px 20px;
            border-radius: 16px;
            box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
            transition: transform 0.3s;
        }

        .highlight-card:hover {
            transform: translateY(-5px);
        }

        .highlight-card i {
            font-size: 32px;
            color: var(--orange);
            margin-bottom: 15px;
        }

        .highlight-card h3 {
            font-size: 20px;
            margin-bottom: 10px;
            color: var(--marron);
        }

        .highlight-card p {
            color: var(--taupe);
        }

        .info-note {
            text-align: center;
            font-size: 13px;
            color: var(--taupe);
            margin-top: 20px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
            line-height: 1.4;
        }

        /* scrollText */
        .scrolling-banner {
            background-color: var(--marron);
            overflow: hidden;
            padding: 50px 0;
            /* Conservez votre style actuel */
            margin-top: 50px;
            margin-bottom: 50px;
            /* Ajoute un espace supplémentaire en bas */
        }

        .scrolling-track {
            display: inline-block;
            width: max-content;
            animation: scrollText 70s linear infinite;
            animation-delay: 3s;
        }

        .scrolling-content {
            display: inline-block;
            flex-shrink: 0;
            font-size: 20px;
            font-weight: 700;
            text-transform: uppercase;
            color: var(--white);
            gap: 60px;
            padding-right: 50px;
        }

        .roulette-promo-box {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 40px;
            background-color: var(--white);
            border-radius: 20px;
            padding: 40px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
            margin-top: 40px;
        }

        /* Roulette section */
        .roulette-text {
            flex: 1 1 300px;
        }

        .roulette-text h3 {
            font-size: 26px;
            font-weight: 700;
            color: var(--marron);
            margin-bottom: 15px;
            text-transform: uppercase;
        }

        .roulette-text h3 span {
            color: var(--orange);
        }

        .roulette-text p {
            font-size: 16px;
            color: var(--taupe);
            margin-bottom: 20px;
        }

        .roulette-image {
            flex: 1 1 300px;
            text-align: center;
        }

        .roulette-image img {
            max-width: 300px;
            height: auto;
            border-radius: 50%;
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        }

        /* Modal Styles */

        .modal {
            display: none;
            position: fixed;
            z-index: 1003;
            left: 0;
            top: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(0, 0, 0, 0.5);
            overflow: auto;
        }

        .modal-content {
            background: var(--white);
            padding: 30px;
            border-radius: 16px;
            max-width: 500px;
            margin: 10vh auto;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
            position: relative;
        }

        .modal h3 {
            color: var(--marron);
            margin-bottom: 20px;
            font-size: 24px;
        }

        .modal label {
            display: block;
            margin-bottom: 10px;
            cursor: pointer;
        }

        .modal input[type="radio"],
        .modal input[type="checkbox"] {
            margin-right: 10px;
        }

        .modal select {
            width: 100%;
            padding: 10px;
            border: 1px solid var(--taupe);
            border-radius: 8px;
            margin-bottom: 20px;
            background-color: var(--beige);
        }

        /* Form Styles */
        .modal input[type="text"],
        .modal input[type="email"],
        .modal input[type="tel"],
        .modal textarea {
            width: 100%;
            padding: 10px;
            margin-bottom: 15px;
            border: 1px solid var(--taupe);
            border-radius: 8px;
            background-color: var(--beige);
        }




        /* section chi maek */

        .chi-maek-banner {
            position: relative;
            padding: 80px 0;
            color: white;
            text-align: center;
        }

        .chi-maek-banner .overlay {
            background: rgba(0, 0, 0, 0.6);
            /* assombrit l'image pour lisibilité */
            padding: 60px 20px;
        }

        .chi-maek-content {
            max-width: 800px;
            margin: auto;
        }

        .chi-maek-content h2 {
            font-size: 36px;
            margin-bottom: 20px;
            font-family: 'Nanum Gothic', sans-serif;
        }

        .chi-maek-content p {
            font-size: 18px;
            line-height: 1.6;
            font-family: 'Open Sans', sans-serif;
        }


        /* Responsive */
        @media (max-width: 768px) {
            .roulette-promo-box {
                flex-direction: column;
                text-align: center;
            }

            .roulette-text h3 {
                font-size: 22px;
            }

            .roulette-image img {
                max-width: 300px;
            }
        }

        /* Responsive */
        @media (max-width: 768px) {
            .header-container {
                flex-direction: column;
            }

            nav ul {
                margin-top: 15px;
            }

            nav ul li {
                margin-left: 15px;
                margin-right: 15px;
            }

            .hero-content h1 {
                font-size: 36px;
            }

            .hero-content p {
                font-size: 18px;
            }

            .cart-sidebar {
                width: 100%;
                right: -100%;
            }
        }

        /* scrollText */
        @keyframes scrollText {
            0% {
                transform: translateX(100%);
            }

            100% {
                transform: translateX(-100%);
            }
        }

        /* billing form modal */
        @media (max-width: 600px) {
            .modal-content {
                width: 90%;
                padding: 20px;
            }
        }
    
#ast-scroll-top { display: none !important; }
