/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ff3131;
    --secondary-color: #ff7828;
    --white: #ffffff;
    --light-gray: #f8f9fa;
    --dark-gray: #333333;
    --text-color: #333333;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.2;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }

p {
    margin-bottom: 1rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1rem;
}

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

.btn-primary:hover {
    background-color: #e61e1e;
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background-color: #e65a1a;
    transform: translateY(-2px);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: var(--transition);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
}

.logo a {
    text-decoration: none;
    display: block;
}

.logo img {
    width: 200px;
    height: auto;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.logo h2 {
    color: var(--primary-color);
    margin: 0;
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--secondary-color);
    font-size: 1.1rem;
    font-weight: 500;
    margin-top: -2px;
    display: block;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--secondary-color);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

/* Language Toggle */
.language-toggle {
    display: flex;
    background: linear-gradient(135deg, var(--light-gray), #e9ecef);
    border-radius: 8px;
    padding: 3px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
}

.lang-btn {
    background: none;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-width: 40px;
}

.lang-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.4s;
}

.lang-btn:hover::before {
    left: 100%;
}

.lang-btn.active {
    background: linear-gradient(135deg, var(--primary-color), #e61e1e);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(255, 49, 49, 0.3);
    transform: translateY(-1px);
}

.lang-btn:hover:not(.active) {
    background: rgba(255, 49, 49, 0.1);
    color: var(--primary-color);
}

.cart-btn {
    position: relative;
    background: none;
    border: none;
    font-size: 1.25rem;
    color: var(--primary-color);
    cursor: pointer;
    padding: 0.5rem;
}

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

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, var(--primary-color) 0%, #e61e1e 100%);
    z-index: 999;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu.active {
    right: 0;
}

.mobile-nav-list {
    list-style: none;
    text-align: center;
}

.mobile-nav-link {
    display: block;
    padding: 1.25rem 2rem;
    text-decoration: none;
    color: var(--white);
    font-size: 1.1rem;
    font-weight: 600;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.mobile-nav-link:hover {
    color: var(--secondary-color);
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
}

/* ===== HERO SECTION ===== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    padding: 40px 0 0 0;
    margin-top: 0;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/hero_02.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.4;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 49, 49, 0.3) 0%, rgba(255, 120, 40, 0.2) 50%, rgba(255, 49, 49, 0.3) 100%);
    z-index: 2;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
                      radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    z-index: 3;
}

/* Decorative Elements */
.hero-decorations {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 4;
    pointer-events: none;
}

.chili-pepper {
    position: absolute;
    width: 30px;
    height: 45px;
    background: linear-gradient(135deg, #ff3131, #ff7828);
    border-radius: 15px 15px 0 0;
    opacity: 0.15;
    animation: float 6s ease-in-out infinite;
}

.chili-pepper::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: #ff3131;
    border-radius: 50%;
}

.chili-pepper::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 8px;
    height: 15px;
    background: #2d1810;
    border-radius: 0 0 4px 4px;
}

.chili-1 {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
    transform: rotate(-15deg);
}

.chili-2 {
    top: 25%;
    right: 15%;
    animation-delay: 1.5s;
    transform: rotate(25deg);
}

.chili-3 {
    bottom: 30%;
    left: 5%;
    animation-delay: 3s;
    transform: rotate(-10deg);
}

.spice-splash {
    position: absolute;
    width: 60px;
    height: 60px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0.2;
    animation: pulse 5s ease-in-out infinite;
}

.spice-1 {
    top: 20%;
    right: 25%;
    animation-delay: 0.5s;
}

.spice-2 {
    bottom: 20%;
    right: 10%;
    animation-delay: 2s;
}

.hero-container {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    min-height: 100vh;
}

.hero-content {
    flex: 0 0 40%;
    max-width: 40%;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-visual {
    flex: 0 0 60%;
    max-width: 60%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: fadeInRight 1s ease-out 0.5s both;
    height: 100%;
}

.hero-food-image {
    position: relative;
    width: 95%;
    max-width: 600px;
    aspect-ratio: 4/3;
    border-radius: 24px;
    overflow: visible;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
    border: 3px solid rgba(255, 255, 255, 0.1);
    align-self: center;
    background: #fff;
}

.hero-food-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    border: none;
    outline: none;
    border-radius: 24px;
}

.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.2rem;
    background: linear-gradient(135deg, rgba(255, 49, 49, 0.65), rgba(255, 120, 40, 0.65));
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    box-shadow: 0 8px 32px rgba(255, 49, 49, 0.18);
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 700;
    z-index: 1002;
    animation: float 4s ease-in-out infinite;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    opacity: 0.92;
}

.card-1 {
    top: -30px;
    left: -30px;
    animation-delay: 0s;
}
.card-2 {
    top: -30px;
    right: -30px;
    animation-delay: 1.5s;
}
.card-3 {
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 3s;
}

@media (max-width: 900px) {
    .hero-container {
        flex-direction: column;
        gap: 2rem;
        padding: 1.5rem 0.5rem;
    }
    .hero-content, .hero-visual {
        max-width: 100%;
        flex: 1 1 100%;
    }
    .hero-food-image {
        max-width: 95vw;
        border-radius: 16px;
    }
    .floating-card {
        position: static;
        margin: 0.3rem 0.2rem;
        animation: none;
        box-shadow: 0 4px 16px rgba(255, 49, 49, 0.2);
        background: linear-gradient(135deg, rgba(255, 49, 49, 0.95), rgba(255, 120, 40, 0.95));
        color: #ffffff;
    }
    .card-1, .card-2, .card-3 {
        top: unset;
        bottom: unset;
        left: unset;
        right: unset;
        transform: none;
    }
    .hero-food-image {
        margin-bottom: 1.2rem;
    }
}

