
:root {
    --primary-orange: #F5A623;
    --dark-bg: #0a0a0a;
    --darker-bg: #050505;
    --card-bg: #141414;
    --card-bg-hover: #1a1a1a;
    --text-light: #ffffff;
    --text-muted: #a0a0a0;
    --accent-red: #e74c3c;
    --accent-green: #27ae60;
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.6;
}

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--darker-bg); }
::-webkit-scrollbar-thumb { background: var(--primary-orange); border-radius: 4px; }

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

/* Offer Banner */
.offer-banner {
    background: var(--primary-orange);
    padding: 12px;
    text-align: center;
    font-weight: 600;
    font-size: 0.95rem;
    color: #000;
}

@media (max-width: 768px) {
    .offer-banner {
        padding: 8px 10px;
        font-size: 0.7rem;
        line-height: 1.4;
    }
    
    .offer-banner i {
        font-size: 0.7rem;
        margin: 0 3px;
    }
}

.offer-banner i {
    margin: 0 4px;
    color: #d32f2f;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 40px;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.4s ease;
    background: transparent;
    min-height: 80px;
    box-sizing: border-box;
    padding-top: calc(1rem + 2px);
    padding-bottom: calc(1rem - 2px);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.98);
    top: 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.5);
}

.logo {
    display: flex;
    align-items: center;
    cursor: pointer;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.logo:hover {
    opacity: 0.9;
}

.logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    display: block;
    margin: 0;
    padding: 0;
}

.logo-text {
    font-family: 'Dancing Script', cursive;
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-orange);
    display: block;
    margin-left: 0.5rem;
}

/* Footer logo - balanced display with image and text */
.footer-logo {
    display: flex !important;
    align-items: center;
    gap: 0.75rem;
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-orange);
    opacity: 1;
    text-decoration: none;
}

.footer-logo:hover {
    opacity: 0.9;
}

.footer-logo-img {
    height: 45px;
    width: auto;
    object-fit: contain;
    display: block;
}

.footer-logo-text {
    display: inline-block;
}

@media (max-width: 768px) {
    .footer-logo {
        font-size: 2rem;
    }
    .footer-logo-img {
        height: 35px;
    }
}

@media (max-width: 480px) {
    .footer-logo {
        font-size: 1.75rem;
        gap: 0.5rem;
    }
    .footer-logo-img {
        height: 30px;
    }
}

@media (max-width: 768px) {
    .logo-img {
        height: 45px;
    }
    
    .logo-text {
        font-size: 1.5rem;
        margin-left: 0.4rem;
    }
}

@media (max-width: 480px) {
    .logo-img {
        height: 40px;
    }
}

.nav-links {
    display: flex;
    gap: 2rem;
    list-style: none;
    align-items: center;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 400;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
    border-bottom: 2px solid transparent;
    display: flex;
    align-items: center;
    line-height: 1;
}

.nav-links a:hover {
    color: var(--primary-orange);
    border-bottom-color: var(--primary-orange);
}

.cart-icon-link {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    line-height: 1;
    margin: 0;
    padding: 0;
}

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

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
    background: none;
    align-items: center;
    justify-content: center;
    border: none;
}

.mobile-menu-btn span {
    width: 28px;
    height: 2px;
    background: var(--primary-orange);
}

.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(5, 5, 5, 0.98);
    z-index: 9999;
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;
}

.mobile-nav.open { display: flex; }

.mobile-nav a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1.5rem;
    font-family: 'Playfair Display', serif;
}

@media (max-width: 768px) {
    .mobile-nav a {
        font-size: 1.1rem;
    }
    
    .mobile-close {
        top: 1.5rem;
        right: 1.5rem;
        font-size: 1.5rem;
    }
    
    .mobile-close i {
        font-size: 1.5rem;
    }
}

.mobile-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 2rem;
    cursor: pointer;
    color: var(--text-light);
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-close i {
    font-size: 2rem;
}

/* Buttons */
.btn {
    padding: 1.1rem 2.8rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    font-family: 'Poppins', sans-serif;
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-orange) 0%, #e6951a 100%);
    color: #000;
    box-shadow: 0 6px 20px rgba(245, 166, 35, 0.4);
}

.btn-primary:hover {
    background: linear-gradient(135deg, #e6951a 0%, var(--primary-orange) 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(245, 166, 35, 0.5);
}

.btn-outline {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.1);
}

