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

:root {
    --primary-color: #d32f2f;
    --secondary-color: #2e7d32;
    --accent-color: #ff6f00;
    --text-dark: #2c2c2c;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --white: #ffffff;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.15);
    --border-radius: 8px;
    --transition: all 0.3s ease;
}

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

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

/* Navigation */
.navbar {
    background: rgba(28, 25, 23, 0.95) !important;
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

/* Fallback for browsers that don't support backdrop-filter */
@supports not (backdrop-filter: blur(20px)) {
    .navbar {
        background: rgba(28, 25, 23, 1) !important;
    }
}

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

.nav-logo .logo {
    height: 95px;
    width: auto;
    transition: all 0.3s ease;
    border-radius: var(--border-radius);
}

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

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: #dc2626;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.nav-order-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, #b71c1c 100%);
    color: white !important;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(211, 47, 47, 0.3);
    transition: all 0.3s ease;
}

.nav-order-btn:hover {
    background: linear-gradient(135deg, #b71c1c 0%, #8f1c1c 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(211, 47, 47, 0.4);
    color: white !important;
}

.nav-order-btn::after {
    display: none;
}

.nav-phone {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.nav-phone:hover {
    background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

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

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.8) 0%,
        rgba(0, 0, 0, 0.3) 60%,
        rgba(0, 0, 0, 0.1) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 3;
    flex: 1;
    max-width: 600px;
    padding: 2rem;
    margin-left: 2rem;
}

.hero-badge {
    display: inline-block;
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #f0f0f0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.hero-btn-primary {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(220, 38, 38, 0.4);
    background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
}

.hero-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    cursor: pointer;
}

.hero-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.hero-btn-secondary i {
    font-size: 1rem;
}

.hero-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
    color: #e0e0e0;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.info-item i {
    color: #dc2626;
    font-size: 1.1rem;
    width: 20px;
}

.hero-images {
    position: absolute;
    top: 50%;
    right: 5%;
    transform: translateY(-50%);
    z-index: 2;
    display: flex;
    flex-direction: row;
    gap: 1rem;
    padding: 0;
    margin: 0;
    align-items: flex-start;
    max-width: 45%;
}

.hero-image-card {
    position: relative;
    width: 280px;
    height: 200px;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border: 4px solid rgba(255, 255, 255, 0.95);
    background: #ffffff;
    /* collage angle variable */
    --angle: 0deg;
    transform: rotate(var(--angle));
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex-shrink: 0;
}

.hero-image-card:hover {
    transform: translateY(-6px) rotate(var(--angle));
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.hero-image-card.pasta-card {
    /* no bounce */
    animation: none;
    --angle: -3deg;
}

.hero-image-card.table-card {
    /* no bounce */
    animation: none;
    --angle: 4deg;
    margin-top: 25px;
    margin-left: -20px;
}

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

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

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 1.5rem 1rem 1rem;
    color: white;
}

.image-overlay h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 0.25rem 0;
}

.image-overlay p {
    font-size: 0.875rem;
    margin: 0;
    color: #e0e0e0;
}

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

/* Large screens - adjust hero images */
@media (min-width: 1200px) {
    .hero-image-card {
        width: 320px;
        height: 230px;
    }
}

/* Medium screens - adjust hero images */
@media (max-width: 1024px) and (min-width: 769px) {
    .hero-images {
        right: 3%;
        max-width: 40%;
    }
    
    .hero-image-card {
        width: 220px;
        height: 160px;
    }
    
    .hero-image-card.table-card {
        margin-top: 20px;
        margin-left: -15px;
    }
}

