/* HERO */

.deals-hero {
    position: relative;

    padding: 150px 0 100px;

    background:
        linear-gradient(rgba(255, 160, 0, 0.55), rgba(255, 160, 0, 0.55)),
        url("/assets/img/coveralldeals.jpeg");

    background-size: cover;
    background-position: center;

    text-align: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
}

.deals-hero .container {
    position: relative;
    z-index: 2;
}

.deals-hero h1 {
    font-size: 44px;

    margin-bottom: 10px;
}

.deals-hero p {
    opacity: 0.9;

    margin-bottom: 40px;
}

/* HIGHLIGHT */

.deals-highlight {
    display: flex;

    justify-content: center;

    gap: 160px;
}

.highlight-card {
    width: 260px;
    height: 260px;

    background: white;

    border-radius: 20px;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);

    overflow: hidden;
}

.highlight-card img {
    width: 100%;
    height: 100%;

    object-fit: cover;
}

/* SECTION */

.deals-section {
    background: #e6e6e8;

    padding: 80px 0;
}

/* GRID */

.deals-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 40px;
}

/* CARD */

.deals-card {
    background: white;

    border-radius: 18px;

    overflow: hidden;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);

    transition: 0.25s;
}

.deals-card:hover {
    transform: translateY(-6px);
}

.deals-card img {
    width: 100%;

    height: 200px;

    object-fit: cover;
}

/* INFO */

.deals-info {
    padding: 16px;

    text-align: center;
}

.deals-info h3 {
    margin: 0;

    font-size: 15px;
}

.price {
    color: #f7931e;

    font-size: 13px;

    font-weight: 600;
}

/* RESPONSIVE */

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

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

    .deals-highlight {
        flex-direction: column;
        align-items: center;
    }
}
