/* Start custom CSS for html, class: .elementor-element-3edd7b6 */.new-arrivals {
    padding: 80px 0;
    background: #ffffff;
}

.new-arrivals-heading {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 35px;
}

.new-arrivals-heading span {
    color: #c82c67;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
}

.new-arrivals-heading h2 {
    margin: 8px 0;
    font-size: 36px;
    color: #2b2024;
}

.new-arrivals-heading p {
    margin: 0;
    color: #777;
    font-size: 14px;
}

.view-all {
    color: #c82c67;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
}


/* Product Grid */

.new-products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
}


/* Card */

.new-product-card {
    min-width: 0;
}

.new-product-image {
    height: 370px;
    position: relative;
    overflow: hidden;
    border-radius: 13px;
    background: #f9edf1;
}

.new-product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .5s ease;
}

.new-product-card:hover .new-product-image img {
    transform: scale(1.06);
}


/* New Badge */

.new-label {
    position: absolute;
    z-index: 2;
    left: 13px;
    top: 13px;
    background: #2b2024;
    color: #fff;
    padding: 7px 11px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
}


/* Wishlist */

.new-wishlist {
    position: absolute;
    z-index: 3;
    right: 13px;
    top: 13px;
    width: 40px;
    height: 40px;
    border: none;
    border-radius: 50%;
    background: #fff;
    color: #555;
    font-size: 22px;
    cursor: pointer;
}

.new-wishlist:hover {
    color: #c82c67;
}


/* Add Cart */

.new-add-cart {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: -55px;
    height: 44px;
    border: none;
    border-radius: 6px;
    background: #c82c67;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    transition: .35s ease;
}

.new-product-card:hover .new-add-cart {
    bottom: 12px;
}

.new-add-cart:hover {
    background: #a92155;
}


/* Product Info */

.new-product-info {
    padding-top: 15px;
}

.new-product-info small {
    color: #999;
    font-size: 9px;
    letter-spacing: 1.4px;
}

.new-product-info h3 {
    margin: 7px 0;
    font-size: 16px;
    font-weight: 600;
    color: #2b2024;
}

.new-rating {
    color: #e19a26;
    font-size: 12px;
    letter-spacing: 1px;
}

.new-rating span {
    color: #999;
    letter-spacing: 0;
}

.new-price {
    margin-top: 8px;
    color: #c82c67;
    font-size: 17px;
    font-weight: 700;
}


/* Tablet */

@media (max-width: 950px) {

    .new-products-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .new-product-image {
        height: 350px;
    }

}


/* Mobile */

@media (max-width: 600px) {

    .new-arrivals {
        padding: 55px 0;
    }

    .new-arrivals-heading {
        align-items: start;
        gap: 15px;
    }

    .new-arrivals-heading h2 {
        font-size: 28px;
    }

    .view-all {
        white-space: nowrap;
    }

    .new-products-grid {
        display: flex;
        overflow-x: auto;
        gap: 15px;
        scrollbar-width: none;
        scroll-snap-type: x mandatory;
        padding-bottom: 10px;
    }

    .new-products-grid::-webkit-scrollbar {
        display: none;
    }

    .new-product-card {
        min-width: 72%;
        scroll-snap-align: start;
    }

    .new-product-image {
        height: 330px;
    }

    .new-add-cart {
        bottom: 12px;
    }

}/* End custom CSS */