.store-page {
    padding-bottom: 20rem;
}

.item {
    grid-column: 1/-1;
    border-bottom: 3px solid black;
}

.item--figure {
    width: 100vw;
    height: 100vw;
}

.item--details {
    background-color: var(--color-white);
    border-top: 3px solid black;
    padding: .3rem 1rem;
    display: flex;
    justify-content: space-between;
}


/* TABLET */
@media only screen and (min-width: 768px) {
    .store-page {
        column-gap: 0;
    }

    .item {
        grid-column: span 4;
    }

    .item:nth-of-type(odd) {
        border-right: 3px solid black;
    }

    .item--figure {
        width: 50vw;
        height: 50vw;
    }

    .item:nth-of-type(odd) .item--figure {
        width: calc(50vw - 3px);
    }
}


/* DESKTOP */
@media only screen and (min-width: 1024px) {
    .item:nth-of-type(odd) {
        border-right: none;
    }

    .item:nth-of-type(odd) .item--figure {
        width: 25vw;
        height: 25vw;
    }

    .item {
        border-right: 3px solid black !important;
    }

    .item--figure {
        width: calc(25vw - 3px) !important;
        height: 25vw;
    }

    .item:nth-of-type(4n) {
        border-right: none !important;
    }

    .item:nth-of-type(4n) .item--figure{
        width: 25vw !important;
    }
}


/* HOVER */
@media (hover: hover) {
    .item:hover .item--details {
        background-color: var(--color-red);
    }
}