/* Hero Responsive Design */
@media (max-width: 768px) {
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 2rem 0;
    }
    
    .hero-content {
        margin-left: 0;
        max-width: 100%;
        padding: 1rem;
        order: 2;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .hero-images {
        position: static;
        top: auto;
        right: auto;
        margin-right: 0;
        padding: 1rem;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        order: 1;
        margin-bottom: 2rem;
    }
    
    .hero-image-card {
        width: 240px;
        height: 180px;
        transform: none;
        --angle: 0deg;
    }
    
    .hero-badge {
        font-size: 0.75rem;
        padding: 0.4rem 1rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
}

/* Modern Menu Section */
.menu-section {
    padding: 60px 0;
    background: #fafafa;
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    min-height: 100vh;
}

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

/* Menu Header */
.menu-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e5e5e5;
}

.menu-title h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #171717;
    margin: 0 0 0.25rem 0;
    letter-spacing: -0.025em;
}

.menu-subtitle {
    color: #737373;
    font-size: 0.875rem;
    margin: 0;
}

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

.search-container {
    position: relative;
}

.menu-search {
    padding: 0.5rem 2.5rem 0.5rem 1rem;
    border: 1px solid #e5e5e5;
    border-radius: 1rem;
    background: white;
    font-size: 0.875rem;
    width: 240px;
    transition: all 0.2s ease;
}

.menu-search:focus {
    outline: none;
    border-color: #dc2626;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.search-icon {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    color: #737373;
    font-size: 0.875rem;
}

.cart-button {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: #171717;
    color: white;
    border: none;
    border-radius: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.cart-button:hover {
    background: #404040;
}

.cart-badge {
    background: #dc2626;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
    position: absolute;
    top: -8px;
    right: -8px;
}

/* Menu Layout */
.menu-layout {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Category Navigation */
.category-nav {
    margin-bottom: 2rem;
}

.category-list {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.category-nav-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
    background: #f5f5f5;
    border: 1px solid #e5e5e5;
    border-radius: 1.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: #525252;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    white-space: nowrap;
}

.category-nav-item:hover {
    background: #fef2f2;
    border-color: #fecaca;
    color: #dc2626;
}

.category-nav-item.active {
    background: #fef2f2;
    border-color: #dc2626;
    color: #dc2626;
}

/* Menu Content - Tabbed Interface */
.menu-content {
    max-width: 100%;
}

.category-section {
    display: none;
}

.category-section.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

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

.category-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #f5f5f5;
}

.category-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #171717;
    letter-spacing: -0.025em;
}

.category-note {
    color: #737373;
    font-size: 0.875rem;
}

.menu-list {
    display: flex;
    flex-direction: column;
}

.menu-list-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid #f5f5f5;
    transition: all 0.2s ease;
}

.menu-list-item:hover {
    background: #fafafa;
    margin: 0 -1rem;
    padding-left: 1rem;
    padding-right: 1rem;
    border-radius: 0.5rem;
}

.item-info {
    flex: 1;
}

.item-name {
    color: #171717;
    font-weight: 500;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.item-badge {
    background: #f5f5f5;
    color: #525252;
    border-radius: 1rem;
    padding: 0.125rem 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
}

.item-badge.popular {
    background: #fef2f2;
    color: #dc2626;
}

.item-badge.spicy {
    background: #fef2f2;
    color: #dc2626;
}

.item-badge.vegetarian {
    background: #f0fdf4;
    color: #16a34a;
}

.item-description {
    color: #737373;
    font-size: 0.75rem;
    line-height: 1.4;
    margin-top: 0.25rem;
}

.item-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.price-pill {
    padding: 0.25rem 0.5rem;
    border-radius: 1rem;
    background: #f5f5f5;
    color: #171717;
    font-size: 0.75rem;
    font-weight: 600;
}

.add-button {
    padding: 0.25rem 0.75rem;
    border-radius: 1rem;
    background: #171717;
    color: white;
    border: none;
    font-size: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.add-button:hover {
    background: #404040;
}

/* Floating Cart Button (Mobile) */
.floating-cart-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 56px;
    height: 56px;
    background: #dc2626;
    color: white;
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
    cursor: pointer;
    display: none;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    z-index: 1000;
    transition: all 0.2s ease;
}

.floating-cart-btn:hover {
    transform: scale(1.1);
}

.floating-cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: #171717;
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Cart Drawer */
.cart-drawer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    display: none;
}

