/* Sandwichs Page Styling */
.sandwichs-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/sandwich_hero_bg.png');
    background-size: cover;
    background-position: center;
    padding: 120px 0;
    text-align: center;
    color: white;
}

.sandwichs-hero h2 {
    font-family: 'Lilita One', cursive;
    font-size: 3.5rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.sandwich-section-title {
    text-align: center;
    margin: 60px 0 40px;
}

.sandwich-section-title h2 {
    color: #e3000e;
    font-family: 'Lilita One', cursive;
    font-size: 2.5rem;
    text-transform: uppercase;
}

/* Premium Card Design */
.sandwich-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 80px;
}

@media (max-width: 1200px) {
    .sandwich-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.sandwich-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.sandwich-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.sandwich-img-wrapper {
    position: relative;
    height: 260px;
    /* Increased height from 200px */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
}

.sandwich-img-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.15));
}

.sandwich-card:hover .sandwich-img-wrapper img {
    transform: translateY(-10px) scale(1.05);
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

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

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

.sandwich-card:hover .sandwich-img-wrapper img {
    animation: float 2s ease-in-out infinite;
}

.menu-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.6);
    color: #fff;
    padding: 5px 12px;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
}



.sandwich-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.sandwich-title {
    font-family: 'Oswald', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.sandwich-desc {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.4;
    margin-bottom: 20px;
    flex-grow: 1;
}

.sandwich-price-box {
    background: #3e2723;
    color: #fff;
    width: fit-content;
    padding: 6px 15px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 1.1rem;
}

/* Menu Upsell Banner */
.menu-upsell-banner {
    background: #e3000e;
    color: #fff;
    padding: 25px 30px;
    border-radius: 12px;
    text-align: center;
    margin: 40px auto 60px;
    max-width: 800px;
    box-shadow: 0 10px 30px rgba(227, 0, 14, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    border: 2px dashed rgba(255, 255, 255, 0.3);
}

.menu-upsell-banner h3 {
    margin: 0;
    font-family: 'Lilita One', cursive;
    font-size: 1.8rem;
    letter-spacing: 1px;
    color: #fff;
    text-transform: uppercase;
}

.menu-upsell-banner .price-tag {
    background: #fff;
    color: #e3000e;
    padding: 5px 15px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.4rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .menu-upsell-banner {
        flex-direction: column;
        padding: 20px;
        margin: 20px 15px 40px;
    }

    .menu-upsell-banner h3 {
        font-size: 1.4rem;
    }
}