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

.view-polaroid .product-card {
    background: #1a1a1a;
    padding: 15px 15px 60px 15px;
    border-radius: 4px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4);
    transform: rotate(-2deg);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.view-polaroid .product-card:nth-child(even) {
    transform: rotate(2deg);
}

.view-polaroid .product-info h3 a {
    color: #fff !important;
    font-family: 'Indie Flower', cursive, sans-serif;
    font-size: 1.2rem;
}

.view-polaroid .product-img {
    aspect-ratio: 1/1;
    height: auto;
    width: 100%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
}

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