﻿.product-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

    .product-container > div:nth-child(1) {
        position: relative;
        display: inline-flex;
        overflow: hidden;
    }

    .product-container .product-item {
        position: relative;
        display: inline-flex;
        justify-content: center;
        overflow: hidden;
        border-radius: 0.25rem;
        background-color: #f6f6f6;
        z-index: 1;
    }

.product-item > div:nth-child(2) {
    position: absolute;
    cursor: pointer;
}

.product-item > div:nth-child(3) {
    position: absolute;
    background-color: rgba(255,255,255,0.5);
    padding: 5px 8px;
    left: 15px;
    bottom: 15px;
}

    .product-item > div:nth-child(3) > h2,
    .product-details .details .product-name span {
        display: inline-flex;
        font-size: var(--fontsize);
        color: #777;
    }

.product-container > div:nth-child(2) {
    text-align: start;
    width: 100%;
}

    .product-container > div:nth-child(2) h1 {
        font-size: 1rem;
        margin-top: 0.5rem;
    }
