/* Homepage Cart Button Fixes */
.product-card .product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    border-radius: 10px;
}

.product-card .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.cart-overlay {
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .cart-overlay {
    opacity: 1;
}

.add-to-cart-btn {
    background: #28a745 !important;
    border: none;
    color: white;
    padding: 8px 16px;
    border-radius: 5px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.add-to-cart-btn:hover {
    background: #218838 !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.add-to-cart-btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}