.food-promotion-container {
    padding: 40px 0;
    max-width: 1350px;
    margin: 0 auto;
}

.promo-title {
    font-size: 28px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 25px;
    text-align: left;
    padding: 0 10px;
}

.food-promo-swiper {
    padding: 10px 10px 50px 10px !important;
}

.promo-card-link {
    text-decoration: none !important;
    display: block;
}

.promo-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.2s ease;
    height: 100%;
    border: 1px solid #f1f5f9;
    display: flex;
    align-items: center;
    padding: 10px;
}

.promo-card:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    background: #fafafa;
}

.promo-image-container {
    width: 80px;
    height: 80px;
    min-width: 80px;
    border-radius: 8px;
    overflow: hidden;
    margin-right: 15px;
    background: #f8fafc;
}

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

.promo-content {
    flex-grow: 1;
    overflow: hidden;
    text-align: left;
}

.promo-product-name {
    margin: 0 0 2px 0;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block !important;
}

.promo-restaurant-name {
    display: block;
    font-size: 12px;
    color: #888;
    margin-bottom: 5px;
}

.promo-details {
    display: flex;
    align-items: center;
    gap: 8px;
}

.promo-price {
    font-size: 14px;
    font-weight: 700;
    color: #ea1d2c;
}

.promo-badge {
    background: #fdf2f2;
    color: #ea1d2c;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 9px;
    font-weight: 800;
    text-transform: uppercase;
    border: 1px solid #fee2e2;
}

/* Swiper overrides */
.swiper-button-next, .swiper-button-prev {
    color: #1e293b !important;
    background: #fff;
    width: 40px !important;
    height: 40px !important;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.swiper-button-next:after, .swiper-button-prev:after {
    font-size: 18px !important;
    font-weight: 900;
}

.swiper-pagination-bullet-active {
    background: #ea1d2c !important;
}

@media (max-width: 768px) {
    .promo-title {
        font-size: 22px;
    }
    .swiper-button-next, .swiper-button-prev {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .promo-image-container {
        width: 50px;
        height: 50px;
        min-width: 50px;
        margin-right: 6px;
    }
    .promo-product-name {
        font-size: 11px;
        margin-bottom: 0;
    }
    .promo-restaurant-name {
        font-size: 9px;
        margin-bottom: 2px;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
    .promo-details {
        gap: 4px;
        flex-wrap: wrap;
    }
    .promo-price {
        font-size: 11px;
    }
    .promo-badge {
        font-size: 7px;
        padding: 1px 3px;
    }
    .promo-card {
        padding: 6px;
        min-height: 70px;
    }
    .food-promo-swiper {
        padding: 5px 5px 40px 5px !important;
    }
}
