/* Custom styles */
.card-img-top {
    height: 200px;
    object-fit: cover;
}

.price {
    font-size: 1.25rem;
    font-weight: bold;
    color: #e44d26;
}

.jumbotron {
    background-color: #f8f9fa;
    padding: 2rem 1rem;
    border-radius: .3rem;
}

/* Cart button animation */
.add-to-cart-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.add-to-cart-btn.added-to-cart {
    background-color: #28a745;
    transform: scale(1.1);
}

.add-to-cart-btn .loading-spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.add-to-cart-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Cart count badge animation */
#cart-count {
    transition: all 0.3s ease;
}

#cart-count.updated {
    transform: scale(1.5);
}