:root {
    --primary-color: #ff6b6b;
    --secondary-color: #1a1a2e;
    --accent-color: #ffd93d;
    --text-light: #f5f5f5;
    --text-dark: #2c3e50;
    --gradient-1: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-2: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-3: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

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

body {
    font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
    overflow-x: hidden;
    background: #0f0f0f;
    color: #f5f5f5;
}

/* Force text visibility globally */
h1,
h2,
h3,
h4,
h5,
h6,
p,
span,
div {
    color: inherit;
}

/* Ensure light text on dark backgrounds */
.hero-section,
.story-chapter,
.featured-menu {
    color: #f5f5f5 !important;
}

.hero-section h1,
.hero-section h2,
.hero-section h3,
.hero-section p,
.hero-section span {
    color: #f5f5f5 !important;
}

/* Story Navigation */
.story-nav {
    position: fixed;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1000;
    display: none;
}

.story-nav-dot {
    width: 12px;
    height: 12px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    margin: 15px 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.story-nav-dot.active {
    background: var(--primary-color);
    transform: scale(1.3);
}

.story-nav-dot:hover {
    background: var(--accent-color);
}

/* Hero Section */
.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a2e 100%);
    overflow: hidden;
    z-index: 1;
}

/* Ensure hero content is always visible */
.hero-content {
    position: relative;
    z-index: 50;
    pointer-events: auto;
}

.hero-section .container {
    position: relative;
    z-index: 10;
    pointer-events: auto;
}

/* Hero Video Background */
.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    opacity: 0.3;
    object-fit: cover;
    z-index: 1;
    pointer-events: none;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(15, 15, 15, 0.4) 0%,
        rgba(26, 26, 46, 0.4) 100%
    );
    z-index: 2;
    pointer-events: none;
}

/* QR Scanner Modal */
.qr-scanner-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.qr-scanner-container {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.qr-scanner-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.qr-scanner-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.qr-scanner-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
}

#qr-reader {
    border-radius: 10px;
    overflow: hidden;
}

.qr-scanner-instructions {
    text-align: center;
    margin-top: 1rem;
    color: var(--text-dark);
    font-size: 0.9rem;
}

/* Products Modal */
.products-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    overflow-y: auto;
    padding: 1rem;
}

.products-container {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 1rem;
}

.products-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
}

.products-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.products-close:hover {
    background: #f0f0f0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.product-card {
    background: #f9f9f9;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.product-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 3rem;
}

.product-info {
    padding: 1rem;
}

.product-name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.product-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 0.5rem;
}

.product-description {
    font-size: 0.9rem;
    line-height: 1.4;
    color: #000;
}

.products-footer {
    text-align: center;
    padding-top: 1rem;
    border-top: 2px solid #f0f0f0;
}

.btn-view-all {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s;
}

.btn-view-all:hover {
    transform: scale(1.05);
}

/* QR Popup Modal */
.qr-popup-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.qr-popup-container {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    max-width: 400px;
    width: 90%;
    position: relative;
    text-align: center;
    max-height: 90vh;
    overflow-y: auto;
}

.qr-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.qr-popup-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.qr-popup-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.qr-popup-close:hover {
    background: #f0f0f0;
}

.qr-code-image {
    margin: 1.5rem 0;
}

.qr-code-image img {
    width: 200px;
    height: 200px;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
}

.qr-popup-instructions {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.qr-popup-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn-download-qr,
.btn-view-menu {
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform 0.3s;
}

.btn-download-qr {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
    border: none;
    cursor: pointer;
}

.btn-view-menu {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    color: white;
}

.btn-download-qr:hover,
.btn-view-menu:hover {
    transform: scale(1.05);
}

/* Table Booking Modal */
.table-booking-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    overflow-y: auto;
    padding: 1rem;
}

.table-booking-container {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.table-booking-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 1rem;
}

.table-booking-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
}

.table-booking-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.table-booking-close:hover {
    background: #f0f0f0;
}

.tables-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.table-card {
    background: #f9f9f9;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    position: relative;
}

.table-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.table-card.unavailable {
    opacity: 0.6;
    cursor: not-allowed;
}

.table-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    background: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 3rem;
}

.table-info {
    padding: 1rem;
}

.table-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    margin-top: 10px;
}

.table-details {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.table-features {
    text-align: left;
    font-size: 0.9rem;
    /* border: solid 1px; */
    /* display: flex; */
    /* flex-wrap: wrap; */
    /* gap: 0.3rem; */
    /* margin-top: 0.5rem; */
}

.table-feature {
    background: #e8f4f8;
    color: #2c3e50;
    padding: 0.2rem 0.5rem;
    border-radius: 12px;
    font-size: 0.75rem;
}

.unavailable-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #e74c3c;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.booking-form {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 12px;
    margin-top: 1rem;
}

.booking-form h4 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #667eea;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    margin-top: 1.5rem;
}

.btn-back,
.btn-confirm-booking {
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-back {
    background: #e0e0e0;
    color: var(--text-dark);
    border: none;
}

.btn-confirm-booking {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
}

.btn-back:hover,
.btn-confirm-booking:hover {
    transform: scale(1.05);
}

.loading-spinner {
    text-align: center;
    padding: 3rem;
    color: #666;
}

.loading-spinner i {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .products-container,
    .table-booking-container {
        width: 95%;
        padding: 1.5rem;
    }

    .products-grid,
    .tables-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .qr-popup-actions {
        flex-direction: column;
    }

    .form-actions {
        flex-direction: column;
    }
}

/* Mobile Responsive Improvements */

/* Extra Small Mobile (XS) - up to 462px - Button Visibility Fix */
@media (max-width: 462px) {
    /* Fix overflow that cuts off buttons */
    .hero-section {
        overflow: visible !important;
        overflow-x: hidden !important;
    }

    /* Ensure hero content visibility */
    .hero-content {
        position: relative;
        z-index: 150 !important;
        pointer-events: auto;
    }

    .hero-title {
        z-index: 151 !important;
    }

    .hero-subtitle {
        z-index: 151 !important;
    }

    /* Force button visibility even on smallest screens */
    .hero-buttons {
        position: relative;
        z-index: 250 !important;
        opacity: 1 !important;
        visibility: visible !important;
        display: flex !important;
        flex-direction: column;
        gap: 0.9rem;
        align-items: center;
        pointer-events: auto !important;
        width: 100%;
        margin-top: 1rem;
        margin-bottom: 1rem;
    }

    .hero-buttons .btn-modern {
        z-index: 251 !important;
        opacity: 1 !important;
        visibility: visible !important;
        display: inline-flex !important;
        align-items: center;
        justify-content: center;
        pointer-events: auto !important;
        color: white !important;
        width: 100%;
        max-width: 240px;
        padding: 0.85rem 1.4rem;
        font-size: 0.92rem;
        min-height: 44px;
    }

    .hero-buttons .btn-modern span {
        z-index: 252 !important;
        opacity: 1 !important;
        visibility: visible !important;
        color: white !important;
    }

    .hero-buttons .btn-modern i {
        z-index: 252 !important;
        opacity: 1 !important;
        visibility: visible !important;
        color: white !important;
    }

    /* Background fixes */
    .hero-bg {
        z-index: 1;
        pointer-events: none;
    }

    .hero-video-container,
    .hero-video-overlay {
        z-index: 2;
        pointer-events: none;
    }

    /* Container z-index */
    .hero-section .container {
        z-index: 50;
        pointer-events: auto;
        overflow: visible !important;
    }
}

/* Large Mobile (L) - 425px to 768px */
@media (max-width: 768px) and (min-width: 425px) {
    /* Hero Section */
    .hero-section {
        min-height: 90vh;
        padding-top: 100px;
    }

    .hero-title {
        font-size: clamp(2.5rem, 7vw, 4rem);
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: clamp(1rem, 2.5vw, 1.4rem);
    }

    .story-intro {
        font-size: 1rem;
        max-width: 100%;
    }

    /* Hero buttons with maximum visibility */
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        align-items: center;
        z-index: 200 !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }

    .btn-modern {
        width: 100%;
        max-width: 280px;
        padding: 1rem 1.5rem;
        font-size: 1rem;
        z-index: 201 !important;
        opacity: 1 !important;
        visibility: visible !important;
        color: white !important;
    }

    /* Story Chapters */
    .story-chapter {
        padding: 4rem 0;
    }

    .chapter-title {
        font-size: clamp(2rem, 5vw, 3rem);
    }

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

    /* Featured Menu */
    .featured-menu {
        padding: 3rem 0;
    }

    .section-title h2 {
        font-size: clamp(1.8rem, 4.5vw, 2.5rem);
    }

    .section-title p {
        font-size: 1.1rem;
    }

    /* Stats and Grids */
    .stats-section {
        padding: 3rem 0;
    }

    .stat-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }

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

    .category-card {
        padding: 2rem 1.5rem;
    }

    /* Modals */
    .qr-scanner-container,
    .qr-popup-container {
        width: 95%;
        padding: 1.5rem;
    }

    .products-container,
    .table-booking-container {
        width: 95%;
        padding: 1.5rem;
        max-height: 85vh;
    }

    /* Final CTA */
    .final-cta {
        padding: 3rem 0;
    }

    .final-cta .cta-content h2 {
        font-size: clamp(2rem, 5vw, 3rem);
    }

    .final-cta .cta-content p {
        font-size: 1.1rem;
    }
}

