/*========================================
            CHECKOUT PAGE STYLE
=========================================*/
.chekout-coupon {
    width: 600px;
    margin: 45px auto 5px;
    text-align: center;
}

.checkout-charge {
    margin: 0 auto;
}
.checkout-charge ul {
    border-top: 2px solid var(--primary);
}
.checkout-charge ul li {
    padding: 5px 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border);
}
.checkout-charge ul li:last-child {
    border-bottom: none;
}
.checkout-charge ul li:last-child span {
    font-size: 16px;
    font-weight: 500;
    color: var(--primary);
}
.checkout-charge ul li span {
    font-weight: 400;
    color: var(--heading);
    text-transform: capitalize;
    font-size: 16px;
}
.checkout-charge ul li span small {
    font-size: 14px;
    font-weight: 400;
    margin-left: 3px;
}

.checkout-check {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    margin-bottom: 25px;
    margin-top: 50px;
}
.checkout-check input {
    width: 15px;
    height: 15px;
    margin-right: 10px;
    margin-top: 4px;
    cursor: pointer;
}
.checkout-check label {
    line-height: 22px;
}
.checkout-check label a {
    color: var(--primary);
}
.checkout-check label a:hover {
    text-decoration: underline;
}

.checkout-proced .btn {
    width: 100%;
}

.table-action .view i,
.table-action .trash i {
    background: var(--chalk);
}

.form-check {
    background: lightgrey;
    display: flex;
    align-items: center;
    height: 40px;
    padding-left: 36px;
    border-radius: 5px !important;
}

.form-check-input[type=radio] {
    margin-right: 10px;
}

.form-check:has(.form-check-input:checked) {
    background: var(--primary);
    color: white;
}

.form-check:has(.form-check-input:checked) .form-check-input {
    background: var(--white);
}

@media (max-width: 767px) {
    .chekout-coupon,
    .checkout-charge {
        width: 100%;
    }
    .checkout-check {
        margin-top: 15px;
    }
}

/*updete */
.cuc-offer-box {
    margin: 20px 0;
    border: 2px dashed #ff0000;
    border-radius: 12px;
    background: #fbfff7;
    overflow: visible;
    font-family: 'Hind Siliguri', sans-serif;
}
.cuc-head {
    background: #ff0000;
    color: #fff;
    text-align: center;
    padding: 10px;
    font-weight: 600;
    font-size: 18px;
    border-radius: 10px 10px 0 0;
}
.cuc-body {
    display: flex;
    padding: 15px;
    gap: 15px;
    align-items: center;
    position: relative;
}
.cuc-img-wrap {
    flex: 0 0 70px;
    position: relative;
}
.cuc-img-wrap img {
    width: 100%;
    border-radius: 8px;
    height: auto;
    display: block;
}

.cuc-badge {
    position: absolute;
    top: -12px;
    left: -12px;
    background: #ff0000;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 8px;
    border-radius: 50px;
    z-index: 10;
    box-shadow: 0 2px 8px rgba(0,0,0,0.2);
    white-space: nowrap;
}

.cuc-info {
    flex: 1;
    min-width: 0;
}
.cuc-title {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 3px;
    line-height: 1.3;
}
.cuc-price {
    color: #ff0000;
    font-weight: 700;
    font-size: 18px;
}

/* বাটন ডিজাইন: কর্নার ৮ পিক্সেল (Updated) */
.cuc-btn {
    background: #ff0000 !important;
    color: #fff !important;
    border: none !important;
    padding: 8px 18px !important;
    border-radius: 8px !important;
    cursor: pointer;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    animation: cucPulse 2s infinite;
    white-space: nowrap;
}
.cuc-btn i {
    font-size: 16px;
}

@keyframes cucPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 0, 0, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 0, 0, 0);
    }
}

@media (max-width: 600px) {
    .cuc-body {
        gap: 10px;
        padding: 10px;
    }
    .cuc-img-wrap {
        flex: 0 0 60px;
    }
    .cuc-title {
        font-size: 13px;
    }
    .cuc-price {
        font-size: 16px;
    }
    .cuc-btn {
        padding: 8px 12px !important;
        font-size: 12px;
        border-radius: 6px !important;
    }
}

.has-error {
    border: 1px solid red;
}

@media (max-width: 576px){
    .checkout-part .cart-list{
        max-height: 150px;
    }
}
.cart-action-group .product-action {
    gap: 5px;
}
.cart-action-group .product-action button .fa-trash-alt{
    background: var(--bs-danger);
    color: white;
}