.cart-drawer.open {
    display: flex;
}

.cart-drawer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.cart-drawer-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 100%;
    background: white;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.3s ease;
}

.cart-drawer.open .cart-drawer-content {
    transform: translateX(0);
}

.cart-drawer-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid #f5f5f5;
}

.cart-drawer-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #171717;
    margin: 0;
}

.cart-drawer-close {
    background: none;
    border: none;
    font-size: 1.25rem;
    color: #737373;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
}

.cart-drawer-close:hover {
    background: #f5f5f5;
    color: #171717;
}

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

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cart-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: #fafafa;
    border-radius: 0.75rem;
}

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

.cart-item-name {
    font-weight: 500;
    color: #171717;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
}

.cart-item-meta {
    color: #737373;
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
}

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

.qty-stepper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 0.5rem;
    padding: 0.25rem;
}

.qty-stepper button {
    background: none;
    border: none;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.25rem;
    cursor: pointer;
    font-size: 0.875rem;
    color: #525252;
    transition: all 0.2s ease;
}

.qty-stepper button:hover {
    background: #f5f5f5;
    color: #171717;
}

.qty-stepper span {
    font-size: 0.875rem;
    font-weight: 500;
    min-width: 24px;
    text-align: center;
}

.cart-item-price {
    font-weight: 600;
    color: #171717;
    font-size: 0.875rem;
}

.remove-item {
    background: none;
    border: none;
    color: #dc2626;
    cursor: pointer;
    padding: 0.25rem;
    border-radius: 0.25rem;
    font-size: 0.875rem;
    transition: all 0.2s ease;
}

.remove-item:hover {
    background: #fef2f2;
}

.cart-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 1rem;
    text-align: center;
    color: #737373;
}

.cart-empty i {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #d1d5db;
}

.cart-drawer-footer {
    padding: 1.5rem;
    border-top: 1px solid #f5f5f5;
    background: #fafafa;
}

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

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
}

.summary-row.total-row {
    font-weight: 600;
    font-size: 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid #e5e5e5;
    margin-top: 0.75rem;
}

.tip-section {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.tip-buttons {
    display: flex;
    gap: 0.5rem;
}

.tip-btn {
    flex: 1;
    padding: 0.5rem;
    background: white;
    border: 1px solid #e5e5e5;
    border-radius: 0.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
}

.tip-btn:hover {
    background: #f5f5f5;
}

.tip-btn.active {
    background: #171717;
    color: white;
    border-color: #171717;
}

.checkout-button {
    width: 100%;
    padding: 1rem;
    background: #dc2626;
    color: white;
    border: none;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
}

.checkout-button:hover {
    background: #b91c1c;
}

/* Item Modal */
.item-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3000;
    display: none;
    align-items: flex-end;
}

.item-modal.open {
    display: flex;
}

.item-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
}

.item-modal-content {
    position: relative;
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
    background: white;
    border-radius: 1rem 1rem 0 0;
    max-height: 80vh;
    overflow-y: auto;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.item-modal.open .item-modal-content {
    transform: translateY(0);
}

.item-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid #f5f5f5;
}

.item-modal-header h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #171717;
    margin: 0;
}

.item-modal-close {
    background: none;
    border: none;
    font-size: 1.25rem;
    color: #737373;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
}

.item-modal-close:hover {
    background: #f5f5f5;
    color: #171717;
}

.item-modal-body {
    padding: 1.5rem;
}

