/* Magazine View Style */
.product-grid.view-magazine {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1rem;
}

.view-magazine .product-card {
    border-radius: 0;
    box-shadow: none;
    border: 1px solid var(--border);
    background: #fff;
}

.view-magazine .product-info h3 a {
    color: #000;
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
}

.view-magazine .product-price {
    font-family: monospace;
    color: #333;
}

.view-magazine .product-img {
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 300px;
    padding: 15px;
    width: 100%;
}

.view-magazine .product-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain !important;
}
