.cart-item {
    display: flex;
    gap: 12px;
    padding: 12px;

    border-radius: 8px;
    margin-bottom: 16px;
}

.cart-thumb {
    width: 80px;
    flex-shrink: 0;
}

.cart-thumb img {
    width: 100%;
    height: auto;
    border-radius: 6px;
}

.cart-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cart-title-price {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.product-labels {
    font-weight: 400;
}

.product-name {
    font-weight: 600;
    color: #333;
    flex: 1;
}



.price-group {
    text-align: right;
    align-items: center;
}

.price-sale {
    color: #d90000;
    font-weight: 700;
}

.price-old {
    color: #999;
    text-decoration: line-through;
    font-size: 0.85em;
    display: block;
}

.product-variant {

    padding: 4px 8px;
    border-radius: 4px;
    display: inline-block;
    font-size: 0.9em;
}

.cart-flashsale {
    font-size: 0.85em;
    color: #005cc5;
}

.cart-note {
    font-size: 0.85em;
    background: #f0f0f0;
    padding: 8px;
    border-radius: 6px;
    line-height: 1.4;
    color: #444;
}

.cart-note a {
    color: #0066cc;
    text-decoration: none;
}

.cart-actions {
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 10px;

}

.remove {
    color: #d90000;
    font-size: 0.9em;
    cursor: pointer;
}

.quantity {
    display: flex;
    align-items: center;
}

.quantity input {
    width: 40px;
    text-align: center;
    height: 39.25px;
}

.quantity button {
    width: 30px;
    height: 30px;
    font-size: 16px;
    background: #eee;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.cart-subtotal {
    display: flex;
    justify-content: space-between;
    font-weight: 600;
    margin-top: 12px;
    font-size: 1em;
    padding: 12px;
}

.sub-total {
    color: #d90000;
}

.product-variant {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-top: 4px;
}

.product-label {
    background-color: #f0f0f0;
    color: #333;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.85em;
}

.date-slider {
    display: flex;
    overflow-x: auto;
    gap: 5px;
    padding: 10px 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

/* .date-slider::-webkit-scrollbar {
    display: none;
} */

.date-option {

    position: relative;
    flex: 0 0 auto;
    width: 123px;
    min-height: 70px;
    background-color: #fff;
    border: 1.5px dashed #ccc;
    border-radius: 12px;
    padding: 10px 12px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    color: #333;
    line-height: 1.5;
}

.date-option:hover {
    background-color: #f5f5f5;
    border-color: #aaa;
}

.date-option.active {
    background-color: #E0EAFC;
    color: #4C88EC;
}

.date-option.active .date-sub,
.date-option.active .date-icon {
    color: #4C88EC;
}

.date-icon {
    position: absolute;
    top: 6px;
    right: 6px;
    color: #4C88EC;
}

.date-icon1 {

    position: absolute;
    top: 41px;
    right: 4px;
    color: #e01c1c;
}

.date-label {
    font-size: 16px;

    margin-bottom: 4px;
}

.date-sub {
    font-size: 12px;
    color: #666;
}

@media (min-width: 768px) {
    .date-option {
        width: calc((100% / 4) - 8px);
        margin-right: 0px;
    }

    /*CSS desktop*/
    .date-slider {
        flex-wrap: wrap !important;
    }
}

#stickyBottomBar {
    display: none;
}



@media (max-width: 480px) {
    .cart-item {
        /*  flex-direction: column;*/
    }

    .col-inner {
        padding: 0px !important;
    }

    .devvn_checkout_tky_content {
        padding: 10px;
    }

    .cart-title-price {
        flex-direction: column;
        align-items: flex-start;
    }

    .price-group {
        text-align: left;
        align-items: center;
        width: 100%;
        justify-content: space-between;
    }


    #stickyBottomBar {
        align-items: center;
        background-color: #fff;
        border: 1px solid rgba(145, 158, 171, .239);
        border-top-left-radius: 5px;
        border-top-right-radius: 5px;
        bottom: 0;
        box-shadow: 0 -4px 20px -1px rgba(40, 124, 234, .15);
        display: flex;
        justify-content: space-between;
        left: 50%;
        margin: auto;
        max-width: 600px;
        padding: 10px;
        position: fixed;
        transform: translateX(-50%);
        width: 100%;
        z-index: 11;
    }

    #stickyBottomBar .btn-action.disabled {
        background-color: silver;
        color: #717171;
        cursor: not-allowed;
    }

    #stickyBottomBar .btn-action {
        background-color: #d70018;
        border: 0;
        border-radius: 5px;
        color: #fff;
        cursor: pointer;
        margin: unset;
        padding: 5px 20px;
    }

    #stickyBottomBar .bmsm-info {
        display: flex;
        font-size: 12px;
        gap: 5px;
    }




}

.button .is-form {
    border-radius: 10px;
}