
	.product {

    grid-column: span 12 / span 12;

    display: -webkit-box;

    display: -ms-flexbox;

    display: flex;

    -webkit-box-orient: vertical;

    -webkit-box-direction: normal;

        -ms-flex-direction: column;

            flex-direction: column;

    -webkit-box-pack: justify;

        -ms-flex-pack: justify;

            justify-content: space-between;

    gap: 1rem;

    --tw-bg-opacity: 1;

    background-color: rgb(var(--color-grey-tone-one) / var(--tw-bg-opacity));

    padding: 2rem
}

@media (min-width: 640px) {

    .product {

        grid-column: span 6 / span 6
    }
}

@media (min-width: 768px) {

    .product {

        grid-column: span 4 / span 4
    }
}

@media (min-width: 1024px) {

    .product {

        grid-column: span 3 / span 3
    }
}

@media (max-width: 1023px) {

    .product {

        -webkit-box-orient: horizontal;

        -webkit-box-direction: normal;

            -ms-flex-direction: row;

                flex-direction: row;

        padding: 1rem
    }
}

	@media (min-width: 1024px) {

    * + .products__container .product {

        grid-column: span 4 / span 4
    }
}

	.product__title {

    overflow: hidden;

    display: -webkit-box;

    -webkit-box-orient: vertical;

    -webkit-line-clamp: 3;

    font-family: var(--font-primary);

    font-size: 1.25rem;

    line-height: 1.75rem;

    font-weight: 700;

    --tw-text-opacity: 1;

    color: rgb(var(--color-site-text-one) / var(--tw-text-opacity))
}

	@media (max-width: 1023px) {

    .product__title--outside {

        display: none
    }
}

	@media (min-width: 1024px) {

    .product__title--inside {

        display: none
    }
}

	.product__inner {

    display: -webkit-box;

    display: -ms-flexbox;

    display: flex;

    width: 100%;

    -webkit-box-orient: vertical;

    -webkit-box-direction: normal;

        -ms-flex-direction: column;

            flex-direction: column;

    gap: 1rem
}

	@media (max-width: 1023px) {

    .product__image-container {

        display: -webkit-box;

        display: -ms-flexbox;

        display: flex;

        -webkit-box-orient: horizontal;

        -webkit-box-direction: normal;

            -ms-flex-direction: row;

                flex-direction: row;

        -webkit-box-align: center;

            -ms-flex-align: center;

                align-items: center;

        gap: 1rem
    }
}

	.product__image {

    position: relative;

    aspect-ratio: 1 / 1;

    width: 100%;

    -ms-flex-negative: 0;

        flex-shrink: 0
}

	@media (max-width: 1023px) {

    .product__image {

        width: 25%
    }
}

	.product__image img {

    height: 100%;

    width: 100%;

    -o-object-fit: contain;

       object-fit: contain
}

	.product__content {

    display: -webkit-box;

    display: -ms-flexbox;

    display: flex;

    -webkit-box-orient: horizontal;

    -webkit-box-direction: normal;

        -ms-flex-direction: row;

            flex-direction: row;

    -webkit-box-align: center;

        -ms-flex-align: center;

            align-items: center;

    -webkit-box-pack: justify;

        -ms-flex-pack: justify;

            justify-content: space-between;

    gap: 0.5rem;

    --tw-border-opacity: 1;

    border-color: rgb(var(--color-grey-tone-three) / var(--tw-border-opacity))
}

	@media (max-width: 1023px) {

    .product__content {

        -ms-flex-wrap: wrap;

            flex-wrap: wrap;

        border-top-width: 1px;

        padding-top: 1rem
    }
}

	@media (min-width: 1024px) {

    .product__content {

        border-bottom-width: 1px;

        padding-bottom: 1rem
    }
}

	.product__price-container {

    display: -webkit-box;

    display: -ms-flexbox;

    display: flex;

    -webkit-box-orient: horizontal;

    -webkit-box-direction: normal;

        -ms-flex-direction: row;

            flex-direction: row;

    -webkit-box-align: center;

        -ms-flex-align: center;

            align-items: center;

    gap: 0.5rem
}

	.product__price {

    font-family: var(--font-primary);

    font-size: 1.25rem;

    line-height: 1.75rem;

    font-weight: 700;

    --tw-text-opacity: 1;

    color: rgb(var(--color-site-text-one) / var(--tw-text-opacity))
}

	.product__price-advice {

    font-family: var(--font-secondary);

    font-size: 0.875rem;

    line-height: 1.25rem;

    --tw-text-opacity: 1;

    color: rgb(var(--color-site-text-two) / var(--tw-text-opacity));

    -webkit-text-decoration-line: line-through;

            text-decoration-line: line-through
}

	.product__link {

    display: -webkit-box;

    display: -ms-flexbox;

    display: flex;

    -webkit-box-flex: 1;

        -ms-flex-positive: 1;

            flex-grow: 1;

    -webkit-box-orient: horizontal;

    -webkit-box-direction: normal;

        -ms-flex-direction: row;

            flex-direction: row;

    -webkit-box-pack: end;

        -ms-flex-pack: end;

            justify-content: flex-end;

    gap: 0.5rem;

    font-family: var(--font-primary);

    font-size: 0.875rem;

    line-height: 1.25rem;

    font-weight: 500;

    --tw-text-opacity: 1;

    color: rgb(var(--color-site-text-one) / var(--tw-text-opacity))
}

	@media (min-width: 1024px) {

    .product__link {

        display: none
    }
}

	.product .button {

    min-height: 44px;

    width: 100%;

    gap: 0.5rem
}

	@media (max-width: 1023px) {

    .product .button {

        display: none
    }
}
	.products {

    display: grid;

    width: var(--width-page);

    max-width: 100%;

    grid-template-columns: repeat(12, minmax(0, 1fr));

    grid-gap: 1rem;

    gap: 1rem;

    padding-top: 2rem;

    padding-bottom: 2rem
}
	@media (max-width: 1023px) {

    .products {

        padding-left: 2rem;

        padding-right: 2rem
    }
}
	@media (min-width: 1024px) {

    .products {

        padding-left: 1rem;

        padding-right: 1rem
    }
}

	.products__container {

    display: grid;

    grid-auto-rows: -webkit-min-content;

    grid-auto-rows: min-content;

    grid-template-columns: repeat(12, minmax(0, 1fr));

    grid-gap: 1rem;

    gap: 1rem
}

	@media (max-width: 1023px) {

    .products__container {

        grid-column: span 12 / span 12
    }
}

	@media (min-width: 1024px) {

    .products__container {

        grid-column: span 12 / span 12
    }

    * + .products__container {

        grid-column: span 9 / span 9
    }
}


/*# sourceMappingURL=product_widget.f2e55176a216b52693f6.css.map*/