/* =========================================================
   MIR COMBO OFFERS
   ========================================================= */

.mir-combo-offers {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px 60px;

    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;

    box-sizing: border-box;
}


/* =========================
   CARD
   ========================= */

.mir-combo-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 14px;
    overflow: hidden;

    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);

    display: flex;
    flex-direction: column;

    min-width: 0;

    transition:
        transform .25s ease,
        box-shadow .25s ease;
}


.mir-combo-card:hover {
    transform: translateY(-6px);

    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.13);
}


/* =========================
   IMAGE
   ========================= */

.mir-combo-image {
    width: 100%;
    height: 280px;

    overflow: hidden;

    background: #f7f7f7;
}


.mir-combo-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;

    transition: transform .4s ease;
}


.mir-combo-card:hover
.mir-combo-image img {
    transform: scale(1.04);
}


/* =========================
   CONTENT
   ========================= */

.mir-combo-card-content {
    padding: 24px 22px 26px;

    display: flex;
    flex-direction: column;

    flex: 1;
}


/* =========================
   TITLE
   ========================= */

.mir-combo-title {
    margin: 0 0 14px;

    text-align: center;

    font-size: 21px;
    line-height: 1.3;

    font-weight: 600;

    color: #1d1d1d;
}


.mir-combo-title::after {
    content: "";

    display: block;

    width: 55px;
    height: 2px;

    margin: 12px auto 0;

    background: #c89425;
}


/* =========================
   COMBINATION
   ========================= */

.mir-combo-combination {
    margin-bottom: 18px;

    text-align: center;

    font-size: 15px;
    line-height: 1.5;

    color: #555;
}


/* =========================
   PRICING
   ========================= */

.mir-combo-pricing {
    display: flex;

    align-items: center;
    justify-content: center;

    gap: 12px;

    margin-bottom: 14px;

    flex-wrap: wrap;
}


.mir-combo-original {
    color: #888;

    font-size: 15px;

    text-decoration: line-through;
}


.mir-combo-offer-price {
    color: #b51f1f;

    font-size: 27px;

    font-weight: 700;
}


/* =========================
   SAVE
   ========================= */

.mir-combo-save {
    margin-bottom: 20px;

    padding: 10px 12px;

    border-radius: 8px;

    background: #f0f8ef;

    color: #27752b;

    text-align: center;

    font-size: 15px;

    font-weight: 600;
}


/* =========================
   BUTTON
   ========================= */

.mir-combo-button {
    width: 100%;
    min-height: 50px;

    margin-top: auto;

    display: flex;

    align-items: center;
    justify-content: center;

    background: #c89425;

    color: #fff !important;

    border-radius: 8px;

    text-decoration: none !important;

    text-transform: uppercase;

    font-size: 14px;

    font-weight: 700;

    letter-spacing: .4px;

    transition:
        background .25s ease,
        transform .25s ease;
}


.mir-combo-button:hover {
    background: #a97817;

    color: #fff !important;

    transform: translateY(-1px);
}


/* =========================
   TABLET
   ========================= */

@media (max-width: 991px) {

    .mir-combo-offers {
        grid-template-columns:
            repeat(2, minmax(0, 1fr));

        gap: 22px;

        padding:
            35px 18px 50px;
    }

    .mir-combo-image {
        height: 250px;
    }
}


/* =========================
   MOBILE
   ========================= */

@media (max-width: 767px) {

    .mir-combo-offers {
        grid-template-columns: 1fr;

        gap: 22px;

        padding:
            25px 15px 40px;
    }

    .mir-combo-card {
        border-radius: 12px;
    }

    .mir-combo-image {
        height: auto;

        aspect-ratio: 1 / 1;
    }

    .mir-combo-card-content {
        padding:
            20px 18px 22px;
    }

    .mir-combo-title {
        font-size: 20px;
    }

    .mir-combo-combination {
        font-size: 14px;
    }

    .mir-combo-offer-price {
        font-size: 24px;
    }

    .mir-combo-button {
        min-height: 48px;

        font-size: 13px;
    }
}


/* =========================
   SMALL MOBILE
   ========================= */

@media (max-width: 480px) {

    .mir-combo-offers {
        padding-left: 12px;
        padding-right: 12px;
    }

    .mir-combo-card-content {
        padding:
            18px 15px 20px;
    }

    .mir-combo-title {
        font-size: 18px;
    }

    .mir-combo-pricing {
        gap: 8px;
    }

    .mir-combo-original {
        font-size: 14px;
    }

    .mir-combo-offer-price {
        font-size: 22px;
    }
}