.banner {
    margin-top: var(--nav-height);
    position: relative;
    height: 420px;
    overflow: hidden;
    background: linear-gradient(135deg, #0a1628 0%, #1a1a3e 50%, #0d2137 100%);
}

.banner-slides {
    display: flex;
    transition: transform 0.6s ease;
    height: 100%;
}

.banner-slide {
    min-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.banner-content {
    max-width: 600px;
    text-align: center;
    animation: fadeIn 0.8s ease;
}

.banner-content h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 12px;
    background: linear-gradient(135deg, #fff, #a8c8ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.banner-content p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.banner-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.banner-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
}

.banner-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.banner-dot.active {
    background: var(--primary);
    width: 30px;
    border-radius: 5px;
}

.quick-categories {
    padding: 40px 0;
}

.category-chips {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.category-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 50px;
    color: var(--text-primary);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.category-chip:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
    transform: translateY(-2px);
}

.category-chip i {
    font-size: 18px;
}

.home-section {
    padding: 40px 0;
}

.section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}

.section-header .section-title {
    margin-bottom: 0;
}

.view-all {
    color: var(--primary);
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 6px;
}

.view-all:hover {
    gap: 10px;
}

@media (max-width: 768px) {
    .banner {
        height: 320px;
    }
    .banner-content h1 {
        font-size: 28px;
    }
    .banner-content p {
        font-size: 14px;
    }
    .category-chips {
        gap: 8px;
    }
    .category-chip {
        padding: 8px 16px;
        font-size: 13px;
    }
}
