﻿/* Container */
.product-visuals {
    max-width: 520px; /* säädä vasemman palstan leveyteen */
}

/* HERO */
.pv-hero {
    margin: 0 0 14px 0;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 1px 6px rgba(0,0,0,.08);
}

.pv-hero-link {
    position: relative;
    display: block;
    text-decoration: none;
}

.pv-hero-img {
    display: block;
    width: 100%;
    height: auto;
}

/* Hero actions overlay */
.pv-hero-actions {
    position: absolute;
    right: 10px;
    bottom: 10px;
    display: inline-flex;
    gap: 8px;
}

.pv-action {
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(0,0,0,.55);
    color: #fff;
    line-height: 1;
    user-select: none;
}

    .pv-action.pv-3d {
        background: rgba(56, 142, 60, .75); /* vihertävä, voi muuttaa */
    }

.pv-hero-caption {
    padding: 10px 12px;
    font-size: 12px;
    color: #666;
}

/* MASONRY */
.pv-masonry-title {
    font-weight: 700;
    margin: 4px 0 10px 0;
    color: #333;
}

.pv-masonry-grid {
    column-count: 2; /* desktop oletus */
    column-gap: 12px;
}

.pv-tile {
    break-inside: avoid; /* estää tilejen katkeamisen */
    margin: 0 0 12px 0;
    display: inline-block;
    width: 100%;
}

.pv-tile-link {
    position: relative;
    display: block;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 1px 6px rgba(0,0,0,.08);
}

.pv-tile-img {
    display: block;
    width: 100%;
    height: auto;
}

/* Badge */
.pv-badge {
    position: absolute;
    left: 10px;
    top: 10px;
    font-size: 11px;
    padding: 5px 8px;
    border-radius: 999px;
    background: rgba(255,255,255,.9);
    color: #333;
}

/* Play overlay for video tiles */
.pv-play {
    position: absolute;
    right: 10px;
    bottom: 10px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(0,0,0,.55);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 14px;
}

/* Caption under tile */
.pv-tile-caption {
    margin-top: 6px;
    font-size: 12px;
    color: #666;
}

/* Hover effect */
.pv-tile-link:hover .pv-tile-img,
.pv-hero-link:hover .pv-hero-img {
    transform: scale(1.01);
    transition: transform .18s ease;
}

/* Responsive */
@media (max-width: 991px) {
    .pv-masonry-grid {
        column-count: 2;
    }
}

@media (max-width: 480px) {
    .product-visuals {
        max-width: 100%;
    }

    .pv-masonry-grid {
        column-count: 1;
    }
}