.item-description {
    color: #737373;
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.option-label {
    display: block;
    font-weight: 600;
    color: #171717;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.size-selector,
.toppings-selector,
.variants-selector,
.quantity-selector {
    margin-bottom: 1.5rem;
}

.size-options {
    display: flex;
    gap: 0.5rem;
    padding: 0.25rem;
    background: #f5f5f5;
    border-radius: 0.75rem;
}

.size-option {
    flex: 1;
    padding: 0.75rem;
    background: transparent;
    border: none;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    text-align: center;
}

.size-option.active {
    background: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.topping-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.topping-chip {
    padding: 0.5rem 0.75rem;
    background: #f5f5f5;
    border: 1px solid #e5e5e5;
    border-radius: 1.5rem;
    font-size: 0.75rem;
    font-weight: 500;
    color: #525252;
    cursor: pointer;
    transition: all 0.2s ease;
}

.topping-chip.selected {
    background: #fef2f2;
    border-color: #dc2626;
    color: #dc2626;
}

.variant-options {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.variant-option {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem;
    background: #f5f5f5;
    border: 1px solid #e5e5e5;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.variant-option.selected {
    background: #fef2f2;
    border-color: #dc2626;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
    justify-content: center;
}

.qty-btn {
    width: 40px;
    height: 40px;
    background: #f5f5f5;
    border: 1px solid #e5e5e5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 1.25rem;
    font-weight: 600;
    color: #525252;
    transition: all 0.2s ease;
}

.qty-btn:hover {
    background: #e5e5e5;
    color: #171717;
}

.qty-display {
    font-size: 1.25rem;
    font-weight: 600;
    color: #171717;
    min-width: 2rem;
    text-align: center;
}

.item-modal-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-top: 1px solid #f5f5f5;
    background: #fafafa;
}

.modal-price {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.price-label {
    font-size: 0.75rem;
    color: #737373;
}

.price-value {
    font-size: 1.25rem;
    font-weight: 600;
    color: #171717;
}

.add-to-cart-btn {
    padding: 0.75rem 1.5rem;
    background: #171717;
    color: white;
    border: none;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
}

.add-to-cart-btn:hover {
    background: #404040;
}

.topping-price {
    color: #737373;
    font-size: 0.75rem;
    font-weight: 400;
}

/* Payment Section Styles */
.payment-section {
    border: 2px solid #e5e5e5;
    border-radius: 0.75rem;
    padding: 1.5rem;
    background: #fafafa;
    margin-top: 1rem;
}

.payment-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #171717;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.payment-label i {
    color: #dc2626;
}

.payment-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.payment-notice {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    color: #dc2626;
}

.payment-notice i {
    color: #dc2626;
}

.payment-cards {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
}

.payment-cards i {
    font-size: 2rem;
    color: #525252;
    transition: color 0.2s ease;
}

.payment-cards i:hover {
    color: #171717;
}

.checkout-pay-btn {
    width: 100%;
    padding: 1rem 1.5rem;
    background: #dc2626;
    color: white;
    border: none;
    border-radius: 0.75rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
    margin-bottom: 1rem;
}

.checkout-pay-btn:hover {
    background: #b91c1c;
    transform: translateY(-1px);
}

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

.payment-security {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: #737373;
    text-align: center;
}

.payment-security i {
    color: #16a34a;
}

/* Enhanced Checkout Modal Design */
.checkout-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(12px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
}

.checkout-interface {
    background: white;
    border-radius: 1rem;
    max-width: 1200px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
}

.checkout-modal .modal-header {
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
    padding: 2rem;
    border-bottom: 1px solid #e5e5e5;
    border-radius: 1rem 1rem 0 0;
}

.checkout-modal .modal-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #171717;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0;
}

.checkout-modal .modal-header h3::before {
    content: "🔒";
    font-size: 1.25rem;
    filter: grayscale(0.3);
}

.checkout-modal .close-checkout {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #737373;
    transition: all 0.2s ease;
}

.checkout-modal .close-checkout:hover {
    background: white;
    color: #171717;
    transform: scale(1.05);
}

.checkout-modal .checkout-body {
    overflow-y: auto;
    max-height: calc(95vh - 120px);
}

.checkout-modal .checkout-sections {
    display: grid;
    grid-template-columns: 1fr 450px;
    min-height: 500px;
}

.checkout-modal .customer-info-section {
    padding: 2.5rem;
    background: white;
    overflow-y: auto;
}

.checkout-modal .customer-info-section h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #171717;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #f5f5f5;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkout-modal .customer-info-section h4::before {
    content: "👤";
    font-size: 1.125rem;
}

.checkout-modal .form-group {
    margin-bottom: 2rem;
}

.checkout-modal .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #171717;
    font-size: 0.875rem;
}