/* Medium Mobile (M) - 375px to 424px */
@media (max-width: 424px) and (min-width: 375px) {
    /* Hero Section */
    .hero-section {
        min-height: 85vh;
        padding-top: 90px;
    }

    .hero-title {
        font-size: clamp(2rem, 6vw, 3rem);
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: clamp(0.9rem, 2.5vw, 1.2rem);
    }

    .story-intro {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    /* Hero buttons with forced visibility */
    .hero-buttons {
        flex-direction: column;
        gap: 0.8rem;
        align-items: center;
        z-index: 200 !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }

    .btn-modern {
        width: 100%;
        max-width: 250px;
        padding: 0.9rem 1.3rem;
        font-size: 0.95rem;
        z-index: 201 !important;
        opacity: 1 !important;
        visibility: visible !important;
        color: white !important;
    }

    /* Story Chapters */
    .story-chapter {
        padding: 3rem 0;
    }

    .chapter-title {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
    }

    .chapter-subtitle {
        font-size: 1.1rem;
    }

    .story-text {
        font-size: 1rem;
        line-height: 1.7;
    }

    /* Featured Menu */
    .featured-menu {
        padding: 2.5rem 0;
    }

    .section-title h2 {
        font-size: clamp(1.6rem, 4.5vw, 2.2rem);
    }

    .section-title p {
        font-size: 1rem;
    }

    .menu-item-card {
        margin-bottom: 1.5rem;
    }

    .menu-item-content {
        padding: 1.5rem;
    }

    .menu-item-title {
        font-size: 1.3rem;
    }

    .menu-item-description {
        font-size: 0.9rem;
    }

    /* Stats and Grids */
    .stats-section {
        padding: 2.5rem 0;
    }

    .stat-card {
        padding: 1.2rem;
        margin-bottom: 1rem;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-label {
        font-size: 1rem;
    }

    .category-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .category-card {
        padding: 1.5rem 1rem;
    }

    .category-icon {
        font-size: 3rem;
    }

    .category-title {
        font-size: 1.3rem;
    }

    /* Modals */
    .qr-scanner-container,
    .qr-popup-container {
        width: 95%;
        padding: 1.2rem;
    }

    .qr-scanner-title,
    .qr-popup-title {
        font-size: 1.3rem;
    }

    .products-container,
    .table-booking-container {
        width: 95%;
        padding: 1.2rem;
        max-height: 80vh;
    }

    .products-title,
    .table-booking-title {
        font-size: 1.5rem;
    }

    .product-card,
    .table-card {
        margin-bottom: 1rem;
    }

    .product-info,
    .table-info {
        padding: 0.8rem;
    }

    /* Final CTA */
    .final-cta {
        padding: 2.5rem 0;
    }

    .final-cta .cta-content h2 {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
    }

    .final-cta .cta-content p {
        font-size: 1rem;
    }
}

/* Small Mobile (S) - up to 374px */
@media (max-width: 374px) {
    /* Hero Section */
    .hero-section {
        min-height: 80vh;
        padding-top: 85px;
    }

    .hero-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: clamp(0.85rem, 2.5vw, 1.1rem);
    }

    .story-intro {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    /* Hero buttons with forced visibility */
    .hero-buttons {
        flex-direction: column;
        gap: 0.7rem;
        align-items: center;
        z-index: 200 !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }

    .btn-modern {
        width: 100%;
        max-width: 220px;
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
        z-index: 201 !important;
        opacity: 1 !important;
        visibility: visible !important;
        color: white !important;
    }

    /* Story Chapters */
    .story-chapter {
        padding: 2.5rem 0;
    }

    .chapter-title {
        font-size: clamp(1.6rem, 5vw, 2.2rem);
    }

    .chapter-subtitle {
        font-size: 1rem;
    }

    .story-text {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    /* Featured Menu */
    .featured-menu {
        padding: 2rem 0;
    }

    .section-title {
        margin-bottom: 2rem;
    }

    .section-title h2 {
        font-size: clamp(1.5rem, 4.5vw, 2rem);
    }

    .section-title p {
        font-size: 0.95rem;
    }

    .menu-item-card {
        margin-bottom: 1.2rem;
    }

    .menu-item-content {
        padding: 1.2rem;
    }

    .menu-item-title {
        font-size: 1.2rem;
    }

    .menu-item-description {
        font-size: 0.85rem;
    }

    .menu-item-price {
        font-size: 1.3rem;
    }

    /* Stats and Grids */
    .stats-section {
        padding: 2rem 0;
    }

    .stat-card {
        padding: 1rem;
        margin-bottom: 0.8rem;
    }

    .stat-number {
        font-size: 1.6rem;
    }

    .stat-label {
        font-size: 0.95rem;
    }

    .category-grid {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .category-card {
        padding: 1.2rem 0.8rem;
    }

    .category-icon {
        font-size: 2.5rem;
    }

    .category-title {
        font-size: 1.2rem;
    }

    .category-description {
        font-size: 0.85rem;
    }

    /* Modals */
    .qr-scanner-container,
    .qr-popup-container {
        width: 95%;
        padding: 1rem;
    }

    .qr-scanner-title,
    .qr-popup-title {
        font-size: 1.2rem;
    }

    .qr-code-image img {
        width: 150px;
        height: 150px;
    }

    .products-container,
    .table-booking-container {
        width: 95%;
        padding: 1rem;
        max-height: 75vh;
    }

    .products-title,
    .table-booking-title {
        font-size: 1.4rem;
    }

    .product-card,
    .table-card {
        margin-bottom: 0.8rem;
    }

    .product-info,
    .table-info {
        padding: 0.6rem;
    }

    .product-name,
    .table-name {
        font-size: 1rem;
    }

    .product-price {
        font-size: 1.1rem;
    }

    /* Final CTA */
    .final-cta {
        padding: 2rem 0;
    }

    .final-cta .cta-content h2 {
        font-size: clamp(1.6rem, 5vw, 2.2rem);
    }

    .final-cta .cta-content p {
        font-size: 0.95rem;
    }

    .final-cta .hero-buttons {
        flex-direction: column;
        gap: 0.8rem;
    }

    .final-cta .btn-modern {
        width: 100%;
        max-width: 200px;
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
}

/* Common mobile improvements */
@media (max-width: 768px) {
    /* Hide floating sushi on mobile for better performance */
    .floating-sushi {
        display: none;
    }

    /* Improve video background on mobile */
    .hero-video {
        display: none;
    }

    .hero-bg {
        display: block !important;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(135deg, #0f0f0f 0%, #1a1a2e 100%);
        z-index: 1;
        pointer-events: none;
    }

    /* Ensure hero content is above background on mobile */
    .hero-content {
        position: relative;
        z-index: 100 !important;
        pointer-events: auto;
    }

    /* Force button visibility and clickability on mobile */
    .hero-buttons {
        position: relative;
        z-index: 200 !important;
        opacity: 1 !important;
        visibility: visible !important;
        display: flex !important;
        pointer-events: auto !important;
    }

    .hero-buttons .btn-modern {
        z-index: 201 !important;
        opacity: 1 !important;
        visibility: visible !important;
        display: inline-flex !important;
        pointer-events: auto !important;
        color: white !important;
    }

    .hero-buttons .btn-modern span {
        z-index: 202 !important;
        opacity: 1 !important;
        visibility: visible !important;
        color: white !important;
    }

    .hero-buttons .btn-modern i {
        z-index: 202 !important;
        opacity: 1 !important;
        visibility: visible !important;
        color: white !important;
    }

    /* Improve touch targets */
    .navbar-toggler {
        min-height: 44px;
        min-width: 44px;
    }

    .floating-cart-btn {
        min-height: 50px;
        min-width: 50px;
    }

    /* Button improvements */
    .btn-modern {
        min-height: 44px;
        padding: 0.7rem 1.5rem;
        font-size: 0.95rem;
    }

    .btn-modern i,
    .btn-modern span {
        pointer-events: none;
    }

    /* Form improvements */
    .form-group input,
    .form-group select,
    .form-group textarea {
        min-height: 44px;
        font-size: 16px; /* Prevents iOS zoom */
        padding: 0.8rem;
    }

    .form-group label {
        font-size: 0.95rem;
        margin-bottom: 0.4rem;
    }

    /* Improve readability */
    .story-text,
    .menu-item-description,
    .category-description {
        text-align: left;
    }

    /* Center content on mobile */
    .section-title,
    .hero-content {
        text-align: center;
    }

    /* Improve spacing */
    .container {
        padding-left: 15px;
        padding-right: 15px;
    }

    /* Fix horizontal scrolling */
    body {
        overflow-x: hidden;
    }

    .row {
        margin-left: -15px;
        margin-right: -15px;
    }

    .col,
    .col-1,
    .col-2,
    .col-3,
    .col-4,
    .col-5,
    .col-6,
    .col-7,
    .col-8,
    .col-9,
    .col-10,
    .col-11,
    .col-12 {
        padding-left: 15px;
        padding-right: 15px;
    }

    /* Hero button stack on mobile */
    .hero-buttons {
        justify-content: center;
        flex-direction: column;
        gap: 1rem;
    }

    .hero-buttons .btn-modern {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    /* Final CTA buttons */
    .final-cta .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 0.8rem;
    }

    .final-cta .btn-modern {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

.menu-qr-button {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%) !important;
    color: white !important;
    position: relative !important;
    overflow: hidden !important;
    z-index: 30 !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Aggressive button fixes */
.hero-buttons {
    z-index: 30 !important;
    position: relative !important;
}

.hero-buttons a,
.hero-buttons button {
    z-index: 30 !important;
    position: relative !important;
    color: white !important;
    opacity: 1 !important;
    visibility: visible !important;
    display: inline-flex !important;
    align-items: center !important;
    pointer-events: auto !important;
}

.hero-buttons a span,
.hero-buttons button span {
    color: white !important;
    opacity: 1 !important;
}

.hero-buttons a i,
.hero-buttons button i,
.qr-icon {
    color: white !important;
    opacity: 1 !important;
}

.menu-qr-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(79, 172, 254, 0.3);
}

.qr-icon {
    margin-right: 0.5rem;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.1;
    background-image: radial-gradient(
            circle at 20% 50%,
            var(--primary-color) 0%,
            transparent 50%
        ),
        radial-gradient(
            circle at 80% 80%,
            var(--accent-color) 0%,
            transparent 50%
        );
}

.floating-sushi {
    position: absolute;
    font-size: 3rem;
    opacity: 0.1;
    animation: float 20s infinite ease-in-out;
    z-index: 5;
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0px) rotate(0deg);
    }

    33% {
        transform: translateY(-30px) rotate(120deg);
    }

    66% {
        transform: translateY(30px) rotate(240deg);
    }
}

.hero-content {
    position: relative;
    z-index: 10;
    color: var(--text-light);
    pointer-events: auto;
}

/* Ensure buttons and text are always visible */
.hero-content h1,
.hero-content p,
.hero-content .hero-buttons {
    position: relative;
    z-index: 15;
    color: #f5f5f5 !important;
}

.hero-buttons .btn-modern {
    position: relative;
    z-index: 20 !important;
    color: white !important;
    background: var(--gradient-2) !important;
    border: 2px solid var(--primary-color) !important;
}

.btn-primary {
    background: var(--gradient-2) !important;
    color: white !important;
}

.btn-secondary {
    background: transparent !important;
    color: white !important;
    border: 2px solid var(--primary-color) !important;
}

.menu-qr-button {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%) !important;
    color: white !important;
    border: none !important;
}

/* Force button visibility */
.hero-buttons {
    position: relative;
    z-index: 25 !important;
}

.hero-buttons a,
.hero-buttons button {
    position: relative;
    z-index: 25 !important;
    color: white !important;
    opacity: 1 !important;
}

/* Force visibility for all text elements */
.hero-title,
.hero-subtitle,
.story-intro,
.chapter-title,
.chapter-subtitle,
.story-text,
.section-title h2,
.section-title p,
.stat-label,
.category-title,
.category-description,
.dish-title,
.dish-description,
.about-text h2,
.about-text p,
.testimonial-text,
.author-info h4,
.author-info p,
.cta-content h2,
.cta-content p {
    color: #f5f5f5 !important;
    opacity: 1 !important;
}

/* Ensure button text is visible */
.btn-modern {
    color: inherit !important;
}

.btn-primary {
    color: white !important;
}

.btn-secondary {
    color: white !important;
}

.menu-qr-button {
    color: white !important;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    line-height: 1;
    margin-bottom: 1.5rem;
    background: linear-gradient(
        135deg,
        var(--primary-color),
        var(--accent-color)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    font-weight: 300;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.story-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-buttons {
    display: flex !important;
    gap: 1.5rem;
    flex-wrap: wrap;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

.btn-modern {
    padding: 0.8rem 1.8rem;
    border: none;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex !important;
    align-items: center;
    gap: 0.5rem;
    position: relative;
    overflow: visible;
    min-height: 44px;
    white-space: nowrap;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
}

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

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid var(--primary-color);
}

.btn-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(255, 107, 107, 0.3);
}

/* Stats Section */
.stats-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #1a1a2e 0%, #0f0f0f 100%);
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
}

.stat-number {
    font-size: 2rem;
    font-weight: 900;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-top: 0.5rem;
}

/* Menu Section */
.menu-section {
    padding: 5rem 0;
    background: #0f0f0f;
}

.section-title {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.section-title p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.7);
}

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

.category-card {
    background: linear-gradient(
        135deg,
        rgba(255, 107, 107, 0.1),
        rgba(255, 217, 61, 0.1)
    );
    border-radius: 25px;
    padding: 3rem 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.category-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-2);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-card:hover::before {
    opacity: 0.1;
}

.category-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 30px 60px rgba(255, 107, 107, 0.2);
}

.category-icon {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    display: block;
}

.category-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.category-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

/* Featured Dishes */
.dishes-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #0f0f0f 0%, #1a1a2e 100%);
}

.dish-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.dish-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(255, 107, 107, 0.3);
}