.btn-outline:hover {
    border-color: var(--primary-orange);
    color: var(--primary-orange);
    background: rgba(245, 166, 35, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(245, 166, 35, 0.3);
}

/* Payment Options (checkout card-style, match site dark theme) */
.payment-options-card {
    background: var(--card-bg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.5rem;
    margin-top: 1.5rem;
}

.payment-options-card .payment-options-title,
.payment-options-card .payment-method-label,
.payment-options-card .payment-method-note {
    color: var(--text-light);
}

.payment-options-card .payment-method-logos {
    color: var(--text-muted);
}

.payment-options-title {
    font-size: 1.25rem;
    margin: 0 0 1rem 0;
    color: var(--text-light);
    font-weight: 600;
}

/* Card visual (updates as user types) */
.card-visual {
    margin-bottom: 1.25rem;
}

.card-visual-inner {
    background: var(--card-bg-hover);
    border: 1px solid rgba(245, 166, 35, 0.3);
    border-radius: 12px;
    padding: 1.25rem 1.5rem;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
    position: relative;
    min-height: 140px;
}

.card-visual-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.card-visual-brand-wrap {
    position: absolute;
    top: 1.25rem;
    right: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.card-visual-brand {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: 0.02em;
}

.card-visual-brand-logo {
    width: 40px;
    height: 26px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.card-visual-brand-logo svg {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.card-visual-chip {
    width: 40px;
    height: 32px;
    background: linear-gradient(135deg, rgba(245, 166, 35, 0.4) 0%, rgba(245, 166, 35, 0.2) 100%);
    border-radius: 6px;
    margin-top: 1rem;
}

.card-visual-number {
    margin-top: 1rem;
    font-size: 1rem;
    letter-spacing: 0.15em;
    color: var(--text-muted);
}

.card-visual-name {
    margin-top: 0.75rem;
    font-size: 0.8rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.card-visual-expiry {
    position: absolute;
    bottom: 1.25rem;
    right: 1.5rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Stripe form fields */
.stripe-fields {
    margin-top: 0.5rem;
}

.stripe-field-label {
    display: block;
    font-weight: 600;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 0.35rem;
}

.stripe-input-wrap {
    margin-bottom: 1rem;
    padding: 0.6rem 0.75rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    min-height: 44px;
}

.payment-options-card .stripe-input-wrap:focus-within {
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 1px var(--primary-orange);
}

.stripe-field-row {
    display: flex;
    gap: 1rem;
}

.stripe-field-half {
    flex: 1;
}

.stripe-field-half .stripe-input-wrap {
    margin-bottom: 0;
}

.payment-options-card .payment-error {
    color: #dc2626;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.payment-success {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-top: 1rem;
    padding: 0.75rem 1rem;
    background: rgba(39, 174, 96, 0.15);
    border: 1px solid rgba(39, 174, 96, 0.4);
    border-radius: 8px;
    color: var(--accent-green);
}

.payment-success-content {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.payment-success-subline {
    font-size: 0.85rem;
    opacity: 0.9;
}

.payment-success-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--accent-green);
    color: #fff;
    font-size: 1rem;
    font-weight: bold;
    line-height: 1;
    flex-shrink: 0;
}

.payment-success-icon::after {
    content: '\2713';
}

.payment-success-text {
    font-weight: 600;
    font-size: 1rem;
}

.payment-method-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.payment-method-radio {
    width: 18px;
    height: 18px;
    border: 2px solid var(--primary-orange);
    border-radius: 50%;
    background: transparent;
}

.payment-method-radio.checked {
    background: var(--primary-orange);
    box-shadow: inset 0 0 0 3px var(--card-bg);
}

/* Cardholder name input (dark theme) */
.cardholder-name-input {
    width: 100%;
    padding: 0.6rem 0.75rem;
    font-size: 1rem;
    color: var(--text-light);
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    margin-bottom: 1rem;
}

.cardholder-name-input::placeholder {
    color: var(--text-muted);
}

.cardholder-name-input:focus {
    outline: none;
    border-color: var(--primary-orange);
    box-shadow: 0 0 0 1px var(--primary-orange);
}

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

.payment-method-logos {
    margin-left: auto;
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

.payment-method-note {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin: 0.5rem 0 1rem 0;
}

.payment-method .stripe-card-input,
.payment-options-card .stripe-card-input {
    margin-top: 0.5rem;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
}

.btn-pay-now {
    width: 100%;
    margin-top: 1.25rem;
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    background: linear-gradient(135deg, #c0392b 0%, #e74c3c 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
    transition: transform 0.2s, box-shadow 0.2s;
}

.btn-pay-now:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.5);
}

.btn-pay-now:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: url('images/hero/hero-bg.jpg') center/cover no-repeat;
    background-attachment: fixed;
    transform: scale(1.1);
    transition: transform 0.3s ease;
}

.hero:hover .hero-bg {
    transform: scale(1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.65) 100%);
}

.hero-content {
    text-align: center;
    z-index: 10;
    padding: 2rem;
    max-width: 900px;
    animation: fadeInUp 1s ease-out;
}

.hero-badge {
    display: inline-block;
    padding: 0.6rem 2rem;
    background: var(--primary-orange);
    color: #000;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 2rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(245, 166, 35, 0.3);
    animation: fadeInUp 1s ease-out 0.2s both;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(3rem, 8vw, 5.5rem);
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.4s both;
}

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

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 3rem;
    line-height: 1.8;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.8s both;
}

/* Section Styles */
.section {
    padding: 6rem 5%;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
    animation: fadeInUp 0.8s ease-out;
}

.section-tag {
    font-family: 'Dancing Script', cursive;
    color: var(--primary-orange);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(245, 166, 35, 0.3);
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-divider {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--primary-orange), transparent);
    margin: 1.5rem auto;
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(245, 166, 35, 0.4);
}

.section-desc {
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* About Section */
.about-section {
    background: var(--darker-bg);
    position: relative;
}

.about-section .section-bg {
    background-image: url('images/about/about-main.jpg');
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Desktop: images show as grid */
.about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.carousel-controls {
    display: none;
}

.about-img {
    border-radius: 12px;
    overflow: hidden;
    height: 250px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-img:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(245, 166, 35, 0.2);
}

.about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.about-img:first-child {
    grid-column: span 2;
    height: 300px;
}

.about-content {
    display: flex;
    flex-direction: column;
}

.about-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    margin-top: 0;
}

.about-content h2 .highlight {
    color: var(--primary-orange);
}

.about-content p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}


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

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--card-bg);
    border-radius: 8px;
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    color: #000;
}

