/* New Collection Block */

.new-collection-block {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;    
    background-color: #fff;
    gap: 1em;
    padding: 3em;
    overflow: hidden;
}

.new-collection-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 1em;
}

.new-collection-span {
    font-weight: 700;
    font-size: 16px;
    line-height: 80%;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    color: #000;
    margin: 0;
}

.new-collection-title {
    width: 600px;
    font-weight: 600;
    font-size: 64px;
    line-height: 100%;
    letter-spacing: -0.03em;
    text-align: center;
    color: #000;
    margin: 0;
}

.new-collection-btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: auto;
    background-color: #000;
    border-radius: 50px;
    gap: .5em;
    padding: 20px 30px;
    font-weight: 700;
    font-size: 18px;
    line-height: 100%;
    letter-spacing: -0.04em;
    color: #fff;
}

.new-collection-btn:hover {
    background-color: #131212;
    color: #d6d6d6;
}

.new-collection-slider {
    width: 100%;
    padding: 2.5em 0;
    margin-bottom: 0 !important;
}

.new-collection-slider .slick-slide {
    float: none;
    display: flex !important;
    justify-content: space-between;
}

.new-collection-slider .slick-list {
    overflow: visible;
}

.new-collection-slider .slick-track {
    display: flex;
    gap: 1.5em;
    align-items: center;
    will-change: transform;
    justify-content: center;
}

.new-collection-slide {
    position: relative;
    display: flex !important;
    flex-direction: column;
    align-items: center;
    width: 400px !important;
    height: 490px;
    padding: 4em 1em 1.5em;
    border-radius: 10px;
    min-width: 400px;
    max-width: 400px;
    background: 
      linear-gradient(180deg, rgba(0, 0, 0, 0.7) 76.5%, rgba(0, 0, 0, 0.7) 100%), 
      linear-gradient(180deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.8) 25%);
    background-size: cover;
    background-position: center;
}

.is-new {
    position: absolute;
    top: 20px;
    left: 0;
}

.new-collection-slide-header {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 0.5em;
}

.new-collection-slide-span {
    font-weight: 400;
    font-size: 16px;
    line-height: 80%;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
}

.new-collection-slide-title {
    font-weight: 700;
    font-size: 32px;
    line-height: 80%;
    letter-spacing: -0.04em;
    text-transform: uppercase;
    text-align: center;
    color: #fff;
    margin: 0;
}

.new-collection-slide-descr  {
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: -0.04em;
    color: rgba(255, 255, 255, 0.5);
    text-shadow: 0 0 11px 0 #000;
    margin: 0;
    padding-top: 10px;
}

.new-collection-slide-footer {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 0.5em;
}

.new-collection-slide-footer-span {
    font-weight: 500;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: -0.04em;
    text-align: center;
    color: #fff;
    text-shadow: 0 0 11px 0 #000;
}

.new-collection-slide-btn {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: auto;
    background-color: #e41d2f;
    border-radius: 20px;
    gap: .5em;
    padding: 9px 13px;
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: -0.04em;
    color: #fff;
}

.new-collection-slide-btn:hover {
    background-color: #b81f2c;
    color: #d6d6d6;
}

.new-collection-slider-nav {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 100%;
    gap: 1em;
}

.slider-prev,
.slider-next {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 17px 21px;
    background-color: #fff;
    border-radius: 50px;
    border: 1px solid rgba(194, 198, 210, 0.5);
    backdrop-filter: blur(24px);
    cursor: pointer;
    z-index: 2;
}

.slider-dots .slick-dots {
    position: static !important;
    display: flex !important;
    justify-content: center;
    align-items: center;
    padding: 0 !important;
    margin: 0 !important;
    gap: .5em;
    list-style: none;
    width: auto !important;
    text-align: center !important;
}

.slider-dots .slick-dots li {
    width: 20px;
    height: 5px;
    background-color: rgba(0, 0, 0, 0.2); 
    border-radius: 10px;
    cursor: pointer;
    transition: background-color .3s;
}

.slider-dots .slick-dots li.slick-active {
    background-color: #000; 
}

.slider-dots .slick-dots li button {
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}