.cart-container {
    padding: 20px 0;
}
.cart-items-table {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    margin-bottom: 20px;
}
.cart-item-row {
    border-bottom: 1px solid #dee2e6;
    padding: 20px;
    transition: background-color 0.2s;
}
.cart-item-row:hover {
    background-color: #f8f9fa;
}
.cart-item-row:last-child {
    border-bottom: none;
}
.product-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #dee2e6;
}
.product-info h6 {
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
}
.product-link {
    font-size: 13px;
    color: #6c757d;
    text-decoration: none;
}
.product-link:hover {
    color: #495057;
    text-decoration: underline;
}
.price-display {
    font-size: 16px;
    font-weight: 600;
}
.quantity-controls {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border-radius: 6px;
    border: 1px solid #dee2e6;
    overflow: hidden;
    width: fit-content;
}
.quantity-btn {
    background: none;
    border: none;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    color: #495057;
    transition: all 0.2s;
}
.quantity-btn:hover {
    background-color: #e9ecef;
    color: #212529;
}
.quantity-btn:active {
    background-color: #dee2e6;
}
.quantity-input {
    border: none;
    width: 60px;
    height: 35px;
    text-align: center;
    background: white;
    font-weight: 600;
    color: #495057;
}
.quantity-input:focus {
    outline: none;
    box-shadow: none;
}
.subtotal-display {
    font-size: 16px;
    font-weight: 600;
    color: #28a745;
}
.remove-btn {
    background: none;
    border: none;
    color: #dc3545;
    font-size: 18px;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: all 0.2s;
}
.remove-btn:hover {
    background-color: #dc3545;
    color: white;
}
.cart-summary {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 25px;
    margin-bottom: 20px;
}
.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px solid #dee2e6;
}
.summary-row:last-child {
    border-bottom: none;
    font-size: 18px;
    font-weight: 600;
    color: #28a745;
}
.customer-form {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 25px;
}
.form-label {
    font-weight: 600;
    color: #495057;
    margin-bottom: 8px;
}
.btn-checkout {
    background: linear-gradient(135deg, #28a745, #20c997);
    border: none;
    padding: 12px 20px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
}
.btn-checkout:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(40, 167, 69, 0.3);
}
.empty-cart {
    text-align: center;
    padding: 60px 20px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.empty-cart .fa-shopping-cart {
    color: #6c757d;
    margin-bottom: 20px;
}

/* Mobile Styles */
.mobile-cart-item {
    padding: 15px 0;
}
.product-image-mobile {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #dee2e6;
}
.product-name-mobile {
    font-size: 14px;
    font-weight: 600;
    color: #333;
    margin-bottom: 5px;
    line-height: 1.3;
}
.price-mobile {
    font-size: 14px;
}
.quantity-controls-mobile {
    display: flex;
    align-items: center;
    background: #f8f9fa;
    border-radius: 4px;
    border: 1px solid #dee2e6;
    overflow: hidden;
    width: fit-content;
}
.quantity-controls-mobile .quantity-btn {
    width: 30px;
    height: 30px;
    font-size: 14px;
}
.quantity-controls-mobile .quantity-input {
    width: 50px;
    height: 30px;
}
.remove-btn-mobile {
    background: none;
    border: none;
    color: #dc3545;
    font-size: 16px;
    cursor: pointer;
    padding: 6px;
    border-radius: 4px;
    transition: all 0.2s;
}
.remove-btn-mobile:hover {
    background-color: #dc3545;
    color: white;
}
.subtotal-mobile {
    font-size: 13px;
}

@media (max-width: 768px) {
    .cart-container {
        padding: 15px 0;
    }
    .cart-item-row {
        padding: 15px;
    }
    h2 {
        font-size: 1.5rem;
    }
    .cart-summary {
        padding: 20px;
    }
    .customer-form {
        padding: 20px;
    }
}