.feature-icon i {
    font-size: 1.5rem;
}

/* SVG fallback icons - hidden by default if Font Awesome loads */
.feature-icon .svg-fallback-icon {
    display: none;
    width: 24px;
    height: 24px;
    position: absolute;
}

/* Show SVG if Font Awesome fails */
.feature-icon:not(.fa-loaded) .svg-fallback-icon {
    display: block;
}

.feature-icon:not(.fa-loaded) i {
    display: none;
}

.feature-icon {
    position: relative;
}
/* Menu Section */
.menu-section {
    background: var(--dark-bg);
    position: relative;
}

.section-with-bg {
    position: relative;
}

.section-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.12;
    z-index: 0;
    background-attachment: fixed;
}

.menu-section .section-bg {
    background-image: url('images/menu/chicken-tikka.jpg');
}

.section-content {
    position: relative;
    z-index: 1;
}

.menu-section .section-content {
    padding-bottom: 4rem;
}

.order-section .section-content {
    padding-bottom: 4rem;
}

.menu-categories {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.category-btn {
    padding: 0.8rem 1.5rem;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--text-light);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
}

.category-btn:hover,
.category-btn.active {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
    color: #000;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.menu-card {
    background: var(--card-bg);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    user-select: none;
}

.menu-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(245, 166, 35, 0.2), 0 0 0 1px rgba(245, 166, 35, 0.3);
    border-color: var(--primary-orange);
}

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

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

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

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

.menu-card-tag {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 600;
}

.menu-card-tag.veg {
    background: var(--accent-green);
    color: #fff;
}

.menu-card-tag.non-veg {
    background: var(--accent-red);
    color: #fff;
}

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

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

.menu-item-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 600;
}

.menu-item-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-orange);
    white-space: nowrap;
}

.menu-item-price .old-price {
    text-decoration: line-through;
    color: #666;
    margin-right: 8px;
    font-size: 0.9rem;
    font-weight: 400;
}

.menu-item-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.btn-view-details {
    width: 100%;
    padding: 0.8rem 1.5rem;
    background: transparent;
    border: 2px solid var(--primary-orange);
    color: var(--primary-orange);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

.btn-view-details:hover {
    background: var(--primary-orange);
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(245, 166, 35, 0.4);
}

/* Menu Modal */
.menu-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 1rem;
}

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

.menu-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.menu-modal-content {
    position: relative;
    background: var(--card-bg);
    border-radius: 20px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 1;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: modalSlideIn 0.3s ease-out;
    border: 2px solid rgba(245, 166, 35, 0.3);
}

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

.menu-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--text-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: all 0.3s ease;
    font-size: 1.2rem;
}

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

/* Alert Modal (replaces JS alert) */
.alert-modal {
    position: fixed;
    inset: 0;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 1rem;
}
.alert-modal.active {
    opacity: 1;
    visibility: visible;
}
.alert-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(6px);
}
.alert-modal-content {
    position: relative;
    background: var(--card-bg);
    border-radius: 16px;
    max-width: 420px;
    width: 100%;
    padding: 2rem;
    z-index: 1;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(245, 166, 35, 0.4);
    text-align: center;
    animation: modalSlideIn 0.3s ease-out;
}
.alert-modal-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: var(--text-light);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.alert-modal-close:hover {
    background: var(--primary-orange);
    border-color: var(--primary-orange);
    color: #000;
}
.alert-modal-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}
.alert-modal-content.alert-success .alert-modal-icon { background: rgba(39, 174, 96, 0.25); color: #27ae60; }
.alert-modal-content.alert-error .alert-modal-icon { background: rgba(231, 76, 60, 0.25); color: #e74c3c; }
.alert-modal-content.alert-info .alert-modal-icon { background: rgba(52, 152, 219, 0.25); color: #3498db; }
.alert-modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--primary-orange);
}
.alert-modal-message {
    white-space: pre-line;
    text-align: left;
    margin-bottom: 1.5rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.9);
}
.alert-modal-btn { min-width: 100px; }

.menu-modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.menu-modal-image {
    position: relative;
    height: 100%;
    min-height: 400px;
    overflow: hidden;
}

/* Responsive Modal Styles */
@media (max-width: 768px) {
    .menu-modal-body {
        grid-template-columns: 1fr;
    }
    
    .menu-modal-image {
        min-height: 300px;
        max-height: 300px;
    }
    
    .menu-modal-info {
        padding: 1.5rem;
    }
    
    .menu-modal-content {
        max-width: 95%;
        max-height: 95vh;
        border-radius: 16px;
    }
    
    .menu-modal-info h2 {
        font-size: 1.5rem;
    }
    
    .modal-price {
        font-size: 1.5rem;
    }
}

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

.menu-modal-info {
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.menu-modal-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-light);
    margin: 0;
}

.modal-price-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

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

.modal-old-price {
    font-size: 1.2rem;
    text-decoration: line-through;
    color: var(--text-muted);
}

.modal-description {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.8;
    margin: 0;
}

