﻿.productOverview {
    display: grid;
    grid-template-columns: repeat(5, 20%);
    padding: 10vh;
    overflow-y: hidden;
}

.icecream img {
    height: 60vh;
    width: auto;
}

.icecream {
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin: 1vh;
    border-radius: 15px;
    border: 5px solid black;
    overflow: hidden;
    transition: transform 0.5s ease-in-out;
    width: 88%;
}

.icecream:hover {
    justify-content: center;
    transition: transform 0.5s ease-in-out;
    z-index: 5;
    border: 5px solid black;
    transform: scale(1.3);
}

.icecream:hover:has(p) {
    width: 30vw;
}

.icecream:nth-child(5n):hover:has(p) {
    transform-origin: 200% center  ;
}

.productText {
    display: none;

    background-color: rgba(255, 228, 196, 0.7);
    background-image: url('assets/icecreamCone.jpg');
    background-size: cover;
    background-position: center;
    background-blend-mode: saturation;
}

.productText * {
    margin: 2vh;
}

.icecream:hover .productText {
    display: inline;
}