/* Custom styles for the New Arrivals section */
.custom-new-block {
    overflow: hidden;
    padding: 40px 0;
}
.custom-new-wrapper {
    display: block; /* Changed from flex to block so title is on top */
}
.custom-new-text {
    margin-bottom: 20px;
}
.custom-new-title {
    font-size: 42px;
    font-weight: 800;
    color: #ffffff; /* White text */
    text-transform: uppercase;
    line-height: 1.1;
}
.custom-new-slider-area {
    width: 100%;
}
.custom-new-slider-wrap {
    position: relative;
}
.custom-new-navs {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 15px;
    gap: 15px;
}
.swiper-button-prev-new,
.swiper-button-next-new {
    width: 40px;
    height: 40px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
}
.swiper-button-prev-new:hover,
.swiper-button-next-new:hover {
    background: #ff5e00;
    border-color: #ff5e00;
    color: #fff;
}
@media (max-width: 992px) {
    .custom-new-title {
        font-size: 32px;
    }
}