.card-icon {
    width: 18px;
    height: 18px;
    color: #ffffff;
    flex-shrink: 0;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.3));
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    color: #ff3131;
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    animation: fadeInUp 1s ease-out 0.4s both;
    align-self: flex-start;
    margin-bottom: 0.5rem;
}

.hero-badge span {
    background: linear-gradient(135deg, #ff3131, #ff7828);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-headline {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 900;
    line-height: 1.1;
    color: #fff;
    margin: 0 0 0.5rem 0;
    text-shadow: 0 2px 8px rgba(0,0,0,0.18);
    animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-subheadline {
    font-size: clamp(0.95rem, 1.6vw, 1.1rem);
    line-height: 1.6;
    color: #e2e8f0;
    margin: 0 0 0.5rem 0;
    max-width: 550px;
    font-weight: 400;
    animation: fadeInUp 1s ease-out 0.7s both;
}

.hero-trust-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.9s both;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    color: #f1f5f9;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.trust-badge:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.trust-icon {
    width: 20px;
    height: 20px;
    color: #fbbf24;
    flex-shrink: 0;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 1.1s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, #ff3131 0%, #ff7828 100%);
    color: #ffffff;
    box-shadow: 0 12px 40px rgba(255, 49, 49, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 50px rgba(255, 49, 49, 0.6);
    background: linear-gradient(135deg, #e61e1e 0%, #e65a1a 100%);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(20px);
    border: 2px solid rgba(255, 255, 255, 0.25);
    color: #ffffff;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 50px rgba(255, 255, 255, 0.15);
}

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

.btn-icon {
    width: 20px;
    height: 20px;
    position: relative;
    z-index: 1;
}

.hero-actions .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 35px rgba(255, 255, 255, 0.2);
}

.btn-icon {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.hero-actions .btn:hover .btn-icon {
    transform: translateX(3px);
}

/* Right Side - Food Image with Compact Floating Cards */
.hero-visual {
    flex: 0 0 60%;
    max-width: 60%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    animation: fadeInRight 1s ease-out 0.5s both;
    height: 100%;
}

.hero-floating-cards {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 1.2rem;
    margin-top: 1.5rem;
}

@media (max-width: 900px) {
    .hero-visual {
        max-width: 100%;
    }
    .hero-food-image {
        max-width: 320px;
    }
    .floating-card {
        font-size: 0.85rem;
        padding: 0.6rem 1rem;
    }
}

@media (max-width: 600px) {
    .hero-container {
        flex-direction: column;
        gap: 2rem;
        padding: 1.5rem 0.5rem;
    }
    .hero-visual {
        max-width: 100%;
        gap: 1.2rem;
    }
    .hero-food-image {
        max-width: 95vw;
        border-radius: 16px;
    }
    .hero-floating-cards {
        flex-direction: column;
        gap: 0.7rem;
    }
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 49, 49, 0.3) 0%, rgba(255, 120, 40, 0.2) 100%);
    pointer-events: none;
}

.image-glow {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(circle, rgba(255, 49, 49, 0.3) 0%, transparent 70%);
    border-radius: 25px;
    z-index: -1;
    animation: pulse 4s ease-in-out infinite;
}

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

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

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

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Hero Wave Decoration */
.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 120px;
    z-index: 5;
}

.hero-wave svg {
    width: 100%;
    height: 100%;
}

.hero-wave .shape-fill {
    fill: #ffffff;
}



/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 2.5rem;
    font-weight: 700;
    /* Remove any text-shadow if present */
    text-shadow: none;
}

.section-header p {
    color: var(--dark-gray);
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

/* Deals Section - Touch/Swipe Enabled */
.deals-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.deals-swipe-container {
    position: relative;
    max-width: 100%;
    overflow: hidden;
    margin-top: 2rem;
}

.deals-swipe-wrapper {
    display: flex;
    transition: transform 0.3s ease;
    gap: 1.5rem;
    padding: 0 1rem;
}

.deal-swipe-card {
    min-width: 280px;
    max-width: 280px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: grab;
    position: relative;
    transform: scale(1);
    height: 380px;
}

.deal-swipe-card:active {
    cursor: grabbing;
    transform: scale(0.98);
}

.deal-swipe-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.deal-swipe-image {
    position: relative;
    height: 160px;
    overflow: hidden;
}

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

.deal-swipe-card:hover .deal-swipe-image img {
    transform: scale(1.05);
}

.deal-swipe-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, var(--secondary-color), #e66a35);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 2;
}