.checkout-modal .form-group input,
.checkout-modal .form-group select,
.checkout-modal .form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e5e5e5;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    transition: all 0.2s ease;
    background: #fafafa;
    font-family: inherit;
}

.checkout-modal .form-group input:focus,
.checkout-modal .form-group select:focus,
.checkout-modal .form-group textarea:focus {
    outline: none;
    border-color: #dc2626;
    background: white;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
    transform: translateY(-1px);
}

.checkout-modal .form-group input::placeholder,
.checkout-modal .form-group textarea::placeholder {
    color: #a3a3a3;
    font-size: 0.875rem;
}

.checkout-modal .order-summary-section {
    background: linear-gradient(180deg, #fafafa 0%, #f5f5f5 100%);
    border-left: 1px solid #e5e5e5;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
}

.checkout-modal .order-summary-section h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #171717;
    margin-bottom: 1.5rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid #e5e5e5;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.checkout-modal .order-summary-section h4::before {
    content: "📋";
    font-size: 1.125rem;
}

.checkout-modal .summary-items {
    flex: 1;
    margin-bottom: 1.5rem;
    background: white;
    border-radius: 0.75rem;
    padding: 1rem;
    border: 1px solid #e5e5e5;
}

.checkout-modal .summary-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #f5f5f5;
    font-size: 0.875rem;
}

.checkout-modal .summary-item:last-child {
    border-bottom: none;
}

.checkout-modal .summary-totals {
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    margin-bottom: 1.5rem;
    border: 1px solid #e5e5e5;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.checkout-modal .summary-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    font-size: 0.875rem;
    color: #525252;
}

.checkout-modal .summary-line:last-child {
    margin-bottom: 0;
}

.checkout-modal .summary-line.total-line {
    font-size: 1.125rem;
    font-weight: 700;
    color: #171717;
    padding-top: 0.75rem;
    border-top: 2px solid #e5e5e5;
    margin-top: 0.75rem;
}

.checkout-modal .checkout-pay-btn {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.3);
    transform: translateY(0);
    transition: all 0.3s ease;
}

.checkout-modal .checkout-pay-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

.checkout-modal .payment-security {
    background: rgba(22, 163, 74, 0.1);
    padding: 0.75rem;
    border-radius: 0.5rem;
    border: 1px solid rgba(22, 163, 74, 0.2);
}

.clover-payment-info {
    margin-top: 1rem;
    padding: 1rem;
    background: #f0f9ff;
    border: 1px solid #bae6fd;
    border-radius: 0.5rem;
}

.clover-payment-info p {
    margin: 0 0 0.75rem 0;
    font-weight: 600;
    color: #0369a1;
}

.test-cards {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.test-card {
    font-size: 0.75rem;
    color: #374151;
    padding: 0.5rem;
    background: white;
    border-radius: 0.25rem;
    border: 1px solid #e5e7eb;
    cursor: pointer;
    transition: all 0.2s ease;
}

.test-card:hover {
    background: #f3f4f6;
    border-color: #d1d5db;
}

.test-note {
    font-size: 0.75rem;
    color: #6b7280;
    margin-top: 0.5rem;
    font-style: italic;
}

/* Card Input Fields */
.card-inputs {
    margin-top: 1.5rem;
    padding: 1.5rem;
    background: white;
    border: 2px solid #e5e5e5;
    border-radius: 0.75rem;
}

.card-input-group {
    margin-bottom: 1rem;
}

.card-input-group:last-child {
    margin-bottom: 0;
}

.card-input-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #171717;
    font-size: 0.875rem;
}

.card-number-container {
    position: relative;
}

.card-number-container input {
    padding-right: 3rem;
}

