/* Responsive Styles - Mobile First */

/* Tablet */
@media (max-width: 1024px) {
    .main-nav {
        display: none;
    }
    
    .sub-nav-links {
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .sub-nav-links::-webkit-scrollbar {
        display: none;
    }
    
    .banner-slide {
        flex: 0 0 calc(50% - 8px);
        min-width: calc(50% - 8px);
    }
    
    .pick-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .coming-soon-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .brand-zone-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .best-content-grid {
        grid-template-columns: 1fr;
    }
    
    .best-content-featured {
        min-height: 300px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --header-height: 56px;
    }
    
    .banner-slide {
        flex: 0 0 100%;
        min-width: 100%;
        height: 240px;
    }
    
    .banner-title {
        font-size: 20px;
    }
    
    .banner-subtitle {
        font-size: 13px;
    }
    
    .banner-arrow {
        display: none;
    }
    
    .categories-grid {
        gap: var(--space-md);
    }
    
    .category-icon {
        width: 64px;
        height: 64px;
    }
    
    .category-icon i {
        font-size: 24px;
    }
    
    .category-name {
        font-size: 12px;
    }
    
    .section-title {
        font-size: 22px;
    }
    
    .campaign-card {
        flex: 0 0 280px;
        min-width: 280px;
    }
    
    .carousel-arrow {
        display: none;
    }
    
    .campaigns-carousel-wrapper {
        padding: 0;
    }
    
    .pick-grid {
        grid-template-columns: 1fr;
    }
    
    .pick-title {
        font-size: 18px;
    }
    
    .coming-soon-grid {
        grid-template-columns: 1fr;
    }
    
    .brand-zone-grid {
        grid-template-columns: 1fr;
    }
    
    .best-content-card.small {
        flex-direction: column;
    }
    
    .best-content-card.small .best-content-image {
        width: 100%;
        height: 160px;
    }
    
    .footer-top {
        flex-direction: column;
        gap: var(--space-lg);
    }
    
    .footer-links {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: var(--space-lg);
    }
    
    .footer-stats {
        width: 100%;
        justify-content: space-around;
    }
    
    .stat-item {
        align-items: center;
    }
    
    .ad-banner {
        flex-direction: column;
        text-align: center;
    }
    
    .ad-banner-content h3 {
        font-size: 20px;
    }
    
    .floating-buttons {
        bottom: var(--space-md);
        right: var(--space-md);
    }
    
    .floating-btn {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .categories-grid {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        gap: var(--space-sm);
    }
    
    .category-item {
        gap: var(--space-xs);
    }
    
    .category-icon {
        width: 56px;
        height: 56px;
    }
    
    .category-icon i {
        font-size: 20px;
    }
    
    .category-name {
        font-size: 11px;
    }
    
    .countdown-item {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
    
    .logo-text {
        font-size: 24px;
    }
}
