/* KIT */
.wd-product-kit-wrapper, .wd-kit-items {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 10px;
    margin-top: 10px;
    direction: rtl;
}

h3.wd-product-kit-title {
    width: 100%;
    margin: 0 0 5px;
    font-size: 20px;
    font-weight: 600;
}
.wd-kit-item {
    display: flex;
    width: 20%;
    flex-wrap: wrap;
    border: 1px solid #160041;
    border-radius: 10px;
    padding: 10px;
    align-content: center;
    align-items: center;
}
.kit-img{
    width: 40%;
}
.item_infos {
    width: 59%;
}
.wd-kit-item img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    border: 1px solid #eee;
}

.kit-title {
    font-weight: bold;
    margin-top: 8px;
    color: #160041;
    font-size: 14px;
    line-height: 16px;
}
.wd-product-kit-wrapper h3 {
    width: 100%!important;
    font-size: 23px;
    font-weight: 700;
    margin: 0;
}

.kit-qty {
    font-size: 14px;
    color: #666;
}

.wd-kit-items {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    gap: 10px;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
    scrollbar-width: thin;
    scrollbar-color: #160041 transparent;
}

.wd-kit-items::-webkit-scrollbar {
    height: 8px !important;
}

.wd-kit-items::-webkit-scrollbar-track {
    background-color: #e5e7eb !important;
    border-radius: 10px;
}

.wd-kit-items::-webkit-scrollbar-thumb {
    background-color: #160041 !important;
    border-radius: 10px;
}


.wd-kit-item {
    flex: 0 0 auto;
    width: 175px;
    scroll-snap-align: start;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
    text-align: center;
    padding: 8px;
}
@media(max-width:786px){
    .wd-kit-item {
    width: 150px;
}
}