.modal-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.detail-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--text-light);
    font-size: 0.95rem;
}

.detail-item i {
    color: var(--primary-orange);
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.detail-item.full-width {
    flex-direction: column;
    gap: 0.5rem;
}

.detail-item.full-width span {
    line-height: 1.6;
}

.modal-actions {
    margin-top: auto;
    padding-top: 1rem;
}

.modal-actions .btn {
    width: 100%;
    justify-content: center;
    gap: 0.5rem;
}

/* Specials Section */
.specials-section {
    background: var(--darker-bg);
    padding: 6rem 5%;
}

.specials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.special-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 320px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
}

.special-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(245, 166, 35, 0.3);
    border-color: var(--primary-orange);
}

.special-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.special-card:hover img {
    transform: scale(1.15);
}

.special-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0.1) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 2rem;
}

.special-tag {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--primary-orange);
    color: #000;
    padding: 0.5rem 1rem;
    font-weight: 600;
    font-size: 0.8rem;
}

.special-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.special-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

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

/* Gallery Section */
.gallery-section {
    background: var(--dark-bg);
    position: relative;
}

.gallery-section .section-bg {
    background-image: url('images/gallery/gallery-1.jpg');
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(2, 250px);
    gap: 1rem;
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-item {
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    position: relative;
}

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

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

.gallery-item:first-child {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(245, 166, 35, 0);
    transition: background 0.3s ease;
}

.gallery-item:hover::after {
    background: rgba(245, 166, 35, 0.2);
}

/* Contact Section */
.contact-section {
    background: var(--darker-bg);
    position: relative;
}

.contact-section .section-bg {
    background-image: url('images/about/about-main.jpg');
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-orange);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    color: #000;
}

.contact-icon i {
    font-size: 1.5rem;
}

.contact-details h4 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.contact-details p,
.contact-details a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-details a:hover {
    color: var(--primary-orange);
}

.contact-details p a {
    color: var(--text-muted);
}

.contact-details p a:hover {
    color: var(--primary-orange);
}

.hours-box {
    background: rgba(245, 166, 35, 0.1);
    padding: 1rem;
    border-radius: 8px;
    margin-top: 1.5rem;
    border-left: 3px solid var(--primary-orange);
}

.hours-box h4 {
    color: var(--primary-orange);
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
    font-weight: 600;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    font-size: 0.9rem;
    color: var(--text-light);
}

.hours-row span:first-child {
    font-weight: 500;
}

.hours-row span:last-child {
    color: var(--text-muted);
}

.hours-row:last-child { border-bottom: none; }

.contact-form {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 12px;
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-light);
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-orange);
}

.form-group textarea {
    min-height: 120px;
    resize: vertical;
}

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

/* Reservation Section */
.reservation-section {
    background: var(--dark-bg);
    position: relative;
}

.reservation-bg {
    position: absolute;
    inset: 0;
    background: url('images/reservation/reservation-bg.jpg') center/cover no-repeat;
    opacity: 0.15;
}

.reservation-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.reservation-form {
    background: var(--card-bg);
    padding: 2.5rem;
    border-radius: 12px;
    margin-top: 2rem;
    text-align: left;
    border: 2px solid var(--primary-orange);
}

/* Order Section */
.order-section {
    background: var(--darker-bg);
    position: relative;
}

.order-section .section-bg {
    background-image: url('images/menu/tandoori-chicken.jpg');
}

.order-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.order-card {
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.order-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-orange);
}

.order-card-image {
    height: 180px;
    overflow: hidden;
}

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

.order-card-content {
    padding: 2rem;
    text-align: center;
}

.order-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.order-card p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