.dish-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.dish-card:hover .dish-image {
    transform: scale(1.1);
}

.dish-content {
    padding: 2rem;
}

.dish-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.dish-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.dish-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

/* About Section */
.about-section {
    padding: 5rem 0;
    background: #0f0f0f;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.about-text p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    border-radius: 20px;
}

/* Testimonials */
.testimonials-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #0f0f0f 0%, #1a1a2e 100%);
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.3;
}

.testimonial-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.8;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
}

.author-info h4 {
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.author-info p {
    color: rgba(255, 255, 255, 0.6);
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: var(--gradient-2);
    text-align: center;
}

.cta-content h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: white;
    margin-bottom: 1.5rem;
}

.cta-content p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
}

/* Responsive */
@media (max-width: 768px) {
    .about-content {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        justify-content: center;
    }

    .about-features {
        grid-template-columns: 1fr;
    }
}

/* Story Chapter Styles */
.story-nav {
    display: block;
}

@media (max-width: 768px) {
    .story-nav {
        display: none;
    }
}

.story-chapter {
    padding: 6rem 0;
    background: linear-gradient(180deg, #0f0f0f 0%, #1a1a2e 50%, #0f0f0f 100%);
    position: relative;
}

.story-chapter:nth-child(even) {
    background: linear-gradient(180deg, #1a1a2e 0%, #0f0f0f 50%, #1a1a2e 100%);
}

.chapter-header {
    text-align: center;
    margin-bottom: 4rem;
}

.chapter-number {
    font-size: 1.2rem;
    color: var(--accent-color);
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    display: block;
    margin-bottom: 1rem;
}

.chapter-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    color: var(--text-light);
    margin-bottom: 1rem;
    background: linear-gradient(
        135deg,
        var(--primary-color),
        var(--accent-color)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.chapter-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.7);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.story-narrative {
    color: var(--text-light);
}

.story-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.5rem;
}

.story-visual {
    position: relative;
}

.story-image {
    width: 100%;
    border-radius: 20px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
}

/* Order Animation */
.order-animation {
    display: flex;
    justify-content: space-around;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
}

.order-step {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 107, 107, 0.1);
    border-radius: 15px;
    border: 2px solid rgba(255, 107, 107, 0.3);
    transition: all 0.3s ease;
}

