/* Collection Slider */
.collection-block {
    position: relative;
    width: 100%;
    height: 90vh; 
    background-color: transparent;
    overflow: hidden;
}

.collection-slider-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 98%; 
    z-index: 1;
    padding: 20px 20px 40px 20px;
    box-sizing: border-box; 
}

.collection-slider {
    width: 100%;
    height: 100%;
}

.collection-slider .slick-track,
.collection-slider .slick-list {
    height: 100%;
}

.collection-slide {
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative !important; 
    margin: 0; 
}

.collection-slide > * {
    position: relative;
    z-index: 3;
}

.slick-slider, .slick-list, .slick-track {
    width: 100%;
    height: 100%; 
    border: 1px solid rgba(255, 255, 255, 0.1);     
    border-radius: 10px;
    box-sizing: border-box;
}

.slick-active .collection-slide {
    opacity: 1;
}

.collection-static-overlay {
    position: absolute;
    top: 50%;
    left: 40%;
    transform: translate(-50%, -50%);
    right: 0;
    bottom: 0;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 10% 5% 50px;
}

.collection-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: auto;
}

.collection-title {
    font-weight: 400;
    font-size: 32px;
    line-height: 100%;
    text-transform: uppercase;
    color: #fff;
    margin: 0 0 20px;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.slide-title {
    font-weight: 700;
    font-size: 110px;
    line-height: 80%;
    color: #fff;
    margin: 10px 0 0;
    text-transform: uppercase;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.collection-bottom-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 530px;
    margin: 40px 0;
}

.go-collection-button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 20px;
    border-radius: 50px;
    background-color: #fff;
    font-weight: 700;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: -0.04em;
    color: #000;
    white-space: nowrap;
    text-decoration: none;
    pointer-events: auto;
    flex: 1;
    margin-right: 20px;
}

.go-collection-button:hover {
    background-color: #d6d6d6;
    color: #131212;
}

.go-collection-image {
    width: auto;
    height: auto;
}

.slider-nav {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    pointer-events: auto;
}

.slider-nav button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-nav button:hover {
    opacity: 0.7;
}

.slider-nav button img {
    height: auto;
}

.slider-progress {
    display: flex;
    gap: 10px;
    margin: 0 15px;
}

.progress-dot {
    width: 30px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.3);
    transition: background-color 0.3s ease;
}

.progress-dot.active {
    background-color: #fff;
}