/* =============================================
   HOTEL PRANJAL - Mobile-First Restaurant Website
   ============================================= */

:root {
    --primary: #D4AF37;
    --primary-dark: #B8972F;
    --primary-light: #E8C547;
    --secondary: #2C1810;
    --accent: #8B4513;
    --white: #FFFFFF;
    --black: #0A0A0A;
    --gray-100: #F8F6F3;
    --gray-200: #E8E4DE;
    --gray-300: #D0C8BD;
    --gray-400: #9B9186;
    --gray-500: #6B6156;
    --gray-600: #4A4139;
    --success: #28a745;
    --danger: #dc3545;
    --gradient-gold: linear-gradient(135deg, #E8C547 0%, #D4AF37 50%, #B8972F 100%);
    --gradient-dark: linear-gradient(180deg, #2C1810 0%, #1A0F0A 100%);
    --font-primary: 'Poppins', sans-serif;
    --font-display: 'Playfair Display', serif;
    --font-script: 'Great Vibes', cursive;
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 5px 20px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.2);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-full: 50px;
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--gray-600);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    padding-bottom: 70px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

/* Success Modal */
.success-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10001;
    display: none;
    align-items: center;
    justify-content: center;
}

.success-modal.active {
    display: flex;
}

.success-content {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 30px;
    text-align: center;
    max-width: 400px;
    margin: 20px;
    animation: scaleIn 0.3s ease;
}

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

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

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.success-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.success-content h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--secondary);
    margin-bottom: 10px;
}

.success-content p {
    color: var(--gray-500);
    font-size: 0.95rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.order-id {
    background: var(--gray-100);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    color: var(--gray-600);
    margin-bottom: 20px;
}

/* Trust Strip */
.trust-strip {
    background: var(--secondary);
    padding: 12px 0;
}

.trust-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--primary);
    font-size: 0.75rem;
    font-weight: 500;
}

.trust-item i {
    font-size: 0.9rem;
}

/* Hero Tagline */
.hero-tagline {
    font-size: 1rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

/* Trust Box (GSTIN) */
.trust-box {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 2px solid var(--primary);
    border-radius: var(--radius-md);
    padding: 20px;
    margin: 25px 0;
    text-align: center;
}

.trust-box h4 {
    color: var(--secondary);
    font-size: 1rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.trust-box h4 i {
    color: var(--primary);
}

.trust-box p {
    font-size: 0.9rem;
    color: var(--gray-600);
    margin-bottom: 5px;
}

.trust-box p strong {
    color: var(--secondary);
}

/* GSTIN in Footer */
.gstin {
    color: #c0c0c0;
    font-size: 0.75rem;
    margin-top: 5px;
}

/* Order Options (3 ways to order) */
.order-options {
    margin: 25px 0;
}

.order-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: 0.3s ease;
}

.order-option.primary {
    background: var(--gradient-gold);
    color: var(--secondary);
    box-shadow: 0 5px 25px rgba(212, 175, 55, 0.4);
    margin-bottom: 12px;
}

.order-option.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 35px rgba(212, 175, 55, 0.5);
}

.order-options-alt {
    display: flex;
    gap: 10px;
}

.order-option.secondary {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    backdrop-filter: blur(5px);
}

.order-option.secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--primary);
}

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

.order-option.primary .option-icon {
    background: var(--secondary);
    color: var(--primary);
}

.option-icon.whatsapp {
    background: #25D366;
    color: white;
}

.option-icon.call {
    background: #4285F4;
    color: white;
}

.option-icon.call i {
    transform: scaleX(-1);
}

.option-text {
    display: flex;
    flex-direction: column;
}

.option-title {
    font-weight: 600;
    font-size: 1rem;
}

.option-desc {
    font-size: 0.75rem;
    opacity: 0.8;
}

.order-option.primary .option-desc {
    opacity: 0.7;
}

@media (max-width: 480px) {
    .order-options-alt {
        flex-direction: column;
    }

    .order-option {
        padding: 12px 15px;
    }

    .option-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .option-title {
        font-size: 0.9rem;
    }
}

/* Menu Search */
.menu-search {
    position: relative;
    max-width: 400px;
    margin: 0 auto 20px;
}

.menu-search input {
    width: 100%;
    padding: 12px 45px 12px 15px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    transition: 0.3s ease;
}

.menu-search input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.menu-search i {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-400);
}

/* Add More Items Button */
.add-more-items {
    padding: 10px 15px;
    border-top: 1px dashed var(--gray-200);
}

.add-more-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px;
    background: var(--gray-100);
    border-radius: var(--radius-full);
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9rem;
    transition: 0.3s ease;
}

.add-more-btn:hover {
    background: rgba(212, 175, 55, 0.15);
}

/* Modal Note */
.modal-note {
    text-align: center;
    color: var(--gray-500);
    font-size: 0.85rem;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--gray-200);
}

/* Form Labels */
.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gray-600);
    margin-bottom: 5px;
}

/* Payment Note */
.payment-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: #fff3cd;
    padding: 12px;
    border-radius: var(--radius-sm);
    margin-top: 15px;
}

.payment-note i {
    color: #856404;
    font-size: 1rem;
    margin-top: 2px;
}

.payment-note p {
    font-size: 0.8rem;
    color: #856404;
    margin: 0;
}

.loader {
    position: relative;
    width: 100px;
    height: 100px;
}

.loader-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loader-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-display);
    color: var(--primary);
    font-size: 0.75rem;
    white-space: nowrap;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Mobile Bottom Navigation */
.mobile-bottom-nav {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 8px 0;
}

.mobile-bottom-nav .nav-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    color: var(--gray-500);
    font-size: 0.65rem;
    padding: 5px 0;
    position: relative;
}

.mobile-bottom-nav .nav-item i {
    font-size: 1.2rem;
}

.mobile-bottom-nav .nav-item.active {
    color: var(--primary);
}

