﻿.promo-hero {
    background: linear-gradient(rgba(0,0,0,.6), rgba(0,0,0,.6)), url('https://images.unsplash.com/photo-1498050108023-c5249f4df085');
    background-size: cover;
    background-position: center;
    padding: 90px 20px;
    color: white;
    text-align: center;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 10px;
}

.hero-content p {
    font-size: 20px;
}

.promo-section {
    padding: 40px 20px;
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.promo-card {
    background: white;
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,.1);
    position: relative;
}

.promo-img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 12px;
}

.promo-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #e63946;
    color: white;
    padding: 6px 12px;
    font-size: 14px;
    border-radius: 6px;
}

.promo-price {
    margin: 15px 0;
}

.price {
    font-size: 28px;
    font-weight: bold;
    color: #1d3557;
}

.promo-price small {
    color: #777;
    display: block;
}

.btn-promo {
    display: inline-block;
    background: #1d3557;
    color: white;
    padding: 10px 16px;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 10px;
    text-decoration: none;
}

    .btn-promo:hover {
        background: #457b9d;
    }

.desc {
    min-height: 40px;
    color: #555;
}

.promo-dates {
    color: #666;
    font-size: 13px;
    margin-top: 5px;
}