/* Footer */
.footer {
    background: #000;
    padding: 4rem 5% 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

@media (max-width: 768px) {
    .footer {
        padding: 3rem 5% 1.5rem;
    }
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-brand p {
    color: var(--text-muted);
    margin: 1.5rem 0;
    line-height: 1.7;
}

.social-links {
    display: flex;
    gap: 0.8rem;
}

.social-link {
    width: 45px;
    height: 45px;
    background: var(--card-bg);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    color: var(--text-light);
    text-decoration: none;
}

.social-link:hover {
    background: var(--primary-orange);
    color: #000;
}

.social-link i {
    font-size: 1.2rem;
}

.footer-col h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    margin-bottom: 1.5rem;
    color: var(--primary-orange);
    text-align: left;
}

@media (max-width: 768px) {
    .footer-col h4 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .footer-links li {
        font-size: 0.85rem;
        margin-bottom: 0.5rem;
    }
    
    .footer-brand p {
        font-size: 0.85rem;
        margin: 1rem 0;
    }
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.7rem;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-links li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-links li i {
    color: var(--primary-orange);
    width: 20px;
    font-size: 0.9rem;
}

.footer-hours {
    margin-top: 1.5rem;
}

.footer-hours h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    color: var(--primary-orange);
}

.footer-hours-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.footer-hours-list li {
    display: flex;
    gap: 0.5rem;
    white-space: nowrap;
}

.footer-hours-list li span:first-child {
    font-weight: 500;
    color: var(--text-light);
}

.footer-hours-list li span:last-child {
    color: var(--text-muted);
}

@media (max-width: 768px) {
    .footer-hours {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .footer-hours h4 {
        font-size: 1rem;
        margin-bottom: 0.75rem;
        text-align: center;
    }
    
    .footer-hours-list {
        font-size: 0.85rem;
        gap: 0.75rem;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-hours-list {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .footer-hours-list li {
        justify-content: space-between;
    }
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
    color: var(--text-muted);
    font-size: 0.8rem;
}

.footer-bottom p {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    line-height: 1.6;
}

.footer-bottom p span {
    display: inline-block;
}

.footer-bottom .company-name {
    color: #4A90E2;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-bottom .company-name:hover {
    color: #357ABD;
    text-decoration: underline;
}

.footer-bottom .admin-link {
    color: #FFD700;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 500;
}

.footer-bottom .admin-link:hover {
    color: #FFC107;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .footer-bottom {
        margin-top: 2rem;
        padding-top: 1.5rem;
        font-size: 0.75rem;
    }
}

/* Footer bottom: 2 lines on mobile, single line at 588px+ */
@media (max-width: 587px) {
    .footer-bottom p {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0;
        align-items: center;
        justify-content: center;
        line-height: 1.8;
    }
    
    /* First span (copyright) takes full width - forces new line */
    .footer-bottom p span:first-child {
        flex-basis: 100%;
        width: 100%;
        text-align: center;
        display: block;
        white-space: normal;
    }
    
    /* Second and third spans stay together on same line */
    .footer-bottom p span:nth-child(2),
    .footer-bottom p span:nth-child(3) {
        flex-basis: auto;
        white-space: nowrap;
        display: inline;
    }
    
    /* Add separator between developer and admin */
    .footer-bottom p span:nth-child(2)::after {
        content: ' • ';
        margin: 0 0.5rem;
        color: var(--text-muted);
    }
    
    /* Ensure copyright text doesn't break */
    .footer-bottom p span:first-child span {
        display: inline;
    }
}

@media (min-width: 588px) {
    .footer-bottom p {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0.5rem;
        align-items: center;
        justify-content: center;
    }
    
    .footer-bottom p span {
        display: inline-block;
        width: auto;
    }
}

.page { display: none; }
.page.active { display: block; }

.page-top-spacer {
    padding-top: 120px;
}
@media (max-width: 768px) {
    .page-top-spacer {
        padding-top: 80px;
    }
}

/* Large Tablets and Small Desktops */
@media (max-width: 1200px) {
    .hero h1 {
        font-size: clamp(2.5rem, 6vw, 4.5rem);
    }
    
    .section {
        padding: 5rem 4%;
    }
    
    .specials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablets */
@media (max-width: 1024px) {
    .about-grid { 
        grid-template-columns: 1fr; 
        gap: 2rem;
    }
    .about-images { 
        order: -1; 
    }
    .contact-grid { 
        grid-template-columns: 1fr; 
        gap: 2rem;
    }
    
    .contact-info {
        order: 1 !important;
    }
    
    .contact-form {
        order: 2 !important;
    }
    
    .hours-box {
        margin-top: 1.5rem;
        padding: 1.25rem;
    }
    
    .hours-box h4 {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .hours-row {
        padding: 0.6rem 0;
        font-size: 0.95rem;
    }
    
    .gallery-grid { 
        grid-template-columns: repeat(2, 1fr); 
        grid-template-rows: repeat(4, 200px); 
    }
    .footer-grid { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 2rem;
    }
    
    /* Footer: Quick Links and Services in 2 columns */
    .footer-col:nth-child(2),
    .footer-col:nth-child(3) {
        display: inline-block;
        width: calc(50% - 1rem);
        vertical-align: top;
        text-align: center;
        margin-bottom: 0;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .footer-col:nth-child(2) {
        margin-right: 2rem;
    }
    
    .footer-col:nth-child(4) {
        text-align: center;
        margin-bottom: 0;
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        clear: both;
        width: 100%;
    }
    .order-grid { 
        grid-template-columns: 1fr; 
        max-width: 500px; 
    }
    .specials-grid { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 1.5rem;
    }
    .special-card { 
        height: 280px; 
    }
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .hero-content {
        padding: 1.5rem;
    }
    .menu-modal-content {
        max-width: 90%;
    }
}

/* Show hamburger menu for tablets (820x1180, 912x1368) and mobile */
@media (max-width: 1024px) {
    .nav-links { display: none; }
    .mobile-menu-btn { display: flex; }
}

@media (max-width: 768px) {
    /* Mobile Typography - Reduce font sizes */
    html {
        font-size: 14px;
    }
    
    h1 { font-size: 2rem !important; }
    h2 { font-size: 1.75rem !important; }
    h3 { font-size: 1.5rem !important; }
    h4 { font-size: 1.25rem !important; }
    
    .section-title { font-size: 1.75rem !important; }
    .section-tag { font-size: 0.75rem !important; }
    .hero h1 { font-size: 2.5rem !important; }
    .hero-subtitle { font-size: 1rem !important; }
    .hero-badge { font-size: 0.7rem !important; padding: 0.5rem 1.5rem !important; }
    
    /* Menu Cards Mobile */
    .menu-item-name { font-size: 1.1rem !important; }
    .menu-item-price { font-size: 1rem !important; }
    .menu-item-desc { font-size: 0.85rem !important; }
    
    /* Special Cards Mobile */
    .special-title { font-size: 1.4rem !important; }
    .special-desc { font-size: 0.85rem !important; }
    .special-price { font-size: 1.3rem !important; }
    
    /* Buttons Mobile */
    .btn { 
        padding: 0.9rem 2rem !important; 
        font-size: 0.85rem !important; 
    }
    
    .form-row { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr; }
    
    /* Footer Mobile */
    .footer {
        padding: 3rem 5% 1.5rem;
    }
    
    .footer-grid {
        display: block;
        text-align: center;
        font-size: 0; /* Remove whitespace between inline-block elements */
    }
    
    .footer-grid > * {
        font-size: 1rem; /* Restore font size for children */
    }
    
    .footer-brand {
        text-align: center;
        margin-bottom: 0;
        padding-bottom: 2rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .footer-brand p {
        font-size: 0.9rem;
        margin: 1rem 0 1.5rem;
        line-height: 1.6;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    /* Quick Links and Services in 2 columns - use flexbox wrapper */
    .footer-col:nth-child(2),
    .footer-col:nth-child(3) {
        display: inline-block;
        width: calc(50% - 1rem);
        vertical-align: top;
        text-align: center;
        margin-bottom: 0;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        box-sizing: border-box;
        margin-right: 0;
    }
    
    .footer-col:nth-child(2) {
        margin-right: 2rem;
    }
    
    .footer-col:nth-child(4) {
        text-align: left;
        margin-bottom: 0;
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        clear: both;
        width: 100%;
        display: block;
    }
    
    .footer-col:nth-child(4) h4 {
        text-align: left;
        margin-bottom: 1rem;
    }
    
    .footer-col:nth-child(4) ul {
        text-align: left;
        padding-left: 0;
    }
    
    /* Ensure proper alignment */
    .footer-col:nth-child(2),
    .footer-col:nth-child(3) {
        text-align: left;
    }
    
    .footer-col:nth-child(2) h4,
    .footer-col:nth-child(3) h4 {
        text-align: left;
        margin-bottom: 1rem;
    }
    
    .footer-col:nth-child(2) ul,
    .footer-col:nth-child(3) ul {
        text-align: left;
        padding-left: 0;
        list-style: none;
    }
    
    .footer-col:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
    
    .footer-col h4 {
        font-size: 1.1rem;
        margin-bottom: 1rem;
        margin-top: 0;
    }
    
    .footer-links {
        font-size: 0.9rem;
    }
    
    .footer-links li {
        margin-bottom: 0.75rem;
    }
    
    .footer-bottom {
        margin-top: 2rem;
        padding-top: 1.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
}

/* Medium mobile/tablet - 3 columns when space allows */
@media (min-width: 550px) and (max-width: 768px) {
    .footer-grid {
        display: block;
        font-size: 0;
    }
    
    .footer-grid > * {
        font-size: 1rem;
    }
    
    /* Quick Links, Services, and Contact in 3 columns */
    .footer-col:nth-child(2),
    .footer-col:nth-child(3),
    .footer-col:nth-child(4) {
        display: inline-block;
        width: calc(33.333% - 1rem);
        vertical-align: top;
        text-align: left;
        margin-bottom: 0;
        padding-bottom: 1.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        margin-right: 1.5rem;
        box-sizing: border-box;
    }
    
    /* Left-align headings to match list items */
    .footer-col:nth-child(2) h4,
    .footer-col:nth-child(3) h4,
    .footer-col:nth-child(4) h4 {
        text-align: left;
        margin-bottom: 1rem;
    }
    
    .footer-col:nth-child(2) ul,
    .footer-col:nth-child(3) ul,
    .footer-col:nth-child(4) ul {
        text-align: left;
        padding-left: 0;
    }
    
    .footer-col:nth-child(4) {
        margin-right: 0;
        clear: none;
        border-top: none;
        padding-top: 0;
    }
    
    /* Left-align headings to match list items */
    .footer-col:nth-child(2) h4,
    .footer-col:nth-child(3) h4,
    .footer-col:nth-child(4) h4 {
        text-align: left;
        margin-bottom: 1rem;
    }
    
    .footer-col:nth-child(2) ul,
    .footer-col:nth-child(3) ul,
    .footer-col:nth-child(4) ul {
        text-align: left;
        padding-left: 0;
    }
    
    .footer-col:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
}

@media (max-width: 768px) {
    /* Gallery Mobile Fix */
    .gallery-grid { 
        grid-template-columns: 1fr !important; 
        grid-template-rows: auto !important;
        gap: 1rem;
    }
    .gallery-item { 
        height: 250px !important;
        grid-column: span 1 !important;
        grid-row: span 1 !important;
    }
    .gallery-item img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    
    /* Menu Mobile Fix */
    .menu-grid { 
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    .menu-card {
        max-width: 100%;
    }
    .menu-card-image {
        height: 200px;
    }
    .menu-card-content {
        padding: 1.5rem;
    }
    
    /* Order Menu Mobile Fix */
    .order-menu-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem;
    }
    .order-menu-card {
        max-width: 100%;
    }
    .order-menu-card-image {
        height: 200px;
    }
    
    .footer-grid { 
        grid-template-columns: 1fr; 
        text-align: center;
        gap: 2rem;
    }
    /* About Section Mobile - Carousel */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-images {
        grid-template-columns: 1fr;
        order: -1;
    }
    
    .about-img:first-child {
        grid-column: span 1;
        height: 250px;
    }
    
    /* Section Content Padding */
    .section-content {
        padding: 1.5rem 1rem;
    }
    
    /* Menu Categories Mobile */
    .menu-categories {
        flex-wrap: wrap;
        gap: 0.5rem;
        padding: 0 1rem;
    }
    .menu-category-btn {
        padding: 0.6rem 1rem;
        font-size: 0.85rem;
    }
}

        /* Form Validation Styles */
        .form-group input:invalid:not(:placeholder-shown),
        .form-group textarea:invalid:not(:placeholder-shown) {
            border-color: var(--accent-red);
        }

        .form-group input:valid:not(:placeholder-shown),
        .form-group textarea:valid:not(:placeholder-shown) {
            border-color: var(--accent-green);
        }

        .form-message {
            margin-top: 1rem;
            padding: 1rem;
            border-radius: 8px;
            text-align: center;
            font-weight: 500;
            display: none;
        }

        .form-message.success {
            background: rgba(39, 174, 96, 0.2);
            border: 2px solid var(--accent-green);
            color: var(--accent-green);
            display: block;
        }

        .form-message.error {
            background: rgba(231, 76, 60, 0.2);
            border: 2px solid var(--accent-red);
            color: var(--accent-red);
            display: block;
        }

        .btn:disabled {
            opacity: 0.6;
            cursor: not-allowed;
        }

        /* Image Fallback */
        img[data-fallback] {
            background: var(--card-bg);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--text-muted);
            font-size: 0.9rem;
        }

                /* Payment Form Styles */
                .payment-error {
                    color: var(--accent-red);
                    font-size: 0.9rem;
                    margin-top: 0.5rem;
                    padding: 0.5rem;
                    background: rgba(231, 76, 60, 0.1);
                    border: 1px solid var(--accent-red);
                    border-radius: 4px;
                }
        
                #stripe-card-number,
                #stripe-card-expiry,
                #stripe-card-cvc,
                #stripe-card-element,
                #square-card-container {
                    margin-top: 0;
                    padding: 0;
                    background: transparent;
                    border: none;
                    border-radius: 0;
                }
        
                #stripe-card-number iframe,
                #stripe-card-expiry iframe,
                #stripe-card-cvc iframe,
                #stripe-card-element iframe,
                #square-card-container iframe {
                    width: 100%;
                    min-height: 1.5rem;
                }
        /* Shopping Cart Sidebar */
        .cart-overlay {
            position: fixed;
            inset: 0;
            background: rgba(0, 0, 0, 0.7);
            z-index: 9998;
            display: none;
        }

        .cart-overlay.active {
            display: block;
        }

        .cart-sidebar {
            position: fixed;
            top: 0;
            right: -450px;
            width: 450px;
            height: 100vh;
            height: 100dvh;
            max-height: 100vh;
            max-height: 100dvh;
            background: var(--card-bg);
            z-index: 9999;
            display: flex;
            flex-direction: column;
            transition: right 0.3s ease;
            box-shadow: -5px 0 20px rgba(0, 0, 0, 0.5);
        }

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

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

        .cart-header h2 {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            display: flex;
            align-items: center;
            gap: 0.5rem;
        }

        .cart-close {
            background: none;
            border: none;
            color: var(--text-light);
            font-size: 1.5rem;
            cursor: pointer;
            padding: 0.5rem;
        }

        .cart-items {
            flex: 1;
            min-height: 0;
            overflow-y: auto;
            -webkit-overflow-scrolling: touch;
            padding: 1rem;
        }

        .cart-empty {
            text-align: center;
            padding: 3rem 1rem;
            color: var(--text-muted);
        }

        .cart-empty i {
            font-size: 4rem;
            margin-bottom: 1rem;
            opacity: 0.5;
        }

        .cart-item {
            display: flex;
            gap: 1rem;
            padding: 1rem;
            background: var(--darker-bg);
            border-radius: 8px;
            margin-bottom: 1rem;
        }

        .cart-item-image {
            width: 80px;
            height: 80px;
            border-radius: 8px;
            overflow: hidden;
            flex-shrink: 0;
        }

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

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

        .cart-item-name {
            font-weight: 600;
            margin-bottom: 0.3rem;
            font-size: 0.95rem;
        }

        .cart-item-price {
            color: var(--primary-orange);
            font-weight: 600;
            margin-bottom: 0.5rem;
        }

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

        .cart-item-qty {
            display: flex;
            align-items: center;
            gap: 0.5rem;
            background: var(--card-bg);
            border-radius: 4px;
            padding: 0.3rem 0.5rem;
        }

        .cart-item-qty button {
            background: none;
            border: none;
            color: var(--text-light);
            cursor: pointer;
            font-size: 1rem;
            width: 24px;
            height: 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 4px;
            transition: background 0.3s;
        }

        .cart-item-qty button:hover {
            background: var(--primary-orange);
            color: #000;
        }

        .cart-item-qty span {
            min-width: 30px;
            text-align: center;
        }

        .cart-item-remove {
            background: var(--accent-red);
            color: #fff;
            border: none;
            padding: 0.3rem 0.8rem;
            border-radius: 4px;
            cursor: pointer;
            font-size: 0.85rem;
            transition: background 0.3s;
        }

        .cart-item-remove:hover {
            background: #c0392b;
        }

        .cart-footer {
            flex-shrink: 0;
            padding: 1.5rem;
            padding-bottom: max(1.5rem, env(safe-area-inset-bottom));
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            background: var(--card-bg);
        }

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

        .cart-subtotal,
        .cart-tax,
        .cart-grand-total {
            display: flex;
            justify-content: space-between;
            padding: 0.5rem 0;
        }

        .cart-grand-total {
            border-top: 2px solid var(--primary-orange);
            margin-top: 0.5rem;
            padding-top: 0.5rem;
            font-size: 1.2rem;
            font-weight: 700;
        }

        /* Order Page */
        .order-menu-container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .order-menu-categories {
            display: flex;
            justify-content: center;
            gap: 0.5rem;
            flex-wrap: wrap;
            margin-bottom: 3rem;
        }

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

        .order-menu-card {
            background: var(--card-bg);
            border-radius: 12px;
            overflow: hidden;
            transition: all 0.3s ease;
            border: 1px solid rgba(255, 255, 255, 0.05);
        }

        .order-menu-card:hover {
            transform: translateY(-5px);
            border-color: var(--primary-orange);
        }

        .order-menu-card-image {
            height: 180px;
            overflow: hidden;
            position: relative;
        }

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

        .order-menu-card-content {
            padding: 1.5rem;
        }

        .order-menu-card-header {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            margin-bottom: 0.5rem;
            gap: 1rem;
        }

        .order-menu-item-name {
            font-family: 'Playfair Display', serif;
            font-size: 1.2rem;
            font-weight: 600;
        }

        .order-menu-item-price {
            font-size: 1.1rem;
            font-weight: 700;
            color: var(--primary-orange);
            white-space: nowrap;
        }

        .order-menu-item-desc {
            color: var(--text-muted);
            font-size: 0.85rem;
            margin-bottom: 1rem;
            line-height: 1.5;
        }

        .add-to-cart-btn {
            width: 100%;
            padding: 0.8rem;
            background: var(--primary-orange);
            color: #000;
            border: none;
            border-radius: 8px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
        }

        .add-to-cart-btn:hover {
            background: #e6951a;
            transform: translateY(-2px);
        }

        /* Checkout Page */
        .checkout-section {
            background: var(--darker-bg);
        }

        .checkout-grid {
            display: grid;
            grid-template-columns: 1fr 1.5fr;
            gap: 3rem;
            max-width: 1400px;
            margin: 0 auto;
        }

        .checkout-order-summary {
            background: var(--card-bg);
            padding: 2rem;
            border-radius: 12px;
            height: fit-content;
            position: sticky;
            top: 120px;
        }

        .checkout-order-summary h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
            padding-bottom: 1rem;
            border-bottom: 2px solid var(--primary-orange);
        }

        .checkout-item {
            display: flex;
            justify-content: space-between;
            padding: 1rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .checkout-item:last-of-type {
            border-bottom: none;
        }

        .checkout-item-name {
            font-weight: 500;
        }

        .checkout-item-qty {
            color: var(--text-muted);
            font-size: 0.9rem;
        }

        .checkout-item-price {
            color: var(--primary-orange);
            font-weight: 600;
        }

        .checkout-totals {
            margin-top: 1.5rem;
            padding-top: 1.5rem;
            border-top: 2px solid rgba(255, 255, 255, 0.1);
        }

        .checkout-row {
            display: flex;
            justify-content: space-between;
            padding: 0.5rem 0;
        }

        .checkout-row.checkout-total {
            font-size: 1.3rem;
            font-weight: 700;
            color: var(--primary-orange);
            border-top: 2px solid var(--primary-orange);
            margin-top: 0.5rem;
            padding-top: 0.5rem;
        }

        .checkout-form {
            background: var(--card-bg);
            padding: 2.5rem;
            border-radius: 12px;
        }

        .checkout-form h3 {
            font-family: 'Playfair Display', serif;
            font-size: 1.5rem;
            margin-bottom: 1.5rem;
        }

        @media (max-width: 768px) {
            .checkout-section .section-header {
                padding-top: 1rem;
            }
            .checkout-section {
                padding-bottom: max(2rem, env(safe-area-inset-bottom));
            }
            .checkout-order-summary,
            .checkout-form {
                padding: 1.25rem;
            }
            .checkout-form .btn,
            .payment-options-card .btn {
                min-height: 48px;
                padding: 0.875rem 1rem;
            }
        }

        @media (max-width: 1024px) {
            .cart-sidebar {
                width: 100%;
                right: -100%;
                height: 100vh;
                height: 100dvh;
                max-height: 100vh;
                max-height: 100dvh;
            }
            .checkout-grid {
                grid-template-columns: 1fr;
            }
            .checkout-order-summary {
                position: static;
            }
        }

        @media (max-width: 480px) {
            .cart-header {
                padding: 1rem 1.25rem;
            }
            .cart-header h2 {
                font-size: 1.25rem;
            }
            .cart-items {
                padding: 0.75rem 1rem;
            }
            .cart-footer {
                padding: 1rem 1.25rem;
                padding-bottom: max(1rem, env(safe-area-inset-bottom));
            }
            .cart-footer .btn {
                padding: 0.875rem 1rem;
                font-size: 1rem;
            }
        }

