/**
 * Public side styles for Product Catalog Manager
 */
.pcm-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.pcm-product-card {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s;
}

.pcm-product-card:hover {
    transform: translateY(-5px);
}

.pcm-product-image {
    height: 200px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9f9f9;
}

.pcm-product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}

.pcm-product-details {
    padding: 15px;
}

.pcm-product-title {
    margin: 0 0 10px;
    font-size: 1.2em;
    color: #333;
}

.pcm-product-code {
    font-size: 0.9em;
    color: #777;
    margin-bottom: 10px;
    font-weight: bold;
}

.pcm-product-description {
    font-size: 0.95em;
    color: #555;
    line-height: 1.4;
}