.mobile-bottom-nav .cart-badge {
    position: absolute;
    top: 0;
    right: 50%;
    transform: translateX(100%);
    background: var(--danger);
    color: white;
    font-size: 0.6rem;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Desktop Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 0;
    z-index: 1000;
    background: rgba(44, 24, 16, 0.95);
    backdrop-filter: blur(10px);
    display: none;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Ganesh Navbar Icon - Small Circle */
.navbar-ganesh {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.ganesh-circle-img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5), 0 2px 8px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.ganesh-circle-img:hover {
    transform: scale(1.1);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.8), 0 4px 12px rgba(0, 0, 0, 0.4);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    /* Circular separator container */
    background: linear-gradient(135deg, rgba(44, 24, 16, 0.95) 0%, rgba(30, 15, 10, 0.98) 100%);
    padding: 10px 22px 10px 12px;
    border-radius: 60px;
    border: 3px solid var(--primary);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.logo:hover {
    background: linear-gradient(135deg, rgba(50, 28, 18, 0.98) 0%, rgba(35, 18, 12, 1) 100%);
    border-color: #f0c850;
    box-shadow: 0 6px 30px rgba(212, 175, 55, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.logo-image {
    height: 45px;
    width: 45px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    border: 2px solid var(--primary);
}

.logo-text {
    color: var(--primary);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.logo-accent {
    color: var(--primary);
}

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 25px;
}

.nav-menu li {
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-link {
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    white-space: nowrap;
    line-height: 1;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.nav-btn {
    background: var(--gradient-gold);
    color: var(--secondary) !important;
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart-count {
    background: var(--danger);
    color: white;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--secondary);
    padding: 60px 15px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(44, 24, 16, 0.85) 0%, rgba(44, 24, 16, 0.7) 50%, rgba(44, 24, 16, 0.9) 100%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(212, 175, 55, 0.15);
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.hero-title {
    margin-bottom: 15px;
}

.decorative-text {
    display: block;
    font-family: var(--font-script);
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 5px;
}

.main-title {
    display: block;
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.1;
    /* Premium gold-to-rose-gold gradient - eye-catching & impressive */
    background: linear-gradient(90deg,
            #D4AF37 0%,
            #FFD700 15%,
            #F0E68C 30%,
            #FFB6C1 50%,
            #F0E68C 70%,
            #FFD700 85%,
            #D4AF37 100%);
    background-size: 300% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: titleShimmer 5s ease-in-out infinite;
    text-shadow: none;
    filter: drop-shadow(0 2px 4px rgba(212, 175, 55, 0.3));
}

@keyframes titleShimmer {

    0%,
    100% {
        background-position: 0% center;
    }

    50% {
        background-position: 200% center;
    }
}

.sub-title {
    display: block;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
    margin-top: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* =============================================
   RESTAURANT BOARD STYLE TITLE - Matches actual signboard
   ============================================= */
.board-style-title {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 15px 0;
    padding: 25px 35px;
    background: linear-gradient(180deg, rgba(139, 90, 43, 0.95) 0%, rgba(166, 108, 52, 0.92) 50%, rgba(139, 90, 43, 0.95) 100%);
    border-radius: var(--radius-lg);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.4),
        inset 0 2px 0 rgba(255, 255, 255, 0.1),
        inset 0 -2px 0 rgba(0, 0, 0, 0.2);
    border: 3px solid rgba(212, 175, 55, 0.5);
    position: relative;
    overflow: hidden;
}

.board-style-title::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        repeating-linear-gradient(90deg,
            transparent,
            transparent 40px,
            rgba(0, 0, 0, 0.03) 40px,
            rgba(0, 0, 0, 0.03) 80px);
    pointer-events: none;
}

/* Marathi "होटेल" - Blue with pipe separators */
.marathi-hotel {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2px;
    margin-bottom: 5px;
    position: relative;
}

.marathi-hotel .letter {
    font-family: 'Noto Sans Devanagari', 'Marathi', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #4169E1;
    /* Royal Blue matching the sign */
    text-shadow:
        0 0 10px rgba(65, 105, 225, 0.6),
        0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 2px;
}

.marathi-hotel .separator {
    color: #4169E1;
    font-size: 1.8rem;
    font-weight: 300;
    opacity: 0.7;
    margin: 0 3px;
}

.marathi-hotel .orange-dot {
    width: 22px;
    height: 22px;
    background: linear-gradient(135deg, #FFA500 0%, #FF8C00 100%);
    border-radius: 50%;
    margin-right: 12px;
    box-shadow: 0 0 15px rgba(255, 165, 0, 0.8), 0 0 30px rgba(255, 165, 0, 0.4);
    animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {

    0%,
    100% {
        box-shadow: 0 0 15px rgba(255, 165, 0, 0.8), 0 0 30px rgba(255, 165, 0, 0.4);
    }

    50% {
        box-shadow: 0 0 25px rgba(255, 165, 0, 1), 0 0 45px rgba(255, 165, 0, 0.6);
    }
}

/* Marathi "प्रांजल" - Large Red/Pink letters - THE MAIN HIGHLIGHT */
.marathi-pranjal {
    font-family: 'Noto Sans Devanagari', 'Marathi', sans-serif;
    font-size: 4.5rem;
    font-weight: 900;
    color: #DC143C;
    /* Crimson Red matching the sign */
    line-height: 1;
    text-shadow:
        0 0 20px rgba(220, 20, 60, 0.5),
        0 4px 8px rgba(0, 0, 0, 0.4),
        2px 2px 0 rgba(0, 0, 0, 0.2);
    letter-spacing: 5px;
    animation: textGlow 3s ease-in-out infinite;
}

@keyframes textGlow {

    0%,
    100% {
        text-shadow: 0 0 20px rgba(220, 20, 60, 0.5), 0 4px 8px rgba(0, 0, 0, 0.4);
    }

    50% {
        text-shadow: 0 0 35px rgba(220, 20, 60, 0.8), 0 4px 12px rgba(0, 0, 0, 0.5);
    }
}

/* Marathi "प्युअर व्हेज" - Teal/Green + (AC) */
.marathi-pureveg {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 8px;
}

.marathi-pureveg .pureveg-text {
    font-family: 'Noto Sans Devanagari', 'Marathi', sans-serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #20B2AA;
    /* Light Sea Green / Teal matching the sign */
    text-shadow:
        0 0 12px rgba(32, 178, 170, 0.6),
        0 2px 4px rgba(0, 0, 0, 0.3);
    letter-spacing: 3px;
}

.marathi-pureveg .ac-badge {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 600;
    color: #20B2AA;
    background: rgba(32, 178, 170, 0.15);
    padding: 4px 10px;
    border-radius: 5px;
    border: 1px solid rgba(32, 178, 170, 0.4);
}

/* English subtitle below the board */
.english-subtitle {
    display: block;
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    margin-top: 15px;
    letter-spacing: 1.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

/* Responsive styles for board title */
@media (max-width: 768px) {
    .board-style-title {
        padding: 18px 20px;
        margin: 10px 0;
    }

    .marathi-hotel .letter {
        font-size: 1.3rem;
    }

    .marathi-hotel .separator {
        font-size: 1.3rem;
    }

    .marathi-hotel .orange-dot {
        width: 14px;
        height: 14px;
        margin-left: 8px;
    }

    .marathi-pranjal {
        font-size: 2.8rem;
        letter-spacing: 3px;
    }

    .marathi-pureveg .pureveg-text {
        font-size: 1.2rem;
    }

    .marathi-pureveg .ac-badge {
        font-size: 0.85rem;
        padding: 3px 8px;
    }

    .english-subtitle {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .board-style-title {
        padding: 15px 15px;
    }

    .marathi-hotel .letter {
        font-size: 1.1rem;
    }

    .marathi-pranjal {
        font-size: 2.2rem;
        letter-spacing: 2px;
    }

    .marathi-pureveg .pureveg-text {
        font-size: 1rem;
    }

    .marathi-pureveg .ac-badge {
        font-size: 0.75rem;
    }

    .english-subtitle {
        font-size: 0.8rem;
    }
}

.hero-description {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0 auto 25px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-cta {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    transition: 0.3s ease;
}

.btn-primary {
    background: var(--gradient-gold);
    color: var(--secondary);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.5);
}

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

.btn-secondary:hover {
    background: var(--white);
    color: var(--secondary);
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

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

.stat-icon {
    display: block;
    color: var(--primary);
    font-size: 1rem;
    margin-bottom: 3px;
}

.stat-value {
    display: block;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.stat-label {
    font-size: 0.7rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
}

/* Delivery Strip */
.delivery-strip {
    background: var(--gradient-gold);
    padding: 12px 0;
}

.delivery-info {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.delivery-info .info-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.75rem;
}

.delivery-info .info-item i {
    font-size: 0.9rem;
}

.delivery-info .info-item.highlight {
    background: var(--success);
    color: white;
    padding: 6px 12px;
    border-radius: var(--radius-full);
}

.delivery-info .info-item.highlight i {
    color: white;
}

/* Offers Section */
/* =============================================
   OFFERS SECTION - Eye-catching Animated Design
   ============================================= */
.offers-section {
    padding: 25px 0;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    position: relative;
    overflow: hidden;
}

.offers-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    animation: rotateBackground 20s linear infinite;
}

@keyframes rotateBackground {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.offers-scroll {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    padding: 15px 5px;
    -webkit-overflow-scrolling: touch;
    justify-content: center;
    position: relative;
    z-index: 1;
}

.offers-scroll::-webkit-scrollbar {
    display: none;
}

.offers-animated {
    animation: fadeInUp 0.8s ease-out;
}

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

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

.offer-card {
    flex: 0 0 auto;
    min-width: 260px;
    background: linear-gradient(145deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 16px;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.offer-animate {
    animation: floatBounce 3s ease-in-out infinite;
}

.offer-card:nth-child(2) {
    animation-delay: 0.5s;
}

@keyframes floatBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.offer-glow {
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(212, 175, 55, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.offer-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.4),
        0 0 50px rgba(212, 175, 55, 0.5);
}

.offer-card.highlight {
    border: 3px solid var(--primary);
    background: linear-gradient(145deg, #fffdf5 0%, #fff8e7 100%);
    box-shadow:
        0 10px 40px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(212, 175, 55, 0.4);
}

.offer-card.highlight::before {
    content: '🔥 HOT';
    position: absolute;
    top: -2px;
    right: 15px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a5a 100%);
    color: white;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 0 0 8px 8px;
    animation: pulse 2s ease-in-out infinite;
    letter-spacing: 1px;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.9;
        transform: scale(1.05);
    }
}

.offer-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(90deg,
            transparent,
            rgba(255, 255, 255, 0.4),
            transparent);
    animation: shine 3s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    50%,
    100% {
        left: 150%;
    }
}

.offer-icon {
    width: 55px;
    height: 55px;
    background: linear-gradient(135deg, #D4AF37 0%, #f0c850 50%, #B8972F 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 1.3rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.offer-pulse {
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
    }

    50% {
        transform: scale(1.1);
        box-shadow: 0 6px 25px rgba(212, 175, 55, 0.6);
    }
}

.offer-text {
    position: relative;
    z-index: 1;
}

.offer-percentage {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 4px;
    background: linear-gradient(135deg, #2C1810 0%, #D4AF37 50%, #2C1810 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

@keyframes gradientShift {

    0%,
    100% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }
}

.offer-text p {
    font-size: 0.8rem;
    color: var(--gray-500);
    font-weight: 500;
}

/* Mobile responsiveness for offers */
@media (max-width: 640px) {
    .offers-scroll {
        justify-content: flex-start;
        padding: 10px 15px;
    }

    .offer-card {
        min-width: 240px;
        padding: 15px 20px;
    }

    .offer-icon {
        width: 48px;
        height: 48px;
        font-size: 1.1rem;
    }

    .offer-percentage {
        font-size: 1.2rem;
    }
}

/* Section Styles */
.section-header {
    text-align: center;
    margin-bottom: 30px;
}

.section-badge {
    display: inline-block;
    font-family: var(--font-script);
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.section-title {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 8px;
}

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

.section-subtitle {
    font-size: 0.9rem;
    color: var(--gray-500);
}

/* Menu Section */
.menu-section {
    padding: 40px 0;
}

.menu-pdf-section {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 25px;
}

.pdf-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--secondary);
    color: var(--white);
    padding: 10px 18px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 500;
}

.pdf-btn:hover {
    background: var(--accent);
}

.menu-categories {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 10px 5px;
    margin-bottom: 20px;
    -webkit-overflow-scrolling: touch;
}

.menu-categories::-webkit-scrollbar {
    display: none;
}

.menu-tab {
    flex-shrink: 0;
    padding: 8px 18px;
    border-radius: var(--radius-full);
    background: var(--gray-100);
    color: var(--gray-600);
    font-size: 0.8rem;
    font-weight: 500;
    border: 1px solid var(--gray-200);
    transition: 0.3s ease;
}

.menu-tab.active {
    background: var(--gradient-gold);
    color: var(--secondary);
    border-color: var(--primary);
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

/* Menu Card */
.menu-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border: 1px solid var(--gray-200);
    transition: 0.3s ease;
}

.menu-card:active {
    transform: scale(0.98);
}

.menu-card-image {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    flex-shrink: 0;
    position: relative;
}

.menu-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-badge {
    position: absolute;
    top: 5px;
    left: 5px;
    background: var(--success);
    color: var(--white);
    font-size: 0.55rem;
    padding: 2px 6px;
    border-radius: 3px;
    font-weight: 600;
}

.menu-badge.bestseller {
    background: var(--primary);
    color: var(--secondary);
}

.menu-card-content {
    flex: 1;
    min-width: 0;
}

.menu-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 4px;
}

.menu-card-header h3 {
    font-size: 0.95rem;
    color: var(--secondary);
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.menu-card-header .price {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--primary);
    white-space: nowrap;
}

.menu-card-content p {
    font-size: 0.75rem;
    color: var(--gray-500);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 8px;
}

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

.veg-indicator {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.65rem;
    color: var(--success);
}

.veg-indicator i {
    font-size: 0.5rem;
}

.add-btn {
    background: var(--gradient-gold);
    color: var(--secondary);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* About Section */
.about-section {
    padding: 40px 0;
    background: var(--gray-100);
}

.about-content-centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.about-text {
    font-size: 0.95rem;
    color: var(--gray-500);
    margin-bottom: 15px;
}

.about-text strong {
    color: var(--secondary);
}

.features-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin-top: 25px;
}

.features-grid .feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--secondary);
    font-weight: 600;
    font-size: 0.85rem;
}

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

/* Feedback Section */
.feedback-section {
    padding: 40px 0;
}

.feedback-form {
    max-width: 500px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 15px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-family: inherit;
    transition: 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

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

.rating-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--gray-600);
}

.star-rating {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.star-rating i {
    font-size: 1.8rem;
    color: var(--gray-300);
    cursor: pointer;
    transition: 0.2s ease;
}

.star-rating i.active,
.star-rating i:hover {
    color: var(--primary);
}

/* Reviews Section */
.reviews-section {
    padding: 40px 0;
    background: var(--gray-100);
}

.reviews-stats {
    text-align: center;
    margin-bottom: 25px;
}

.rating-big {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
}

.rating-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary);
    line-height: 1;
}

.rating-big .stars {
    color: var(--primary);
    font-size: 1.2rem;
    margin: 5px 0;
}

.rating-text {
    font-size: 0.8rem;
    color: var(--gray-500);
}

.reviews-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
}

.review-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 15px;
    box-shadow: var(--shadow-sm);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-weight: 700;
    font-size: 0.85rem;
}

.reviewer-info h4 {
    font-size: 0.9rem;
    color: var(--secondary);
    margin-bottom: 2px;
}

.review-stars {
    color: var(--primary);
    font-size: 0.7rem;
}

.review-text {
    font-size: 0.85rem;
    color: var(--gray-500);
    font-style: italic;
}

/* Contact Section */
.contact-section {
    padding: 40px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 25px;
}

.contact-card {
    background: var(--gray-100);
    border-radius: var(--radius-md);
    padding: 15px;
    text-align: center;
}

.contact-card i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-bottom: 8px;
}

.contact-card h4 {
    font-size: 0.85rem;
    color: var(--secondary);
    margin-bottom: 5px;
}

.contact-card p {
    font-size: 0.75rem;
    color: var(--gray-500);
}

.contact-card a {
    color: var(--primary);
}

.contact-card.full-width {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, #833AB4, #FD1D1D, #F77737);
}

.contact-card.full-width i,
.contact-card.full-width h4,
.contact-card.full-width p,
.contact-card.full-width a {
    color: white;
}

.map-container {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

/* QR Section */
.qr-section {
    padding: 40px 0;
    background: var(--secondary);
    text-align: center;
}

.qr-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 8px;
}

.qr-content p {
    color: var(--gray-400);
    font-size: 0.85rem;
    margin-bottom: 15px;
}

.qr-placeholder {
    display: inline-block;
    background: var(--white);
    padding: 15px;
    border-radius: var(--radius-sm);
}

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

.qr-url {
    color: var(--primary);
    font-weight: 600;
    margin-top: 15px;
}

/* Footer */
.footer {
    background: var(--gradient-dark);
    padding: 30px 0;
    text-align: center;
}

.footer-brand h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--primary);
    margin-bottom: 5px;
    text-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.footer-brand p {
    color: #e0e0e0;
    font-size: 0.8rem;
    margin-bottom: 15px;
}

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

.footer-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 1.1rem;
    transition: 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

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

.copyright {
    color: #b0b0b0;
    font-size: 0.75rem;
}

.developer-name {
    color: #b0b0b0;
}

/* Cart Sidebar */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
}

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

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 400px;
    height: 100%;
    background: var(--white);
    z-index: 2001;
    display: flex;
    flex-direction: column;
    transition: 0.3s ease;
}

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

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: var(--secondary);
    color: var(--white);
}

