/* ===========================================
   Offers Page - Hero + Layout
   =========================================== */
.offers-page {
    background: var(--bg-light);
}

.offers-hero {
    position: relative;
    padding: 120px 20px 90px;
    background: var(--dark-gradient);
    overflow: hidden;
    text-align: center;
}

.offers-hero .hero-content {
    position: relative;
    z-index: 2;
    max-width: 860px;
    margin: 0 auto;
    color: #fff;
}

.offers-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    font-weight: 700;
    margin-bottom: 18px;
}

.offers-hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.6rem);
    font-weight: 900;
    margin-bottom: 16px;
    text-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
}

.offers-hero p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 28px;
}

.offers-hero .hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.offers-filter {
    display: grid;
    gap: 12px;
    justify-items: center;
    margin: 20px 0 30px;
}

.filter-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    align-items: center;
}

.filter-group-title {
    font-size: 0.9rem;
    font-weight: 800;
    color: #334155;
    background: rgba(148, 163, 184, 0.18);
    border: 1px solid rgba(148, 163, 184, 0.35);
    border-radius: 999px;
    padding: 8px 14px;
}

.filter-pill {
    display: inline-flex;
    align-items: center;
    padding: 8px 16px;
    border-radius: 999px;
    border: 1px solid rgba(47, 91, 255, 0.2);
    background: #ffffff;
    color: #0f172a;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.2s ease;
}

.filter-pill:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.1);
}

.filter-pill.active {
    background: var(--primary-gradient);
    color: #fff;
    border-color: transparent;
    box-shadow: 0 12px 28px rgba(47, 91, 255, 0.25);
}

.offers-hero .bubbles-container {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.offers-hero .bubble {
    position: absolute;
    bottom: -120px;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255,255,255,0.16), rgba(255,255,255,0.05));
    border: 1px solid rgba(255,255,255,0.2);
    animation: offersFloat 16s infinite ease-in-out;
}

.offers-hero .bubble:nth-child(1) { left: 8%; animation-duration: 18s; }
.offers-hero .bubble:nth-child(2) { left: 22%; width: 45px; height: 45px; animation-delay: 2s; }
.offers-hero .bubble:nth-child(3) { left: 38%; width: 90px; height: 90px; animation-delay: 4s; }
.offers-hero .bubble:nth-child(4) { left: 52%; width: 60px; height: 60px; animation-delay: 1s; }
.offers-hero .bubble:nth-child(5) { left: 66%; width: 95px; height: 95px; animation-delay: 3s; }
.offers-hero .bubble:nth-child(6) { left: 80%; width: 50px; height: 50px; animation-delay: 5s; }
.offers-hero .bubble:nth-child(7) { left: 92%; width: 70px; height: 70px; animation-delay: 2.5s; }
.offers-hero .bubble:nth-child(8) { left: 4%; width: 55px; height: 55px; animation-delay: 6s; }

@keyframes offersFloat {
    0% { transform: translateY(0) rotate(0deg); opacity: 0; }
    10% { opacity: 0.7; }
    90% { opacity: 0.7; }
    100% { transform: translateY(-120vh) rotate(680deg); opacity: 0; }
}

@media (max-width: 768px) {
    .offers-hero {
        padding: 100px 16px 70px;
    }
    .offers-hero .hero-actions {
        flex-direction: column;
    }
}