.order-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 107, 107, 0.2);
}

.step-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.step-text {
    color: var(--text-light);
    font-weight: 600;
}

/* Chapter Stats */
.chapter-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

/* Ingredient Cards */
.ingredient-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.ingredient-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.ingredient-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 107, 107, 0.1);
}

.ingredient-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.ingredient-card h4 {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.ingredient-card p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

/* Chef Features */
.chef-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.chef-feature {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.chef-feature .feature-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.chef-feature h3 {
    color: var(--text-light);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.chef-feature p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

/* Package Animation */
.package-animation {
    display: flex;
    justify-content: space-around;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
}

.package-item {
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 217, 61, 0.1);
    border-radius: 15px;
    border: 2px solid rgba(255, 217, 61, 0.3);
}

.package-visual {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.package-label {
    color: var(--text-light);
    font-weight: 600;
}

/* Delivery Stats */
.delivery-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin: 2rem 0;
}

.delivery-stat {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
}

.delivery-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.delivery-feature {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: rgba(255, 107, 107, 0.1);
    border-radius: 50px;
    color: var(--text-light);
    font-weight: 500;
}

.feature-emoji {
    font-size: 1.5rem;
}

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

    .chapter-stats,
    .ingredient-cards,
    .chef-features,
    .delivery-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .order-animation,
    .package-animation {
        flex-direction: column;
        gap: 1rem;
    }

    /* Story chapter improvements */
    .story-chapter {
        padding: 4rem 0;
    }

    .chapter-header {
        margin-bottom: 2rem;
    }

    .chapter-number {
        font-size: 1rem;
        letter-spacing: 2px;
    }

    .story-visual {
        margin-bottom: 2rem;
    }

    .story-image {
        border-radius: 15px;
    }

    /* Order animation improvements */
    .order-animation {
        padding: 1.5rem;
    }

    .order-step {
        padding: 1.5rem;
    }

    .step-icon {
        font-size: 2.5rem;
    }

    /* Ingredient cards improvements */
    .ingredient-cards {
        gap: 1rem;
    }

    .ingredient-card {
        padding: 1.5rem;
    }

    .ingredient-icon {
        font-size: 2.5rem;
    }

    /* Chef features improvements */
    .chef-features {
        gap: 1rem;
    }

    .chef-feature {
        padding: 1.5rem;
    }

    .chef-feature .feature-icon {
        font-size: 2rem;
    }

    /* Package animation improvements */
    .package-animation {
        padding: 2rem;
    }

    .package-item {
        padding: 1rem;
    }

    .package-visual {
        font-size: 2.5rem;
    }

    /* Delivery improvements */
    .delivery-stats {
        gap: 1rem;
    }

    .delivery-stat {
        padding: 1.5rem;
    }

    .delivery-features {
        gap: 1rem;
    }

    .delivery-feature {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    /* Enjoy animation improvements */
    .enjoy-animation {
        flex-direction: column;
        gap: 1rem;
        padding: 1.5rem;
    }

    .enjoy-step {
        padding: 1.5rem;
    }

    /* Customer stories improvements */
    .customer-stories {
        margin-top: 2rem;
    }

    .stories-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .story-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }

    .author-avatar {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

/* Enjoy Animation */
.enjoy-animation {
    display: flex;
    justify-content: space-around;
    padding: 2rem;
    background: rgba(255, 217, 61, 0.1);
    border-radius: 20px;
}

.enjoy-step {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
    border: 2px solid rgba(255, 217, 61, 0.3);
    transition: all 0.3s ease;
}

.enjoy-step:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(255, 217, 61, 0.2);
}

/* Customer Stories */
.customer-stories {
    margin-top: 3rem;
}

.stories-title {
    text-align: center;
    font-size: 2rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.story-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
}

.story-card::before {
    content: '"';
    position: absolute;
    top: 1rem;
    left: 1.5rem;
    font-size: 4rem;
    color: var(--accent-color);
    opacity: 0.3;
}

.story-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--gradient-2);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.author-info h4 {
    color: var(--text-light);
    margin-bottom: 0.25rem;
}

.author-info p {
    color: rgba(255, 255, 255, 0.6);
}

/* Featured Menu */
.featured-menu {
    padding: 5rem 0;
    background: linear-gradient(180deg, #1a1a2e 0%, #0f0f0f 100%);
}

.menu-item-card {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.menu-item-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 60px rgba(255, 107, 107, 0.3);
}

.menu-item-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.menu-item-card:hover .menu-item-content .menu-item-name,
.menu-item-card:hover .menu-item-content .menu-item-description,
.menu-item-card:hover .menu-item-content .menu-item-price {
    opacity: 0.1;
    transition: all 0.4s ease;
}

.menu-item-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.menu-item-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.menu-item-description {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    flex: 1;
}

.menu-item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

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

/* Featured Menu Mobile Responsive */
@media (max-width: 991.98px) {
    .featured-menu {
        padding: 4rem 0;
    }

    .menu-item-image {
        height: 200px;
    }

    .menu-item-content {
        padding: 1.5rem;
    }

    .menu-item-title {
        font-size: 1.3rem;
    }

    .menu-item-description {
        font-size: 0.95rem;
    }

    .menu-item-price {
        font-size: 1.3rem;
    }
}

@media (max-width: 767.98px) {
    .featured-menu {
        padding: 3rem 0;
    }

    .menu-item-card {
        margin-bottom: 1.5rem;
    }

    .menu-item-image {
        height: 180px;
    }

    .menu-item-content {
        padding: 1.2rem;
    }

    .menu-item-title {
        font-size: 1.2rem;
    }

    .menu-item-description {
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .menu-item-price {
        font-size: 1.2rem;
    }

    .menu-item-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: stretch;
    }

    .menu-item-footer .btn-modern {
        width: 100%;
    }
}

@media (max-width: 575.98px) {
    .featured-menu {
        padding: 2.5rem 0;
    }

    .section-title {
        margin-bottom: 2rem;
    }

    .menu-item-card {
        margin-bottom: 1.2rem;
        border-radius: 15px;
    }

    .menu-item-image {
        height: 160px;
    }

    .menu-item-content {
        padding: 1rem;
    }

    .menu-item-title {
        font-size: 1.1rem;
    }

    .menu-item-description {
        font-size: 0.85rem;
        margin-bottom: 0.8rem;
    }

    .menu-item-price {
        font-size: 1.1rem;
    }

    .menu-item-footer {
        gap: 0.8rem;
    }
}

@media (max-width: 374.98px) {
    .featured-menu {
        padding: 2rem 0;
    }

    .menu-item-card {
        margin-bottom: 1rem;
        border-radius: 12px;
    }

    .menu-item-image {
        height: 140px;
    }

    .menu-item-content {
        padding: 0.8rem;
    }

    .menu-item-title {
        font-size: 1rem;
    }

    .menu-item-description {
        font-size: 0.8rem;
        margin-bottom: 0.6rem;
    }

    .menu-item-price {
        font-size: 1rem;
    }

    .menu-item-footer {
        gap: 0.6rem;
    }
}

/* Final CTA */
.final-cta {
    padding: 5rem 0;
    background: var(--gradient-2);
    text-align: center;
}

.final-cta .cta-content h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    color: white;
    margin-bottom: 1.5rem;
}

.final-cta .cta-content p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
}