.cart-header h3 {
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.close-cart {
    color: var(--white);
    font-size: 1.3rem;
    padding: 5px;
}

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

.cart-item {
    display: flex;
    gap: 12px;
    padding: 12px;
    background: var(--gray-100);
    border-radius: var(--radius-sm);
    margin-bottom: 10px;
}

.cart-item-image {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.cart-item-details h4 {
    font-size: 0.9rem;
    color: var(--secondary);
    margin-bottom: 3px;
}

.cart-item-details .customization {
    font-size: 0.7rem;
    color: var(--gray-500);
    margin-bottom: 5px;
}

.cart-item-details .item-price {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--primary);
}

.cart-item-actions {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content: space-between;
}

.remove-item {
    color: var(--danger);
    font-size: 0.9rem;
}

.qty-controls {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--white);
    border-radius: var(--radius-full);
    padding: 3px;
}

.qty-controls button {
    width: 24px;
    height: 24px;
    background: var(--gray-200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    color: var(--secondary);
}

.qty-controls span {
    font-size: 0.85rem;
    font-weight: 600;
    min-width: 20px;
    text-align: center;
}

.cart-empty {
    text-align: center;
    padding: 40px 20px;
    color: var(--gray-400);
}

.cart-empty i {
    font-size: 3rem;
    margin-bottom: 15px;
}

.cart-empty p {
    font-size: 0.9rem;
}

.cart-summary {
    padding: 15px;
    border-top: 1px solid var(--gray-200);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    margin-bottom: 8px;
}

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

.summary-row.total {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary);
    border-top: 1px solid var(--gray-200);
    padding-top: 10px;
    margin-top: 10px;
}

