/* Cart Page Styles */
.cart-item {
    transition: all 0.3s ease;
}

.cart-item:hover {
    background-color: #f8f9fa;
}

.product-image img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

.quantity-controls .input-group {
    width: 120px;
}

.quantity-input {
    border-left: 0;
    border-right: 0;
}

.quantity-btn {
    width: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.remove-item {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.empty-cart i {
    opacity: 0.5;
}

.order-summary {
    font-size: 0.95rem;
}

.payment-methods img {
    opacity: 0.7;
    transition: opacity 0.3s ease;
	height: 30px;
	margin-left: 0.5rem;
	margin-right: 0.5rem;
}

.payment-methods img:hover {
    opacity: 1;
}

.subscription-notice {
    border: 1px solid #dee2e6;
    font-size: 0.85rem;
}

.subs-info {
    font-size: 0.75rem;
    color: var(--bs-secondary);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .cart-item .row > div {
        margin-bottom: 0.5rem;
    }
    
    .cart-item .col-md-2,
    .cart-item .col-md-1 {
        text-align: center;
    }
    
    .product-image {
        text-align: center;
    }
    
    .quantity-controls {
        display: flex;
        justify-content: center;
    }
} 