.deal-swipe-content {
    padding: 1.25rem;
    height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.deal-swipe-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.deal-swipe-description {
    color: #666;
    font-size: 0.8rem;
    margin-bottom: 0.75rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.deal-swipe-pricing {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.deal-swipe-original-price {
    color: #999;
    text-decoration: line-through;
    font-size: 0.8rem;
}

.deal-swipe-discounted-price {
    color: var(--secondary-color);
    font-size: 1rem;
    font-weight: 700;
}

.deal-swipe-discount {
    background: linear-gradient(135deg, var(--secondary-color), #e66a35);
    color: var(--white);
    padding: 3px 6px;
    border-radius: 10px;
    font-size: 0.7rem;
    font-weight: 600;
}

.deal-swipe-buttons {
    display: flex;
    gap: 0.5rem;
    margin-top: auto;
}

.deal-swipe-btn {
    flex: 1;
    background: linear-gradient(135deg, var(--primary-color), #e61e1e);
    color: var(--white);
    border: none;
    padding: 8px 12px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}

.deal-swipe-btn:hover {
    background: linear-gradient(135deg, #e61e1e, var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 49, 49, 0.3);
}

.deal-swipe-btn i {
    font-size: 0.875rem;
}

.deal-swipe-btn.secondary {
    background: linear-gradient(135deg, var(--secondary-color), #e65a1a);
}

.deal-swipe-btn.secondary:hover {
    background: linear-gradient(135deg, #e65a1a, var(--secondary-color));
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 120, 40, 0.3);
}

/* Progress Indicators */
.deals-progress {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 2rem;
}

.progress-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.progress-dot.active {
    background: var(--secondary-color);
    transform: scale(1.2);
}

.progress-dot:hover {
    background: var(--secondary-color);
    transform: scale(1.1);
}

/* Menu Section */
.menu-section {
    padding: 60px 0;
    background-color: var(--white);
}

.menu-section .section-header {
    margin-bottom: 4rem;
}

.menu-categories-container {
    margin-bottom: 3rem;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.category-scroll-btn {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(255, 49, 49, 0.3);
    z-index: 3;
    flex-shrink: 0;
}

.category-scroll-btn:hover {
    background: #e61e1e;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(255, 49, 49, 0.4);
}

.category-scroll-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.menu-categories {
    display: flex;
    gap: 1rem;
    padding: 1.5rem 0;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
    position: relative;
    flex: 1;
}

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

.category-btn {
    padding: 14px 28px;
    border: 2px solid var(--primary-color);
    background: none;
    color: var(--primary-color);
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
    font-size: 0.95rem;
    position: relative;
    overflow: hidden;
}

.category-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.category-btn:hover::before {
    left: 100%;
}

.category-btn.active,
.category-btn:hover {
    background: linear-gradient(135deg, var(--primary-color), #e61e1e);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 49, 49, 0.3);
}

.category-btn.active {
    box-shadow: 0 6px 20px rgba(255, 49, 49, 0.4);
}

/* View More Button */
.view-more-container {
    text-align: center;
    margin-top: 3rem;
}

.view-more-btn {
    padding: 16px 40px;
    font-size: 1.125rem;
    font-weight: 600;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--secondary-color), #e65a1a);
    border: none;
    color: var(--white);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 120, 40, 0.3);
}

.view-more-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 120, 40, 0.4);
    background: linear-gradient(135deg, #e65a1a, var(--secondary-color));
}

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

.menu-item {
    background-color: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 1;
    transform: scale(1);
    border: 1px solid #e9ecef;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 280px;
}

.menu-item.hidden {
    opacity: 0;
    transform: scale(0.8);
    pointer-events: none;
}

.menu-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
    border-color: var(--secondary-color);
}

.menu-item-image {
    width: 100%;
    height: 160px;
    background-color: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-gray);
    font-size: 2.5rem;
    position: relative;
    overflow: hidden;
}

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

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

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

.menu-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.75rem;
}

.menu-item-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    flex: 1;
    margin-right: 1rem;
    line-height: 1.3;
}

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

.menu-item-category {
    display: inline-block;
    background: linear-gradient(135deg, var(--secondary-color), #e66a35);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    align-self: flex-start;
}

.menu-item-buttons {
    display: flex;
    gap: 0.5rem;
    margin-top: auto;
}

.menu-item-btn {
    flex: 1;
    background: linear-gradient(135deg, var(--primary-color), #e61e1e);
    color: var(--white);
    border: none;
    padding: 10px 12px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
}

.menu-item-btn:hover {
    background: linear-gradient(135deg, #e61e1e, var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 49, 49, 0.3);
}

.menu-item-btn i {
    font-size: 0.875rem;
}

.menu-item-btn.secondary {
    background: linear-gradient(135deg, var(--secondary-color), #e65a1a);
    flex: 0 0 auto;
    width: 45px;
    padding: 10px;
}

.menu-item-btn.secondary:hover {
    background: linear-gradient(135deg, #e65a1a, var(--secondary-color));
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 120, 40, 0.3);
}

.menu-item-btn.secondary span {
    display: none;
}

/* Services Section */
.services-section {
    padding: 60px 0;
    background-color: var(--light-gray);
}

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

.service-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-color: var(--secondary-color);
}

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 1.5rem;
}

.service-content h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.service-content p {
    color: var(--dark-gray);
    line-height: 1.5;
    margin: 0;
}

/* Gallery Section */
.gallery-section {
    padding: 60px 0;
    background-color: var(--white);
}

.gallery-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.gallery-tab {
    padding: 12px 24px;
    border: 2px solid var(--primary-color);
    background: none;
    color: var(--primary-color);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 0.95rem;
}

.gallery-tab.active,
.gallery-tab:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 49, 49, 0.3);
}

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

.gallery-item {
    position: relative;
    height: 250px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    cursor: pointer;
    background: #f5f5f5;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

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

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

.gallery-item .gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 20px 15px 15px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-item .gallery-overlay h3 {
    margin: 0 0 5px 0;
    font-size: 1.125rem;
    font-weight: 600;
}

.gallery-item .gallery-overlay p {
    margin: 0;
    font-size: 0.875rem;
    opacity: 0.9;
}

/* Testimonials Section */
.testimonials-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
    position: relative;
}

.testimonials-section::before {
    /* Removed decorative pseudo-element */
    content: none;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 2.5rem;
    position: relative;
    z-index: 2;
}

.testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid rgba(13, 58, 107, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

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

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--secondary-color);
}

.testimonial-quote {
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: var(--dark-gray);
    font-style: italic;
    position: relative;
    z-index: 2;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    position: relative;
    z-index: 2;
}

.testimonial-info h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
    font-weight: 700;
}

.testimonial-info p {
    color: var(--dark-gray);
    font-size: 0.95rem;
    margin: 0;
    opacity: 0.8;
}