.min-order-warning {
    background: #fff3cd;
    color: #856404;
    padding: 10px;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
}

.min-order-warning.hidden {
    display: none;
}

.checkout-btn {
    width: calc(100% - 30px);
    margin: 0 15px 15px;
    padding: 14px;
    background: var(--gradient-gold);
    color: var(--secondary);
    border-radius: var(--radius-full);
    font-size: 1rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.checkout-btn:disabled {
    background: var(--gray-300);
    color: var(--gray-500);
    cursor: not-allowed;
}

/* Modals */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 3000;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--white);
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    overflow: hidden;
    transform: translateY(100%);
    transition: 0.3s ease;
    display: flex;
    flex-direction: column;
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background: var(--secondary);
    color: var(--white);
}

.modal-header h3 {
    font-size: 1rem;
}

.modal-close {
    color: var(--white);
    font-size: 1.2rem;
}

.modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.modal-footer {
    padding: 15px;
    border-top: 1px solid var(--gray-200);
}

/* Customize Modal */
.dish-preview {
    display: flex;
    align-items: center;
    gap: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--gray-200);
    margin-bottom: 15px;
}

.dish-preview img {
    width: 70px;
    height: 70px;
    border-radius: var(--radius-sm);
    object-fit: cover;
}

.dish-preview h4 {
    font-size: 1rem;
    color: var(--secondary);
}

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

.customize-options h4 {
    font-size: 0.9rem;
    color: var(--secondary);
    margin: 15px 0 10px;
}

.option-group {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.option-item {
    display: block;
}

.option-item input {
    display: none;
}

.option-item span {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: var(--gray-100);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    cursor: pointer;
    transition: 0.3s ease;
}

.option-item input:checked+span {
    background: var(--gradient-gold);
    border-color: var(--primary);
    color: var(--secondary);
}

.customize-options textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 0.85rem;
    resize: none;
    margin-top: 8px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid var(--gray-200);
}

.qty-btn {
    width: 40px;
    height: 40px;
    background: var(--gray-100);
    border: 1px solid var(--gray-300);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--secondary);
}

.qty-btn:active {
    background: var(--gray-200);
}

.qty-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--secondary);
    min-width: 40px;
    text-align: center;
}

/* Payment Modal */
.payment-modal {
    max-height: 95vh;
}

.delivery-form h4,
.payment-info h4,
.order-summary-final h4 {
    font-size: 0.9rem;
    color: var(--secondary);
    margin-bottom: 12px;
}

.delivery-form input,
.delivery-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    margin-bottom: 10px;
    font-family: inherit;
}

.payment-info {
    text-align: center;
    padding: 20px 0;
    border-top: 1px solid var(--gray-200);
    margin-top: 15px;
}

.upi-note {
    font-size: 0.8rem;
    color: var(--gray-500);
    margin-bottom: 15px;
}

.qr-code {
    display: inline-block;
    padding: 10px;
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-sm);
    margin-bottom: 15px;
}

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

.upi-id {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: var(--gray-100);
    padding: 10px 15px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
}

.upi-id strong {
    color: var(--secondary);
}

.copy-btn {
    background: var(--primary);
    color: var(--secondary);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.payment-apps {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 15px;
}

.payment-apps span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.8rem;
    color: var(--gray-600);
}

.order-summary-final {
    padding-top: 20px;
    border-top: 1px solid var(--gray-200);
    margin-top: 20px;
}

