/* SECTION */
.offers-section {
    padding: 80px 0;
    background: linear-gradient(to bottom, #f9f9f9, #ffffff);
}

.section-title {
    font-size: 36px;
    font-weight: 700;
    color: #1e3a2f;
    margin-bottom: 10px;
}

.subtitle {
    color: #888;
    margin-bottom: 50px;
    font-size: 15px;
}

/* TOP DISCOUNTS */
.discount-row {
    display: flex;
    gap: 25px;
    margin-bottom: 60px;
}

.discount-card {
    flex: 1;
    background: #fff;
    padding: 30px;
    border-radius: 18px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    transition: 0.35s ease;
    position: relative;
    overflow: hidden;
}

.discount-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(200,167,93,0.1), transparent);
    opacity: 0;
    transition: 0.3s;
}

.discount-card:hover::before {
    opacity: 1;
}

.discount-card:hover {
    transform: translateY(-8px);
}

.discount-badge {
    display: inline-block;
    margin-bottom: 10px;
    font-weight: 700;
    color: #c8a75d;
    font-size: 18px;
}

.discount-card h3 {
    font-size: 20px;
    margin-bottom: 8px;
}

.discount-card p {
    font-size: 14px;
    color: #777;
}

/* GRID */
.offers-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* CARD */
.offer-card {
    background: #fff;
    padding: 35px 30px;
    border-radius: 20px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
    transition: 0.35s ease;
}

.offer-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

/* HIGHLIGHT CARD */
.offer-card.highlight {
    border: 2px solid #c8a75d;
    transform: scale(1.05);
}

/* BADGES */
.badge {
    position: absolute;
    top: 18px;
    left: 18px;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #fff;
}

.badge.green { background: #2ecc71; }
.badge.purple { background: linear-gradient(135deg, #8e44ad, #5e3370); }
.badge.pink { background: linear-gradient(135deg, #ff4d6d, #c9184a); }

/* PRICE */
.price {
    margin: 20px 0;
    font-size: 20px;
}

.price del {
    color: #aaa;
    font-size: 14px;
    margin-right: 8px;
}

.price strong {
    font-size: 26px;
    color: #1e3a2f;
}

/* FEATURES */
.offer-card ul {
    padding: 0;
    margin: 15px 0 25px;
    list-style: none;
}

.offer-card ul li {
    margin-bottom: 8px;
    font-size: 14px;
    color: #555;
}

/* BUTTON */
.btn-3d {
    display: inline-block;
    padding: 12px 22px;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    background: linear-gradient(135deg, #27ae60, #145a32);
    box-shadow: 0 8px 20px rgba(0,0,0,0.2);
    transition: 0.3s ease;
}

.btn-3d:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(0,0,0,0.25);
}

/* VARIANTS */
.btn-3d.gold {
    background: linear-gradient(135deg, #d4af37, #9c7c1c);
}

.btn-3d.red {
    background: linear-gradient(135deg, #ff4d4d, #b30000);
}

.btn-3d.dark {
    background: linear-gradient(135deg, #2c3e50, #1a252f);
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .offers-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .offers-grid {
        grid-template-columns: 1fr;
    }

    .discount-row {
        flex-direction: column;
    }

    .offer-card.highlight {
        transform: scale(1);
    }
}