/* Cart Page Styles */
.cart-item-img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
}

.quantity-input {
    width: 70px;
    text-align: center;
}

.cart-summary {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
}

.cart-actions .btn {
    margin-bottom: 10px;
}

/* Toast notifications */
#toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1100;
}

/* Cart count badge */
.cart-count {
    font-size: 0.6rem;
    padding: 0.2em 0.4em;
    top: -8px !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .cart-item {
        text-align: center;
    }
    
    .cart-item-img {
        margin-bottom: 10px;
    }
    
    .cart-actions {
        margin-top: 15px;
    }
}