.delivery-note {
    text-align: center;
    font-size: 0.75rem;
    color: var(--gray-500);
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 80px;
    right: 15px;
    width: 55px;
    height: 55px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.6rem;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 999;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

/* Back to Top */
.back-to-top {
    position: fixed;
    bottom: 80px;
    right: 80px;
    width: 45px;
    height: 45px;
    background: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s ease;
    z-index: 998;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

/* Desktop Styles */
@media (min-width: 768px) {
    body {
        padding-bottom: 0;
    }

    .mobile-bottom-nav {
        display: none;
    }

    .navbar {
        display: block;
    }

    .hero {
        padding: 100px 20px;
    }

    .main-title {
        font-size: 4rem;
    }

    .decorative-text {
        font-size: 2.5rem;
    }

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

    .hero-description {
        font-size: 1.1rem;
    }

    .section-title {
        font-size: 2.5rem;
    }

    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

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

    .contact-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .whatsapp-float {
        bottom: 30px;
        right: 30px;
    }

    .back-to-top {
        bottom: 30px;
        right: 100px;
    }

    .modal-overlay {
        align-items: center;
    }

    .modal-content {
        border-radius: var(--radius-lg);
        max-height: 85vh;
    }
}

@media (min-width: 1024px) {
    .menu-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* =============================================
   PARTY HALL SECTION
   ============================================= */
.party-hall-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #FDF8F3 0%, #FFF9F0 100%);
}

.section-subtitle {
    text-align: center;
    color: var(--gray-500);
    font-size: 1rem;
    margin-top: 10px;
}

.hall-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 30px 0;
}

.hall-feature-item {
    background: white;
    padding: 20px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hall-feature-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.hall-feature-item i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.hall-feature-item h4 {
    color: var(--secondary);
    font-size: 1rem;
    margin-bottom: 5px;
}

.hall-feature-item p {
    font-size: 0.8rem;
    color: var(--gray-500);
}

.events-we-host {
    background: var(--secondary);
    padding: 25px;
    border-radius: var(--radius-md);
    margin: 30px 0;
    text-align: center;
}

.events-we-host h3 {
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.events-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.event-tag {
    background: rgba(212, 175, 55, 0.2);
    color: var(--primary);
    padding: 8px 15px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s ease;
}

.event-tag:hover {
    background: var(--primary);
    color: var(--secondary);
    transform: scale(1.05);
}

.gallery-title {
    text-align: center;
    color: var(--secondary);
    font-size: 1.3rem;
    margin: 30px 0 15px;
}

.gallery-title i {
    color: var(--primary);
    margin-right: 8px;
}

.hall-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
    padding: 0 5px;
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    aspect-ratio: 4/3;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.catering-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 30px;
}

.catering-card {
    background: white;
    padding: 20px;
    border-radius: var(--radius-md);
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.catering-card:hover {
    border-color: var(--primary);
    transform: translateY(-3px);
}

.catering-card i {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.catering-card h4 {
    color: var(--secondary);
    font-size: 0.95rem;
    margin-bottom: 5px;
}

.catering-card p {
    font-size: 0.8rem;
    color: var(--gray-500);
}

.hall-booking-cta {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    padding: 30px 20px;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 2px solid var(--primary);
    position: relative;
    overflow: hidden;
}

.hall-booking-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.hall-booking-cta h3 {
    color: var(--secondary);
    font-size: 1.4rem;
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.hall-booking-cta>p {
    color: var(--gray-600);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.booking-buttons {
    display: flex;
    flex-direction: row;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
    z-index: 1;
}

.booking-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 15px 30px;
    border-radius: var(--radius-full);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    flex-direction: row;
    min-width: 200px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.booking-btn i {
    font-size: 1.3rem;
}

.booking-btn span {
    font-size: 0.85rem;
    font-weight: 500;
    opacity: 0.9;
}

.booking-btn.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
}

.booking-btn.whatsapp:hover {
    background: linear-gradient(135deg, #1DA851 0%, #0e7264 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
}

.booking-btn.call {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--secondary);
}

.booking-btn.call i {
    transform: scaleX(-1);
}

.booking-btn.call:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

/* Google Review Button */
.google-review-section {
    margin-top: 30px;
    text-align: center;
    padding: 25px;
    background: linear-gradient(135deg, #FFF 0%, #F8F6F3 100%);
    border-radius: var(--radius-md);
    border: 2px dashed var(--primary);
}

.divider {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.divider::before,
.divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--gray-300);
}

.divider span {
    padding: 0 15px;
    color: var(--gray-400);
    font-weight: 500;
}

.google-review-section h4 {
    color: var(--secondary);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.google-review-section p {
    color: var(--gray-500);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.google-review-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #4285F4, #34A853, #FBBC05, #EA4335);
    background-size: 300% 300%;
    animation: googleGradient 3s ease infinite;
    color: white;
    padding: 14px 30px;
    border-radius: var(--radius-full);
    font-weight: 600;
    text-decoration: none;
    font-size: 1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.google-review-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(66, 133, 244, 0.4);
}

@keyframes googleGradient {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Instagram Button */
.instagram-btn {
    display: block;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.instagram-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 8px 30px rgba(131, 58, 180, 0.3);
}

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

    to {
        opacity: 1;
    }
}

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

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

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.02);
    }
}

.animate-fadeIn {
    animation: fadeIn 0.8s ease-out;
}

.animate-slideUp {
    animation: slideUp 0.8s ease-out;
}

.animate-pulse {
    animation: pulse 2s infinite;
}

/* Responsive Party Hall */
@media (min-width: 480px) {
    .booking-buttons {
        flex-direction: row;
        justify-content: center;
    }

    .booking-btn {
        flex-direction: row;
    }
}

@media (min-width: 768px) {
    .hall-features {
        grid-template-columns: repeat(4, 1fr);
    }

    .hall-gallery {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .catering-info {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* =============================================
   ANIMATED HOTEL PRANJAL TITLE
   ============================================= */
.animated-title {
    background: linear-gradient(90deg,
            var(--primary) 0%,
            #FFD700 25%,
            var(--primary) 50%,
            #FFD700 75%,
            var(--primary) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: titleShine 3s linear infinite, titleFloat 2s ease-in-out infinite;
}

@keyframes titleShine {
    0% {
        background-position: 0% center;
    }

    100% {
        background-position: 200% center;
    }
}

@keyframes titleFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

/* Food Quote */
.food-quote {
    font-family: var(--font-script);
    font-size: 1.3rem;
    color: var(--primary-light);
    margin: 10px 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out 0.5s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

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

/* View More Button */
.view-more-container {
    grid-column: 1 / -1;
    text-align: center;
    padding: 30px 0;
}

.view-more-btn {
    background: var(--gradient-gold);
    color: var(--secondary);
    border: none;
    padding: 15px 40px;
    border-radius: var(--radius-full);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.view-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 175, 55, 0.4);
}

.view-more-btn i {
    animation: bounceDown 1.5s infinite;
}

@keyframes bounceDown {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(5px);
    }
}

/* Premium Badge */
.menu-badge.premium {
    background: linear-gradient(135deg, #9B59B6, #8E44AD);
}

/* Cart Preference Tags - Oil/Spice Labels */
.pref-tag {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 8px;
    border-radius: 12px;
    font-size: 0.65rem;
    font-weight: 500;
    margin-right: 4px;
    margin-bottom: 4px;
}

.pref-tag i {
    font-size: 0.55rem;
}

.pref-tag.spice-less {
    background: rgba(255, 152, 0, 0.15);
    color: #F57C00;
    border: 1px solid rgba(255, 152, 0, 0.3);
}

.pref-tag.spice-normal {
    background: rgba(255, 87, 34, 0.12);
    color: #E64A19;
    border: 1px solid rgba(255, 87, 34, 0.25);
}

.pref-tag.spice-extra {
    background: rgba(244, 67, 54, 0.15);
    color: #D32F2F;
    border: 1px solid rgba(244, 67, 54, 0.3);
}

.pref-tag.oil-less {
    background: rgba(33, 150, 243, 0.12);
    color: #1976D2;
    border: 1px solid rgba(33, 150, 243, 0.25);
}

.pref-tag.oil-normal {
    background: rgba(76, 175, 80, 0.12);
    color: #388E3C;
    border: 1px solid rgba(76, 175, 80, 0.25);
}

.pref-tag.instructions {
    background: rgba(156, 39, 176, 0.1);
    color: #7B1FA2;
    border: 1px solid rgba(156, 39, 176, 0.2);
}

.customization {
    display: flex;
    flex-wrap: wrap;
    margin: 4px 0;
}

/* Enhanced Success Modal Styles */
.success-icon.pulse-animation {
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.order-id-section {
    margin: 20px 0;
    text-align: center;
}

.order-id-label {
    display: block;
    font-size: 0.85rem;
    color: var(--gray-500);
    margin-bottom: 8px;
}

.order-id-box {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--gray-100);
    padding: 10px 15px;
    border-radius: var(--radius-md);
    border: 2px dashed var(--primary);
}

.order-id-box span {
    font-family: 'Courier New', monospace;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--secondary);
    letter-spacing: 1px;
}

.copy-order-btn {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: var(--primary);
    color: var(--secondary);
    border: none;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.copy-order-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

.copy-order-btn.copied {
    background: var(--success);
    color: white;
}

.delivery-time-box {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 2px solid var(--primary);
    border-radius: var(--radius-md);
    padding: 15px 20px;
    margin: 20px 0;
}

.delivery-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: bounce 1s ease infinite;
}

.delivery-icon i {
    font-size: 1.4rem;
    color: var(--secondary);
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.delivery-info-text {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.delivery-label {
    font-size: 0.8rem;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.delivery-time {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-dark);
}

.success-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #fff3cd;
    color: #856404;
    padding: 10px 15px;
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    margin: 15px 0;
}

.success-note i {
    color: #856404;
}

/* FAQ Section Styles */
.faq-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--gray-100) 0%, var(--surface) 100%);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: var(--radius-lg);
    margin-bottom: 15px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary);
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: var(--primary-dark);
}

.faq-question i {
    color: var(--primary);
    transition: transform 0.3s ease;
    font-size: 0.9rem;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 25px 20px;
}

.faq-answer p {
    color: var(--gray-600);
    line-height: 1.7;
    margin: 0;
}

.faq-answer a {
    color: var(--primary-dark);
    font-weight: 600;
    text-decoration: none;
}

.faq-answer a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .faq-question {
        font-size: 0.9rem;
        padding: 15px 18px;
    }

    .faq-item.active .faq-answer {
        padding: 0 18px 15px;
    }
}

/* =============================================
   DARK MODE STYLES
   ============================================= */

/* Dark Mode Toggle Button */
.dark-mode-toggle {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--primary);
    border-radius: 50%;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    color: var(--primary);
    font-size: 1.1rem;
}

.dark-mode-toggle:hover {
    background: var(--primary);
    color: var(--secondary);
    transform: rotate(20deg) scale(1.1);
}

/* Mobile Dark Mode Toggle */
.dark-mode-nav {
    background: none;
    border: none;
    cursor: pointer;
}

.dark-mode-nav i {
    color: var(--primary);
}

/* Live Status Indicator */
.live-status {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    background: rgba(40, 167, 69, 0.15);
    border-radius: var(--radius-full);
    border: 1px solid rgba(40, 167, 69, 0.3);
    height: 38px;
    line-height: 1;
}

.live-status .status-dot {
    width: 10px;
    height: 10px;
    background: #28a745;
    border-radius: 50%;
    animation: pulse-dot 1.5s ease-in-out infinite;
}

.live-status.closed {
    background: rgba(220, 53, 69, 0.15);
    border-color: rgba(220, 53, 69, 0.3);
}

.live-status.closed .status-dot {
    background: #dc3545;
    animation: none;
}

.live-status .status-text {
    font-size: 0.8rem;
    font-weight: 600;
    color: #28a745;
}

.live-status.closed .status-text {
    color: #dc3545;
}

@keyframes pulse-dot {

    0%,
    100% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }
}

