
.special-offers {
    padding: 40px 0;
    background: #fff;
}

.special-offers__header {
    text-align: center;
    margin-bottom: 50px;
}

.special-offers__header h1 {
    font-size: 2.6rem;
    color: #BF9948;
    font-weight: 400;
    margin-bottom: 10px;
}

.special-offers__header p {
    color: #666;
    font-size: 1.05rem;
}

/* Offer layout */
.special-offers__grid {
    display: grid;
    gap: 30px;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.special-offer {
    position: relative;
    height: 380px;
    border-radius: 16px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
    color: #fff;
    transition: transform .35s ease, box-shadow .35s ease;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.15);
}

.special-offer::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.75) 100%);
    z-index: 0;
}

.special-offer:hover {
    transform: translateY(-5px);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.25);
}

/* Badge */
.special-offer__badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #BF9948;
    color: #fff;
    font-size: .9rem;
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 6px;
    z-index: 2;
    max-width: 80%;
    word-break: break-word;
}

/* Content */
.special-offer__content {
    position: relative;
    z-index: 2;
    padding: 30px 40px;
    width: 100%;
}

.special-offer__content h3 {
    font-size: 1.8rem;
    line-height: 1.3;
    margin-bottom: 20px;
    max-width: 600px;
    text-transform: uppercase;
    word-wrap: break-word;
}

.special-offer__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #fff;
    font-weight: 500;
    text-decoration: none;
    font-size: 1.05rem;
    border: 2px solid #BF9948;
    border-radius: 50px;
    padding: 10px 24px;
    transition: background .3s, color .3s;
    white-space: nowrap;
}

.special-offer__btn:hover {
    background: #BF9948;
    color: #111;
}

/* ===== Responsive ===== */
@media (max-width: 1200px) {
    .special-offers__header h1 {
        font-size: 2.2rem;
    }
    .special-offer {
        height: 340px;
    }
    .special-offer__content h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 992px) {
    .special-offers {
        padding: 70px 0;
    }
    .special-offers__grid {
        gap: 24px;
    }
    .special-offer {
        height: 320px;
    }
    .special-offer__content {
        padding: 24px 30px;
    }
    .special-offer__content h3 {
        font-size: 1.4rem;
    }
}

@media (max-width: 768px) {
    .special-offers__header h1 {
        font-size: 1.9rem;
    }
    .special-offer {
        height: 280px;
    }
    .special-offer__content {
        padding: 20px;
    }
    .special-offer__content h3 {
        font-size: 1.2rem;
    }
    .special-offer__btn {
        font-size: .95rem;
        padding: 8px 18px;
    }
}

@media (max-width: 576px) {
    .special-offers {
        padding: 60px 0;
    }
    .special-offers__grid {
        gap: 20px;
    }
    .special-offer {
        height: 240px;
    }
    .special-offer__badge {
        font-size: .8rem;
        padding: 6px 12px;
    }
    .special-offer__content h3 {
        font-size: 1.1rem;
        margin-bottom: 12px;
    }
    .special-offer__btn {
        padding: 7px 14px;
    }
}