/* Header Styles */
.sushi-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 15, 15, 0.95);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    padding: 0.5rem 0;
}

.sushi-header.scrolled {
    background: rgba(15, 15, 15, 0.98);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.sushi-header .navbar {
    padding: 0;
}

.sushi-header .navbar-brand {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color) !important;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sushi-header .navbar-brand:hover {
    transform: scale(1.05);
}

.sushi-header .logo-img {
    height: 40px;
    width: auto;
    margin-right: 10px;
    border-radius: 50%;
}

.sushi-header .brand-text {
    color: #fff;
    font-weight: 600;
}

.sushi-header .navbar-nav .nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 500;
    margin: 0 0.75rem;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.sushi-header .navbar-nav .nav-link::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 107, 107, 0.3),
        transparent
    );
    transition: left 0.5s ease;
}

.sushi-header .navbar-nav .nav-link:hover::before {
    left: 100%;
}

.sushi-header .navbar-nav .nav-link:hover,
.sushi-header .navbar-nav .nav-link.active {
    color: var(--primary-color) !important;
    background: rgba(255, 107, 107, 0.1);
    transform: translateY(-2px);
}

.sushi-header .navbar-toggler {
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 0.25rem 0.5rem;
}

.sushi-header .navbar-toggler:focus {
    box-shadow: 0 0 0 0.25rem rgba(255, 107, 107, 0.25);
}

/* Floating Cart Button */
.floating-cart-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary-color);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 999;
    box-shadow: 0 5px 20px rgba(255, 107, 107, 0.4);
    border: none;
    font-size: 1.5rem;
}

.floating-cart-btn:hover {
    background: #ff5252;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.5);
}

.floating-cart-btn .cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: var(--accent-color);
    color: var(--text-dark);
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    border: 2px solid white;
}

/* Adjust hero section top padding to account for fixed header */
.hero-section {
    padding-top: 80px;
}

/* Mobile Responsive */

/* Large Mobile/Tablet (768px - 991.98px) */
@media (max-width: 991.98px) and (min-width: 768px) {
    .sushi-header {
        padding: 0.75rem 0;
    }

    .sushi-header .navbar {
        position: relative;
    }

    .sushi-header .navbar-brand {
        font-size: 1.4rem;
    }

    .sushi-header .logo-img {
        height: 38px;
    }

    .sushi-header .navbar-toggler {
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        width: 35px;
        height: 35px;
    }

    .sushi-header .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(15, 15, 15, 0.98);
        backdrop-filter: blur(10px);
        padding: 1.5rem;
        border-radius: 0 0 15px 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    .sushi-header .navbar-nav {
        width: 100%;
        text-align: center;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 0.5rem;
    }

    .sushi-header .navbar-nav .nav-link {
        display: inline-block;
        margin: 0;
        padding: 0.6rem 1.2rem;
        font-size: 1rem;
        min-width: 120px;
    }

    /* Floating cart button adjustments */
    .floating-cart-btn {
        bottom: 25px;
        right: 25px;
        width: 58px;
        height: 58px;
        font-size: 1.4rem;
    }

    .floating-cart-btn .cart-count {
        width: 23px;
        height: 23px;
        font-size: 0.75rem;
    }
}

