.shop-wrap{
    position: relative;
    padding: 1rem;
    /* background-color: #3498db; */
    width: 20vw;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;

    border-radius: 5%;
    border-style: solid;
    border-color: rgba(0, 0, 0, 0.265);
    border-width: 1px;
    transition: all 0.2s ease;
    /* overflow: hidden; */
}

.shop-title{
    height: 10vh;
    /* background-color: burlywood; */
    text-align: center;
    font-size: x-large;

}

.shop-description{
    height: auto;
    /* background-color: burlywood; */
    text-align: center;
    /* padding: 5vh; */
    /* margin-top: 2.5vh; */
    /* margin-bottom: 2.5vh; */

    /* border-radius: 0,0,5%,5%; */
    border-width: 0px 0;
    border-style: solid;
    border-top: black;
    overflow: scroll;
}

.isometric-container {
    width: 30vh;
    height: 30vh;
    position: relative;

    display: flex;
    align-items: center;
    justify-content:space-evenly;

    /* background-color: red; */
}


@media (max-width: 768px) {
    .isometric-container {
        height: 31vh;
        width: 31vh;
    }

    .centered-container {
        flex-direction: column;
        justify-content: space-around;
    }

    .centered-container {
        height: auto;
        width: 100%;
        /* padding: 3vh; */
        border: solid rgba(0, 0, 0, 0.407) 1px;
        border-radius: 5px;
        justify-content: safe;
    }

    .shop-wrap {
        border-width: 0px;
        height: auto;
        scale: 90%;
    }

    .shop-description{
        padding-top: 10px;
    }
}

.instaDist {
    background-image: url(plugin_images/instaDist.png);
    background-size: cover;
    background-position: center;
}

.sonicScoopPay {
    background-image: url(plugin_images/sonicScoop_pay.png);
    background-size: cover;
    background-position: center;
}

.shards {
    background-image: url(plugin_images/trial_shards.png);
    background-size: cover;
    background-position: center;

    border: #474747 solid 0.5px;
}

#isometric-box-1 {
    width: 60%;
    height: 100%;
    background-color: rgba(215, 211, 211, 0.141);
    position: absolute;
    border-radius: 5%;

    transform: skew(0deg, 15deg);
    transition: transform 0.4s ease;
    z-index: 99;

    box-shadow: 5px 0 5px rgba(0, 0, 0, 0.7);
}

#isometric-box-2 {
    width: 60%;
    height: 100%;
    background-color: rgba(215, 211, 211, 0.141);
    position: absolute;
    border-color: #7c7979a7;
    border-radius: 5%;
    border-width: 0.5px;
    border-style: solid;

    background-image: url(media/links.png);
    background-size: 80%;
    background-repeat: no-repeat;
    background-position: center;

    z-index: 98;

    transform: skew(0deg, 15deg) translateX(8px) translateY(-10px);
    transition: transform 0.4s ease;
    
    box-shadow: 5px 0 5px rgba(0, 0, 0, 0.7);
}

#isometric-box-3 {
    width: 60%;
    height: 100%;
    background-color: #474747;
    position: absolute;
    border-radius: 5%;

    transform: skew(0deg, 15deg) translateX(15px) translateY(-20px);
    transition: transform 0.4s ease;
    z-index: 97;

    box-shadow: 1px 0 5px rgba(0, 0, 0, 0.3);
}

/* Your existing styles here 

animazioni con hover

*/

@media (hover: hover) {
    /* solo device che possono hoverare */
    .isometric-container:hover #isometric-box-2 {
        transform: skew(0deg, 15deg) translateX(8px) translateY(-50%);
        transition: transform 0.4s ease; /* Adjust the duration and easing as needed */
    }
    
    .shop-wrap:hover #isometric-box-1 {
        transform: skew(0deg, 15deg) translateX(-3px) translateY(3px);
        transition: transform 0.4s ease;
    }
    
    .shop-wrap:hover #isometric-box-3 {
        transform: skew(0deg, 15deg) translateX(18px) translateY(-17px);
        transition: transform 0.4s ease;
    }

    .shop-wrap:hover {
        box-shadow: 1px 0 5px rgb(152, 151, 151);
        transition: all 0.2s ease;
    }

    #isometric-box-1 {
        cursor: pointer;
    }
}

@media (hover: none) {
    .isometric-container .isometric-box {
        width: 60%;
        height: 100%;
        position: absolute;
        border-radius: 5%;
        transform: skew(0deg, 15deg);
        transition: transform 0.4s ease;
    }
}


