.product-set {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 12px;
    gap: 7px;
    margin-top: 10px;
    border-radius: 6px;
    background: #F3F3F3;
    max-width: 100%;
    width: 100%;
    font-family: Roboto, sans-serif;
}

.product-set-name {
    align-self: stretch;
    color: #2B2B2B;
    font-size: 16px;
    font-weight: 700;
    line-height: 16px; /* 114.286% */
}

.product-set-item {
    background-color: #fff;
    border-radius: 4px;
    height: 69px;
    max-height: 69px;
}

.product-set-item_text {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    position: relative;
    top: -75px;
    transition: 0.5s ease;
    opacity: 0;
    font-size: 13px;
    width: 70px;
    height: 70px;
    max-width: 70px;
    max-height: 70px;
    background: rgba(0, 0, 0, 0.50);
    border-radius: 4px;
}

.product-set-item:hover .product-set-item_text {
    opacity: 1;
    cursor: pointer
}

.product-set-item img {
    width: 69px;
    max-width: 69px;
    height: 69px;
    max-height: 69px;
}

.product-set-plus {
    vertical-align: middle;
    color: #000;
    font-size: 26px;
    font-weight: 600;
}

.product-set-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    gap: 12px;
    align-self: stretch;
    flex-wrap: wrap;
}

.product-set-price {
    display: flex;
    align-items: center;
    gap: 6px;
}

.product-set-total-price {
    color: #3A3A44;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 14px; /* 87.5% */
}

.product-set-discount {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 3px 6px;
    border-radius: 4px;
    background: #43A047;
    color: #FFF;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: 16px; /* 123.077% */
}

.product-set-buy {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    border-radius: 4px;
    background: #FF6700;
    color: #FFF;
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    text-transform: uppercase;
}

.product-set-bonus {
    display: inline-block;
}

.product-bonus {
    vertical-align: middle;
    width: 69px;
    height: 69px;
    padding-top: 7px;
    border-radius: 6px;
    text-align: center;
    background: no-repeat center center #fff;
}

.product-bonus img{
    width: 30px;
}

.product-bonus-price {
    color: #43A047;
    font-size: 12px;
    font-weight: 600;
}

.product-set-items {
    display: flex;
    align-items: center;
    gap: 7px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    padding: 6px 4px;
    overflow-y: hidden;
    justify-content: flex-start;
    max-width: 100%;
}


.product-set-item,
.product-bonus,
.product-set-plus {
    flex: 0 0 auto;
    /* scroll-snap-align: start;*/
}

.product-set-item {
    max-width: 70px;
    max-height: 70px;
    width: 70px;
    height: 70px;
    box-sizing: border-box;
}

.product-set-items {
    scroll-behavior: smooth;
}


.product-set-items::-webkit-scrollbar {
    height: 8px;
}

.product-set-items::-webkit-scrollbar-thumb {
    background: #ff6700;
    border-radius: 4px;
}

.product-set-items {
    scrollbar-width: thin;
}


.product-set-item:first-child {
    margin-left: 10px;
}

.product-set-item:last-child, .product-set-bonus {
    margin-right: 10px;
}
.product-set-item_price-row{
    display: none;
}

/** Modal **/
.set-items {
    width: 100%;
}

.set-item {
    display: flex;
    align-items: center;
    padding: 24px 0;
    border-bottom: 1px solid #eee;
}

.set-item:last-child {
    border-bottom: none;
}

.set-item-image {
    width: 110px;
    text-align: center;
}

.set-items .set-item-image img {
    max-width: 90px;
    max-height: 90px;
    object-fit: contain;
}

.set-item-name {
    font-size: 19px;
    font-weight: bold;
    margin-right: 40px;
    flex: 1 0 auto;
    width: 50%;
    cursor: default;
}

.set-item-old-price {
    color: #999;
    font-size: 18px;
    text-decoration: line-through;
    margin-left: 12px;
}

.set-item-free {
    display: inline-block;
    background: #43a047;
    color: #fff;
    font-size: 13px;
    font-weight: 500;
    border-radius: 4px;
    padding: 7px 25px 7px 25px;
}

.set-item-btn {
    min-width: 145px;
    background: #ff6900;
    color: #fff;
    font-size: 17px;
    font-weight: bold;
    border-radius: 4px;
    padding: 13px 0;
    text-align: center;
    cursor: pointer;
    transition: background 0.2s;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-left: 38px;
}

.set-item-btn:hover {
    background: #ff8400;
}

.set-item-selected {
    text-decoration: dotted;
    color: #999;
    font-size: 14px;
    font-weight: bold;
    padding: 13px 0;
    cursor: default;
    transition: background 0.2s;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-left: 38px;
}

.set-item-price {
    padding-top: 15px;
    display: flex;
    cursor: default;
    align-items: center;
}

@media (max-width: 465px) {
    .set-item-selected {
        margin-top: 15px;
        width: 100px;
        margin-left: 90px;
    }
    .set-item-btn {
        margin-top: 15px;
        width: 100px;
        margin-left: 88px;
        font-size: 14px;
        padding: 10px;
    }
    .set-item-name {
        display: inline-block;
    }
    .set-item-image {
        display: inline-block;
    }
    .set-item {
        display: block;
    }
}
@media (max-width: 1023px) {

    .set-item-name {
        font-size: 14px;
        margin-right: 0;
    }

    .product-set-buy {
        font-size: 13px;
    }

    .set-item-selected {
        font-size: 12px;
    }

    .set-item-selected {
        font-size: 13px;
    }

    .set-item-free {
        padding: 7px 15px 7px 15px;
        font-size: 12px;
    }

    .set-item-image {
        width: auto;
    }
}

