/* ===============================
   OFFER SECTION UNIQUE
================================ */

.offer-section-unique {
    padding: 5px 20px;
    background: #f8faff;
}

.offer-container {
    max-width: 1200px;
    margin: auto;
}

/* TITLE */
.offer-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
}

/* GRID */
.offer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

/* CARD */
.offer-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    transition: 0.3s ease;
}

.offer-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* IMAGE */
.offer-image {
    position: relative;
    height: 180px;
}

.offer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* BADGE */
.offer-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: #ff5722;
    color: #fff;
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 20px;
}

/* COUPON */
.offer-coupon {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: #000;
    color: #fff;
    font-size: 12px;
    padding: 5px 10px;
    border-radius: 20px;
}

/* CONTENT */
.offer-content {
    padding: 18px;
    text-align: center;
}

.offer-content h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.offer-desc {
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
}

/* BUTTON */
.offer-copy-btn {
    background: #ff5722;
    border: none;
    color: #fff;
    padding: 7px 14px;
    border-radius: 20px;
    font-size: 13px;
    cursor: pointer;
    transition: 0.3s;
}

.offer-copy-btn:hover {
    background: #e64a19;
}

/* ===============================
   RESPONSIVE
================================ */

/* Tablet */
@media (max-width: 992px) {
    .offer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Mobile */
@media (max-width: 576px) {
    .offer-grid {
        grid-template-columns: 1fr;
    }

    .offer-title {
        font-size: 26px;
    }
}