.testimonial-rating {
    display: flex;
    gap: 0.25rem;
    margin-top: 0.75rem;
}

.testimonial-rating i {
    color: var(--secondary-color);
    font-size: 1rem;
    filter: drop-shadow(0 1px 2px rgba(254, 126, 67, 0.3));
}

/* Gallery Modal */
.gallery-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-modal-overlay.active {
    display: flex;
    opacity: 1;
}

.gallery-modal {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.gallery-modal-overlay.active .gallery-modal {
    transform: scale(1);
}

.gallery-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.7);
    border: none;
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.gallery-modal-close:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: scale(1.1);
}

.gallery-modal-content {
    display: flex;
    flex-direction: column;
}

.gallery-modal-content img {
    width: 100%;
    max-height: 70vh;
    object-fit: cover;
}

.gallery-modal-info {
    padding: 1.5rem;
    background: var(--white);
}

.gallery-modal-info h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.gallery-modal-info p {
    color: var(--dark-gray);
    line-height: 1.6;
    margin: 0;
}

.gallery-modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    border: none;
    color: var(--white);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    z-index: 10001;
}

.gallery-modal-nav:hover {
    background: rgba(0, 0, 0, 0.9);
    transform: translateY(-50%) scale(1.1);
}

.gallery-modal-prev {
    left: 20px;
}

.gallery-modal-next {
    right: 20px;
}

/* Reservation Section */
.reservation-section {
    padding: 60px 0;
    background-color: #ff3131; /* Fallback color */
    background-image: url('./images/hero_01.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

.reservation-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(255, 49, 49, 0.85) 0%, 
        rgba(230, 30, 30, 0.8) 100%);
    z-index: 1;
}

.reservation-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.reservation-header h2 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 2.5rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.reservation-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.5;
}

.reservation-form {
    max-width: 900px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    padding: 3.5rem;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
    position: relative;
    z-index: 2;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

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

/* Special class for 3-column rows */
.form-row.three-columns {
    grid-template-columns: 1fr 1fr 1fr;
}

.form-group {
    margin-bottom: 2rem;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: var(--white);
    font-family: inherit;
    text-align: left;
    text-align-last: left;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    text-align: left;
    color: #666;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(255, 49, 49, 0.1);
    transform: translateY(-2px);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: var(--primary-color);
}

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

.reservation-form .btn {
    width: 100%;
    padding: 18px;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary-color), #e61e1e);
    border: none;
    color: var(--white);
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 8px 25px rgba(255, 49, 49, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reservation-form .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.reservation-form .btn:hover::before {
    left: 100%;
}

.reservation-form .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 49, 49, 0.4);
}

/* Form validation styles */
.form-group input:invalid,
.form-group select:invalid,
.form-group textarea:invalid {
    border-color: #dc3545;
}

.form-group input:valid,
.form-group select:valid,
.form-group textarea:valid {
    border-color: #28a745;
}

/* Contact Section */
.contact-section {
    padding: 60px 0;
    background-color: var(--white);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: grid;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
}

.contact-details h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.contact-form {
    background-color: var(--light-gray);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

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

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

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    background: var(--primary-color);
    color: var(--white);
    flex-shrink: 0;
}

.cart-header h3 {
    color: var(--white);
    margin: 0;
    font-size: 1.25rem;
}

.cart-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--white);
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: background-color 0.3s ease;
}

.cart-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

.cart-content {
    flex: 1;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
}

