/* ============================================
   MODERN OFFERS PAGE
   ============================================ */

.offers-page {
    --offer-green-900: #163713;
    --offer-green-800: #234d1f;
    --offer-green-700: #2d5a27;
    --offer-green-500: #4f8b3b;
    --offer-green-100: #e7f3de;
    --offer-cream: #f7f7f2;
    --offer-border: #dfe6dc;
    --offer-ink: #1e2420;
    --offer-muted: #68736b;
    --offer-orange: #ff6a00;
    --offer-orange-dark: #e65e00;
    background:
        radial-gradient(circle at 10% 0%, rgba(99, 166, 81, 0.14), transparent 36%),
        radial-gradient(circle at 90% 12%, rgba(255, 106, 0, 0.09), transparent 30%),
        linear-gradient(180deg, #f7faf5 0%, #eef3ec 100%);
    min-height: 100vh;
    padding-bottom: 88px;
}

.offers-hero {
    padding: 40px 0 26px;
}

.offers-hero-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 24px;
    align-items: stretch;
}

.hero-copy {
    background: linear-gradient(135deg, var(--offer-green-900) 0%, var(--offer-green-700) 55%, var(--offer-green-500) 100%);
    border-radius: 20px;
    padding: 34px;
    color: #fff;
    box-shadow: 0 20px 48px rgba(30, 66, 24, 0.28);
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.22);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.hero-copy h1 {
    margin: 0 0 12px;
    font-size: clamp(28px, 3.1vw, 44px);
    line-height: 1.08;
    letter-spacing: -0.02em;
}

.hero-copy p {
    margin: 0;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.6;
    max-width: 560px;
}

.hero-actions {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 0 16px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.hero-btn-primary {
    background: #fff;
    color: var(--offer-green-800);
}

.hero-btn-secondary {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(18, 38, 15, 0.2);
}

.hero-stats {
    margin-top: 22px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 12px;
    text-align: center;
}

.stat-card strong {
    display: block;
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
}

.stat-card span {
    display: block;
    margin-top: 4px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.86);
}

.hero-media-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    display: block;
    min-height: 100%;
    text-decoration: none;
    box-shadow: 0 18px 42px rgba(34, 50, 32, 0.22);
}

.hero-media-card img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    display: block;
}

.hero-media-overlay {
    position: absolute;
    inset: auto 0 0 0;
    padding: 16px 18px 18px;
    background: linear-gradient(180deg, transparent 0%, rgba(14, 26, 11, 0.86) 70%);
    color: #fff;
}

.hero-media-overlay span {
    display: inline-flex;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.2);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hero-media-overlay h3 {
    margin: 10px 0 6px;
    font-size: 22px;
    line-height: 1.2;
}

.hero-media-overlay p {
    margin: 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.88);
}

.offers-content {
    padding-top: 12px;
}

.deal-section,
.coupon-section,
.redeem-section {
    margin-top: 26px;
}

.section-heading {
    margin-bottom: 16px;
}

.section-heading h2 {
    margin: 0;
    font-size: clamp(24px, 2.4vw, 34px);
    color: var(--offer-ink);
    letter-spacing: -0.02em;
}

.section-heading p {
    margin: 8px 0 0;
    color: var(--offer-muted);
    font-size: 14px;
    line-height: 1.55;
}

.deal-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.deal-card {
    display: grid;
    grid-template-columns: 44% 56%;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border: 1px solid var(--offer-border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(34, 51, 32, 0.08);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.deal-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(34, 51, 32, 0.15);
    border-color: #c6d8bf;
}

.deal-card img {
    width: 100%;
    height: 100%;
    min-height: 200px;
    object-fit: cover;
    display: block;
}

.deal-card-content {
    padding: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.deal-chip {
    display: inline-flex;
    align-items: center;
    width: fit-content;
    padding: 4px 10px;
    border-radius: 999px;
    background: var(--offer-green-100);
    color: var(--offer-green-700);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.deal-card-content h3 {
    margin: 10px 0 8px;
    font-size: 21px;
    color: var(--offer-ink);
    line-height: 1.22;
}

.deal-card-content p {
    margin: 0;
    color: var(--offer-muted);
    font-size: 14px;
    line-height: 1.5;
}

.deal-meta {
    margin-top: 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.deal-code {
    font-size: 12px;
    font-weight: 700;
    color: var(--offer-green-700);
}

.deal-cta {
    color: var(--offer-orange);
    font-size: 12px;
    font-weight: 700;
}

.coupon-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.coupon-card {
    background: #fff;
    border: 1px solid var(--offer-border);
    border-radius: 16px;
    padding: 18px;
    box-shadow: 0 8px 22px rgba(36, 59, 32, 0.08);
    display: flex;
    flex-direction: column;
    gap: 10px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.coupon-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(36, 59, 32, 0.15);
}

.coupon-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.coupon-tag {
    padding: 4px 9px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--offer-green-700);
    background: var(--offer-green-100);
}

.coupon-value {
    color: var(--offer-green-800);
    font-size: 22px;
    font-weight: 700;
    line-height: 1;
}

.coupon-card h3 {
    margin: 2px 0 0;
    color: var(--offer-ink);
    font-size: 20px;
}

.coupon-card p {
    margin: 0;
    color: var(--offer-muted);
    font-size: 14px;
    line-height: 1.5;
}

.coupon-code-row {
    margin-top: 2px;
    border: 1px dashed #b5c8ad;
    border-radius: 10px;
    background: #f7fbf5;
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.coupon-code {
    color: var(--offer-green-900);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.copy-btn {
    min-width: 86px;
    border: none;
    border-radius: 8px;
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    background: linear-gradient(135deg, var(--offer-green-700), var(--offer-green-500));
    cursor: pointer;
    transition: transform 0.16s ease, box-shadow 0.16s ease, background 0.16s ease;
}

.copy-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 18px rgba(33, 68, 27, 0.22);
}

.copy-btn.copied {
    background: linear-gradient(135deg, #2f8742, #4ca663);
}

.coupon-card small {
    color: #8a938d;
    font-size: 12px;
    line-height: 1.4;
}

.redeem-section {
    background: #fff;
    border: 1px solid var(--offer-border);
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 8px 22px rgba(31, 49, 30, 0.08);
}

.redeem-section h2 {
    margin: 0 0 10px;
    font-size: clamp(22px, 2.2vw, 30px);
    color: var(--offer-ink);
    letter-spacing: -0.02em;
}

.redeem-steps {
    margin: 0;
    padding-left: 20px;
    color: var(--offer-muted);
    display: grid;
    gap: 8px;
    font-size: 14px;
    line-height: 1.6;
}

@media (max-width: 1100px) {
    .offers-hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-media-card img {
        min-height: 270px;
    }

    .coupon-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .offers-page {
        padding-bottom: 78px;
    }

    .offers-hero {
        padding-top: 24px;
    }

    .hero-copy {
        padding: 22px;
        border-radius: 16px;
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }

    .hero-media-card,
    .hero-media-card img {
        border-radius: 16px;
    }

    .hero-media-card img {
        min-height: 220px;
    }

    .deal-grid {
        grid-template-columns: 1fr;
    }

    .deal-card {
        grid-template-columns: 1fr;
    }

    .deal-card img {
        min-height: 190px;
    }

    .deal-card-content h3 {
        font-size: 19px;
    }

    .coupon-grid {
        grid-template-columns: 1fr;
    }
}
