/* ===== HERO SECTION - IMAGE BANNER STYLE ===== */
.hero-section {
    margin-top: 56px;
    padding: 0;
    background: #000;
    position: relative;
    overflow: hidden;
}

.hero-slider {
    position: relative;
    width: 100%;
    height: 100%;
}

/* Slider Images */
.slider-images {
    position: relative;
    width: 100%;
    height: 100%;
}

.slider-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease, visibility 1s ease;
}

.slider-slide.active {
    opacity: 1;
    visibility: visible;
}

.slider-slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    background: #000;
}

.slider-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-bg);
    font-size: 5rem;
    color: color-mix(in srgb, var(--white) 20%, transparent);
}

/* Slider Controls - Bottom Center */
.slider-controls {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

/* Progress Indicators */
.slider-indicators {
    display: flex;
    gap: 0.5rem;
}

.slider-indicator {
    width: 45px;
    height: 4px;
    border-radius: 2px;
    background: color-mix(in srgb, var(--white) 30%, transparent);
    border: none;
    cursor: pointer;
    padding: 0;
    position: relative;
    overflow: hidden;
    transition: background 0.3s ease;
}

.slider-indicator:hover {
    background: color-mix(in srgb, var(--white) 45%, transparent);
}

.slider-indicator .indicator-progress {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0;
    background: var(--primary-color);
    border-radius: 2px;
}

.slider-indicator.active {
    background: color-mix(in srgb, var(--white) 35%, transparent);
}

.slider-indicator.active .indicator-progress {
    animation: progressFill 5s linear forwards;
}

@keyframes progressFill {
    from { width: 0; }
    to { width: 100%; }
}

/* Empty State */
.hero-empty {
    width: 100%;
    height: 100%;
    min-height: 500px;
    background: var(--gradient-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-empty::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: color-mix(in srgb, var(--white) 4%, transparent);
    border-radius: 50%;
}

.hero-empty-content {
    text-align: center;
    color: var(--white);
    position: relative;
    z-index: 1;
    max-width: 500px;
    padding: 2rem;
}

.hero-empty-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: color-mix(in srgb, var(--white) 15%, transparent);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
}

.hero-empty h2 {
    font-size: 2.25rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}

.hero-empty p {
    font-size: 1.0625rem;
    opacity: 0.85;
    margin-bottom: 1.75rem;
}

.hero-empty .slider-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    background: color-mix(in srgb, var(--white) 15%, transparent);
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 30px;
    border: 1.5px solid color-mix(in srgb, var(--white) 30%, transparent);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: all 0.3s ease;
    cursor: pointer;
}

.hero-empty .slider-btn:hover {
    background: var(--white);
    color: var(--primary-color);
    border-color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.hero-empty .slider-btn i {
    font-size: 1rem;
    transition: transform 0.3s ease;
}

.hero-empty .slider-btn:hover i {
    transform: translateX(3px);
}

/* ===== RESPONSIVE ===== */
@media (min-width: 992px) {
    .hero-section {
        height: 65vh;
        min-height: 420px;
        max-height: 600px;
    }
}

@media (max-width: 991.98px) {
    .hero-section {
        margin-top: 56px;
        height: 220px;
        min-height: 180px;
        max-height: 300px;
    }

    .hero-slider {
        height: 100%;
    }

    .slider-images {
        position: relative;
        height: 100%;
    }

    .slider-slide {
        position: absolute;
        height: 100%;
    }

    .slider-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .slider-overlay {
        padding: 2rem 1.5rem;
        align-items: center;
        justify-content: center;
        background: linear-gradient(180deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.55) 100%);
    }

    .slider-headline {
        font-size: 1.625rem;
    }

    .slider-description {
        font-size: 0.875rem;
        margin-bottom: 1.5rem;
    }

    .slider-stats-badge {
        display: none;
    }

    .slider-controls {
        bottom: 1rem;
    }

    .slider-indicator {
        width: 35px;
        height: 3px;
    }

    .hero-empty {
        min-height: 350px;
    }

    .hero-empty h2 {
        font-size: 1.625rem;
    }

    .hero-empty p {
        font-size: 0.9375rem;
    }
}

@media (max-width: 575.98px) {
    .hero-section {
        margin-top: 50px;
        height: 180px;
        min-height: 150px;
    }

    .slider-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }

    .slider-overlay {
        padding: 1.5rem 1rem;
    }

    .slider-headline {
        font-size: 1.5rem;
    }

    .slider-shop-btn {
        padding: 0.625rem 1.25rem;
        font-size: 0.875rem;
    }

    .slider-controls {
        bottom: 0.75rem;
    }

    .slider-indicator {
        width: 25px;
    }

    .hero-empty {
        min-height: 280px;
    }

    .hero-empty-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

    .hero-empty h2 {
        font-size: 1.375rem;
    }

    .hero-empty p {
        font-size: 0.875rem;
    }
}
