/* Page title */
.cart-page-title {
    font-size: 28px;
    margin-bottom: 30px;
}

.custom-cart-table {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
}

.cart-row td {
    vertical-align: middle;
    border-bottom: 1px solid #eee;
}

.cart-img img {
    width: 100px;
    border-radius: 8px;
}

.cart-info a {
    text-decoration: none;
    color: var(--bs-black);
}

/* Quantity box */
.qty-box {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    width: 110px;
}

.qty-input {
    width: 40px;
    text-align: center;
    border: none;
    outline: none;
}

.qty-btn {
    width: 35px;
    height: 35px;
    border: none;
    background: #f5f5f5;
    cursor: pointer;
}

.stock-status.in-stock {
    color: green;
    font-weight: 500;
}

.stock-status.out-stock {
    color: red;
    font-weight: 500;
}

/**
 * ======================================================
 * Cart Summary
 * ======================================================
 */
.cart-summary-card {
    border: 1px solid var(--bs-gray-400);
    border-radius: 5px;
    box-shadow: var(--bs-box-shadow-sm) !important;
    padding: 5px;
}

.cart-summary-table td {
    padding: 12px 15px;
    vertical-align: middle;
}

.cart-summary-table tr {
    border-bottom: 1px solid var(--bs-gray-200);
}

.cart-summary-table tr:last-child {
    border-bottom: none;
}

.cart-total-row {
    font-size: 16px;
}

/* Total highlight */
.cart-total-row td {
    background: var(--bs-gray-100);
}