.product-description {
    font-weight: var(--fw-medium);
    font-size: var(--common-size);
    color: var(--light-dark);
}

/* table  */
/* .product-cart {
    background-color: var(--sky-white);
} */

.product-cart .table-box {
    background-color: var(--light-white);
    border-radius: 20px;
    box-shadow: 0px 0px 8px -3px var(--dark);
    max-height: 600px;
    overflow: auto;
}

.table-box::-webkit-scrollbar {
    width: 8px;
}

.table-box::-webkit-scrollbar-track {
    background: transparent;

}

.table-box::-webkit-scrollbar-thumb {
    background: var(--dark);
    border-radius: 8px;

}


.cart-header {
    background-color: #64686C;
    color: var(--light-white);
    font-weight: var(--fw-semi-bold);
    font-size: var(--common-size);
    user-select: none;
    border-radius: 8px;
    padding: 0.5rem 1rem;
    grid-template-columns: 5fr 2fr 3fr 2fr;
}

.cart-header>div {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.cart-item {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 1rem;
    margin-bottom: 1rem;
    grid-template-columns: 1fr 4fr 2fr 3fr 2fr 1fr;
    height: 202px;
}

/* Enable horizontal scroll on small screens */
.table-scroll {
    overflow-x: auto;
    width: 100%;
}

/* Make grid responsive by forcing a minimum width */
.cart-header,
.cart-item {
    display: grid;
    min-width: 900px;
    gap: 12px;
    align-items: center;
}

/* Ensure inner box styling for each cell */
.cart-item>div {
    padding: 0.5rem;
    background-color: transparent;
    border-radius: 10px;
    word-break: break-word;
}

/* show scrollbar  */
.table-scroll::-webkit-scrollbar {
    height: 8px;
}

.table-scroll::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}




.input-box input {
    appearance: none;
    width: 30px;
    height: 30px;
    border: 2px solid var(--border);
    border-radius: 6px;
    margin-right: 20px;
    position: relative;
}

.input-box input:checked {
    background-color: #64686C;
    border-color: #64686C;
}

.input-box input:checked::after {
    content: '';
    position: absolute;
    top: 45%;
    left: 50%;
    width: 12px;
    height: 6px;
    border-left: 2px solid var(--light-white);
    border-bottom: 2px solid var(--light-white);
    transform: translate(-50%, -50%) rotate(-45deg);
}

.product-info {
    font-weight: var(--fw-semi-bold);
    font-size: var(--mediuum-size);
    color: var(--dark);
}

.product-desc {
    font-weight: var(--fw-normal);
    font-size: var(--common-size);
    color: var(--light-dark);
}


.counter-container {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
    border-radius: 50px;
    width: 126px;
    height: 40px;
    overflow: hidden;
}

.counter-container .counter-btn {
    flex: 1;
    text-align: center;
    cursor: pointer;
    font-size: 16px;
    user-select: none;
    color: var(--dark);
    font-weight: var(--fw-semi-bold);
}

.counter-container .counter-value {
    flex: 1;
    text-align: center;
    font-weight: var(--fw-semi-bold);
    font-size: 16px;
    color: var(--dark);
}

.divider {
    width: 1px;
    background-color: var(--border);
    height: 60%;
}

.remove-btn {
    color: var(--light-dark);
    background: transparent;
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    font-size: 24px;
}

.product-cart .text-box {
    background-color: var(--light-white);
    border-radius: 20px;
    box-shadow: 0px 0px 8px -3px var(--dark);
}

.product-cart .text-box .mode-heading {
    font-weight: var(--fw-semi-bold);
    font-size: var(--mediuum-size);
    color: var(--dark);
}

.product-cart .text-box .mode-type {
    font-weight: var(--fw-normal);
    font-size: var(--mediuum-size);
    color: var(--dark);
}


.radio-button {
    appearance: none;
    -webkit-appearance: none;
    width: 16px;
    height: 16px;
    border: none;
    background-color: var(--border);
    border-radius: 50%;
    position: relative;
    cursor: pointer;
    margin-right: 10px;
}

.radio-button:checked::before {
    content: "";
    position: absolute;
    top: 4px;
    left: 4px;
    width: 8px;
    height: 8px;
    background-color: var(--dark);
    border-radius: 50%;
}



/* modal  delete  */
.product-cart .modal-content .modal-body .heading-title {
    color: #FF143B;
}

.product-cart .modal-content .modal-body .delete-icon i {
    border: 3px solid #FF143B;
    color: #FF143B;
    border-radius: 50%;
    padding: 10px;
    font-size: 30px;
}

.product-cart .modal-content {
    border-radius: 28px;
}

.product-cart .modal-content .delete-info {
    font-size: var(--mediuum-size);
    font-weight: var(--fw-normal);
    color: var(--light-dark);
}

.product-cart .modal-content .modal-footer {
    background-color: #E6EEF2;
    border-bottom-left-radius: 28px;
    border-bottom-right-radius: 28px;
}

.product-cart .modal-content .modal-footer button {
    border-radius: 50px;
    /* padding: 6px 16px; */
    width: 139px;
    height: 50px;
}

.product-cart .modal-content .modal-footer .delete-btn {
    background-color: #FF143B;
}

.product-cart .modal-content .modal-footer .cancel-btn {
    color: var(--dark);
    border-color: var(--border);
}
