.hero-slider-section {
    width: 100%;
    height: calc(100vh - 178px);
    position: relative;
    font-family: "Monserrat", Sans-serif !important;
    overflow: hidden;
}

.hero-slider-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease-in-out;
}

.hero-slider-wrapper.active {
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
    transition: all 0.8s cubic-bezier(0.65, 0, 0.35, 1);
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    z-index: 2;
}

.hero-slide.prev {
    transform: translateY(-100%);
}

.hero-slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: brightness(0.8);
}

.hero-season-buttons-fixed {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.hero-season-buttons-container {
    display: flex;
    gap: 0;
    align-items: center;
    justify-content: flex-start;
}

.hero-season-button {
    background: #FFFFFF8C;
    border: none;
    border-bottom: 2px solid transparent;
    color: #2F2F2F;
    font-size: 16px;
    font-weight: 300;
    padding: 25px 28px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
    border-radius: 0;
    text-transform: capitalize;
    backdrop-filter: blur(5px);
}

.hero-season-button.active {
    background: #FFFFFF8C;
    border-bottom: 2px solid #D1C5B5;
    color: #2F2F2F;
}

.hero-season-button:hover {
    background: #FFFFFF8C;
    border-bottom: 2px solid #D1C5B5;
    color: #D1C5B5;
}

.hero-season-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-season-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.hero-slide-content {
    position: absolute;
    top: 34%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
}

.hero-slide-text {
    font-size: 70px;
    font-weight: 300;
    line-height: 1.2;
    color: #FFFFFF;
    text-transform: uppercase;
}

.hero-dot-navigation-fixed {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 1899px;
    z-index: 10;
    padding: 0 80px;
}

.hero-dot-navigation {
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: flex-start;
    justify-content: center;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #FFFFFF;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.hero-dot.active {
    background: #FFFFFF;
    box-shadow: 0 0 0 8px rgba(255, 255, 255, 0.3), 0 2px 8px rgba(0, 0, 0, 0.3);
    outline: 1px solid #FFFFFF;
    outline-offset: 8px;
}

.hero-dot:hover {
    background: #FFFFFF;
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.2), 0 2px 8px rgba(0, 0, 0, 0.3);
}

@media (max-width: 1440px) {
    .hero-slide-text {
        font-size: 62px;
    }
}

@media (max-width: 768px) {
    .hero-slider-section {
        height: 100vh;
    }
    
    .hero-season-buttons-fixed {
        top: 50%;
        transform: translateY(-50%);
        left: auto;
        right: 0;
    }
    
    .hero-season-buttons-container {
        flex-direction: column;
        align-items: flex-end;
    }

    .hero-slide-text {
        font-size: 50px;
    }
    
    .hero-season-button {
        font-size: 0;
        padding: 0;
        gap: 0;
        width: 75px;
        height: 60px;
        background: #FFFFFF8C;
        backdrop-filter: blur(5px);
        border: none;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .hero-season-button.active {
        background: #FFFFFF8C;
        border:none;
        border-left: 2px solid #D1C5B5;
    }
    
    .hero-season-button:hover {
        background: #FFFFFF8C;
        border:none;
        border-left: 2px solid #D1C5B5;
    }
    
    .hero-season-button span:not(.hero-season-icon) {
        display: none;
    }
    
    .hero-season-icon {
        width: 28px;
        height: 28px;
    }
    
    .hero-slide-content {
        padding: 0 30px;
        max-width: 100%;
    }
    
    .hero-slide-text {
        font-size: 32px;
        line-height: 1.2;
    }
    
    .hero-dot-navigation-fixed {
        top: 50%;
        transform: translate(-50%, -50%);
        padding: 0 14px;
    }
    
    .hero-dot-navigation {
        margin-left:14px;
    }
    
    .hero-dot {
        width: 14px;
        height: 14px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
    }
    
    .hero-dot.active {
        width: 14px;
        height: 14px;
        box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.3), 0 2px 10px rgba(0, 0, 0, 0.4);
        outline: 1px solid #FFFFFF;
        outline-offset: 10px;
    }
}