/* Mobile Status Bar */
.mobile-status-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px 15px;
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.1) 0%, rgba(40, 167, 69, 0.05) 100%);
    border-bottom: 1px solid rgba(40, 167, 69, 0.2);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
}

.mobile-status-bar .status-dot {
    width: 8px;
    height: 8px;
    background: #28a745;
    border-radius: 50%;
    animation: pulse-dot 1.5s ease-in-out infinite;
}

.mobile-status-bar .status-text {
    font-size: 0.75rem;
    font-weight: 600;
    color: #28a745;
}

.mobile-status-bar.closed {
    background: linear-gradient(135deg, rgba(220, 53, 69, 0.1) 0%, rgba(220, 53, 69, 0.05) 100%);
    border-color: rgba(220, 53, 69, 0.2);
}

.mobile-status-bar.closed .status-dot {
    background: #dc3545;
    animation: none;
}

.mobile-status-bar.closed .status-text {
    color: #dc3545;
}

@media (min-width: 769px) {
    .mobile-status-bar {
        display: none;
    }
}

/* Thank You Section */
.thank-you-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--secondary) 0%, #1A0F0A 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.thank-you-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.thank-you-content {
    position: relative;
    z-index: 1;
    max-width: 650px;
    margin: 0 auto;
}

.thank-you-icon {
    width: 90px;
    height: 90px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    animation: heartbeat 1.5s ease-in-out infinite;
}

.thank-you-icon i {
    font-size: 2.5rem;
    color: var(--secondary);
}

@keyframes heartbeat {

    0%,
    100% {
        transform: scale(1);
    }

    15% {
        transform: scale(1.15);
    }

    30% {
        transform: scale(1);
    }

    45% {
        transform: scale(1.1);
    }

    60% {
        transform: scale(1);
    }
}

