.product-art > img {
    position: absolute;
    inset: 24px 12px -48px;
    width: calc(100% - 24px);
    height: calc(100% + 24px);
    object-fit: contain;
    object-position: center;
    filter: drop-shadow(0 22px 26px rgba(0, 0, 0, .42));
    transition: transform .35s ease;
}

.product-card:hover .product-art > img {
    transform: translateY(-5px) scale(1.025);
}

.product-detail-art {
    height: 430px;
}

.product-detail-art > img {
    inset: 15px;
    width: calc(100% - 30px);
    height: calc(100% - 30px);
}

.product-detail-art.product-promotional-banner {
    height: 430px;
    aspect-ratio: auto;
    background: #eef6fb;
}

.product-detail-art.product-promotional-banner > img {
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: none;
}

@media (max-width: 640px) {
    .product-art > img {
        inset: 22px 5px -36px;
        width: calc(100% - 10px);
    }

    .product-detail-art {
        height: 320px;
    }

    .product-detail-art.product-promotional-banner {
        height: 320px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .product-art > img {
        transition: none;
    }
}

.product-overview { background: var(--surface); }
.product-travel {
    background-image: radial-gradient(circle at 75% 25%, rgba(255, 137, 65, .28), transparent 38%), linear-gradient(135deg, #111a33, #142b40);
}
.product-travel > img { inset: 18px 12px -92px; }
.product-game {
    background: #05031c;
}
.product-game > img {
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: none;
}
.product-coffee {
    background: #3a1808;
}
.product-coffee > img {
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: none;
}
.product-links { display: flex; flex-wrap: wrap; gap: 18px; }
.product-links a + a { color: #84a0ff; }
.detail-copy p { color: var(--muted); margin-bottom: 1.25rem; }
.detail-copy .detail-lead { color: var(--text); font-size: 1.15rem; }
.modules-section { padding-top: 0; }
.module-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

@media (max-width: 640px) {
    .module-grid { grid-template-columns: 1fr; }
}