/* Medium Mobile (576px - 767.98px) */
@media (max-width: 767.98px) and (min-width: 576px) {
    .sushi-header {
        padding: 0.6rem 0;
    }

    .sushi-header .navbar {
        position: relative;
    }

    .sushi-header .navbar-brand {
        font-size: 1.3rem;
    }

    .sushi-header .logo-img {
        height: 35px;
        margin-right: 10px;
    }

    .sushi-header .navbar-toggler {
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        width: 32px;
        height: 32px;
    }

    .sushi-header .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(15, 15, 15, 0.98);
        backdrop-filter: blur(10px);
        padding: 1.2rem;
        border-radius: 0 0 15px 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    .sushi-header .navbar-nav {
        width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        gap: 0.3rem;
    }

    .sushi-header .navbar-nav .nav-link {
        display: block;
        margin: 0;
        padding: 0.8rem 1rem;
        font-size: 1rem;
        width: 100%;
        border-radius: 10px;
    }

    /* Floating cart button adjustments */
    .floating-cart-btn {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }

    .floating-cart-btn .cart-count {
        width: 22px;
        height: 22px;
        font-size: 0.7rem;
    }
}

/* Small Mobile (375px - 575.98px) */
@media (max-width: 575.98px) and (min-width: 375px) {
    .sushi-header {
        padding: 0.5rem 0;
    }

    .sushi-header .navbar {
        position: relative;
        min-height: 60px;
    }

    .sushi-header .navbar-brand {
        font-size: 1.2rem;
    }

    .sushi-header .logo-img {
        height: 32px;
        margin-right: 8px;
    }

    .sushi-header .navbar-toggler {
        position: absolute;
        right: 12px;
        top: 50%;
        transform: translateY(-50%);
        width: 30px;
        height: 30px;
        padding: 0.2rem;
    }

    .sushi-header .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(15, 15, 15, 0.98);
        backdrop-filter: blur(10px);
        padding: 1rem;
        border-radius: 0 0 10px 10px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        max-height: 80vh;
        overflow-y: auto;
    }

    .sushi-header .navbar-nav {
        width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        gap: 0.2rem;
    }

    .sushi-header .navbar-nav .nav-link {
        display: block;
        margin: 0;
        padding: 0.7rem 0.8rem;
        font-size: 0.95rem;
        width: 100%;
        border-radius: 8px;
    }

    /* Floating cart button adjustments */
    .floating-cart-btn {
        bottom: 18px;
        right: 18px;
        width: 52px;
        height: 52px;
        font-size: 1.25rem;
    }

    .floating-cart-btn .cart-count {
        width: 21px;
        height: 21px;
        font-size: 0.68rem;
    }
}

/* Extra Small Mobile (up to 374.98px) */
@media (max-width: 374.98px) {
    .sushi-header {
        padding: 0.4rem 0;
    }

    .sushi-header .navbar {
        position: relative;
        min-height: 55px;
    }

    .sushi-header .navbar-brand {
        font-size: 1.1rem;
    }

    .sushi-header .logo-img {
        height: 28px;
        margin-right: 6px;
    }

    .sushi-header .navbar-toggler {
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        width: 28px;
        height: 28px;
        padding: 0.15rem;
    }

    .sushi-header .navbar-collapse {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(15, 15, 15, 0.98);
        backdrop-filter: blur(10px);
        padding: 0.8rem;
        border-radius: 0 0 8px 8px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
        max-height: 75vh;
        overflow-y: auto;
    }

    .sushi-header .navbar-nav {
        width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        gap: 0.15rem;
    }

    .sushi-header .navbar-nav .nav-link {
        display: block;
        margin: 0;
        padding: 0.6rem 0.7rem;
        font-size: 0.9rem;
        width: 100%;
        border-radius: 6px;
    }

    /* Floating cart button adjustments */
    .floating-cart-btn {
        bottom: 15px;
        right: 15px;
        width: 48px;
        height: 48px;
        font-size: 1.2rem;
    }

    .floating-cart-btn .cart-count {
        width: 20px;
        height: 20px;
        font-size: 0.65rem;
    }
}

/* Cart Popup Styles */
.cart-popup {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 400px;
    height: 100vh;
    background: rgba(15, 15, 15, 0.98);
    backdrop-filter: blur(10px);
    z-index: 2000;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
    }
    to {
        transform: translateX(0);
    }
}

.cart-popup-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 2rem;
}

.cart-popup-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-popup-header h3 {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0;
}

.cart-popup-header .close-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.cart-popup-header .close-btn:hover {
    color: var(--primary-color);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    margin-bottom: 2rem;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    margin-bottom: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.cart-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-5px);
}

.cart-item-info h4 {
    color: #fff;
    font-size: 1.1rem;
    margin: 0 0 0.5rem 0;
}

.cart-item-info p {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0;
}

.cart-item .remove-item {
    background: rgba(255, 107, 107, 0.2);
    border: none;
    color: var(--primary-color);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cart-item .remove-item:hover {
    background: var(--primary-color);
    color: white;
    transform: scale(1.1);
}

.empty-cart {
    text-align: center;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.1rem;
    padding: 2rem;
}

.cart-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1rem;
}

.cart-total {
    text-align: right;
    margin-bottom: 1rem;
}

.cart-total strong {
    color: #fff;
    font-size: 1.3rem;
}

