/* ZigZag View Style */
.product-grid.view-zigzag {
    grid-template-columns: 1fr;
    gap: 4rem;
}

.view-zigzag .product-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    background: none;
    border: none;
}

.view-zigzag .product-card:nth-child(even) {
    grid-template-columns: 1fr 1fr;
}

.view-zigzag .product-card:nth-child(even) .product-img {
    grid-column: 2;
}

.view-zigzag .product-card:nth-child(even) .product-info {
    grid-column: 1;
    grid-row: 1;
    text-align: right;
}

.view-zigzag .product-card:nth-child(even) .card-actions-row {
    justify-content: flex-end;
}

.view-zigzag .product-img {
    height: 350px;
    width: 100%;
    background: #fff;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
}

.view-zigzag .product-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    padding: 20px;
}

@media (max-width: 768px) {

    .view-zigzag .product-card,
    .view-zigzag .product-card:nth-child(even) {
        grid-template-columns: 1fr;
        text-align: left;
    }

    .view-zigzag .product-img {
        height: 250px;
    }
}
