.catalog-section{display:grid;gap:0;grid-template-columns:1fr}@media screen and (min-width:768px){.catalog-section{grid-template-columns:repeat(2,1fr)}}@media screen and (min-width:1280px){.catalog-section{grid-template-columns:repeat(3,1fr)}}.product-item-container:after,.product-item-container:before{background-color:var(--color-primary);bottom:-1px;content:"";display:none;height:2px;position:absolute;right:-6px;width:12px;z-index:99}.product-item-container:after{transform:rotate(90deg)}.product-item-container:not(:first-child){margin-top:-1px}@media screen and (min-width:768px){.product-item-container:not(:first-child){margin-top:unset}.product-item-container:nth-child(3n+1):not(:last-child):after,.product-item-container:nth-child(3n+1):not(:last-child):before{display:block}.product-item-container:nth-child(3n+2):not(:last-child){margin-left:-1px}}@media screen and (min-width:1280px){.product-item-container:nth-child(3n+3):not(:last-child){margin-left:-1px}.product-item-container:nth-child(3n+2):not(:last-child):after,.product-item-container:nth-child(3n+2):not(:last-child):before{display:block}}.product-series-link{height:226px;margin-top:-1px;position:relative;width:100%;z-index:2}.product-series-link picture{inset:0;position:absolute}.product-series-link picture img{height:100%;-o-object-fit:cover;object-fit:cover;width:100%}@media screen and (min-width:1920px){.product-series-link{height:300px}}@media screen and (min-width:768px){.product-series-link{grid-column:1/3}}@media screen and (min-width:1280px){.product-series-link{grid-column:1/4}}
/*
xs - 360
md - 768
hd - 1280
xl - 1920
 */
.product-item-container {
    position: relative;
    padding: 20px;
    border: 1px solid var(--color-outline-lowest);
}

.product-item {
    display: grid;
    font-size: 14px;
    grid-template-columns: 50px 1.5fr 1fr;
    align-items: start;
    gap: 20px;
    grid-template-areas: "badges badges like" "photos photos photos" "delivery delivery delivery" "title title title" "color size size" "prices prices prices" "button-buy button-buy button-buy";
}

.product-item-badges {
    grid-area: badges;
}

.product-item-badges {
    grid-area: badges;
}

.product-item-like {
    grid-area: like;
    text-align: right;
}

.product-item-like-btn {
    width: 34px !important;
}

.product-item-photos {
    grid-area: photos;
}

.product-item-delivery {
    grid-area: delivery;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--color-on-surface-main);
}
.product-item-delivery span {
    min-height: 0.8em;
    line-height: 0.8em;
    opacity: 0.5;
}
.product-item-delivery:before {
    content: "";
    display: block;
    background-color: var(--color-primary);
    width: 5px;
    height: 5px;
}

.product-item-title {
    grid-area: title;
    min-height: 135px;
}

.product-item-link {
    color: var(--color-on-surface-main);
    font-size: 17px;
    line-height: 1.3;
    letter-spacing: -0.03em;
}

.product-item-color-container {
    grid-area: color;
    min-height: 95px;
}

.product-item-color-icon {
    position: relative;
    z-index: 50;
    cursor: help;
}

.product-item-color-title {
    display: none;
    position: absolute;
    top: 0;
    left: 120%;
    padding: 8px 16px;
    opacity: 0.8;
    color: var(--color-on-surface-main);
    border-radius: 3px;
    background-color: var(--color-surface-lowest);
}

.product-item-color-icon:hover .product-item-color-title {
    display: block;
}

.product-item-size {
    grid-area: size;
}

.product-item-prices {
    grid-area: prices;
}

.product-item-button-buy {
    grid-area: button-buy;
}

.product-item-block-data {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.product-item-block-data-title {
    opacity: 0.5;
    font-size: var(--typography-caption-2);
    line-height: 1.6;
    text-transform: uppercase;
    color: var(--color-on-surface-main);
}

.product-item-block-data-data {
    color: var(--color-on-surface-main);
}

.product-item-block-sizes {
    --product-item-sizes-padding: 5px;
    width: fit-content;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 0;
    margin: 0;
    padding: 0;
    font-weight: 400 !important;
}

label.product-item-block-size-more-label {
    font-weight: 400 !important;
}

.product-item-block-size,
.product-item-block-size-more-label {
    margin: -1px 0 0 -1px;
    padding: var(--product-item-sizes-padding) calc(var(--product-item-sizes-padding) * 2);
    border: 1px solid var(--color-outline-lowest);
    line-height: calc(var(--product-item-sizes-padding) * 3);
}

.product-item-block-link {
    color: var(--color-on-surface-main);
    opacity: 0.8;
}

.product-item-block-size,
.product-item-block-size-more-label,
.product-item-block-link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-item-block-size-more-state {
    display: none;
}

.product-item-block-size-more-state ~ .product-item-block-size {
    display: none;
}

.product-item-block-size-more-state:checked ~ .product-item-block-size {
    display: block;
}

.product-item-block-size-more-state:checked ~ .product-item-block-size-more-label {
    opacity: 0;
    display: none;
}

.product-item-block-size-more-label {
    opacity: 0.6;
    border: none;
}
.product-item-block-size-more-label:hover {
    cursor: pointer;
}

.product-item-badges {
    display: flex;
    align-items: center;
    gap: 6px;
}

.product-item-photos {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 218px;
}

.product-item-photo {
    --product-item-photo-height: 168px;
    position: absolute;
    display: block;
    /*width: 100%;*/
    max-height: var(--product-item-photo-height);
    border-radius: 3px;
    overflow: hidden;
}
.product-item-photo img {
    width: 100%;
    height: 100%;
    max-height: var(--product-item-photo-height);
    object-fit: contain;
}

.product-item-prices {
    display: flex;
    gap: 16px;
}
@media screen and (min-width: 1920px) {
    .product-item-prices {
        align-items: center;
    }
}

.product-item-price {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 12px;
}
.product-item-price .product-item-price-currency {
    opacity: 0.5;
}
@media screen and (min-width: 1920px) {
    .product-item-price .product-item-price-currency {
        font-size: 14px;
    }
}
@media screen and (min-width: 1920px) {
    .product-item-price {
        flex-direction: row;
        gap: 8px;
    }
}

.product-item-price-current .product-item-price-value {
    font-size: 22px;
    font-weight: 500;
}
@media screen and (min-width: 1920px) {
    .product-item-price-current .product-item-price-value {
        font-size: 24px;
    }
}
@media screen and (min-width: 1920px) {
    .product-item-price-current {
        flex-direction: row;
        gap: 8px;
    }
}

.product-item-price-old .product-item-price-value {
    opacity: 0.5;
    font-size: 16px !important;
    text-decoration: line-through;
}
.product-item-price-old .product-item-price-currency {
    font-size: 12px;
}

.product-item-price-discount span {
    display: block;
    padding: 2px 3px;
    background: var(--color-primary);
    color: var(--color-surface-main);
}

.product-item-button-buy-link {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    gap: 8px;
    background-color: var(--color-secondary);
    color: var(--color-on-secondary);
    /*cursor: pointer;*/
}
.product-item-button-buy-link .es-ui-icon {
    width: 1.2em;
    margin-top: -0.2em;
}
.product-item-button-buy-link:hover {
    background-color: var(--color-interaction-secondary-hover);
    color: var(--color-on-secondary);
}