/* Modal Mobile Responsive Improvements */
@media (max-width: 991.98px) {
    .qr-scanner-modal,
    .products-modal,
    .qr-popup-modal,
    .table-booking-modal {
        padding: 1rem;
    }

    .qr-scanner-container,
    .products-container,
    .qr-popup-container,
    .table-booking-container {
        width: 95%;
        padding: 1.5rem;
        border-radius: 15px;
    }

    .qr-scanner-header,
    .products-header,
    .qr-popup-header,
    .table-booking-header {
        margin-bottom: 1rem;
    }

    .qr-scanner-title,
    .products-title,
    .qr-popup-title,
    .table-booking-title {
        font-size: 1.5rem;
    }

    .products-grid,
    .tables-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
        gap: 1rem;
    }

    .product-card,
    .table-card {
        margin-bottom: 1rem;
    }

    .qr-popup-actions {
        flex-direction: column;
        gap: 0.8rem;
    }

    .btn-download-qr,
    .btn-view-menu {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 767.98px) {
    .qr-scanner-modal,
    .products-modal,
    .qr-popup-modal,
    .table-booking-modal {
        padding: 0.8rem;
    }

    .qr-scanner-container,
    .products-container,
    .qr-popup-container,
    .table-booking-container {
        width: 95%;
        padding: 1.2rem;
        border-radius: 12px;
        max-height: 85vh;
    }

    .qr-scanner-title,
    .products-title,
    .qr-popup-title,
    .table-booking-title {
        font-size: 1.3rem;
    }

    .products-grid,
    .tables-grid {
        grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
        gap: 0.8rem;
    }

    .product-card,
    .table-card {
        margin-bottom: 0.8rem;
    }

    .product-info,
    .table-info {
        padding: 0.8rem;
    }

    .product-name,
    .table-name {
        font-size: 1rem;
    }

    .product-price {
        font-size: 1.1rem;
    }

    .qr-code-image img {
        width: 180px;
        height: 180px;
    }

    .qr-popup-instructions {
        font-size: 0.9rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.7rem;
        font-size: 0.9rem;
    }

    .form-actions {
        flex-direction: column;
        gap: 0.8rem;
    }

    .btn-back,
    .btn-confirm-booking {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 575.98px) {
    .qr-scanner-modal,
    .products-modal,
    .qr-popup-modal,
    .table-booking-modal {
        padding: 0.5rem;
    }

    .qr-scanner-container,
    .products-container,
    .qr-popup-container,
    .table-booking-container {
        width: 98%;
        padding: 1rem;
        border-radius: 10px;
        max-height: 80vh;
    }

    .qr-scanner-title,
    .products-title,
    .qr-popup-title,
    .table-booking-title {
        font-size: 1.2rem;
    }

    .products-grid,
    .tables-grid {
        grid-template-columns: 1fr;
        gap: 0.6rem;
    }

    .product-card,
    .table-card {
        margin-bottom: 0.6rem;
    }

    .product-info,
    .table-info {
        padding: 0.6rem;
    }

    .product-name,
    .table-name {
        font-size: 0.95rem;
    }

    .product-price {
        font-size: 1rem;
    }

    .qr-code-image img {
        width: 150px;
        height: 150px;
    }

    .qr-popup-instructions {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    .booking-form {
        padding: 1.5rem;
    }

    .booking-form h4 {
        font-size: 1.1rem;
    }
}

@media (max-width: 374.98px) {
    .qr-scanner-modal,
    .products-modal,
    .qr-popup-modal,
    .table-booking-modal {
        padding: 0.3rem;
    }

    .qr-scanner-container,
    .products-container,
    .qr-popup-container,
    .table-booking-container {
        width: 100%;
        padding: 0.8rem;
        border-radius: 8px;
        max-height: 75vh;
    }

    .qr-scanner-title,
    .products-title,
    .qr-popup-title,
    .table-booking-title {
        font-size: 1.1rem;
    }

    .product-card,
    .table-card {
        margin-bottom: 0.5rem;
    }

    .product-info,
    .table-info {
        padding: 0.5rem;
    }

    .product-name,
    .table-name {
        font-size: 0.9rem;
    }

    .product-price {
        font-size: 0.95rem;
    }

    .qr-code-image img {
        width: 120px;
        height: 120px;
    }

    .qr-popup-instructions {
        font-size: 0.8rem;
        margin-bottom: 0.8rem;
    }

    .booking-form {
        padding: 1rem;
    }

    .booking-form h4 {
        font-size: 1rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 0.6rem;
        font-size: 0.85rem;
    }
}

/* Cart Popup Mobile Responsive */
@media (max-width: 991.98px) {
    .cart-popup {
        width: 90%;
        right: 5%;
        left: 5%;
        height: 100vh;
    }

    .cart-popup-content {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .cart-popup {
        width: 95%;
        right: 2.5%;
        left: 2.5%;
        height: 100vh;
    }

    .cart-popup-content {
        padding: 1.2rem;
    }

    .cart-popup-header h3 {
        font-size: 1.3rem;
    }

    .cart-item {
        padding: 0.8rem;
    }

    .cart-item-info h4 {
        font-size: 1rem;
    }

    .cart-item-info p {
        font-size: 1.1rem;
    }
}

@media (max-width: 374.98px) {
    .cart-popup {
        width: 100%;
        right: 0;
        left: 0;
        height: 100vh;
    }

    .cart-popup-content {
        padding: 1rem;
    }

    .cart-popup-header h3 {
        font-size: 1.2rem;
    }

    .cart-item {
        padding: 0.6rem;
        margin-bottom: 0.8rem;
    }

    .cart-item-info h4 {
        font-size: 0.95rem;
    }

    .cart-item-info p {
        font-size: 1rem;
    }

    .cart-total strong {
        font-size: 1.2rem;
    }
}

/* ===================================
   MENU PAGE STYLES
   =================================== */

/* Menu Hero Section */
.menu-hero {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #1a1a2e 0%, #0f0f0f 100%);
    position: relative;
    overflow: hidden;
}

.menu-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.5;
}

.menu-hero-content {
    position: relative;
    z-index: 2;
}

.menu-hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.menu-hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.menu-hero-features {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
}

.feature-item i {
    color: var(--primary-color);
    font-size: 1.25rem;
}

.menu-hero-image {
    position: relative;
    z-index: 2;
    text-align: center;
}

.menu-hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* Menu Categories */
.menu-categories {
    padding: 3rem 0;
    background: #0f0f0f;
    position: sticky;
    top: 6rem;
    top: 6rem;
    z-index: 100;
    border-bottom: 1px solid1px solid rgba(255, 255, 255, 0.1);
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.category-btn {
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.category-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
    transform: translateY(-2px);
}

.category-btn.active {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

/* Menu Items Section */
.menu-items-section {
    padding: 4rem 0;
    background: #0f0f0f;
}

.menu-item {
    margin-bottom: 2rem;
    animation: fadeInUp 0.6s ease;
}

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

/* Menu Item Card */
.menu-item-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
}

.menu-item-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border-color: var(--primary-color);
}

.menu-item-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

.menu-item-badge {
    position: absolute;
    top: 3px;
    left: 3px;
    background: var(--primary-color);
    color: #fff;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.menu-item-content {
    padding: 1.5rem;
    position: relative;
    z-index: 2;
}

.menu-item-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 0.5rem;
}

.menu-item-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

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

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

.menu-item-actions {
    display: flex;
    gap: 0.5rem;
}

.btn-customize,
.btn-add-to-cart {
    padding: 0.5rem 1rem;
    border: none;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-customize {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-customize:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-add-to-cart {
    background: var(--primary-color);
    color: #fff;
}

.btn-add-to-cart:hover {
    background: #ff5252;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.menu-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    padding: 1.5rem;
    z-index: 1;
    pointer-events: none;
}

.menu-item-card:hover .menu-item-overlay {
    opacity: 1;
}

.overlay-content {
    text-align: center;
    color: #fff;
}

.overlay-content h4 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.overlay-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1rem;
}

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

/* Toppings Modal */
.toppings-modal-content {
    background: #1a1a2e;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
}

.toppings-modal-content .modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
}

.toppings-modal-content .modal-title {
    color: #fff;
    font-weight: 600;
}

.toppings-modal-content .btn-close {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.5rem;
}

.toppings-modal-content .modal-body {
    padding: 1.5rem;
}

.selected-product-info {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.selected-product-info h4 {
    color: #fff;
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.selected-product-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}

.quantity-selector {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 15px;
}

.quantity-label {
    color: #fff;
    font-weight: 500;
    font-size: 1.1rem;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quantity-btn {
    width: 35px;
    height: 35px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.quantity-input {
    width: 60px;
    text-align: center;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: #fff;
    font-size: 1.1rem;
    font-weight: 500;
}

.toppings-section {
    margin-bottom: 2rem;
}

.toppings-section-title {
    color: #fff;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.toppings-section-desc {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
}

.toppings-category {
    margin-bottom: 2rem;
}

.toppings-category-title {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.toppings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
}

.topping-item {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.topping-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
}

.topping-item input[type="checkbox"] {
    margin-right: 0.75rem;
    width: 18px;
    height: 18px;
    accent-color: var(--primary-color);
}

.topping-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex: 1;
}

.topping-name {
    color: #fff;
    font-weight: 500;
}

.topping-price {
    color: var(--primary-color);
    font-weight: 600;
}

.special-instructions {
    margin-top: 1.5rem;
}

.instructions-label {
    display: block;
    color: #fff;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.instructions-textarea {
    width: 100%;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    font-size: 0.95rem;
    resize: vertical;
}

.instructions-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}

.toppings-modal-content .modal-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.total-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.total-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
}

.total-price {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 700;
}

.btn-cancel {
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    color: #fff;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cancel:hover {
    background: rgba(255, 255, 255, 0.2);
}

.toppings-modal-content .btn-add-to-cart {
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    border: none;
    border-radius: 25px;
    color: #fff;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.toppings-modal-content .btn-add-to-cart:hover {
    background: #ff5252;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: #1a1a2e;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    z-index: 1050;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: -5px 0 20px rgba(0, 0, 0, 0.3);
}

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

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cart-title {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
}

.cart-close-btn {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.5rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

.cart-close-btn:hover {
    color: #fff;
}

.cart-content {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
}

.empty-cart {
    text-align: center;
    padding: 3rem 1rem;
}

.empty-cart-icon {
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.2);
    margin-bottom: 1.5rem;
}

.empty-cart h4 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.empty-cart p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.btn-browse-menu {
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    border: none;
    border-radius: 25px;
    color: #fff;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-browse-menu:hover {
    background: #ff5252;
    transform: translateY(-2px);
}

.cart-items {
    margin-bottom: 1.5rem;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    margin-bottom: 1rem;
}

.cart-item-info {
    flex: 1;
}

.cart-item-name {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.cart-item-details {
    display: flex;
    gap: 1rem;
    margin-bottom: 0.5rem;
}

.cart-item-quantity,
.cart-item-price {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.cart-item-toppings {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.topping-tag {
    background: rgba(255, 107, 107, 0.2);
    color: var(--primary-color);
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 500;
}

.cart-item-instructions {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.cart-item-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
}

.cart-item-total {
    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;
}

.btn-remove-item {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: color 0.3s ease;
}

.btn-remove-item:hover {
    color: var(--primary-color);
}

.order-summary {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    margin-bottom: 1.5rem;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.summary-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.summary-value {
    color: #fff;
    font-weight: 500;
}

.discount-row .summary-label {
    color: var(--primary-color);
}

.discount-value {
    color: var(--primary-color) !important;
}

.total-row {
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.total-value {
    color: var(--primary-color) !important;
    font-size: 1.3rem !important;
    font-weight: 700 !important;
}

.promo-code-section {
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    margin-bottom: 1.5rem;
}

.promo-input-group {
    display: flex;
    gap: 0.5rem;
}

.promo-input {
    flex: 1;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: #fff;
    font-size: 0.95rem;
}

.promo-input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.promo-apply-btn {
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    border: none;
    border-radius: 10px;
    color: #fff;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.promo-apply-btn:hover {
    background: #ff5252;
}

.customer-info-section {
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    margin-bottom: 1.5rem;
}

.section-title {
    color: #fff;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-label {
    display: block;
    color: #fff;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-select,
.form-input,
.form-textarea {
    width: 100%;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: #fff;
    font-size: 0.95rem;
}

.form-select:focus,
.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 107, 0.1);
}

.cart-footer {
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    gap: 1rem;
}

.btn-clear-cart {
    flex: 1;
    padding: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    color: #fff;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-clear-cart:hover {
    background: rgba(255, 255, 255, 0.2);
}

.btn-proceed-checkout {
    flex: 2;
    padding: 0.75rem;
    background: var(--primary-color);
    border: none;
    border-radius: 12px;
    color: #fff;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-proceed-checkout:hover {
    background: #ff5252;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1040;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cart-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* Order Confirmation Modal */
.order-confirmation-content {
    background: #1a1a2e;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
}

.order-confirmation-content .modal-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
}

.order-confirmation-content .modal-title {
    color: #fff;
    font-weight: 600;
}

.order-confirmation-content .modal-body {
    padding: 2rem 1.5rem;
    text-align: center;
}

.confirmation-icon {
    font-size: 4rem;
    color: #4caf50;
    margin-bottom: 1.5rem;
}

.confirmation-title {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.confirmation-message {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.order-details {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: left;
}

.order-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.order-info-row:last-child {
    margin-bottom: 0;
}

.info-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
}

.info-value {
    color: #fff;
    font-weight: 500;
}

.order-status {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.status-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.status-item.active {
    opacity: 1;
}

.status-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
}

.status-item.active .status-icon {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
}

.status-text {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.85rem;
    font-weight: 500;
}

.status-item.active .status-text {
    color: #fff;
}

.order-confirmation-content .modal-footer {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    display: flex;
    gap: 1rem;
}

.btn-view-order,
.btn-new-order {
    flex: 1;
    padding: 0.75rem;
    border-radius: 12px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-view-order {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
}

.btn-view-order:hover {
    background: rgba(255, 255, 255, 0.2);
}

.btn-new-order {
    background: var(--primary-color);
    border: none;
    color: #fff;
}

.btn-new-order:hover {
    background: #ff5252;
    transform: translateY(-2px);
}

/* Floating Cart Button */
.floating-cart-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 5px 20px rgba(255, 107, 107, 0.3);
    transition: all 0.3s ease;
    z-index: 1000;
}

.floating-cart-btn:hover {
    background: #ff5252;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #fff;
    color: var(--primary-color);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
}

/* Responsive Design */
@media (max-width: 991px) {
    .menu-hero-title {
        font-size: 2.5rem;
    }

    .menu-hero-features {
        gap: 1rem;
    }

    .feature-item {
        font-size: 1rem;
    }

    .toppings-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

@media (max-width: 767px) {
    .menu-hero {
        padding: 60px 0 40px;
    }

    .menu-hero-title {
        font-size: 2rem;
    }

    .menu-hero-subtitle {
        font-size: 1.1rem;
    }

    .menu-hero-features {
        justify-content: center;
    }

    .category-tabs {
        gap: 0.5rem;
    }

    .category-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }

    .menu-items-section {
        padding: 2rem 0;
    }

    .menu-item {
        margin-bottom: 1.5rem;
    }

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

    .floating-cart-btn {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
    }
}

@media (max-width: 576px) {
    .menu-hero-title {
        font-size: 1.75rem;
    }

    .menu-hero-subtitle {
        font-size: 1rem;
    }

    .menu-item-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .menu-item-actions {
        width: 100%;
    }

    .btn-customize,
    .btn-add-to-cart {
        flex: 1;
        justify-content: center;
    }

    .toppings-modal-content .modal-footer {
        flex-direction: column;
        gap: 1rem;
    }

    .total-section {
        width: 100%;
        justify-content: space-between;
    }

    .cart-footer {
        flex-direction: column;
    }

    .order-status {
        flex-direction: column;
        gap: 1rem;
    }

    .status-item {
        flex-direction: row;
        justify-content: flex-start;
        gap: 1rem;
    }
}
