/* Coming Soon Banner Styling */
.coming-soon-section {
    padding-top: 20px !important; /* Reduced from section-t-space default */
}

.coming-soon-banner {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    border-radius: 8px;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    margin: 40px 0;
}

.coming-soon-content {
    position: relative;
    z-index: 2;
}

.coming-soon-label {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #d4af37;
    margin-bottom: 15px;
    font-family: 'Inter', sans-serif;
}

.coming-soon-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 20px;
    line-height: 1.2;
    font-family: 'Inter', sans-serif;
}

.coming-soon-tagline {
    font-size: 1.1rem;
    color: #d4af37;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-family: 'Inter', sans-serif;
}

.coming-soon-categories {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.category-tag {
    padding: 12px 30px;
    border: 2px solid #d4af37;
    border-radius: 50px;
    color: #d4af37;
    font-weight: 600;
    font-size: 1rem;
    background: transparent;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: 'Inter', sans-serif;
}

.category-tag:hover {
    background: #d4af37;
    color: #1a1a1a;
    transform: translateY(-2px);
}

/* Responsive Design for Coming Soon Banner */
@media (max-width: 991.98px) {
    .coming-soon-banner {
        padding: 50px 30px;
    }
    
    .coming-soon-title {
        font-size: 2.8rem;
    }
    
    .coming-soon-tagline {
        font-size: 1rem;
    }
    
    .category-tag {
        padding: 10px 25px;
        font-size: 0.95rem;
    }
}

@media (max-width: 767.98px) {
    .coming-soon-banner {
        padding: 40px 20px;
        margin: 30px 0;
    }
    
    .coming-soon-label {
        font-size: 12px;
        letter-spacing: 1.5px;
        margin-bottom: 12px;
    }
    
    .coming-soon-title {
        font-size: 2rem;
        margin-bottom: 15px;
    }
    
    .coming-soon-tagline {
        font-size: 0.9rem;
        margin-bottom: 30px;
        padding: 0 10px;
    }
    
    .coming-soon-categories {
        gap: 12px;
        margin-top: 25px;
    }
    
    .category-tag {
        padding: 8px 20px;
        font-size: 0.85rem;
    }
}

@media (max-width: 575.98px) {
    .coming-soon-banner {
        padding: 30px 15px;
    }
    
    .coming-soon-title {
        font-size: 1.6rem;
    }
    
    .coming-soon-tagline {
        font-size: 0.85rem;
    }
    
    .coming-soon-categories {
        gap: 10px;
    }
    
    .category-tag {
        padding: 8px 18px;
        font-size: 0.8rem;
    }
}
