.cart-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.empty-cart {
    text-align: center;
    padding: 40px 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.empty-cart i {
    font-size: 4em;
    color: #ddd;
    margin-bottom: 20px;
}

.empty-cart h2 {
    color: #333;
    margin-bottom: 10px;
}

.empty-cart p {
    color: #666;
    margin-bottom: 20px;
}

.cart-item {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 20px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: transform 0.2s ease;
}

.cart-item:hover {
    transform: translateY(-2px);
}

.cart-item img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
}

.cart-item-info {
    flex: 1;
}

.cart-item-title {
    font-size: 1.2em;
    color: #333;
    margin-bottom: 10px;
}

.cart-item-price {
    color: #666;
    font-size: 1.1em;
    margin-bottom: 10px;
}

.cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.quantity-btn {
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.quantity-btn:hover {
    background: #e9ecef;
}

.cart-item-total {
    font-weight: bold;
    color: #333;
    margin: 0;
}

.cart-summary {
    background: #fff;
    border-radius: 10px;
    padding: 20px;
    margin-top: 20px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.cart-total {
    font-size: 1.4em;
    color: #333;
    margin-bottom: 20px;
    text-align: right;
}

#order-form {
    background: #fff;
    border-radius: 10px;
    padding: 30px;
    margin-top: 30px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

#order-form h2 {
    color: #333;
    margin-bottom: 20px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #555;
    font-weight: 500;
}

.form-control {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 12px;
    width: 100%;
    transition: border-color 0.2s ease;
}

.form-control:focus {
    border-color: #80bdff;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

textarea.form-control {
    min-height: 100px;
    resize: vertical;
}

.btn-remove {
    background: none;
    border: none;
    color: #dc3545;
    padding: 10px;
    cursor: pointer;
    transition: color 0.2s ease;
}

.btn-remove:hover {
    color: #c82333;
}

.btn-primary {
    background: #007bff;
    border: none;
    padding: 12px 25px;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    transition: all 0.2s ease;
}

.btn-primary:hover {
    background: #0056b3;
    transform: translateY(-1px);
}

.btn-success {
    background: #28a745;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    color: white;
    font-weight: 500;
    font-size: 1.1em;
    transition: all 0.2s ease;
}

.btn-success:hover {
    background: #218838;
    transform: translateY(-1px);
} 