/* basket.css */
.content {
    background-color: rgb(245, 245, 245);
    min-height: 100vh;
}

.basket-header h1 {
    color: #333;
    font-weight: 300;
    letter-spacing: 1px;
}

.line-divider {
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, transparent, #e83e8c, transparent);
}

.basket-items .card, .order-summary .card {
    border: none;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.card-header {
    background: white;
    border-bottom: 1px solid #eee;
    padding: 1.5rem;
}

.card-header h5 {
    color: #333;
    font-weight: 500;
}

/* Basket Item Styles */
.basket-item {
    display: flex;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #f0f0f0;
}

.basket-item:last-child {
    border-bottom: none;
}

.basket-item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 1rem;
}

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

.basket-item-title {
    color: #333;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.basket-item-price {
    color: #e83e8c;
    font-weight: 600;
    font-size: 1.1rem;
}

.basket-item-controls {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.quantity-controls {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quantity-btn {
    width: 30px;
    height: 30px;
    border: 1px solid #ddd;
    background: white;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.quantity-input {
    width: 50px;
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 0.25rem;
}

.remove-btn {
    color: #dc3545;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

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

/* Order Summary */
.order-summary {
    top: 100px;
}

.summary-item {
    color: #666;
}

.summary-total {
    font-size: 1.2rem;
    color: #333;
}

.checkout-btn {
    border-radius: 8px;
    padding: 0.75rem;
    font-weight: 500;
    border: none;
    background: #333;
    transition: all 0.3s ease;
}

.checkout-btn:hover {
    background: #e83e8c;
    transform: translateY(-2px);
}

.checkout-btn:disabled {
    background: #6c757d;
    transform: none;
}

/* Empty Basket */
.empty-basket {
    text-align: center;
    padding: 3rem;
}

.empty-basket i {
    font-size: 4rem;
    color: #ddd;
    margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 768px) {
    .basket-item {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .basket-item-image {
        margin-right: 0;
    }
    
    .basket-item-controls {
        justify-content: center;
    }
    
    .order-summary {
        position: static !important;
    }
}