.thank-you-title {
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: var(--primary);
    margin-bottom: 20px;
    text-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.thank-you-message {
    font-size: 1.1rem;
    color: #e8e2d9;
    line-height: 1.8;
    margin-bottom: 25px;
}

.thank-you-quote {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.thank-you-quote i {
    color: var(--primary);
    font-size: 0.9rem;
    opacity: 0.7;
}

.thank-you-quote span {
    font-family: var(--font-script);
    font-size: 1.4rem;
    color: var(--primary);
}

.thank-you-cta {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.thank-you-cta .btn-secondary {
    border-color: var(--primary);
    color: var(--primary);
}

.thank-you-cta .btn-secondary:hover {
    background: var(--primary);
    color: var(--secondary);
}

@media (max-width: 768px) {
    .thank-you-title {
        font-size: 1.6rem;
    }

    .thank-you-quote span {
        font-size: 1.1rem;
    }

    .thank-you-icon {
        width: 70px;
        height: 70px;
    }

    .thank-you-icon i {
        font-size: 2rem;
    }
}

/* =============================================
   DARK MODE THEME
   ============================================= */

body.dark-mode {
    --white: #1a1a1a;
    --black: #f5f5f5;
    --gray-100: #2a2a2a;
    --gray-200: #3a3a3a;
    --gray-300: #5a5a5a;
    --gray-400: #8a8a8a;
    --gray-500: #aaaaaa;
    --gray-600: #cccccc;
    background: #121212;
    color: #e0e0e0;
}

/* Dark mode text visibility fix - add white text-shadow to dark text elements */
body.dark-mode h1,
body.dark-mode h2,
body.dark-mode h3,
body.dark-mode h4,
body.dark-mode h5,
body.dark-mode h6,
body.dark-mode p,
body.dark-mode span,
body.dark-mode a,
body.dark-mode label,
body.dark-mode li {
    text-shadow: 0 0 1px rgba(255, 255, 255, 0.1);
}

/* Specific fix for any remaining black text in dark mode */
body.dark-mode .offer-card h4,
body.dark-mode .offer-card p,
body.dark-mode .offer-percentage,
body.dark-mode .hall-feature-item h4,
body.dark-mode .hall-feature-item p,
body.dark-mode .catering-card h4,
body.dark-mode .catering-card p,
body.dark-mode .event-tag,
body.dark-mode .section-subtitle,
body.dark-mode .option-title,
body.dark-mode .option-desc {
    color: #e0e0e0 !important;
    text-shadow: 0 0 2px rgba(255, 255, 255, 0.15);
}

/* Fix for offer cards in dark mode */
body.dark-mode .offer-card {
    background: linear-gradient(145deg, #2a2a2a 0%, #1e1e1e 100%) !important;
    border-color: #444 !important;
}

body.dark-mode .offer-card.highlight {
    background: linear-gradient(145deg, #2a2a2a 0%, #252525 100%) !important;
    border-color: var(--primary) !important;
}

/* Fix for party hall section text in dark mode */
body.dark-mode .hall-feature-item {
    background: #252525 !important;
    border-color: #444 !important;
}

body.dark-mode .catering-card {
    background: #252525 !important;
    border-color: #444 !important;
}

body.dark-mode .events-we-host {
    background: rgba(212, 175, 55, 0.08) !important;
}

body.dark-mode .event-tag {
    background: #2a2a2a !important;
    border-color: #444 !important;
}

body.dark-mode .navbar {
    background: rgba(18, 18, 18, 0.98);
}

body.dark-mode .mobile-bottom-nav {
    background: #1a1a1a;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.5);
}

body.dark-mode .mobile-bottom-nav .nav-item {
    color: #888;
}

body.dark-mode .mobile-bottom-nav .nav-item.active {
    color: var(--primary);
}

body.dark-mode .mobile-status-bar {
    background: linear-gradient(135deg, rgba(40, 167, 69, 0.2) 0%, rgba(40, 167, 69, 0.1) 100%);
}

body.dark-mode .section-title {
    color: #f0f0f0;
}

body.dark-mode .menu-section,
body.dark-mode .feedback-section,
body.dark-mode .reviews-section,
body.dark-mode .contact-section,
body.dark-mode .about-section,
body.dark-mode .faq-section {
    background: #1a1a1a;
}

body.dark-mode .menu-card {
    background: #252525;
    border-color: #333;
}

body.dark-mode .menu-card:hover {
    border-color: var(--primary);
}

body.dark-mode .menu-card .dish-name {
    color: #f0f0f0;
}

body.dark-mode .menu-card .dish-desc {
    color: #aaa;
}

body.dark-mode .menu-tab {
    background: #252525;
    color: #aaa;
    border-color: #333;
}

body.dark-mode .menu-tab.active {
    background: var(--gradient-gold);
    color: var(--secondary);
}

body.dark-mode .menu-search input {
    background: #252525;
    border-color: #333;
    color: #f0f0f0;
}

body.dark-mode .menu-search input::placeholder {
    color: #777;
}

body.dark-mode .trust-strip {
    background: #0a0a0a;
}

body.dark-mode .delivery-strip {
    background: #1e1e1e !important;
    border-color: #333;
}

body.dark-mode .delivery-strip .info-item {
    color: #ccc;
}

body.dark-mode .offer-card {
    background: #252525;
    border-color: #333;
}

body.dark-mode .contact-card {
    background: #252525 !important;
    border-color: #444 !important;
}

body.dark-mode .contact-card h4 {
    color: #f0f0f0;
}

body.dark-mode .contact-card p,
body.dark-mode .contact-card a {
    color: #bbb;
}

body.dark-mode .faq-item {
    background: #252525;
    border-color: #333;
}

body.dark-mode .faq-question {
    color: #f0f0f0;
}

body.dark-mode .faq-answer p {
    color: #aaa;
}

body.dark-mode .review-card {
    background: #252525;
    border-color: #333;
}

body.dark-mode .review-card h4,
body.dark-mode .reviewer-info h4 {
    color: #f0f0f0;
}

body.dark-mode .review-text {
    color: #bbb;
}

body.dark-mode .about-section {
    background: #1a1a1a !important;
}

body.dark-mode .about-content-centered {
    color: #ccc;
}

body.dark-mode .about-text {
    color: #bbb !important;
}

body.dark-mode .about-text strong {
    color: var(--primary) !important;
}

body.dark-mode .trust-box {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.08) 100%) !important;
    border-color: var(--primary) !important;
}

body.dark-mode .trust-box h4 {
    color: #f0f0f0;
}

body.dark-mode .trust-box p {
    color: #bbb;
}

body.dark-mode .features-grid .feature-item {
    background: #252525 !important;
    color: #ccc;
    border-color: #333;
}

body.dark-mode .cart-sidebar {
    background: #1a1a1a;
}

body.dark-mode .cart-header {
    background: #252525;
    color: #f0f0f0;
}

body.dark-mode .cart-header h3 {
    color: #f0f0f0;
}

body.dark-mode .cart-item {
    background: #252525;
    border-color: #333;
}

body.dark-mode .cart-item h4 {
    color: #f0f0f0;
}

body.dark-mode .cart-summary {
    background: #1e1e1e;
    border-color: #333;
}

body.dark-mode .cart-empty {
    color: #888;
}

body.dark-mode .modal-content {
    background: #1a1a1a;
}

body.dark-mode .modal-header {
    background: #252525;
    color: #f0f0f0;
}

body.dark-mode .modal-header h3 {
    color: #f0f0f0;
}

body.dark-mode .modal-body {
    background: #1a1a1a;
}

body.dark-mode .form-group input,
body.dark-mode .form-group textarea,
body.dark-mode .form-group select {
    background: #252525 !important;
    border-color: #444 !important;
    color: #f0f0f0 !important;
}

body.dark-mode .form-group label {
    color: #ccc;
}

body.dark-mode .qr-section {
    background: #1a1a1a !important;
}

body.dark-mode .qr-content {
    background: #252525;
    color: #f0f0f0;
}

body.dark-mode .qr-content h3 {
    color: #f0f0f0;
}

body.dark-mode .qr-content p {
    color: #aaa;
}

body.dark-mode .footer {
    background: #0a0a0a !important;
}

body.dark-mode .footer p,
body.dark-mode .footer-brand p {
    color: #888;
}

/* Party Hall Section Dark Mode */
body.dark-mode .party-hall-section {
    background: linear-gradient(180deg, #1a1a1a 0%, #121212 100%) !important;
}

body.dark-mode .hall-feature-item {
    background: #252525;
    border-color: #333;
}

body.dark-mode .hall-feature-item h4 {
    color: #f0f0f0;
}

body.dark-mode .hall-feature-item p {
    color: #aaa;
}

body.dark-mode .catering-card {
    background: #252525;
    border-color: #333;
}

body.dark-mode .catering-card h4 {
    color: #f0f0f0;
}

body.dark-mode .catering-card p {
    color: #aaa;
}

body.dark-mode .event-tag {
    background: rgba(212, 175, 55, 0.15);
    border-color: var(--primary);
    color: var(--primary);
}

/* Feedback Section Dark Mode */
body.dark-mode .feedback-form {
    background: #252525;
    border-color: #333;
}

body.dark-mode .google-review-section {
    background: #1e1e1e;
}

body.dark-mode .google-review-section h4,
body.dark-mode .google-review-section p {
    color: #ccc;
}

/* Reviews Section Dark Mode */
body.dark-mode .reviews-section {
    background: #1a1a1a !important;
}

body.dark-mode .reviews-stats {
    background: #252525;
}

body.dark-mode .rating-text {
    color: #ccc;
}

/* Rating number visibility in dark mode */
body.dark-mode .rating-number {
    color: var(--primary);
}

/* Navbar links visibility in dark mode */
body.dark-mode .nav-link {
    color: #ffffff !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}

body.dark-mode .nav-link:hover,
body.dark-mode .nav-link.active {
    color: var(--primary) !important;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.6);
}

body.dark-mode .reviewer-avatar {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
}

/* Section Headers in Dark Mode */
body.dark-mode .section-badge {
    background: rgba(212, 175, 55, 0.2);
    color: var(--primary);
}

body.dark-mode .section-subtitle {
    color: #aaa;
}

/* Menu PDF Section */
body.dark-mode .menu-pdf-section .pdf-btn {
    background: #252525;
    border-color: #444;
    color: #f0f0f0;
}

body.dark-mode .menu-pdf-section .pdf-btn:hover {
    background: var(--primary);
    color: var(--secondary);
}

/* Offers Section */
body.dark-mode .offers-section {
    background: #1a1a1a;
}

body.dark-mode .offers-scroll {
    background: transparent;
}

/* Menu Card Content */
body.dark-mode .menu-card-content {
    background: #252525;
}

body.dark-mode .menu-card-content h3 {
    color: #f0f0f0;
}

body.dark-mode .menu-card-content p {
    color: #aaa;
}

body.dark-mode .menu-card-footer {
    border-color: #333;
}

body.dark-mode .veg-indicator {
    color: #4caf50;
}

/* Contact Section */
body.dark-mode .contact-section {
    background: #1a1a1a !important;
}

body.dark-mode .contact-grid {
    background: transparent;
}

/* Gallery */
body.dark-mode .gallery-item {
    border-color: #333;
}

body.dark-mode .gallery-title {
    color: #f0f0f0;
}

/* Booking CTA */
body.dark-mode .hall-booking-cta {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.08) 100%);
    border-color: var(--primary);
}

body.dark-mode .hall-booking-cta h3,
body.dark-mode .hall-booking-cta p {
    color: #f0f0f0;
}

/* Events We Host */
body.dark-mode .events-we-host {
    background: #252525;
}

body.dark-mode .events-we-host h3 {
    color: #f0f0f0;
}

/* Customize Modal Dark Mode */
body.dark-mode .dish-preview {
    background: #252525;
}

body.dark-mode .dish-preview h4 {
    color: #f0f0f0;
}

body.dark-mode .customize-options h4 {
    color: #ccc;
}

body.dark-mode .option-item {
    background: #252525;
    border-color: #444;
    color: #ccc;
}

body.dark-mode .option-item input:checked+span {
    background: var(--primary);
    color: var(--secondary);
}

body.dark-mode .quantity-selector button {
    background: #333;
    color: #f0f0f0;
}

body.dark-mode #specialInstructions {
    background: #252525;
    border-color: #444;
    color: #f0f0f0;
}

/* Thank You Section - already has dark background */

/* WhatsApp Float */
body.dark-mode .whatsapp-float {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

/* Back to Top */
body.dark-mode .back-to-top {
    background: #333;
    color: var(--primary);
}

/* Preloader */
body.dark-mode .preloader {
    background: #0a0a0a;
}

/* Success Modal */
body.dark-mode .success-content {
    background: #1a1a1a;
}

body.dark-mode .success-content h2 {
    color: #f0f0f0;
}

body.dark-mode .success-content p {
    color: #bbb;
}

body.dark-mode .order-id-section {
    background: #252525;
}

body.dark-mode .delivery-time-box {
    background: #252525;
}

/* Payment Modal */
body.dark-mode .payment-info {
    background: #252525;
}

body.dark-mode .payment-info h4 {
    color: #f0f0f0;
}

body.dark-mode .upi-id {
    background: #1e1e1e;
    color: #ccc;
}

body.dark-mode .order-summary-final {
    background: #252525;
}

body.dark-mode .order-summary-final h4 {
    color: #f0f0f0;
}

body.dark-mode .summary-row {
    color: #ccc;
}

body.dark-mode .summary-row.total {
    color: #f0f0f0;
}

/* Smooth transition for dark mode */
body,
.navbar,
.mobile-bottom-nav,
.menu-card,
.menu-card-content,
.contact-card,
.faq-item,
.review-card,
.cart-sidebar,
.modal-content,
.form-group input,
.form-group textarea,
section {
    transition: background-color 0.4s ease, color 0.4s ease, border-color 0.4s ease;
}

/* Scroll Reveal Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* =============================================
   GANESH BADGE - Auspicious Element
   ============================================= */
.ganesh-badge {
    position: fixed;
    bottom: 150px;
    left: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 998;
    animation: floatGanesh 3s ease-in-out infinite;
}

@keyframes floatGanesh {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-8px);
    }
}