.card-type-icon {
    position: absolute;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 20px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.card-type-icon.visa {
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCA0MCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHJlY3Qgd2lkdGg9IjQwIiBoZWlnaHQ9IjI0IiByeD0iNCIgZmlsbD0iIzE0MzQ4NSIvPgo8cGF0aCBkPSJNMTYuNTcgMTguNUgxMy44M0wxNS45IDUuNUgxOC42NEwxNi41NyAxOC41WiIgZmlsbD0id2hpdGUiLz4KPC9zdmc+');
}

.card-type-icon.mastercard {
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCA0MCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHJlY3Qgd2lkdGg9IjQwIiBoZWlnaHQ9IjI0IiByeD0iNCIgZmlsbD0iI0VCMDAxQiIvPgo8Y2lyY2xlIGN4PSIxNSIgY3k9IjEyIiByPSI3IiBmaWxsPSIjRkY1RjAwIi8+CjxjaXJjbGUgY3g9IjI1IiBjeT0iMTIiIHI9IjciIGZpbGw9IiNGRkY1RjAiLz4KPC9zdmc+');
}

.card-type-icon.amex {
    background-image: url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNDAiIGhlaWdodD0iMjQiIHZpZXdCb3g9IjAgMCA0MCAyNCIgZmlsbD0ibm9uZSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj4KPHJlY3Qgd2lkdGg9IjQwIiBoZWlnaHQ9IjI0IiByeD0iNCIgZmlsbD0iIzAwNjZDQyIvPgo8dGV4dCB4PSIyMCIgeT0iMTUiIGZvbnQtZmFtaWx5PSJBcmlhbCIgZm9udC1zaXplPSI4IiBmaWxsPSJ3aGl0ZSIgdGV4dC1hbmNob3I9Im1pZGRsZSI+QU1FWDwvdGV4dD4KPC9zdmc+');
}

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

.card-inputs input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e5e5e5;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    transition: all 0.2s ease;
    background: #fafafa;
}

.card-inputs input:focus {
    outline: none;
    border-color: #dc2626;
    background: white;
    box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.1);
}

.card-inputs input.error {
    border-color: #ef4444;
    background: #fef2f2;
}

.card-inputs input.valid {
    border-color: #16a34a;
    background: #f0fdf4;
}

/* Payment Processing Modal */
.payment-processing-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 11000;
}

.payment-processing-content {
    background: white;
    border-radius: 1rem;
    max-width: 400px;
    width: 90%;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.3);
}

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

.processing-icon {
    font-size: 3rem;
    color: #dc2626;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

.processing-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #171717;
    margin: 0;
}

.payment-amount {
    font-size: 1.25rem;
    font-weight: 600;
    color: #dc2626;
    margin-bottom: 2rem;
    padding: 1rem;
    background: #fef2f2;
    border-radius: 0.5rem;
}

.processing-steps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.step {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem;
    border-radius: 0.5rem;
    transition: all 0.3s ease;
    opacity: 0.5;
}

.step.active {
    opacity: 1;
    background: #fef3c7;
    border: 1px solid #fbbf24;
}

.step.completed {
    opacity: 1;
    background: #dcfce7;
    border: 1px solid #16a34a;
}

.step.completed i {
    color: #16a34a;
}

.step.active i {
    color: #f59e0b;
}

.step i {
    font-size: 1.25rem;
    width: 20px;
    text-align: center;
}

.processing-note {
    font-size: 0.875rem;
    color: #737373;
    margin: 0;
    font-style: italic;
}

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

/* Empty Category Styles */
.empty-category {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
    padding: 2rem;
}

.empty-category-content {
    text-align: center;
    max-width: 400px;
}

