/* --- CART TABLE --- */
.cart-table-container {
    overflow-x: auto;
    margin-bottom: 30px;
}

.cart-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
}

.cart-table th {
    background: #f8f9fa;
    padding: 15px;
    border-bottom: 2px solid #eee;
}

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

.product-cell {
    display: flex;
    align-items: center;
    gap: 15px;
}

.product-cell img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
}

.qty-input {
    width: 60px;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

/* --- SUMMARY BOX --- */
.cart-summary {
    display: flex;
    justify-content: flex-end;
}

.summary-box {
    width: 100%;
    max-width: 400px;
    background: #f9f9f9;
    padding: 25px;
    border-radius: 12px;
    border: 1px solid #eee;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}

.summary-row.total {
    font-size: 1.3rem;
    font-weight: bold;
    color: #b33939;
}

.cart-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
}

.btn-update {
    background: #fff;
    border: 1px solid #e67e22;
    color: #e67e22;
    padding: 12px;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
}

.btn-remove {
    background: none;
    border: none;
    color: #e74c3c;
    cursor: pointer;
    font-size: 14px;
}

.btn-block {
    display: block;
    text-align: center;
}