.ganesh-image-container {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4), 0 0 20px rgba(212, 175, 55, 0.2);
    background: linear-gradient(135deg, #fff8e7 0%, #fffdf5 100%);
    transition: all 0.3s ease;
}

.ganesh-image-container:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.6), 0 0 30px rgba(212, 175, 55, 0.4);
}

.ganesh-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ganesh-slogan {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--secondary);
    font-size: 0.65rem;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 20px;
    white-space: nowrap;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    text-transform: none;
    letter-spacing: 0.3px;
}

/* Responsive Ganesh Badge */
@media (max-width: 768px) {
    .ganesh-badge {
        bottom: 80px;
        left: 10px;
    }

    .ganesh-image-container {
        width: 50px;
        height: 50px;
    }

    .ganesh-slogan {
        font-size: 0.55rem;
        padding: 3px 8px;
    }
}

/* =============================================
   FOOTER DEVELOPER CREDIT
   ============================================= */
.developer-credit {
    font-size: 0.7rem;
    color: #888;
    margin-top: 8px;
    text-align: right;
    padding-right: 15px;
}

.developer-credit .developer-name {
    color: var(--primary);
    font-weight: 600;
}

/* Footer content layout adjustment */
.footer-content {
    position: relative;
}

.footer .copyright {
    margin-bottom: 5px;
}

/* =============================================
   DARK MODE VISIBILITY FIXES
   ============================================= */
/* Hero Stats - Make values visible in dark mode */
body.dark-mode .stat-value {
    color: #ffffff !important;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

body.dark-mode .stat-label {
    color: #cccccc !important;
}

body.dark-mode .stat-icon {
    color: var(--primary) !important;
}

/* Trust Box - GSTIN visibility in dark mode */
body.dark-mode .trust-box {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.08) 100%);
    border-color: var(--primary);
}

body.dark-mode .trust-box h4 {
    color: #f0f0f0 !important;
}

body.dark-mode .trust-box p {
    color: #cccccc !important;
}

body.dark-mode .trust-box p strong {
    color: var(--primary) !important;
}

/* GSTIN in footer dark mode */
body.dark-mode .gstin {
    color: #999999 !important;
}

/* Star ratings visibility in dark mode */
body.dark-mode .stars i,
body.dark-mode .review-stars i {
    color: var(--primary) !important;
    text-shadow: 0 0 5px rgba(212, 175, 55, 0.5);
}

/* Rating big section in dark mode */
body.dark-mode .rating-number {
    color: var(--primary) !important;
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.3);
}

body.dark-mode .rating-text {
    color: #bbbbbb !important;
}

/* Reviews stats background in dark mode */
body.dark-mode .reviews-stats {
    background: rgba(37, 37, 37, 0.8);
    border-radius: var(--radius-lg);
    padding: 25px;
}

/* Review cards in dark mode */
body.dark-mode .review-card {
    background: #252525;
    border: 1px solid #333;
}

body.dark-mode .review-card .reviewer-info h4 {
    color: #f0f0f0;
}

body.dark-mode .review-card .review-text {
    color: #bbbbbb;
}

/* Ganesh badge dark mode */
body.dark-mode .ganesh-image-container {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
}

body.dark-mode .ganesh-slogan {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: var(--secondary);
}

/* Ganesh badge fade-out animation */
.ganesh-badge.fade-out {
    opacity: 0;
    transform: translateX(-100px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Developer credit dark mode */
body.dark-mode .developer-credit {
    color: #777;
}

/* =============================================
   COMPACT FEEDBACK FORM
   ============================================= */
.feedback-section {
    padding: 30px 0;
}

.feedback-form {
    max-width: 450px;
    margin: 0 auto;
    padding: 20px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}

.feedback-form .form-group {
    margin-bottom: 12px;
}

.feedback-form .form-group input,
.feedback-form .form-group textarea {
    padding: 10px 12px;
    font-size: 0.85rem;
}

.feedback-form .form-group textarea {
    min-height: 70px;
}

.feedback-form .rating-group {
    margin-bottom: 12px;
}

.feedback-form .star-rating i {
    font-size: 1.5rem;
}

.google-review-section {
    margin-top: 20px;
    padding: 20px;
}

/* =============================================
   ENHANCED REVIEWS SECTION
   ============================================= */
.reviews-stats {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-radius: var(--radius-lg);
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.rating-number {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
    text-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.rating-big .stars {
    color: var(--primary);
    font-size: 1.5rem;
    margin: 8px 0;
}

.rating-big .stars i {
    margin: 0 2px;
}

.rating-text {
    font-size: 0.9rem;
    color: var(--gray-500);
    font-weight: 500;
}

/* Reviews grid - support for more cards */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

@media (max-width: 767px) {
    .reviews-grid {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 768px) {
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (min-width: 1024px) {
    .reviews-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Review card enhancements */
.review-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 18px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.review-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary);
}