/* Minimal View Style */
.product-grid.view-minimal {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 3rem;
}

.view-minimal .product-card {
    background: none;
    border: none;
}

.view-minimal .product-img {
    background: #f8fafc;
    border-radius: 50%;
    aspect-ratio: 1/1;
    height: auto;
    width: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.view-minimal .product-img img {
    max-width: 70%;
    max-height: 70%;
    object-fit: contain;
}

.view-minimal .product-info {
    padding: 1rem 0;
    text-align: center;
}

.view-minimal .product-info h3 {
    font-weight: 400;
}
