#product-list-template-swim {
    & {
        padding-left: 40px;
        padding-right: 50px;
    }
    .products {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 42px 28px;
    }

    .product {
        display: flex;
        align-items: center;
        flex-direction: column;
    }

    .product-id {
        border: 1px solid black;
        border-radius: 50%;
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 14px;
        margin-bottom: 16px;
        line-height: 1;
    }

    .product-link {
        text-decoration: none;
        width: 100%;
    }

    .product-wrapper {
        & {
            background: white;
            border-bottom-left-radius: 46px;
            border-bottom-right-radius: 46px;
            display: flex;
            justify-content: center;
            padding-bottom: 42px;
            flex-direction: column;
        }

        .image-wrapper {

            & {
                height: 360px;
            }

            img {
                width: 100%;
                height: 100%;
                object-fit: cover;
            }
        }

        .product-short-title {
            font-size: clamp(20px, calc(26 / 1920 * 100vw), 26px);
            color: black;
            font-weight: 800;
            text-align: center;
            line-height: 1.2;
        }

        .product-short-desc {
            font-size: clamp(14px, calc(20 / 1920 * 100vw), 20px);
            color: black;
            text-align: center;
            line-height: 1.2;
            margin-top: 15px;
        }
        .description-wrapper {
            padding: 40px 20px 20px 20px;
        }
    }
}
