 :root {
                --primary: #8b4513;
                --primary-dark: #6b3410;
                --primary-soft: #a7622e;
                --gold: #c8aa6e;
                --gold-light: #dfc792;
                --dark: #1a1a1a;
                --dark-light: #2c2c2c;
                --text: #333;
                --text-light: #666;
                --muted: #8a8a8a;
                --bg: #f9f7f4;
                --bg-soft: #f4eee7;
                --white: #fff;
                --border: rgba(139, 69, 19, 0.12);
                --shadow-sm: 0 8px 25px rgba(0, 0, 0, 0.06);
                --shadow-md: 0 18px 45px rgba(0, 0, 0, 0.1);
                --shadow-lg: 0 22px 50px rgba(139, 69, 19, 0.18);
                --radius-lg: 22px;
                --radius-md: 18px;
                --radius-sm: 14px;
                --header-height: 102px;
            }

            * {
                margin: 0;
                padding: 0;
                box-sizing: border-box;
            }

            html {
                scroll-behavior: smooth;
                scroll-padding-top: 110px;
            }

            body {
                font-family: "Roboto", sans-serif;
                background: var(--bg);
                color: var(--text);
                line-height: 1.6;
                overflow-x: hidden;
            }

            img {
                max-width: 100%;
                display: block;
            }

            h1,
            h2,
            h3 {
                font-family: "Playfair Display", serif;
            }

            a {
                text-decoration: none;
            }

            .container {
                max-width: 1200px;
                margin: 0 auto;
                padding: 0 20px;
            }

            .section-label {
                color: var(--gold);
                font-size: 0.92rem;
                font-weight: 700;
                letter-spacing: 2px;
                margin-bottom: 12px;
                text-transform: uppercase;
            }

            .section-header {
                text-align: center;
                margin-bottom: 48px;
            }

            .section-header h2 {
                font-size: 2.7rem;
                color: var(--primary);
                line-height: 1.25;
                margin-bottom: 14px;
            }

            .section-header p {
                color: var(--text-light);
                font-size: 1.07rem;
                max-width: 760px;
                margin: 0 auto;
            }

            .divider {
                width: 90px;
                height: 3px;
                background: var(--gold);
                margin: 18px auto 22px;
                border-radius: 999px;
            }

            .btn {
                display: inline-flex;
                align-items: center;
                justify-content: center;
                gap: 10px;
                min-height: 52px;
                padding: 14px 30px;
                font-size: 0.95rem;
                font-weight: 700;
                letter-spacing: 0.4px;
                border-radius: 999px;
                transition: all 0.3s ease;
                border: none;
                cursor: pointer;
            }

            .btn-primary {
                background: linear-gradient(
                    135deg,
                    var(--gold),
                    var(--gold-light)
                );
                color: var(--dark);
                box-shadow: 0 12px 30px rgba(200, 170, 110, 0.28);
            }

            .btn-primary:hover {
                transform: translateY(-2px);
            }

            .btn-outline {
                border: 2px solid rgba(255, 255, 255, 0.75);
                color: var(--white);
                background: rgba(255, 255, 255, 0.06);
                backdrop-filter: blur(8px);
            }

            .btn-outline:hover {
                background: rgba(255, 255, 255, 0.14);
                transform: translateY(-2px);
            }

            .btn-dark {
                background: var(--primary);
                color: var(--white);
            }

            .btn-dark:hover {
                background: var(--primary-dark);
                transform: translateY(-2px);
            }

            .chip-row {
                display: flex;
                flex-wrap: wrap;
                gap: 12px;
                justify-content: center;
                margin-top: 26px;
            }

            .chip {
                display: inline-flex;
                align-items: center;
                gap: 8px;
                padding: 10px 14px;
                border-radius: 999px;
                background: rgba(255, 255, 255, 0.12);
                border: 1px solid rgba(255, 255, 255, 0.15);
                color: var(--white);
                font-size: 0.92rem;
            }

            /* Header */
            .header {
                position: fixed;
                top: 0;
                left: 0;
                right: 0;
                z-index: 1000;
                background: rgba(253, 248, 243, 0.95);
                backdrop-filter: blur(10px);
                box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
                padding: 10px 0;
            }

            .header .container {
                display: flex;
                justify-content: space-between;
                align-items: center;
                gap: 16px;
            }

            .logo {
                display: inline-flex;
                align-items: center;
            }

            .logo img {
                height: 84px;
                width: auto;
                transition: 0.3s ease;
            }

            .nav {
                display: flex;
                align-items: center;
                gap: 28px;
            }

            .nav a {
                color: var(--primary);
                font-size: 0.94rem;
                font-weight: 700;
                letter-spacing: 0.4px;
                transition: color 0.3s ease;
            }

            .nav a:hover {
                color: var(--gold);
            }

            .nav-phone {
                color: var(--white) !important;
                background: var(--primary);
                padding: 11px 18px;
                border-radius: 999px;
                box-shadow: var(--shadow-sm);
            }

            .nav-phone:hover {
                background: var(--primary-dark);
                color: var(--white) !important;
            }

            .mobile-toggle {
                display: none;
                background: none;
                border: none;
                color: var(--primary);
                font-size: 1.5rem;
                cursor: pointer;
            }

            /* HERO SECTION */
            .hero {
                position: relative;
                min-height: 100vh;
                display: flex;
                align-items: center;
                justify-content: center;
                padding: calc(var(--header-height) + 30px) 0 60px;
                background:
                    linear-gradient(
                        180deg,
                        rgba(0, 0, 0, 0.54),
                        rgba(0, 0, 0, 0.48)
                    ),
                    radial-gradient(
                        circle at center,
                        rgba(200, 170, 110, 0.12),
                        transparent 45%
                    ),
                    url("../images/banner/banner-web.jpg");
                background-size: cover;
                background-position: center;
                color: var(--white);
                text-align: center;
            }

            .hero::after {
                content: "";
                position: absolute;
                inset: auto 0 0 0;
                height: 120px;
                background: linear-gradient(
                    to bottom,
                    rgba(249, 247, 244, 0),
                    rgba(249, 247, 244, 1)
                );
            }

            .hero-content {
                position: relative;
                z-index: 1;
                max-width: 900px;
                padding: 0 20px;
            }

            .hero-subtitle {
                color: var(--gold-light);
                font-size: 0.98rem;
                letter-spacing: 3px;
                margin-bottom: 18px;
                font-weight: 700;
            }

            .hero h1 {
                font-size: 4.35rem;
                line-height: 1.12;
                margin-bottom: 20px;
                text-shadow: 0 10px 35px rgba(0, 0, 0, 0.22);
            }

            .hero-text {
                font-size: 1.16rem;
                max-width: 780px;
                margin: 0 auto 28px;
                color: rgba(255, 255, 255, 0.92);
            }

            .hero-actions {
                display: flex;
                flex-wrap: wrap;
                justify-content: center;
                gap: 14px;
                margin-bottom: 14px;
            }

            .hero-note {
                margin-top: 22px;
                color: rgba(255, 255, 255, 0.82);
                font-size: 0.94rem;
            }

            /* ABOUT SECTION */
            .about {
                padding: 110px 0 60px;
                background: var(--white);
            }

            .about .container {
                display: grid;
                grid-template-columns: 1.1fr 0.9fr;
                gap: 52px;
                align-items: center;
            }

            .about-content h2 {
                font-size: 2.65rem;
                color: var(--primary);
                line-height: 1.28;
                margin-bottom: 22px;
            }

            .about-content p {
                color: var(--text-light);
                margin-bottom: 18px;
                font-size: 1.05rem;
            }

            .about-highlights {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 16px;
                margin-top: 28px;
            }

            .highlight-card {
                background: var(--bg-soft);
                border: 1px solid var(--border);
                border-radius: var(--radius-md);
                padding: 22px 18px;
                box-shadow: var(--shadow-sm);
            }

            .highlight-card i {
                color: var(--primary);
                font-size: 1.35rem;
                margin-bottom: 12px;
            }

            .highlight-card h3 {
                font-size: 1.02rem;
                color: var(--primary);
                margin-bottom: 8px;
            }

            .highlight-card p {
                font-size: 0.93rem;
                color: var(--text-light);
                margin-bottom: 0;
            }

            .about-side {
                display: flex;
                flex-direction: column;
                gap: 20px;
            }

            .hours-card {
                background: linear-gradient(
                    135deg,
                    var(--primary) 0%,
                    var(--primary-dark) 100%
                );
                color: var(--white);
                padding: 42px 32px;
                border-radius: var(--radius-lg);
                text-align: center;
                box-shadow: var(--shadow-lg);
            }

            .hours-card i {
                font-size: 2.8rem;
                color: var(--gold);
                margin-bottom: 18px;
            }

            .hours-card h3 {
                font-size: 1.45rem;
                margin-bottom: 12px;
            }

            .hours-card .days {
                opacity: 0.92;
                margin-bottom: 10px;
            }

            .hours-card .time {
                font-size: 2.35rem;
                font-weight: 700;
                color: var(--gold-light);
            }

            .about-contact-card {
                background: var(--bg);
                border-radius: var(--radius-lg);
                padding: 26px 24px;
                border: 1px solid var(--border);
                box-shadow: var(--shadow-sm);
            }

            .about-contact-card h3 {
                color: var(--primary);
                font-size: 1.3rem;
                margin-bottom: 12px;
            }

            .about-contact-card p {
                color: var(--text-light);
                margin-bottom: 14px;
            }

            .quick-contact {
                display: flex;
                flex-wrap: wrap;
                gap: 12px;
            }

            /* MENU SECTION */
            .menu {
                padding: 110px 0;
                background: linear-gradient(180deg, var(--bg), #fbfaf8);
            }

            .menu-intro {
                max-width: 760px;
                margin: 0 auto 40px;
                text-align: center;
                color: var(--text-light);
            }

            .featured-carousel {
                position: relative;
                margin-bottom: 70px;
            }

            .carousel-wrapper {
                overflow-x: auto;
                scroll-behavior: smooth;
                -webkit-overflow-scrolling: touch;
                scrollbar-width: none;
                -ms-overflow-style: none;
                padding: 16px 0 8px;
            }

            .carousel-wrapper::-webkit-scrollbar {
                display: none;
            }

            .carousel-track {
                display: flex;
                gap: 24px;
                padding: 0 4px;
            }

            .carousel-item {
                flex-shrink: 0;
                width: 355px;
                background: var(--white);
                border-radius: var(--radius-lg);
                overflow: hidden;
                box-shadow: var(--shadow-md);
                border: 1px solid rgba(200, 170, 110, 0.18);
                transition: transform 0.3s ease, box-shadow 0.3s ease;
            }

            .carousel-item:hover {
                transform: translateY(-8px);
                box-shadow: 0 24px 60px rgba(0, 0, 0, 0.12);
            }

            .carousel-item-img {
                position: relative;
                width: 100%;
                height: 270px;
                overflow: hidden;
                display: flex;
                align-items: center;
                justify-content: center;
                padding: 16px;
                background: linear-gradient(
                    180deg,
                    rgba(249, 247, 244, 0.85),
                    rgba(255, 255, 255, 1)
                );
            }

            .carousel-item-img img {
                width: 100%;
                height: 100%;
                object-fit: contain;
                transition: transform 0.45s ease;
            }

            .carousel-item:hover .carousel-item-img img {
                transform: scale(1.05);
            }

            .menu-badge {
                position: absolute;
                top: 16px;
                left: 16px;
                display: inline-flex;
                align-items: center;
                gap: 6px;
                background: rgba(139, 69, 19, 0.92);
                color: var(--white);
                padding: 8px 12px;
                border-radius: 999px;
                font-size: 0.8rem;
                font-weight: 700;
            }

            .carousel-item-info {
                padding: 22px 24px 26px;
                text-align: center;
            }

            .carousel-item-name {
                font-size: 1.18rem;
                color: var(--primary);
                margin-bottom: 10px;
                display: block;
            }

            .carousel-item-desc {
                color: var(--text-light);
                font-size: 0.92rem;
                margin-bottom: 16px;
            }

            .carousel-item-price,
            .menu-item-price {
                display: inline-block;
                background: linear-gradient(
                    135deg,
                    var(--gold),
                    var(--gold-light)
                );
                color: var(--dark);
                padding: 9px 22px;
                border-radius: 999px;
                font-weight: 700;
                font-size: 1rem;
                box-shadow: 0 10px 20px rgba(200, 170, 110, 0.25);
            }

            .carousel-nav {
                display: flex;
                justify-content: center;
                gap: 14px;
                margin-top: 22px;
            }

            .carousel-btn {
                width: 48px;
                height: 48px;
                border-radius: 50%;
                background: var(--white);
                border: 2px solid rgba(200, 170, 110, 0.8);
                color: var(--primary);
                cursor: pointer;
                display: inline-flex;
                align-items: center;
                justify-content: center;
                transition: all 0.3s ease;
                box-shadow: var(--shadow-sm);
            }

            .carousel-btn:hover {
                background: var(--gold);
                color: var(--white);
            }

            .menu-subtitle {
                text-align: center;
                margin-bottom: 34px;
            }

            .menu-subtitle h3 {
                font-size: 1.9rem;
                color: var(--primary);
                margin-bottom: 8px;
            }

            .menu-grid {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 28px;
            }

            .menu-item {
                background: var(--white);
                border-radius: var(--radius-lg);
                overflow: hidden;
                border: 1px solid rgba(139, 69, 19, 0.08);
                box-shadow: var(--shadow-sm);
                transition: transform 0.3s ease, box-shadow 0.3s ease;
            }

            .menu-item:hover {
                transform: translateY(-8px);
                box-shadow: var(--shadow-md);
            }

            .menu-item-img {
                width: 100%;
                height: 240px;
                overflow: hidden;
                display: flex;
                align-items: center;
                justify-content: center;
                padding: 14px;
                background: linear-gradient(
                    180deg,
                    rgba(249, 247, 244, 0.92),
                    rgba(255, 255, 255, 1)
                );
            }

            .menu-item-img img {
                width: 100%;
                height: 100%;
                object-fit: contain;
                transition: transform 0.45s ease;
            }

            .menu-item:hover .menu-item-img img {
                transform: scale(1.05);
            }

            .menu-item-info {
                padding: 22px 20px 24px;
                text-align: center;
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 12px;
            }

            .menu-item-name {
                font-size: 1.02rem;
                font-weight: 700;
                color: var(--text);
                display: block;
            }

            /* SPACE SECTION */
            .space {
                padding: 110px 0;
                background: var(--white);
            }

            .space .container {
                display: grid;
                grid-template-columns: 0.95fr 1.05fr;
                gap: 52px;
                align-items: center;
            }

            .space-content h2 {
                font-size: 2.55rem;
                color: var(--primary);
                margin-bottom: 22px;
                line-height: 1.28;
            }

            .space-content p {
                color: var(--text-light);
                margin-bottom: 18px;
                font-size: 1.04rem;
                line-height: 1.8;
            }

            .space-gallery {
                display: grid;
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
            }

            .space-gallery a {
                display: block;
                overflow: hidden;
                border-radius: var(--radius-md);
                box-shadow: var(--shadow-sm);
            }

            .space-gallery img {
                width: 100%;
                height: 210px;
                object-fit: cover;
                transition: transform 0.35s ease;
            }

            .space-gallery a:hover img {
                transform: scale(1.05);
            }

            /* NEW DELIVERY SECTION */
            .delivery {
                padding: 110px 0;
                background: linear-gradient(180deg, var(--bg), var(--bg-soft));
            }

            .delivery-grid {
                display: grid;
                grid-template-columns: 1fr 1fr;
                gap: 30px;
                align-items: stretch;
            }

            .delivery-main,
            .delivery-card {
                background: var(--white);
                border-radius: var(--radius-lg);
                border: 1px solid var(--border);
                box-shadow: var(--shadow-sm);
            }

            .delivery-main {
                padding: 34px 32px;
            }

            .delivery-main h3 {
                color: var(--primary);
                font-size: 1.8rem;
                margin-bottom: 14px;
            }

            .delivery-main p {
                color: var(--text-light);
                margin-bottom: 18px;
            }

            .delivery-points {
                display: grid;
                gap: 12px;
                margin-bottom: 24px;
            }

            .delivery-points div {
                display: flex;
                align-items: flex-start;
                gap: 12px;
                color: var(--text);
            }

            .delivery-points i {
                color: var(--primary);
                margin-top: 4px;
            }

            .delivery-actions {
                display: flex;
                flex-wrap: wrap;
                gap: 12px;
            }

            .delivery-side {
                display: grid;
                gap: 18px;
            }

            .delivery-card {
                padding: 24px 22px;
            }

            .delivery-card i {
                font-size: 1.5rem;
                color: var(--primary);
                margin-bottom: 12px;
            }

            .delivery-card h4 {
                color: var(--primary);
                font-size: 1.1rem;
                margin-bottom: 8px;
            }

            .delivery-card p {
                color: var(--text-light);
                font-size: 0.96rem;
            }

            /* TESTIMONIAL SECTION */
            .testimonials {
                padding: 110px 0;
                background: var(--white);
            }

            .testimonials-grid {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 26px;
            }

            .testimonial-card {
                position: relative;
                background: linear-gradient(
                    180deg,
                    rgba(255, 255, 255, 1),
                    rgba(249, 247, 244, 0.92)
                );
                padding: 34px 28px;
                border-radius: var(--radius-lg);
                box-shadow: var(--shadow-sm);
                border: 1px solid rgba(139, 69, 19, 0.08);
                transition: transform 0.3s ease;
            }

            .testimonial-card:hover {
                transform: translateY(-6px);
            }

            .testimonial-quote {
                position: absolute;
                top: 18px;
                right: 20px;
                font-size: 2rem;
                color: rgba(200, 170, 110, 0.4);
            }

            .testimonial-header {
                display: flex;
                align-items: center;
                margin-bottom: 18px;
            }

            .testimonial-avatar {
                width: 58px;
                height: 58px;
                border-radius: 50%;
                background: linear-gradient(
                    135deg,
                    var(--gold),
                    var(--gold-light)
                );
                display: flex;
                align-items: center;
                justify-content: center;
                margin-right: 14px;
                font-size: 1.4rem;
                color: var(--white);
                font-weight: 700;
                box-shadow: 0 8px 22px rgba(200, 170, 110, 0.25);
            }

            .testimonial-info h4 {
                font-size: 1.06rem;
                color: var(--text);
                margin-bottom: 4px;
            }

            .testimonial-info span {
                font-size: 0.86rem;
                color: var(--muted);
            }

            .testimonial-stars {
                color: var(--gold);
                margin-bottom: 14px;
            }

            .testimonial-text {
                color: var(--text-light);
                font-size: 0.96rem;
                line-height: 1.78;
                font-style: italic;
            }

            /* CONTACT SECTION */
            .contact {
                padding: 110px 0;
                background:
                    linear-gradient(
                        180deg,
                        rgba(26, 26, 26, 0.98),
                        rgba(36, 29, 24, 0.98)
                    ),
                    var(--dark);
                color: var(--white);
            }

            .contact .container {
                display: grid;
                grid-template-columns: 0.95fr 1.05fr;
                gap: 44px;
                align-items: start;
            }

            .contact-info h2 {
                font-size: 2.2rem;
                color: var(--gold-light);
                margin-bottom: 18px;
            }

            .contact-intro {
                color: rgba(255, 255, 255, 0.8);
                margin-bottom: 26px;
            }

            .contact-list {
                display: grid;
                gap: 18px;
                margin-bottom: 26px;
            }

            .contact-item {
                display: flex;
                align-items: flex-start;
                gap: 15px;
                padding: 16px 0;
                border-bottom: 1px solid rgba(255, 255, 255, 0.08);
            }

            .contact-item i {
                color: var(--gold);
                font-size: 1.2rem;
                margin-top: 4px;
            }

            .contact-item p,
            .contact-item a {
                color: #d7d7d7;
                line-height: 1.7;
            }

            .contact-item strong {
                display: block;
                color: var(--white);
                margin-bottom: 4px;
            }

            .contact-cta {
                display: flex;
                flex-wrap: wrap;
                gap: 12px;
            }

            .contact-cta .btn-outline {
                border-color: rgba(200, 170, 110, 0.7);
                color: var(--gold-light);
            }

            .contact-cta .btn-outline:hover {
                background: rgba(200, 170, 110, 0.14);
                color: var(--white);
            }

            .map-container {
                border-radius: var(--radius-lg);
                overflow: hidden;
                box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
                min-height: 100%;
                border: 1px solid rgba(255, 255, 255, 0.08);
            }

            .map-container iframe {
                width: 100%;
                height: 100%;
                min-height: 420px;
                border: 0;
            }

            /* Footer */
            .footer {
                background: var(--dark-light);
                color: #b7b7b7;
                padding: 26px 0 96px;
                text-align: center;
            }

            .footer p {
                font-size: 0.94rem;
            }

            /* CONVERSION IMPROVEMENT */
            .zalo-float,
            .call-float {
                position: fixed;
                bottom: 24px;
                z-index: 999;
            }

            .zalo-float {
                right: 24px;
            }

            .call-float {
                right: 96px;
            }

            .zalo-float a,
            .call-float a {
                display: flex;
                align-items: center;
                justify-content: center;
                width: 60px;
                height: 60px;
                border-radius: 50%;
                transition: transform 0.3s ease;
                box-shadow: 0 10px 28px rgba(0, 0, 0, 0.16);
            }

            .zalo-float a:hover,
            .call-float a:hover {
                transform: scale(1.08);
            }

            .zalo-float a {
                background: #0068ff;
            }

            .zalo-float img {
                width: 35px;
                height: 35px;
            }

            .call-float a {
                background: linear-gradient(
                    135deg,
                    var(--primary),
                    var(--primary-soft)
                );
                color: var(--white);
                font-size: 1.3rem;
            }

            .mobile-sticky-bar {
                display: none;
            }

            /* Responsive */
            @media (max-width: 1200px) {
                .logo img {
                    height: 78px;
                }
            }

            @media (max-width: 992px) {
                .hero h1 {
                    font-size: 3.4rem;
                }

                .about .container,
                .space .container,
                .contact .container,
                .delivery-grid {
                    grid-template-columns: 1fr;
                    gap: 36px;
                }

                .about-highlights {
                    grid-template-columns: 1fr;
                }

                .menu-grid {
                    grid-template-columns: repeat(2, 1fr);
                }

                .testimonials-grid {
                    grid-template-columns: 1fr;
                }

                .carousel-item {
                    width: 320px;
                }

                .space-gallery img {
                    height: 200px;
                }
            }

            @media (max-width: 768px) {
                :root {
                    --header-height: 88px;
                }

                .hero {
                    background:
                        linear-gradient(
                            180deg,
                            rgba(0, 0, 0, 0.56),
                            rgba(0, 0, 0, 0.48)
                        ),
                        radial-gradient(
                            circle at center,
                            rgba(200, 170, 110, 0.12),
                            transparent 45%
                        ),
                        url("../images/banner/banner-phone.jpg");
                    background-size: cover;
                    background-position: center;
                }

                .header {
                    padding: 8px 0;
                }

                .logo img {
                    height: 64px;
                }

                .mobile-toggle {
                    display: block;
                }

                .nav {
                    display: none;
                    position: absolute;
                    top: 100%;
                    left: 0;
                    right: 0;
                    background: #fdf8f3;
                    flex-direction: column;
                    align-items: stretch;
                    padding: 18px 20px 22px;
                    gap: 14px;
                    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
                    border-top: 1px solid rgba(139, 69, 19, 0.08);
                }

                .nav.active {
                    display: flex;
                }

                .nav-phone {
                    text-align: center;
                }

                .hero h1 {
                    font-size: 2.7rem;
                }

                .hero-text {
                    font-size: 1.02rem;
                }

                .section-header h2,
                .about-content h2,
                .space-content h2,
                .contact-info h2 {
                    font-size: 2.1rem;
                }

                .menu-grid,
                .space-gallery {
                    grid-template-columns: 1fr;
                }

                .carousel-item {
                    width: 88vw;
                    max-width: 345px;
                }

                .carousel-item-img,
                .menu-item-img {
                    height: 220px;
                }

                .space-gallery img {
                    height: 220px;
                }

                .call-float,
                .zalo-float {
                    bottom: 84px;
                }

                .call-float {
                    right: 92px;
                }

                .zalo-float {
                    right: 20px;
                }

                .mobile-sticky-bar {
                    position: fixed;
                    left: 0;
                    right: 0;
                    bottom: 0;
                    z-index: 1000;
                    display: grid;
                    grid-template-columns: 1fr 1fr;
                    background: rgba(255, 255, 255, 0.98);
                    box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.1);
                    border-top: 1px solid rgba(139, 69, 19, 0.08);
                    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
                    gap: 10px;
                }

                .mobile-sticky-bar a {
                    display: inline-flex;
                    align-items: center;
                    justify-content: center;
                    gap: 8px;
                    min-height: 48px;
                    border-radius: 999px;
                    font-weight: 700;
                    font-size: 0.94rem;
                }

                .mobile-call {
                    background: var(--primary);
                    color: var(--white);
                }

                .mobile-zalo {
                    background: #0068ff;
                    color: var(--white);
                }
            }

            @media (max-width: 576px) {
                .hero {
                    min-height: 620px;
                    padding-bottom: 50px;
                }

                .hero h1 {
                    font-size: 2.25rem;
                }

                .hero-actions {
                    flex-direction: column;
                    align-items: stretch;
                }

                .hero-actions .btn {
                    width: 100%;
                }

                .btn {
                    width: 100%;
                }

                .delivery-actions,
                .contact-cta,
                .quick-contact {
                    flex-direction: column;
                }

                .footer {
                    padding-bottom: 100px;
                }
            }

            .hours-note {
    margin-top: 14px;
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.88);
}

.menu-note {
    max-width: 760px;
    margin: 0 auto 30px;
    padding: 14px 18px;
    border-radius: 14px;
    background: rgba(200, 170, 110, 0.12);
    border: 1px solid rgba(139, 69, 19, 0.1);
    color: var(--text);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.6;
    font-size: 0.95rem;
}

.menu-note i {
    color: var(--primary);
    margin-top: 3px;
    flex-shrink: 0;
}

.customer-care-block {
    margin-top: 34px;
}

.customer-care-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 28px 26px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(139, 69, 19, 0.1);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    text-align: center;
}

.customer-care-inner i {
    font-size: 1.7rem;
    color: var(--primary);
    margin-bottom: 12px;
}

.customer-care-inner h3 {
    color: var(--primary);
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.customer-care-inner p {
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

@media (max-width: 768px) {
    .menu-note {
        padding: 13px 14px;
        font-size: 0.92rem;
    }

    .customer-care-inner {
        padding: 22px 18px;
    }

    .customer-care-inner h3 {
        font-size: 1.3rem;
    }

    .hours-note {
        font-size: 0.9rem;
    }
}

