/* ==========================================================
   🌟 BEST DEALS PAGE PREMIUM STYLING 🌟
   ========================================================== */

/* 1. Deals Banner (Black & Yellow Theme) */
.premium-deals-banner {
    padding: 50px 20px;
    background: linear-gradient(135deg, #111111 0%, #2a2a2a 100%);
    position: relative;
    overflow: hidden;
    border-bottom: 3px solid var(--primary-yellow);
}

/* Subtle Yellow Glow Effect inside Banner */
.premium-deals-banner::before {
    content: '';
    position: absolute;
    top: -50%; 
    right: -10%; 
    width: 300px; 
    height: 300px;
    background: radial-gradient(circle, rgba(255,179,0,0.15) 0%, transparent 70%);
    z-index: 1;
}

.premium-deals-banner .banner-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.badge-text-deals {
    background: rgba(255, 179, 0, 0.1);
    color: var(--primary-yellow);
    border: 1px solid var(--primary-yellow);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 15px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.premium-deals-banner h2 {
    font-size: 32px;
    font-weight: 800;
    margin: 0 0 10px 0;
    letter-spacing: 1px;
}

.premium-deals-banner p {
    color: #94a3b8;
    font-size: 15px;
    margin: 0;
}

/* 2. Styled Section Heading (Active Deals) */
.deals-section-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.title-with-icon {
    display: flex;
    align-items: center;
    gap: 10px;
    white-space: nowrap;
}

.title-with-icon i {
    font-size: 22px;
}

.title-with-icon h2 {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary-black);
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.title-line {
    flex-grow: 1;
    height: 1px;
    background: #e2e8f0;
    position: relative;
}

.title-line::after {
    content: '';
    position: absolute;
    left: 0; 
    top: -1px; 
    width: 60px; 
    height: 3px;
    background: var(--primary-yellow);
    border-radius: 2px;
}