/* Hero Slider Styles */
.hero-slider {
    position: relative;
    width: 100%;
    height: 550px;
    overflow: hidden;
    margin-bottom: 40px;
    border-radius: var(--radius-lg);
    background: var(--bg-card);
}

.hero-wrapper {
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out, transform 1s ease-in-out;
    display: flex;
    align-items: center;
    transform: scale(1.05);
}

.hero-slide.active {
    opacity: 1;
    z-index: 10;
    transform: scale(1);
}

.hero-content-container {
    padding: 0 40px;
}

.hero-info {
    max-width: 650px;
    animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-tags {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.hero-tag {
    display: inline-block;
    padding: 6px 15px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    color: #fff;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-tag:first-child {
    background: var(--primary);
}

.hero-tag.status-new {
    background: #00c853;
}
.hero-tag.status-season {
    background: #2979ff;
}
.hero-tag.status-final {
    background: var(--primary);
}

.hero-title {
    font-size: 64px;
    font-weight: 900;
    line-height: 1.1;
    margin-bottom: 20px;
    color: #fff;
    text-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}

.hero-description {
    font-size: 18px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 35px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.hero-btns {
    display: flex;
    gap: 15px;
}

/* Nav & Dots */
.hero-nav {
    position: absolute;
    top: 50%;
    width: 100%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 20;
    pointer-events: none;
}

.hero-nav-btn {
    width: 60px;
    height: 60px;
    background: rgba(0, 0, 0, 0.3);
    border: var(--glass-border);
    border-radius: 50%;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    transition: var(--transition);
    pointer-events: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-nav-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    transform: scale(1.1);
}

.hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 20;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary);
    transform: scale(1.5);
    width: 30px;
    border-radius: 10px;
}

@media (max-width: 992px) {
    .hero-title {
        font-size: 48px;
    }
    .hero-slider {
        height: 500px;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 450px;
        margin-bottom: 30px;
    }
    .hero-title {
        font-size: 32px;
    }
    .hero-description {
        font-size: 15px;
    }
    .hero-nav {
        display: none;
    }
}