.empty-category-content h3 {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.empty-category-content p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Order Section */
.order-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.order-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

.order-option {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.order-option:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.order-option i {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.order-option h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.clover-widget {
    background: var(--white);
    border-radius: var(--border-radius);
    padding: 3rem;
    text-align: center;
    box-shadow: var(--shadow);
}

.widget-placeholder i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.clover-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.clover-status {
    margin-top: 1rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    font-size: 0.9rem;
}

.clover-status i {
    margin-right: 0.5rem;
}

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

.contact-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

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

.contact-item i {
    color: var(--primary-color);
    font-size: 1.5rem;
    margin-top: 0.2rem;
}

.contact-item strong {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
}

.contact-item a:hover {
    text-decoration: underline;
}

.map-container {
    border-radius: var(--border-radius);
    overflow: hidden;
}

/* Footer */
.footer {
background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
color: white;
padding: 4rem 0 2rem;
position: relative;
overflow: hidden;
}

.footer::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 1px;
background: linear-gradient(90deg, transparent, rgba(220, 38, 38, 0.5), transparent);
}

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

.footer-section h3 {
font-family: 'Playfair Display', serif;
font-size: 1.75rem;
font-weight: 700;
margin-bottom: 1rem;
color: white;
background: linear-gradient(135deg, #dc2626, #f59e0b);
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
background-clip: text;
}

.footer-section h4 {
font-size: 1.1rem;
font-weight: 600;
margin-bottom: 1.5rem;
color: white;
text-transform: uppercase;
letter-spacing: 0.5px;
}

.footer-section p {
color: rgba(255, 255, 255, 0.8);
margin-bottom: 1.5rem;
line-height: 1.6;
font-size: 0.95rem;
}

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

.social-links a {
display: inline-flex;
align-items: center;
justify-content: center;
width: 45px;
height: 45px;
background: rgba(255, 255, 255, 0.1);
color: white;
border-radius: 12px;
text-decoration: none;
transition: all 0.3s ease;
border: 1px solid rgba(255, 255, 255, 0.2);
backdrop-filter: blur(10px);
}

.social-links a:hover {
background: linear-gradient(135deg, #dc2626, #b91c1c);
transform: translateY(-3px);
box-shadow: 0 8px 25px rgba(220, 38, 38, 0.3);
border-color: transparent;
}

.social-links a i {
font-size: 1.3rem;
}

.footer-section ul {
list-style: none;
padding: 0;
}

.footer-section ul li {
margin-bottom: 0.75rem;
}

.footer-section ul li a {
color: rgba(255, 255, 255, 0.8);
text-decoration: none;
transition: all 0.3s ease;
font-size: 0.95rem;
display: inline-flex;
align-items: center;
gap: 0.5rem;
}

.footer-section ul li a:hover {
color: #dc2626;
transform: translateX(5px);
}

.footer-section ul li a[href^="tel"] {
background: linear-gradient(135deg, #dc2626, #b91c1c);
color: white;
padding: 0.75rem 1.25rem;
border-radius: 25px;
font-weight: 600;
box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
margin-top: 0.5rem;
}

.footer-section ul li a[href^="tel"]:hover {
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
}

.footer-call-btn {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    box-shadow: 0 6px 20px rgba(220, 38, 38, 0.3);
    transition: all 0.3s ease;
    margin-top: 1rem;
    border: 2px solid transparent;
}

.footer-call-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(220, 38, 38, 0.4);
    background: linear-gradient(135deg, #b91c1c, #991b1b);
    border-color: rgba(255, 255, 255, 0.2);
}

.footer-call-btn i {
    font-size: 1.1rem;
}

.footer-bottom {
border-top: 1px solid rgba(255, 255, 255, 0.1);
padding-top: 2rem;
text-align: center;
color: rgba(255, 255, 255, 0.6);
max-width: 1200px;
margin: 0 auto;
padding-left: 2rem;
padding-right: 2rem;
}

.footer-bottom a {
color: #dc2626;
text-decoration: none;
font-weight: 500;
}

.footer-bottom a:hover {
color: #f59e0b;
}

/* Business Hours Notification */
.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    max-width: 400px;
    border-left: 4px solid #dc2626;
    animation: slideInRight 0.3s ease-out;
}

.notification.error {
    border-left-color: #dc2626;
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Footer Mobile Responsive */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .footer-section ul li a[href^="tel"] {
        display: inline-block;
        width: auto;
    }
}

/* Responsive Design */
/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .order-options {
        grid-template-columns: 1fr;
    }
    
    /* Mobile Menu Styles */
    .menu-header {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    
    .menu-header-actions {
        justify-content: space-between;
    }
    
    .menu-search {
        width: 200px;
    }
    
    .menu-layout {
        gap: 1.5rem;
    }
    
    .category-list {
        overflow-x: auto;
        padding-bottom: 0.5rem;
    }
    
    .floating-cart-btn {
        display: flex;
    }
    
    .cart-button {
        display: none;
    }
    
    .menu-list-item {
        padding: 0.75rem 0;
    }
    
    .item-name {
        font-size: 0.8125rem;
    }
    
    .item-description {
        font-size: 0.6875rem;
    }
    
    .price-pill {
        font-size: 0.6875rem;
    }
    
    .add-button {
        font-size: 0.6875rem;
        padding: 0.25rem 0.5rem;
    }
    
    .cart-drawer-content {
        width: 100%;
        max-width: 400px;
    }
    
    .item-modal-content {
        border-radius: 1rem 1rem 0 0;
        max-height: 90vh;
    }
    
    /* Mobile Checkout Styles */
    .checkout-modal .checkout-sections {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .checkout-modal .order-summary-section {
        border-left: none;
        border-top: 1px solid #e5e5e5;
        order: 2;
    }
    
    .checkout-modal .customer-info-section {
        order: 1;
    }
    
    .checkout-modal .modal-header {
        padding: 1.5rem;
    }
    
    .checkout-modal .modal-header h3 {
        font-size: 1.25rem;
    }
    
    .checkout-interface {
        margin: 1rem;
        max-width: calc(100% - 2rem);
    }
}

/* All old conflicting modal styles removed - using clean enhanced checkout design */

.checkout-btn {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
}

.checkout-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
}

/* Checkout Form Styles */
.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #ddd;
    border-radius: var(--border-radius);
    font-size: 1rem;
    transition: var(--transition);
}

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

.order-summary-section {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: var(--border-radius);
    height: fit-content;
}

.summary-items {
    margin-bottom: 1rem;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid #ddd;
}

.summary-totals {
    border-top: 2px solid var(--primary-color);
    padding-top: 1rem;
}

.summary-line {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.total-line {
    font-size: 1.2rem;
    border-top: 1px solid #ddd;
    padding-top: 0.5rem;
    margin-top: 0.5rem;
}

.place-order-btn {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
    margin-top: 1rem;
}

/* Confirmation Modal */
.confirmation-content {
    text-align: center;
    max-width: 500px;
}

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

.success-icon {
    font-size: 4rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.confirmation-body p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.confirmation-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.order-details {
    background: var(--bg-light);
    padding: 1rem;
    border-radius: var(--border-radius);
    margin: 1rem 0;
    text-align: left;
}

.order-details ul {
    margin: 0.5rem 0 0 1rem;
    padding: 0;
}

.order-details li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
}

.status-message {
    font-weight: 600;
    color: var(--secondary-color);
    background: #e8f5e8;
    padding: 0.75rem;
    border-radius: var(--border-radius);
    margin: 1rem 0;
}

@media (max-width: 768px) {
    .order-sections,
    .checkout-sections {
        grid-template-columns: 1fr;
    }
    
    .order-interface,
    .checkout-interface {
        width: 98%;
        max-height: 95vh;
    }
    
    .menu-categories-modal {
        justify-content: center;
    }
    
    .menu-item-modal {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .confirmation-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 1rem;
    }
    
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .menu-section,
    .order-section,
    .contact-section {
        padding: 60px 0;
    }
    
    .menu-section h2,
    .order-section h2,
    .contact-section h2 {
        font-size: 2rem;
    }
    
    .order-sections,
    .checkout-sections {
        padding: 1rem;
    }
}
