/* Product Catalog Styles - Bible §44.3: Restaurant Portal */

/* Product Card */
.product-card {
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}

/* Placeholder Image */
.placeholder-image {
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
}

/* Price Highlight */
.product-card .mud-typography-h5 {
    font-weight: 600;
}

/* Touch-friendly buttons on mobile */
@media (max-width: 768px) {
    .product-card .mud-button-root,
    .product-card .mud-icon-button {
        min-height: 44px;
        min-width: 44px;
    }
}
