.checkout-card {
    background: #fff !important;
    padding: 40px;
    border-radius: 20px;
    border: 3px groove #cccccc4f !important;
}

.checkout-card .checkout-heading {
    color: #ef3e36;
    font-weight: 700;
    text-align: center;
    font-size: 2rem;
    line-height: 1.4;
    position: relative;
    max-width: 70%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 40px;
}

.checkout-card .checkout-heading::after {
    content: "";
    width: 100%;
    height: auto;
    position: absolute;
    bottom: -6px;
    left: 0;
    border-top: 4px dashed #adb5bd;
}

.checkout-card .section-title {
    font-weight: 700;
    font-size: 1.15rem;
    color: #000;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.checkout-card .section-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    width: 100%;
    border-bottom: 2px dashed #6c757d;

}

.checkout-card .custom-label {
    font-weight: 600;
    margin-bottom: 5px;
    display: block;
    font-size: 14px;
}

.checkout-card .input-box {
    position: relative;
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 10px;
    padding: 0px 10px;
    border: 1px solid #ddd;
    transition: 0.3s;
}

.checkout-card .input-box i {
    font-size: 18px;
    color: #0d6efd;
    margin-right: 8px;
}


.checkout-card .input-box input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 16px;
    background: transparent;
    padding: 8px 0px;
    height: auto;
}

/* Focus Effect */
.checkout-card .input-box:focus-within {
    border-color: #0d6efd;
    box-shadow: 0 0 0 3px rgba(13, 110, 253, 0.15);
}

/* Hover Effect */
.checkout-card .input-box:hover {
    border-color: #0d6efd;
}

.checkout-card .custom-select {
    width: 100%;
    background: transparent;
    border: 0px solid #ececec;
    box-shadow: none;
    font-size: 16px;
    color: #000;
    padding: 8px 0px;
}

.checkout-card .dashed-hr {
    border-top: 1px dashed #dcdcdc;
    margin: 12px 0;
    opacity: 1;
}

.checkout-card .cart-wrapper {
    display: flex;
    gap: 10px;
    box-shadow: 0 0 1px #ccc;
    padding: 10px;
    border-radius: 10px;
}

.checkout-card .cart-wrapper .cart-product-image {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border: 1px solid #eee;
    border-radius: 10px;
}

.cart-wrapper .cart-content .cart-product-title {
    font-size: 0.95rem;
    line-height: 1.3;
    font-weight: bold;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    padding-right: 35px;
}

.cart-wrapper .cart-content .custom-incrementor {
    border: none;
    overflow: hidden;
    border-radius: 5px;
    height: 30px;
    padding: 0;
    line-height: 0;
}

.cart-wrapper .cart-content .custom-incrementor .input-group .input-group-text {
    cursor: pointer;
    border: none;
    padding: 2px 5px;
    background-color: #f7f7f7;
}


.cart-wrapper .cart-content .custom-incrementor .input-group input {
    border: none;
    outline: none;
    box-shadow: none;
    -webkit-appearance: textfield !important;
    text-align: center;
    max-width: 40px;
}

.cart-wrapper .cart-content .price-container {
    white-space: nowrap;
    text-align: right;
}

.cart-wrapper .cart-content .price-text {
    font-weight: 700;
    font-size: 1.05rem;
    color: #000;
}

.cart-wrapper .cart-content .old-price {
    text-decoration: line-through;
    color: #adb5bd;
    font-size: 0.85rem;
    margin-left: 5px;
}


.checkout-card .summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.95rem;
    padding: 4px 0;
    color: #000;
}

.checkout-card .summary-row.total {
    font-weight: 700;
    font-size: 1.1rem;
    margin-top: 5px;
    margin-bottom: 15px;
}

.checkout-card .btn-confirm {
    background-color: #ef3e36;
    border-color: #ef3e36;
    color: white;
    font-weight: 600;
    font-size: 1.05rem;
    padding: 12px;
    border-radius: 4px;
}

.checkout-card .btn-confirm:hover {
    background-color: #d63028;
    border-color: #d63028;
    color: white;
}