.cart-items-section {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.cart-items-section h4 {
    margin: 0 0 1rem 0;
    color: var(--primary-color);
    font-size: 1.125rem;
    font-weight: 600;
}

.cart-items {
    max-height: 300px;
    overflow-y: auto;
}

.empty-cart-message {
    text-align: center;
    padding: 2rem 1rem;
    color: var(--dark-gray);
}

.empty-cart-message i {
    font-size: 3rem;
    color: var(--light-gray);
    margin-bottom: 1rem;
    display: block;
}

.empty-cart-message p {
    margin: 0;
    font-size: 1rem;
}

.cart-item {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.cart-item-image {
    width: 60px;
    height: 60px;
    background-color: var(--light-gray);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-gray);
    font-size: 1.5rem;
}

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

.cart-item-title {
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.cart-item-price {
    color: var(--secondary-color);
    font-weight: 600;
}

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

.quantity-btn {
    width: 25px;
    height: 25px;
    border: 1px solid var(--border-color);
    background: none;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-btn:hover {
    background-color: var(--light-gray);
}

.cart-item-remove {
    background: none;
    border: none;
    color: #dc3545;
    cursor: pointer;
    font-size: 1.25rem;
    padding: 0.25rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.cart-item-remove:hover {
    background: rgba(220, 53, 69, 0.1);
}

.cart-summary-section {
    padding: 1.5rem;
    background: #f8f9fa;
    border-bottom: 1px solid var(--border-color);
}

.cart-summary {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f0f0f0;
}

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

.summary-row.tip-row {
    color: var(--secondary-color);
    font-weight: 500;
}

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

.items-count {
    font-weight: 600;
    color: var(--primary-color);
}

.subtotal-amount,
.tip-amount,
.total-amount {
    font-weight: 600;
    color: var(--primary-color);
}

.total-amount {
    font-size: 1.25rem;
}

/* Cart Recommendations */
.cart-recommendations {
    padding: 1.5rem;
    border-top: 1px solid var(--border-color);
    background: #f8f9fa;
}

.cart-recommendations h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.recommendation-items {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.recommendation-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    background: var(--white);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.recommendation-item:hover {
    border-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.recommendation-item img {
    width: 40px;
    height: 40px;
    border-radius: 6px;
    object-fit: cover;
}

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

.recommendation-item-name {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 0.25rem;
}

.recommendation-item-price {
    font-size: 0.85rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.add-recommendation-btn {
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    transition: all 0.3s ease;
}

.add-recommendation-btn:hover {
    background: #e65a1a;
    transform: scale(1.1);
}

/* Cart Tip Section */
.cart-tip-section {
    padding: 1.5rem;
    border-top: 1px solid var(--border-color);
    background: var(--white);
}

.cart-tip-section h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.tip-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.tip-btn {
    padding: 0.5rem 1rem;
    border: 2px solid var(--primary-color);
    background: none;
    color: var(--primary-color);
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 80px;
}

.tip-btn:hover,
.tip-btn.active {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 49, 49, 0.3);
}

.tip-btn.custom-tip {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}

.tip-btn.custom-tip:hover,
.tip-btn.custom-tip.active {
    background: var(--secondary-color);
    color: var(--white);
}

.custom-tip-input {
    margin-top: 0.5rem;
}

.custom-tip-input input {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.custom-tip-input input:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(255, 120, 40, 0.1);
}

.cart-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--border-color);
    background: var(--white);
    flex-shrink: 0;
}

.checkout-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    font-size: 1.125rem;
    font-weight: 600;
    background: var(--secondary-color);
    color: var(--white);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(255, 120, 40, 0.3);
}

.checkout-btn:hover {
    background: #e65a1a;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 120, 40, 0.4);
}

.checkout-btn i {
    font-size: 1.25rem;
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

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

/* WhatsApp Floating Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: white;
    border-radius: 50px;
    padding: 12px 16px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    z-index: 1000;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.9rem;
}

.whatsapp-float:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.6);
    background: #20ba5a;
}

.whatsapp-icon {
    font-size: 1.2rem;
    animation: pulse 2s infinite;
}

.whatsapp-text {
    white-space: nowrap;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
    }
}

/* Mobile responsive for WhatsApp float */
@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        padding: 12px 16px;
        font-size: 0.9rem;
    }
    
    .whatsapp-icon {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .whatsapp-float {
        bottom: 15px;
        right: 15px;
        padding: 10px 14px;
        font-size: 0.85rem;
    }
    
    .whatsapp-text {
        display: none;
    }
    
    .whatsapp-float:hover .whatsapp-text {
        display: block;
        position: absolute;
        right: 100%;
        margin-right: 10px;
        background: #25d366;
        padding: 8px 12px;
        border-radius: 8px;
        white-space: nowrap;
    }
}

/* Footer */
.footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 3rem 0 1rem;
}

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

.footer-logo h3 {
    color: var(--white);
    margin-bottom: 0.5rem;
}

.footer-logo span {
    color: #000000;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: #e65a1a;
    transform: translateY(-2px);
}

.footer-section h4 {
    color: var(--white);
    margin-bottom: 1rem;
}

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

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

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

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

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.footer-contact i {
    color: #000000;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(255, 49, 49, 0.3);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 999;
}

.back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: linear-gradient(135deg, #e61e1e, #e65a1a);
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 49, 49, 0.4);
}

.back-to-top i {
    font-size: 1.2rem;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav {
        display: none;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 0.8rem;
    }
    
    .chili-pepper {
        width: 30px;
        height: 45px;
    }
    
    .spice-splash {
        width: 60px;
        height: 60px;
    }
    
    .hero-wave {
        height: 80px;
    }
    
    .logo img {
        width: 120px;
        height: auto;
    }
    
    .logo h2 {
        font-size: 1.8rem;
    }
    
    .logo span {
        font-size: 0.95rem;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    /* Gallery categories in one line */
    .gallery-tabs {
        flex-wrap: nowrap;
        overflow-x: auto;
        gap: 0.5rem;
        padding: 0 1rem;
    }
    
    .gallery-tab {
        white-space: nowrap;
        flex-shrink: 0;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }
    
    .hero-headline {
        font-size: 2.5rem;
    }
    
    .hero-subheadline {
        font-size: 1.2rem;
    }
    
    .hero-features {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .feature-item {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-actions .btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .hero-visual {
        height: 350px;
    }
    
    .floating-card {
        padding: 1.25rem;
    }
    
    .card-content h3 {
        font-size: 1.1rem;
    }
    
    .card-content p {
        font-size: 0.85rem;
    }
    
    .hero-restaurant-name {
        font-size: 2.5rem;
    }
    
    .hero-logo {
        width: 60px;
        height: 60px;
    }
    
    .menu-categories {
        justify-content: flex-start;
        padding-bottom: 1rem;
    }
    
    .category-btn {
        white-space: nowrap;
        padding: 12px 20px;
        font-size: 0.875rem;
    }
    
    .gallery-tabs {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 1rem;
    }
    
    .gallery-tab {
        white-space: nowrap;
    }
    
    .reservation-form {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .reservation-header h2 {
        font-size: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    /* For 3-column form rows, stack them on mobile */
    .form-row.three-columns {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info {
        text-align: left;
        gap: 1.5rem;
    }
    
    .contact-item {
        justify-content: flex-start;
        text-align: left;
        gap: 1rem;
        align-items: center;
    }
    
    .contact-icon {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        flex-shrink: 0;
    }
    
    .contact-details {
        text-align: left;
    }
    
    .contact-details h3 {
        font-size: 1.1rem;
        margin-bottom: 0.25rem;
    }
    
    .contact-details p {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .contact-form {
        padding: 1.5rem;
    }
    
    .contact-form .btn {
        width: 100%;
        justify-content: center;
        margin: 0 auto;
        display: flex;
    }
    
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
    
    .services-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-card {
        padding: 2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        align-items: center;
        justify-items: center;
    }
    
    .footer-section {
        text-align: center;
        width: 100%;
    }
    
    .footer-links {
        justify-content: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-logo {
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .social-links {
        justify-content: center;
        margin: 1rem 0;
    }
    
    .footer-contact {
        text-align: center;
        margin-top: 1rem;
    }
    
    .footer-contact .contact-item {
        justify-content: center;
        text-align: center;
    }
    
    .footer-contact {
        text-align: center;
        margin-top: 1rem;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-contact p {
        text-align: center;
        margin: 0.5rem 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .footer-contact i {
        margin-right: 0.5rem;
    }
    
    .price-note {
        margin: 1rem;
        padding: 0.75rem 1.5rem;
        font-size: 0.875rem;
    }
    
    .language-toggle {
        padding: 2px;
    }
    
    .lang-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .back-to-top {
        bottom: 20px;
        left: 20px;
        width: 45px;
        height: 45px;
    }
    
    .back-to-top i {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-badge {
        font-size: 0.7rem;
        padding: 0.3rem 0.7rem;
    }
    
    .chili-pepper {
        width: 25px;
        height: 35px;
    }
    
    .spice-splash {
        width: 50px;
        height: 50px;
    }
    
    .hero-wave {
        height: 60px;
    }
    
    .logo img {
        width: 100px;
        height: auto;
    }
    
    .logo h2 {
        font-size: 1.6rem;
    }
    
    .logo span {
        font-size: 0.85rem;
    }
    
    .hero {
        min-height: 100vh;
        padding: 0;
    }
    
    .hero-headline {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .hero-subheadline {
        font-size: 0.9rem;
        line-height: 1.4;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }
    
    .menu-item-image {
        height: 100px;
    }
    
    .menu-item-title {
        font-size: 0.9rem;
    }
    
    .menu-item-description {
        font-size: 0.8rem;
    }
    
    .contact-info {
        text-align: left;
        padding: 0;
        gap: 1rem;
    }
    
    .contact-item {
        justify-content: flex-start;
        text-align: left;
        margin-bottom: 1rem;
        gap: 0.75rem;
        align-items: flex-start;
    }
    
    .contact-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
        flex-shrink: 0;
    }
    
    .contact-details {
        text-align: left;
    }
    
    .contact-details h3 {
        font-size: 1rem;
        margin-bottom: 0.25rem;
    }
    
    .contact-details p {
        font-size: 0.85rem;
        line-height: 1.3;
    }
    
    .contact-form {
        padding: 1rem;
    }
    
    .contact-form .btn {
        width: 100%;
        justify-content: center;
        margin: 0 auto;
        display: flex;
    }
    
    .footer-contact {
        text-align: center;
        padding: 0 1rem;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    .footer-contact p {
        text-align: center;
        margin: 0.5rem 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1.1rem;
    }
    
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .menu-item {
        min-height: auto;
    }
    
    .menu-item-image {
        height: 120px;
    }
    
    .menu-item-title {
        font-size: 1rem;
    }
    
    .menu-item-description {
        font-size: 0.85rem;
        line-height: 1.4;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .reservation-form {
        padding: 1.5rem;
        border-radius: 15px;
    }
    
    .reservation-header h2 {
        font-size: 1.75rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-avatar {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
    
    .hero-badge {
        padding: 8px 16px;
        font-size: 0.8rem;
    }
    
    .price-note {
        padding: 0.75rem 1rem;
        font-size: 0.8rem;
        margin: 1rem 0.5rem;
    }
}

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

.menu-item,
.service-card,
.gallery-item,
.testimonial-card {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
} 

/* Responsive Design */
@media (max-width: 1024px) {
    .menu-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.25rem;
    }
    
    .hero {
        min-height: 100vh;
        padding: 0;
        margin-top: 0;
    }
    
    .hero-container {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
        padding: 2rem 2rem 2rem 2rem;
    }
    
    .hero-content {
        max-width: 700px;
        margin: 0 auto;
    }
    
    .hero-visual {
        max-width: 500px;
        margin: 0 auto;
    }
    
    .hero-trust-badges {
        justify-content: center;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .floating-card {
        display: none;
    }
}

@media (max-width: 768px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .section-header p {
        font-size: 1.1rem;
    }
    
    .deals-section {
        padding: 50px 0;
    }
    
    .deal-card {
        width: 250px;
        height: 180px;
    }
    
    .deal-title {
        font-size: 1rem;
    }
    
    .discounted-price {
        font-size: 1.1rem;
    }
    
    .grab-now-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .hero {
        min-height: 100vh;
        padding: 0;
        margin-top: 0;
    }
    
    .hero-container {
        padding: 2rem 1.5rem;
        gap: 1.5rem;
    }
    
    .hero-headline {
        font-size: 2.2rem;
        line-height: 1.2;
        margin-bottom: 1rem;
    }
    
    .hero-subheadline {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
    }
    
    .hero-trust-badges {
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }
    
    .trust-badge {
        padding: 0.5rem 0.75rem;
        font-size: 0.8rem;
    }
    
    .hero-trust-badges {
        gap: 1rem;
        justify-content: center;
    }
    
    .trust-badge {
        padding: 0.75rem 1rem;
        font-size: 0.85rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
        max-width: 320px;
        justify-content: center;
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .hero-food-image {
        max-width: 450px;
        aspect-ratio: 16/10;
    }
}

@media (max-width: 480px) {
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .section-header p {
        font-size: 1rem;
    }
    
    .deals-section {
        padding: 40px 0;
    }
    
    .deals-swipe-container {
        margin-top: 1.5rem;
    }
    
    .deals-swipe-wrapper {
        gap: 1rem;
        padding: 0 0.5rem;
    }
    
    .deal-swipe-card {
        min-width: 260px;
        max-width: 260px;
        height: 350px;
    }
    
    .deal-swipe-image {
        height: 140px;
    }
    
    .deal-swipe-content {
        padding: 1rem;
        height: 210px;
    }
    
    .deal-swipe-title {
        font-size: 1rem;
    }
    
    .deal-swipe-description {
        font-size: 0.75rem;
        margin-bottom: 0.5rem;
    }
    
    .deal-swipe-pricing {
        gap: 0.25rem;
        margin-bottom: 0.75rem;
    }
    
    .deal-swipe-original-price {
        font-size: 0.75rem;
    }
    
    .deal-swipe-discounted-price {
        font-size: 0.9rem;
    }
    
    .deal-swipe-btn {
        padding: 8px 12px;
        font-size: 0.75rem;
    }
    
    .deals-progress {
        margin-top: 1.5rem;
    }
    
    .progress-dot {
        width: 8px;
        height: 8px;
    }
}

@media (max-width: 480px) {
    .deals-section {
        padding: 30px 0;
    }
    
    .deals-swipe-wrapper {
        gap: 0.75rem;
        padding: 0 0.25rem;
    }
    
    .deal-swipe-card {
        min-width: 240px;
        max-width: 240px;
        height: 320px;
    }
    
    .deal-swipe-image {
        height: 120px;
    }
    
    .deal-swipe-content {
        padding: 0.875rem;
        height: 200px;
    }
    
    .deal-swipe-title {
        font-size: 0.9rem;
        margin-bottom: 0.25rem;
    }
    
    .deal-swipe-description {
        font-size: 0.7rem;
        margin-bottom: 0.5rem;
    }
    
    .deal-swipe-pricing {
        gap: 0.25rem;
        margin-bottom: 0.5rem;
    }
    
    .deal-swipe-original-price {
        font-size: 0.7rem;
    }
    
    .deal-swipe-discounted-price {
        font-size: 0.8rem;
    }
    
    .deal-swipe-discount {
        font-size: 0.65rem;
        padding: 2px 5px;
    }
    
    .deal-swipe-btn {
        padding: 7px 10px;
        font-size: 0.7rem;
    }
    
    .deals-progress {
        margin-top: 1rem;
        gap: 0.25rem;
    }
    
    .progress-dot {
        width: 6px;
        height: 6px;
    }
} 

/* Deals Popup Modal */
.deals-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.deals-popup {
    background: var(--white);
    border-radius: 16px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
    transform: scale(0.8);
    transition: transform 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.deals-popup-overlay.active .deals-popup {
    transform: scale(1);
}

.deals-popup-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 1.5rem 1rem;
    border-bottom: 1px solid var(--border-color);
}

.deals-popup-header h3 {
    color: var(--text-color);
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0;
}

.deals-popup-close {
    background: none;
    border: none;
    font-size: 1.25rem;
    color: #666;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.deals-popup-close:hover {
    background: #f5f5f5;
    color: var(--text-color);
}

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

.deal-popup-image {
    width: 100%;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.deal-popup-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.deal-popup-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: linear-gradient(135deg, var(--secondary-color), #e65a1a);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.deal-popup-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1rem;
}

.deal-popup-description {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.deal-popup-items {
    margin-bottom: 1.5rem;
}

.deal-popup-items h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 0.75rem;
}

.deal-popup-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

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

.deal-popup-item-name {
    flex: 1;
    font-weight: 500;
    color: var(--text-color);
}

.deal-popup-item-quantity {
    background: var(--light-gray);
    color: var(--text-color);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.deal-popup-pricing {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 1.25rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
}

.deal-popup-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.deal-popup-price-row:last-child {
    margin-bottom: 0;
    padding-top: 0.5rem;
    border-top: 1px solid #ddd;
    font-weight: 700;
    font-size: 1.1rem;
}

.deal-popup-original-price {
    color: #999;
    text-decoration: line-through;
}

.deal-popup-discounted-price {
    color: var(--secondary-color);
    font-weight: 700;
}

.deal-popup-savings {
    color: #28a745;
    font-weight: 600;
}

.deal-popup-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.deal-popup-actions .btn {
    flex: 1;
    padding: 12px 20px;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.deal-popup-actions .btn-primary {
    background: linear-gradient(135deg, var(--primary-color), #e61e1e);
    color: var(--white);
}

.deal-popup-actions .btn-primary:hover {
    background: linear-gradient(135deg, #e61e1e, var(--primary-color));
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 49, 49, 0.3);
}

.deal-popup-actions .btn-secondary {
    background: linear-gradient(135deg, var(--secondary-color), #e65a1a);
    color: var(--white);
}

.deal-popup-actions .btn-secondary:hover {
    background: linear-gradient(135deg, #e65a1a, var(--secondary-color));
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(255, 120, 40, 0.3);
}

/* Mobile Responsive for Deals Popup */
@media (max-width: 768px) {
    .deals-popup {
        max-width: 95%;
        max-height: 85vh;
    }
    
    .deals-popup-header {
        padding: 1rem 1rem 0.75rem;
    }
    
    .deals-popup-header h3 {
        font-size: 1.1rem;
    }
    
    .deals-popup-content {
        padding: 1rem;
    }
    
    .deal-popup-image {
        height: 160px;
        margin-bottom: 1rem;
    }
    
    .deal-popup-title {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }
    
    .deal-popup-description {
        font-size: 0.875rem;
        margin-bottom: 1rem;
    }
    
    .deal-popup-items h4 {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }
    
    .deal-popup-item {
        padding: 0.375rem 0;
    }
    
    .deal-popup-pricing {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .deal-popup-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
    
    .deal-popup-actions .btn {
        padding: 10px 16px;
        font-size: 0.875rem;
        border-radius: 8px;
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
    }
    
    .deal-popup-actions .btn-primary {
        background: linear-gradient(135deg, var(--primary-color), #1a4a7a);
        color: var(--white);
    }
    
    .deal-popup-actions .btn-primary:hover {
        background: linear-gradient(135deg, #0a2d55, var(--primary-color));
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(13, 58, 107, 0.3);
    }
    
    .deal-popup-actions .btn-secondary {
        background: linear-gradient(135deg, var(--secondary-color), #e66a35);
        color: var(--white);
    }
    
    .deal-popup-actions .btn-secondary:hover {
        background: linear-gradient(135deg, #e66a35, var(--secondary-color));
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(254, 126, 67, 0.3);
    }
}

@media (max-width: 480px) {
    .deals-popup {
        max-width: 98%;
        max-height: 90vh;
    }
    
    .deals-popup-header {
        padding: 0.875rem 0.875rem 0.5rem;
    }
    
    .deals-popup-header h3 {
        font-size: 1rem;
    }
    
    .deals-popup-close {
        width: 35px;
        height: 35px;
        font-size: 1.1rem;
    }
    
    .deals-popup-content {
        padding: 0.875rem;
    }
    
    .deal-popup-image {
        height: 140px;
        margin-bottom: 0.875rem;
    }
    
    .deal-popup-badge {
        font-size: 0.75rem;
        padding: 4px 8px;
    }
    
    .deal-popup-title {
        font-size: 1.125rem;
        margin-bottom: 0.5rem;
    }
    
    .deal-popup-description {
        font-size: 0.8rem;
        margin-bottom: 0.875rem;
    }
    
    .deal-popup-items h4 {
        font-size: 0.9rem;
        margin-bottom: 0.375rem;
    }
    
    .deal-popup-item {
        padding: 0.25rem 0;
        gap: 0.5rem;
    }
    
    .deal-popup-item-name {
        font-size: 0.875rem;
    }
    
    .deal-popup-item-quantity {
        font-size: 0.75rem;
        padding: 1px 6px;
    }
    
    .deal-popup-pricing {
        padding: 0.875rem;
        margin-bottom: 0.875rem;
    }
    
    .deal-popup-price-row {
        font-size: 0.875rem;
        margin-bottom: 0.375rem;
    }
    
    .deal-popup-price-row:last-child {
        font-size: 1rem;
        padding-top: 0.375rem;
    }
    
    .deal-popup-actions {
        gap: 0.5rem;
    }
    
    .deal-popup-actions .btn {
        padding: 8px 12px;
        font-size: 0.8rem;
        border-radius: 8px;
        border: none;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
    }
    
    .deal-popup-actions .btn-primary {
        background: linear-gradient(135deg, var(--primary-color), #1a4a7a);
        color: var(--white);
    }
    
    .deal-popup-actions .btn-primary:hover {
        background: linear-gradient(135deg, #0a2d55, var(--primary-color));
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(13, 58, 107, 0.3);
    }
    
    .deal-popup-actions .btn-secondary {
        background: linear-gradient(135deg, var(--secondary-color), #e66a35);
        color: var(--white);
    }
    
    .deal-popup-actions .btn-secondary:hover {
        background: linear-gradient(135deg, #e66a35, var(--secondary-color));
        transform: translateY(-2px);
        box-shadow: 0 4px 15px rgba(254, 126, 67, 0.3);
    }
}

/* Mobile Responsive for Menu Items */
@media (max-width: 768px) {
    .menu-item {
        border-radius: 12px;
        height: 260px;
    }
    
    .menu-item-image {
        height: 160px;
    }
    
    .menu-item-content {
        padding: 0.875rem;
    }
    
    .menu-item-title {
        font-size: 1rem;
    }
    
    .menu-item-price {
        font-size: 1rem;
    }
    
    .menu-item-category {
        font-size: 0.7rem;
        padding: 3px 8px;
        margin-bottom: 0.75rem;
    }
    
    .menu-item-buttons {
        gap: 0.375rem;
    }
    
    .menu-item-btn {
        padding: 8px 10px;
        font-size: 0.75rem;
        gap: 0.25rem;
    }
    
    .menu-item-btn.secondary {
        width: 40px;
        padding: 8px;
    }
    
    .menu-item-btn i {
        font-size: 0.75rem;
    }
}

@media (max-width: 480px) {
    .menu-item {
        border-radius: 10px;
        height: 240px;
    }
    
    .menu-item-image {
        height: 160px;
    }
    
    .menu-item-content {
        padding: 0.75rem;
    }
    
    .menu-item-title {
        font-size: 0.9rem;
    }
    
    .menu-item-price {
        font-size: 0.9rem;
    }
    
    .menu-item-category {
        font-size: 0.65rem;
        padding: 2px 6px;
        margin-bottom: 0.5rem;
    }
    
    .menu-item-buttons {
        gap: 0.25rem;
    }
    
    .menu-item-btn {
        padding: 6px 8px;
        font-size: 0.7rem;
        gap: 0.125rem;
    }
    
    .menu-item-btn.secondary {
        width: 35px;
        padding: 6px;
    }
    
    .menu-item-btn i {
        font-size: 0.7rem;
    }
    
    /* Form labels responsive styling */
    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 0.4rem;
        color: var(--primary-color);
        font-weight: 600;
        display: block;
    }
    
    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 14px 16px;
        font-size: 0.95rem;
    }
    
    .form-group input::placeholder,
    .form-group textarea::placeholder {
        font-size: 0.9rem;
    }
    
    .back-to-top {
        bottom: 15px;
        left: 15px;
        width: 40px;
        height: 40px;
    }
    
    .back-to-top i {
        font-size: 0.9rem;
    }
}