#main__container .breadcrumb {
    margin-bottom: 1rem;
    margin-top: -1.3rem;
}

.decreased-margin-title {
    margin-bottom: 1rem;
}

.details__iframe-title {
    display: block;
    margin-top: 2.5rem;
}

.details iframe {
    margin-top: 1rem;
}

.product {
    display: grid;
    grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
    gap: 1.5rem;
}

.product__logo-link {
    display: inline-flex;
}

.product .product__logo-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.25rem;
    margin-bottom: .5rem;
}

.product .product__logo {
    height: 5rem;
    object-fit: contain;
    object-position: center;
}

@media screen and (max-width: 575px) {
    .product .product__logo {
        height: 3.5rem;
    }
}

.product .product__title {
    margin-bottom: .5rem;
    font-size: 1.438rem;
    text-align: left;
    font-weight: bold;
}

.product .product__price {
    font-size: 1.375rem;
    font-weight: 1000;
    display: flex;
    flex-direction: column;
}

.product .discount__container {
    display: flex;
    justify-content: start;
    align-items: start;
    margin-top: 1.5rem;
    flex-direction: column;
}

.product .discount__container img {
    height: 35px;
}

.product .product__installment {
    font-size: 0.75rem;
    display: flex;
    margin-top: .2rem;
    color: #525252;
}

.product .product__carousel {
    margin-top: .7rem;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.product .product__carousel .product__picture {
    width: 79px;
    height: 80px;
    cursor: pointer;
    aspect-ratio: 16/9;
    object-position: center;
    object-fit: contain;
    background: white;
}

.product .product__carousel .product__picture {
    padding: 1rem;
}

.product .product__carousel .product__picture--active {
    border: 1px solid var(--orange);
}

.product .product__small {
    font-size: 0.875rem;
}

.product .product__small--line-through {
    text-decoration: line-through;
}

.product-promotion-wrapper {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.product .product__percent {
    font-size: .875rem;
    padding: .6rem .7rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    background: var(--black);
    font-weight: 500;
}

.product .product__percent img {
    width: 1rem;
    height: 1rem;
}

.product__percent--free-product {
    cursor: pointer;
}

.product .product__price .product__percent {
    margin-left: 0.75rem;
    padding: .5rem .6rem;
}

.product__id {
    display: block;
    margin: .5rem 0 0 0;
    font-size: .875rem;
    font-weight: 400;
    color: #585858;
}

.product__id--desktop {
    margin: 0 0 0.75rem;
}

.product__logo-wrapper .product__id--desktop {
    margin: unset;
}

.match-to-motorcycle {
    border-radius: var(--border-radius);
    padding: 2rem 1.5rem;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: #fff;
    border: 2px solid #66BF84;
    color: #000;
    flex-direction: column;
}

.not-match-to-motorcycle {
    border-radius: var(--border-radius);
    padding: 2rem 1.5rem;
    margin-top: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border: 2px solid #C7584A;
    color: #000;
    justify-content: space-between;
    flex-direction: column;
}

.match-to-motorcycle .motorcycle-name, .not-match-to-motorcycle .motorcycle-name {
    font-weight: 600;
    font-size: 1.3rem;
    text-align: center;
}

.check-motorcycle-match {
    border-radius: var(--border-radius);
    padding: 2rem 1.5rem;
    margin-top: 1rem;
    align-items: center;
    gap: 1.5rem;
    flex: 30%;
    border: 2px solid #333;
    background: transparent;
    color: black;
    flex-direction: column;
    display: flex;
    justify-content: center;
}

.similar .check-motorcycle-match {
    gap: 3rem;
}

.similar .check-motorcycle-match .left-side span {
    color: var(--white);
    margin: unset;
}

.similar .check-motorcycle-match .check-match {
    color: var(--black);
    background: var(--white);
}

.similar .check-motorcycle-match .check-match img {
    filter: unset;
}

.not-match-to-motorcycle img, .product .match-to-motorcycle img {
    width: 24px;
}

.check-motorcycle-match .left-side {
    display: flex;
    width: 100%;
    justify-content: center;
}

.check-motorcycle-match .left-side span {
    text-align: center;
    font-weight: 500;
}

.check-motorcycle-match .check-match {
    gap: .5rem;
    padding-top: 0.975rem;
    padding-bottom: 0.975rem;
}

.check-motorcycle-match .check-match span {
    font-weight: var(--button-orange-weight);
}

.check-motorcycle-match .check-match img {
    filter: invert(100%);
}

.product .flex__container {
    display: flex;
    justify-content: space-between;
    align-items: center
}

.flex__container .flex__column {
    display: flex;
    flex-direction: column;
}

.product .product__variant__items {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: .4rem;
}

.product__variant__item--disable:not(.product__variant__item) {
    position: relative;
}

.product__variant__item--disable:not(.product__variant__item)::after {
    background-color: rgba(0, 0, 0, 0.03);
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 3px;
}

.product__picture--variant-unavailable {
    position: relative;
    overflow: hidden;
}

.product__picture--variant-unavailable::before, .product__picture--variant-unavailable::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 0.125rem;
    height: 200%;
    background: rgba(0, 0, 0, 0.15);
    margin: auto;
    pointer-events: none;
}

.product__picture--variant-unavailable::before {
    transform: rotate(45deg);
}

.product__picture--variant-unavailable::after {
    transform: rotate(-45deg);
}

.product .product__variant__title {
    display: inline-block;
    /*margin-bottom: .4rem;*/
    font-size: 0.8rem;
    font-weight: 400;
    color: var(--text-muted);
}

.product .product__variant__items a {
    background: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 3px;
    border: 1px solid #dedede;
    font-size: 1rem;
    transition: var(--btn-hover-duration) var(--btn-hover-ease) all;
}

.product .product__variant__items a s {
    font-size: .8rem;
}

.product .product__variant__items a:hover {
    border-color: var(--text-dark);
}

.product .product__picture--variant {
    width: 60px;
    height: 55px;
    border-radius: var(--border-radius);
    aspect-ratio: 16/9;
    background: white;
    object-fit: contain;
    object-position: center;
}

.product .product__rate__value {
    font-size: .75rem;
}

.product .product__variant {
    margin-top: 1.5rem;
}

.product .product__variant__item {
    border-radius: var(--border-radius);
    background: var(--white);
    color: var(--text-dark);
    text-decoration: none;
    padding: .5rem 1rem;
}

.product__size .product__variant__item {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.25rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    line-height: 110%;
    text-align: center;
    border-radius: var(--border-radius);
}

.product .product__variant__item--disable {
    border: none !important;
}

.product .product__variant__item.product__variant__item--disable {
    background: var(--bg-light-grey) !important;
    color: #999;
    text-decoration: line-through;
}

.product .product__variant__item--active {
    border: 2px solid var(--black) !important;
    font-weight: 600;
}

.product .product__size, .product .product__basket {
    margin-top: 1.5rem;
}

.product .product__size .product__variant__sizes {
    color: black;
    font-size: .75rem;
    /*margin: 1rem 0;*/
    display: flex;
}

.product__size .variant__header,
.product__variant .variant__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: .6rem 0;
}

.details__wrapper {
    margin-top: 1.5rem;
    margin-bottom: 3rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
}

.product .delivery__detail {
    padding: 0.125rem 0.375rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.product .delivery__detail .box {
    display: flex;
}

.delivery__detail .text {
    position: relative;
    font-size: 0.8125rem;
    line-height: 100%;
    font-weight: 400;
    color: var(--light-black);
}

.delivery__detail b.text {
    font-weight: 600;
}

.delivery__detail .ico {
    width: 1.25rem;
    height: 1.25rem;
    object-fit: contain;
    object-position: center;
}

.delivery__detail[data-product-page-target="deliveryInfo"] .text::after {
    content: '';
    background: url("/assets/svg/youtube-dimmed.svg") no-repeat center / contain;
    position: absolute;
    top: 0;
    bottom: 0;
    right: -1.75rem;
    margin: auto;
    display: block;
    width: 1.125rem;
    height: 1.125rem;
}

.modal-iframe {
    height: auto !important;
    aspect-ratio: 16/9;
}

.delivery__container .delivery__info {
    font-size: 0.875rem;
    margin-top: .3rem;
}

.detail_pointer {
    cursor: pointer;
}

.product__size__table {
    margin-bottom: 2rem;
}

.product__size__table h2 {
    margin: .6rem 0;
}

.product__size__table table {
    width: 100%;
    border: 1px solid #dcdcdc;
    margin-top: 1rem;
}

.product__size__table table tbody tr td {
    padding: 5px;
    text-align: center;
    min-width: 90px;
}

.product__size__table .sizeTables tr td:first-child {
    min-width: 190px;
}

.modal .sizeTables {
    display: block;
    height: auto;
    overflow-x: scroll;
    border: unset;
}

.product .product__basket .product__availability {
    background: var(--orange);
    color: var(--white);
    border: none;
    text-align: center;
    border-radius: var(--border-radius);
    padding: .85rem 1rem;
    width: 100%;
    cursor: pointer;
    font-weight: 1000;
}

.product .product__basket .product__availability--not-available {
    background: #BFBFBF;
    padding: .98rem 1rem;
}

.product .product__basket .product__basket__card {
    width: 100%;
}

.product .product__price--promotion, .product .product__price--current {
    font-weight: 800;
    font-size: 1.6rem;
}

.product__caption {
    display: flex;
    width: 100%;
}

.pinch-zoom-container {
    display: flex;
    height: 100%;
}

.product__caption .product__img {
    background: white;
    width: 100%;
    object-fit: contain;
    object-position: center;
    aspect-ratio: 16/9;
    padding: .5rem 0;
}

.product__caption:after {
    background-color: rgba(0, 0, 0, .03);
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 3px;
}

.but-in-set-temporary-container {
    margin: 2rem 0;
    background: #f6f6f6;
    padding: 5rem 0;
}

.but-in-set-temporary-container .grey-image--background::after {
    background: transparent;
}

.but-in-set-temporary-container h2 {
    text-align: center;
    text-transform: lowercase;
}

.but-in-set-temporary-container h2::first-letter {
    text-transform: uppercase;
}

.but-in-set-temporary-container .carousel__item .add-to-basket {
    color: var(--black);
    border-color: var(--black);
}

.but-in-set-temporary-container .carousel__item .add-to-basket:hover {
    background: var(--black);
    color: var(--white);
}

.delivery__detail .alior-image {
    width: 30px;
}

.sticky__section .details__item {
    padding: 1rem 1.3rem;
    text-decoration: none;
    color: var(--black);
    border: 1px solid var(--grey);
    border-bottom: 0;
    text-align: center;
    font-size: 1.2rem;
}

.sticky__section .details__item--active {
    color: var(--orange);
    font-weight: 600;
    border-color: var(--black);
    border-width: 2px;
}

.description__section {
    display: block;
    padding: 5rem 0 1.5rem 0;
    background: var(--white);
}

.details .details__description__title {
    font-size: 1.438rem;
    font-weight: bold;
    padding-right: 1rem;
}

.description__section .details {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.description__section .details .right {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.details .details__params,
.mobile--params {
    display: flex;
    flex-direction: column;
}

.details .details__params {
    padding-left: 7rem;
    margin-top: 3rem;
}

.details__params .params__container,
.mobile--params .params__container {
    display: flex;
    justify-content: space-between;
    background: transparent;
    transition: .3s ease-in-out background;
}

.details__params .params__container:nth-of-type(odd),
.mobile--params .params__container:nth-of-type(odd) {
    background: #f6f6f6;
}

.details__params .params__container:hover,
.mobile--params .params__container:hover {
    background: #ebebeb;
}

.details__params .params__container,
.mobile--params .params__container {
    border-top: 1px solid #ebebeb;
}

.details__params .params__container:last-child,
.mobile--params .params__container:last-child {
    border-bottom: 1px solid #ebebeb;
}

.params__container .params__item {
    padding: 0.938rem;
    font-size: 1rem;
    /*border-bottom: 1px solid #d3d3d3;*/
    width: 50%;
}

/*.params__container .params__item.no__border {*/
/*    border-bottom: none;*/
/*}*/
.params__container .params__item.item--title {
    /*font-weight: bold;*/
    text-align: left;
    /*margin-left: 2rem;*/
}

/* .params__container .params__item.item--value {
    margin-right: 2rem;
} */
.params__item .param__item--link {
    text-decoration: none;
    color: var(--orange);
    font-size: 1rem;
}

.mobile--params {
    margin-bottom: 2.5rem;
    width: 100%;
}

.params-table {
    width: 100%;
    margin-bottom: 2.5rem;
}

.params-table tr {
    background: transparent;
    transition: .3s ease-in-out background;
    border-top: 1px solid #ebebeb;
}

.params-table tr:last-of-type {
    border-bottom: 1px solid #ebebeb;
}

.params-table tr:nth-of-type(odd) {
    background: #f6f6f6;
}

.params-table tr:hover {
    background: #ebebeb;
}

.params-table th, .params-table td {
    background: initial;
    width: 50%;
    padding: 0.938rem;
    font-size: 1rem;
    font-weight: 300;
    text-align: start;
}

.params-table td a {
    text-decoration: none;
    color: var(--orange);
    font-size: 1rem;
}

.details .details__b {
    margin-bottom: 1rem;
    display: block;
}

.details .details__paragraph, .details .details__paragraph *, .details__ul *, .details .details__ul li {
    line-height: 1.5rem;
    font-size: 1rem;
}

.details .details__paragraph {
    margin-bottom: 2rem;
}

.details .details__ul {
    padding-left: 2rem;
    margin: 1rem 0 2rem 0;
}

.details .details__ul li a {
    color: var(--orange);
    text-decoration: none;
}

.paragraph_wow {
    background-color: var(--orange);
    color: var(--white);
    padding: 1rem 2rem;
    font-weight: 600;
}

li[data-filter-sub-item-value] {
    cursor: pointer;
}

.product__modal--footer {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
}

.product__modal--footer .modal__submit {
    width: 50%;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.modal .modal__container .product__modal--footer .button__back {
    background: var(--background);
    color: var(--text-dark);
}

.product__modal--footer .button__back::before {
    content: '';
    background-image: url('../../assets/svg/right-arrow.svg');
    height: 25px;
    width: 25px;
    display: block;
    transform: rotate(180deg);
}

.similar__container {
    column-gap: 0;
}

.similar-tiles {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.5rem 1.2rem;
    margin-top: 2rem;
}

.similar-tiles__chunk-pair {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.5rem 1.2rem;
    align-content: start;
}

.similar-tiles__chunk {
    display: flex;
    flex-direction: column;
    gap: 0.5rem 1.2rem;
}

.similar-tiles__letter {
    display: none;
}

.similar .match-to-motorcycle, .similar .not-match-to-motorcycle {
    background: unset;
    color: var(--white);
}

.similar .match-to-motorcycle img, .similar .not-match-to-motorcycle img {
    filter: invert(1);
}

.similar__match-motorcycle-container .match-to-motorcycle {
    --similar--bg-color: #66BF84;
}

.similar__match-motorcycle-container .not-match-to-motorcycle {
    --similar--bg-color: #C7584A;

}

.similar__match-motorcycle-container .check-motorcycle-match {
    --similar--bg-color: #333;

}

.similar__match-motorcycle-container .match-to-motorcycle,
.similar__match-motorcycle-container .not-match-to-motorcycle,
.similar__match-motorcycle-container .check-motorcycle-match {
    position: relative;
    z-index: 0;
    border: unset;
    background: var(--similar--bg-color);
}

.similar__match-motorcycle-container .match-to-motorcycle::before,
.similar__match-motorcycle-container .not-match-to-motorcycle::before,
.similar__match-motorcycle-container .check-motorcycle-match::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100vw;
    width: 300vw;
    height: 100%;
    background: var(--similar--bg-color);
    z-index: -1;
}

.match-to-motorcycle__buttons-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
    margin-top: 0.5rem;
}

.match-to-motorcycle__buttons-wrapper .match-to-motorcycle__link {
    text-decoration: underline;
    text-underline-position: under;
    font-weight: 500;
    color: var(--white);
}

.match-to-motorcycle__buttons-wrapper .match-to-motorcycle__link::first-letter {
    text-transform: uppercase;
}

.product .match-to-motorcycle__buttons-wrapper .match-to-motorcycle__link {
    color: var(--black);
    transition: var(--btn-hover-duration) var(--btn-hover-ease) color;
}

.product .match-to-motorcycle__buttons-wrapper .match-to-motorcycle__link:hover {
    color: var(--orange);
}

.similar__search-wrapper {
    background-color: var(--bg-light-grey);
    padding: 2rem 2rem;
    width: 100%;
    margin-top: 2rem;
}

.similar__search {
    width: 100%;
    border-radius: var(--border-radius);
    padding: 1rem;
    border: 2px solid var(--black);
    font-size: 1rem;
}

@media only screen and ( min-width: 576px ) {
    .similar-tiles {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .similar__search-wrapper {
        display: none;
    }
}

@media only screen and ( min-width: 1024px ) {
    .similar__match-motorcycle-container {
        margin: auto;
        margin: 0.5rem 0 2rem;
    }

    .similar .h2__style {
        text-align: center;
    }

    .similar-tiles {
        margin-top: unset;
    }

    .description__section .details {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media only screen and ( min-width: 1200px ) {
    .similar-tiles__chunk-pair {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .description__section .details {
        grid-template-columns: minmax(0, 3fr) minmax(0, 2fr);
    }
}

.similar .show__hide {
    display: flex;
    width: 100%;
    justify-content: center;
    padding: 1rem;
    color: var(--orange);
    font-weight: 600;
}

.similar__brand-title {
    text-decoration: none;
    color: var(--text-dark);
    transition: .3s ease-in-out all;
    font-weight: 500;
}

.similar__brand-title:not([href]) {
    pointer-events: none;
}

.similar__brand-title[href]:hover {
    color: var(--orange);
}

.product .product__basket {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: 1rem;
}

.similar .similar__title, .set .set__title, .also .also__title {
    font-size: 1rem;
    padding: 1rem 0;
    text-transform: uppercase;
    font-weight: bold;
}

.set .set__description {
    margin-bottom: 1.5rem;
}

.similar__container .small__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.3rem;
    padding: 0.8rem 1.5rem;
    cursor: pointer;
    border-bottom: 1px solid #ccc;
}

.similar__container .small__container:hover {
    background-color: var(--bg-light-grey);
}

.similar__container .small__container.active {
    border-bottom: unset;
}

.also {
    background: white;
    padding: 2rem 0;
}

.similar .form_row-input-label {
    width: 40%;
}

.similar__container .similar__container-title {
    display: flex;
    align-items: center;
    gap: 1.3rem;
    background: #ebebeb;
    padding: 1rem 1.75rem;
    cursor: pointer;
    justify-content: space-between;
}

.similar__container .similar__container-title span {
    text-decoration: none;
    color: var(--text-dark);
    font-size: .95rem;
}

.similar__container .similar__container-title .collapse {
    height: 20px;
    cursor: pointer;
}

.similar__container img.is__collapsed {
    transform: rotate(-90deg);
}

.similar__container img {
    user-select: none;
}

.similar__container .details__ul {
    margin-bottom: .3rem;
    text-align: left;
    display: none;
    list-style: none;
}

.similar__container .details__ul.ul--visible {
    display: block;
    margin: 0;
}

.details__ul li:not(:last-of-type) {
    margin-bottom: .4rem;
}

ul[data-moto-sub-item-value] {
    padding: 0.5rem 0.25rem 1rem 2rem;
    border-bottom: 1px solid #ccc;
}

.similar__container .details__ul li::marker {
    color: var(--orange);
    list-style-type: square;
}

.similar__container .details__ul {
    border: 0.25rem solid #ebebeb;
}

.details__ul .moto__item {
    text-decoration: none;
    color: var(--text-dark);
    transition: .3s ease-in-out all;
    font-size: .875rem;
    display: flex;
    text-align: start;
}

.details__ul .moto__item small {
    color: var(--orange);
    font-size: .75rem;
}

.details__ul a.moto__item:not([href]) {
    pointer-events: none;
}

.similar__container .similar__container-title:hover,
.details__ul .moto__item[href]:hover,
.details__ul .moto__item[data-href]:hover {
    color: var(--orange);
    transition: .6s;
}

.details__ul .moto__item--model {
    transition: unset;
    font-weight: 500;
}

.details__ul .moto__item.is__bold {
    font-weight: 700;
}

.glider-slide {
    position: relative;
}

.product__variant__items--hidden {
    overflow: hidden;
    max-height: 100px;
}

.product__variant .toggle__variants {
    font-size: .85rem;
    display: flex;
    margin-top: .5rem;
    cursor: pointer;
    text-align: center;
    justify-content: center;
    color: var(--orange);
}

.product__variant .toggle__variants--hidden {
    display: none;
}

.product__basket .basket__select {
    width: 85px;
    height: 50px;
    display: flex;
    justify-content: center !important;
    align-items: center !important;
    text-align: center;
    text-align-last: center;
    background: white;
    border: 2px solid black;
    border-radius: 3px;
}

.basket__select-wrapper {
    display: flex;
    position: relative;
}

.basket__select-wrapper::after {
    content: '';
    position: absolute;
    right: 10px;
    top: 0;
    bottom: 0;
    margin: auto;
    background: url("/assets/svg/chevron-down.svg") no-repeat center / contain;
    width: 12px;
    height: 18px;
    pointer-events: none;
    user-select: none;
}

.basket__select-wrapper .basket__select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-right: 1rem;
    height: 100%;
}

.details .mobile--details {
    display: none;
}

.product__warranty {
    margin-top: 1rem;
}

.product__warranty .warranty__item {
    display: flex;
    align-items: center;
    gap: .6rem;
}

.product__warranty .warranty__item span {
    font-size: .875rem;
}

.product__warranty .warranty__item img {
    width: 16px;
}

#main__container .desktop__hidden .breadcrumb {
    margin: .5rem 0;
}

.desktop__hidden .last__breadcrumb:before {
    content: '\2039 \00A0';
    font-size: 1.2rem;
    position: relative;
    top: 2px;
}

.desktop__hidden .last__breadcrumb {
    color: var(--orange);
    text-decoration: none;
    margin: .5rem 0 0 0;
}

.sticky__section .mobile__detail--button {
    display: none;
    width: 100%;
    border-top: 1px solid #dedede;
    padding: 1rem 1.5rem;
    text-align: center;
    justify-content: space-between;
    align-items: center;
    background: white;
    font-weight: 600;
    gap: 1rem;
    font-size: 1.2rem;
}

.details__item--opinions .stars {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: .25rem;
    pointer-events: none;
}

.details__item--opinions .stars img {
    height: 0.75rem;
    width: 0.75rem;
    object-fit: contain;
    object-position: center;
    user-select: none;
}

.sticky__section .mobile__detail--button .mobile__detail--btn-span {
    display: flex;
    align-items: center;
    gap: .25rem;
    font-size: 1.2rem;
    font-weight: 600;
    pointer-events: none;
}

.sticky__section .mobile__detail--button .mobile__detail--opinions-total,
.sticky__section .mobile__detail--button .mobile__detail--questions-total {
    font-size: 1rem;
    font-weight: 300;
}

.mobile__detail--button:last-of-type {
    border-bottom: 1px solid #dedede;
}

.sticky__section .mobile__detail--button::after {
    content: '';
    background: url("/assets/svg/chevron-down.svg") no-repeat center / contain;
    height: 20px;
    width: 14px;
    user-select: none;
}

.sticky__section .mobile__detail--button.is-open:after {
    transform: rotate(180deg);
}

.similar, .set {
    background: white;
    padding: 3rem 0;
}

.recommendedProductToCategoryTab {
    background: white;
    padding: 1rem 0 2rem;
}

.technology__container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.technology__container .technology__item {
    display: flex;
    gap: 2rem;
    border: 1px solid var(--border-medium-grey);
    padding: 1.8rem;
}

.technology__item .left__side {
    min-width: 130px;
    justify-content: center;
    align-items: center;
    display: flex;
}

.technology__item .technology__title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--orange)
}

.technology__item .technology__description {
    line-height: 1.5rem;
    font-size: 1rem;
}

.sticky__section {
    margin-bottom: 6rem;
}

.overflow-hidden {
    overflow: hidden;
    overflow-x: scroll;
}

.product .size-table-button {
    display: flex;
    margin: .8rem 0;
    text-decoration: underline;
    font-size: .85rem;
    cursor: pointer;
    color: var(--orange);
}

@media only screen and (max-width: 1023px) {
    .product__id--desktop {
        display: none;
    }

    .product-tabs.sticky__section [data-container] {
        overflow: hidden;
        transition: .45s ease-in-out all;
        max-height: 0;
    }

    .similar, .set {
        padding-top: 1.5rem;
    }

    .size__container .size__title, .opinion__title, .similar .similar__title, .set .set__title {
        display: none;
    }

    .sticky__section {
        margin-top: 2rem;
    }

    .sticky__section .mobile__detail--button {
        display: flex;
    }

    #main__container {
        margin-top: 0;
    }

    .breadcrumb_mobile {
        display: flex !important;
        justify-content: space-between;
        align-items: center;
    }

    .product {
        grid-template-columns: minmax(0, 1fr);
        gap: .5rem;
    }

    .product .product__carousel {
        display: none;
    }

    .details .details__params {
        display: none;
    }

    .details .mobile--details {
        display: flex;
    }

    .similar__container, .similar .form_row-input-label {
        width: 100%;
    }

    .similar .similar__title {
        margin-top: 1rem;
    }

    .also {
        margin-top: 2rem;
    }

    .opinions .h2__style,
    .qna .h2__style {
        display: none;
    }
}

.recommended-product .recommended-product-title {
    font-weight: bold;
    margin-bottom: 1rem;
}

.recommended-product .recommended-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 2rem 1rem;
}

.product .gallery__main object.product__img {
    height: auto;
    display: flex;
    padding: 0;
}

.product .gallery__main__img-variant {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9;
    user-select: none;
    pointer-events: none;
}

@media only screen and (max-width: 767px) {
    .check-motorcycle-match .check-match {
        padding-top: 0.905rem;
        padding-bottom: 0.905rem;
    }

    .recommended-product {
        padding-left: 0;
    }

    .product .product__basket {
        margin-top: 1rem;
        margin-bottom: 1rem;
    }

    .details .details__description__title {
        display: none;
    }

    .product .product__variant__item {
        padding: .7rem 0.9rem;
    }

    .product__size .product__variant__item {
        font-size: 0.875rem !important;
        padding: 1.25rem 1.5rem;
    }

    .product .product__picture--variant {
        width: 70px;
        height: 46px;
    }

    .product .product__basket .product__basket__card--sticky {
        position: fixed;
        bottom: 0;
        margin: 0 0 0 -8px;
        width: 100%;
        text-align: center;
        border-radius: 0;
        z-index: 1030;
    }

    .product__warranty .warranty__item {
        margin: .5rem 0;
    }

    .product__caption .product__img {
        aspect-ratio: 1;
    }

    .gallery__main {
        margin-left: -1rem !important;
        margin-right: -1rem !important;
    }

    .product__caption {
        justify-content: center;
    }

    .product__caption .product__img {
        width: calc(100% - 2rem);
    }
}

@media only screen and (max-width: 1400px) {
    .product .check-motorcycle-match {
        flex-direction: column;
    }
}

@media only screen and (max-width: 640px) {
    .check-motorcycle-match .check-match {
        width: 100%;
    }
}

@media only screen and (max-width: 575px) {
    .similar__container {
        column-count: 1;
    }

    .but-in-set-temporary-container {
        padding: 3.5rem 0;
    }

    .match-to-motorcycle .motorcycle-name, .not-match-to-motorcycle .motorcycle-name {
        text-align: center;
    }
}

@media only screen and (max-width: 500px) {
    .basket__select-wrapper, .product__basket .basket__select {
        display: none;
    }

    .product .product__variant__items {
        gap: 5px;
        width: 100%;
    }
}

.glide {
    position: relative;
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.glide__slides, .glide__track {
    overflow: hidden;
}

.glide__slides {
    position: relative;
    width: 100%;
    list-style: none;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform-style: preserve-3d;
    transform-style: preserve-3d;
    -ms-touch-action: pan-Y;
    touch-action: pan-Y;
    padding: 0;
    white-space: nowrap;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    will-change: transform;
}

.slider__arrow {
    position: absolute;
    top: 50%;
    z-index: 1;
    width: 24px;
    height: 24px;
    margin-top: -9px;
    border-radius: 50%;
    background-color: #818999;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    -webkit-box-shadow: 0 .5rem 4rem 0 rgba(0, 0, 0, .5);
    box-shadow: 0 .5rem 4rem 0 rgba(0, 0, 0, .5);
}

.glide__arrow {
    cursor: pointer;
    padding: 0;
    background-color: transparent;
    border: 0;
    outline: 0;
}

.slider__arrow--next {
    right: 1.5rem;
}

.slider__arrow--prev {
    left: 1.5rem;
}

.modal__container .table__size--modal {
    overflow: hidden;
    overflow-x: scroll;
}

.size__container {
    background: white;
    padding: 1rem 0 2rem 0;
}

.size__container .size__title {
    font-size: 1rem;
    text-transform: uppercase;
    margin: 1rem 0;
    font-weight: bold;
}

.size__container .size__table {
    overflow: hidden;
    overflow-x: scroll;
}

.product__rate {
    cursor: pointer;
    display: flex;
}

.product .button-not-available {
    background: transparent;
    border: 2px solid var(--orange);
    border-radius: var(--border-radius);
    color: var(--orange) !important;
}

.product .swiper-pagination-fraction {
    text-align: left;
    bottom: 15px;
    left: 25px;
    height: 18px;
    width: 50px;
}

.delivery__detail[data-action] {
    cursor: pointer;
}

@media only screen and (min-width: 1024px) {
    .product-tabs section.tools-section,
    .product-tabs section.description__section,
    .product-tabs section.similar,
    .product-tabs section.opinions,
    .product-tabs section.set,
    .product-tabs section.size__container {
        display: block !important;
    }

    .description__section .details .right {
        gap: 8rem;
    }
}

.show-more-opinions {
    display: none;
}

.opinion__items .opinion__item.hidden {
    display: none;
}

.show-more-opinions {
    display: block;
    margin-top: 2rem;
}

.show-more-opinions__button {
    background: var(--orange);
    color: white;
    border: 1px solid var(--orange);
    transition: .3s ease-in-out all;
    padding: .8rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.show-more-opinions__button:hover {
    background: transparent;
    color: var(--orange);
}

.show-more-opinions__button--total-count {
    font-size: 0.875rem;
}

.error-alert {
    display: flex;
    gap: 0.75rem;
    background: rgb(255 223 162 / 15%);
    border: 1px solid var(--orange);
    border-left: .25rem solid var(--orange);
    border-radius: var(--border-radius);
    margin: 1rem 0;
    padding: 0.75rem;
}

.error-alert img {
    width: 1.5rem;
    height: 1.5rem;
    aspect-ratio: 1/1;
    object-fit: contain;
    object-position: center;
}

.error-alert p {
    font-size: 0.875rem;
    line-height: 150%;
    font-weight: 400;
    align-self: center;
}

.opinions .h2__style, .size__container .h2__style, .also .h2__style, .sale .h2__style, .qna .h2__style {
    text-align: center;
}

.opinions__container {
    padding-top: 3rem;
    padding-bottom: 1.5rem;
}

.intersection-nav__outer-wrapper {
    margin: 2rem 0 0;
}

.intersection-nav {
    width: 100%;
    background: #333;
    position: relative;
    z-index: 1;
    border-bottom: solid 1px #E0E0E0;
}

.intersection-nav__container {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 2rem;
    align-items: center;
    padding-top: 1rem;
}

.intersection-nav__scrollbar-container {
    padding: 0.375rem 0;
    min-height: 1rem;
}

.intersection-nav__product {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.intersection-nav__product-img {
    height: 3rem;
    object-fit: contain;
    object-position: center;
    user-select: none;
}

.intersection-nav__product-price {
    font-size: 1.125rem;
    line-height: 100%;
    font-weight: 600;
    color: var(--white);
    display: flex;
    flex-direction: column;
    gap: 0.125rem;
}

.intersection-nav__product-price small {
    font-size: 0.75rem;
    line-height: 100%;
    color: #bfbfbf;
}

.intersection-nav__product-add-to-basket {
    padding: 1rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 100%;
    text-align: center;
    text-transform: uppercase;
    border-radius: var(--border-radius);
    color: var(--black);
    background: var(--white);
    transition: var(--btn-hover-duration) var(--btn-hover-ease) background,
    var(--btn-hover-duration) var(--btn-hover-ease) color;
}

.intersection-nav__product-add-to-basket:hover {
    background: var(--orange);
    color: var(--white);
}

/* .intersection-nav__list {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
    list-style: none;
} */
.swiper--intersection-nav {
    width: 100%;
}

.swiper--intersection-nav .swiper-slide {
    width: auto;
}

.intersection-nav__swiper-scrollbar {
    position: static !important;
    background: var(--bg-medium-grey) !important;
}

.intersection-nav__swiper-scrollbar .swiper-scrollbar-drag {
    background: var(--white);
    cursor: pointer;
}

.intersection-nav__item {
    display: flex !important;
    align-items: center;
}

.intersection-nav__button {
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.intersection-nav__button--link {
    padding: 1.5rem 1rem;
}

.intersection-nav__button--link .title-span {
    display: flex;
    align-items: center;
    position: relative;
    font-weight: 500;
    font-size: 1rem;
    line-height: 100%;
    color: var(--white);
}

.intersection-nav__button--link .title-span .word-span {
    font-weight: inherit;
    font-size: inherit;
    line-height: inherit;
    color: inherit;
    text-transform: lowercase;
}

.intersection-nav__button--link .title-span .word-span::first-letter {
    text-transform: uppercase;
}

.intersection-nav__button--link .title-span::after {
    content: '';
    position: absolute;
    bottom: -0.25rem;
    left: 0;
    width: 100%;
    height: 1px;
}

.intersection-nav__button--link.active .title-span::after,
.intersection-nav__button--link:hover .title-span::after {
    background: var(--white);
}

.intersection-nav__button--link .rating-span {
    font-size: 0.875rem;
    font-weight: inherit;
    margin-left: 0.1875rem;
}

.intersection-nav__button--link .stars {
    margin-left: 0.5rem;
    display: flex;
    align-items: center;
    gap: .25rem;
}

.intersection-nav__button--link .stars img {
    height: 0.75rem;
    width: 0.75rem;
    object-fit: contain;
    object-position: center;
    user-select: none;
}

.intersection-nav__button--scroll-top {
    border: 1px solid var(--white);
    border-radius: 999rem;
    padding: 0.25rem;
    color: var(--white);
}

.intersection-nav__button--scroll-top svg {
    width: 1.25rem;
    height: 1.25rem;
    transform: rotate(-90deg);
    user-select: none;
}

.intersection-nav__outer-wrapper .intersection-nav__container {
    grid-template-columns: auto minmax(0, 1fr);
}

.intersection-nav__outer-wrapper .intersection-nav__product {
    display: none;
}

@media only screen and ( max-width: 1023px ) {
    .intersection-nav, .intersection-nav__outer-wrapper {
        display: none;
    }
}

@media only screen and ( max-width: 575px ) {
    .similar-tiles__letter {
        display: flex;
        padding: 1rem 1.75rem;
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--black);
    }
}

.free-product-feature-tab {
    display: grid;
    grid-template-columns: auto;
    gap: 1rem;
    margin: 2rem 0;
    padding: 1rem;
    border: 2px solid var(--black);
    border-radius: var(--border-radius);
}

.free-product-feature-tab__img-wrapper {
    display: flex;
    aspect-ratio: 3/2;
    position: relative;
    height: 100%;
    width: 100%;
}

.free-product-feature-tab__img-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .03);
    pointer-events: none;
}

.free-product-feature-tab__img-wrapper > img {
    display: flex;
    height: 100%;
    width: 100%;
    object-fit: contain;
    object-position: center;
}

.free-product-feature-tab .has-free-product,
.free-product-feature-tab .has-video {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    padding: .4rem .55rem;
    background: var(--black);
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.free-product-feature-tab .has-free-product img,
.free-product-feature-tab .has-video img {
    width: 1.125rem;
    height: 1.125rem;
    aspect-ratio: 1/1 !important;
    background: unset;
}

.free-product-feature-tab__text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 0.75rem 0;
}

.free-product-feature-tab__title {
    line-height: 110%;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--black);
}

.free-product-feature-tab__name {
    line-height: 120%;
    color: var(--black);
    transition: .3s ease-in-out all;
}

.free-product-feature-tab:hover .free-product-feature-tab__name {
    color: var(--orange);
}

.free-product-feature-tab__title, .free-product-feature-tab__name {
    font-size: 1.3125rem;
}

@media only screen and (min-width: 576px) {
    .free-product-feature-tab {
        grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
    }

    .free-product-feature-tab__img-wrapper {
        aspect-ratio: 4/3;
    }

    .free-product-feature-tab__text-wrapper {
        padding: 1.25rem 0;
    }

    .free-product-feature-tab__title, .free-product-feature-tab__name {
        font-size: 1.5rem;
    }
}

@media only screen and (min-width: 768px) {
    .free-product-feature-tab {
        gap: 2rem;
        padding: 2rem;
    }

    .free-product-feature-tab__text-wrapper {
        padding: 2rem 0;
    }

    .free-product-feature-tab__title {
        font-size: 1.75rem;
    }
}

@media only screen and (min-width: 1024px) {
    .free-product-feature-tab {
        gap: 1rem;
        padding: 1rem;
    }

    .free-product-feature-tab__text-wrapper {
        padding: 0.75rem 0;
    }

    .free-product-feature-tab__title, .free-product-feature-tab__name {
        font-size: 1.3125rem;
    }
}

@media only screen and (min-width: 1200px) {
    .free-product-feature-tab__text-wrapper {
        padding: 1.25rem 0;
    }

    .free-product-feature-tab__title, .free-product-feature-tab__name {
        font-size: 1.5rem;
    }
}

@media only screen and (min-width: 1520px) {
    .free-product-feature-tab {
        gap: 2rem;
        padding: 2rem;
    }

    .free-product-feature-tab__text-wrapper {
        padding: 2rem 0;
    }

    .free-product-feature-tab__title {
        font-size: 1.75rem;
    }

    .recommended-product .recommended-container {
        gap: 2.5rem 1rem;
    }

    .description__section .details {
        grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
        gap: 5rem;
    }
}

@media only screen and (min-width: 1760px) {
    .free-product-feature-tab {
        gap: 2.5rem;
    }

    .free-product-feature-tab__title, .free-product-feature-tab__name {
        font-size: 2rem;
    }

    .free-product-feature-tab__text-wrapper {
        gap: 1.5rem;
    }

    .description__section .details {
        grid-template-columns: minmax(0, 7fr) minmax(0, 3fr);
    }

    .free-product-feature-tab {
        grid-template-columns: minmax(0, 1fr) minmax(0, 3fr);
    }
}

.mobile-sticky-prod-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    background: var(--white);
    padding: 0.75rem 0;
    box-shadow: 0 -1px 2px #0000000f;
}

.mobile-sticky-prod-nav__container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1rem;
    max-width: 400px;
}

.mobile-sticky-prod-nav .intersection-nav__product-price {
    color: var(--black);
}

.mobile-sticky-prod-nav .intersection-nav__product-add-to-basket {
    color: var(--white);
    background: var(--orange);
    margin-left: auto;
}

.mobile-sticky-prod-nav .intersection-nav__product-add-to-basket:hover {
    background: var(--orange-dark);
}

@media only screen and (min-width: 576px) {
    .mobile-sticky-prod-nav {
        display: none;
    }
}

.product__size-select {
    width: 100%;
    max-width: 320px;
}

.product__size-select,
.product__size-select:hover,
.product__size-select .nice-select-dropdown,
.product__size-select .nice-select-search {
    border: 1px solid var(--black);
}

.nice-select .css-disabled {
    background-color: transparent;
    color: #999;
}

@media only screen and (max-width: 500px) {
    .product__size-select {
        max-width: none;
    }
}

.productAvailableNowModal .modal__container {
    max-height: 80vh;
}

.productAvailableNowModal .modal__body {
    overflow-x: hidden;
}

.productAvailableNowModal__body-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.productAvailableNowModal__contact-info .footer__item-block {
    grid-column: initial;
    margin-bottom: unset;
}

.productAvailableNowModal__body-image {
    width: 100%;
    object-fit: cover;
    object-position: center;
}

@media only screen and (min-width: 500px) {
    .productAvailableNowModal__contact-info {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.25rem;
    }
}

.multipack {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.multipack__title {
    font-size: 1.125rem;
    font-weight: 600;
    line-height: 110%;
}

.multipack__list {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.5rem;
    padding: 1.25rem;
    border-radius: var(--border-radius);
    background: #F6F6F6;
}

.multipack__item-wrapper {
    align-self: end;
}

.multipack__item-info {
    margin-bottom: 0.5rem;
    margin-left: 0.75rem;
    font-size: 0.875rem;
    line-height: 100%;
    font-weight: 500;
    color: var(--orange);
}

.multipack__item-info--best-value {
    color: #52A430;
}

.multipack__item-wrapper:not(:first-of-type) .multipack__item-info {
    margin-top: 0.5rem;
}

.multipack__item {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 0.625rem;
    align-items: center;
    padding: 1.25rem 0.75rem;
    border-radius: var(--border-radius);
    border: 1px solid #EBEBEB;
    background: var(--white);
    transition: .3s ease-in-out all;
    cursor: pointer;
}

.multipack__item:hover {
    border-color: #a8a8a8;
}

.multipack__item:has(.multipack__radio:checked) {
    border-color: var(--orange);
}

.multipack__inner-item-wrapper {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.multipack__radio {
    accent-color: var(--orange);
}

.multipack__discount-price,
.multipack__count {
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 110%;
}

.multipack__regular-price,
.multipack__discount {
    font-size: 0.875rem;
    line-height: 110%;
    color: #5A5A5A;
}

.multipack__regular-price {
    font-weight: 400;
    text-decoration: line-through;
}

.multipack__regular-price,
.multipack__regular-price {
    text-align: right;
}

@media only screen and (min-width: 600px) and (max-width: 1023px) {
    .multipack__list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .multipack__item-wrapper:nth-of-type(2) .multipack__item-info,
    .multipack__item-wrapper:first-of-type .multipack__item-info {
        margin-top: unset;
    }
}

@media only screen and (min-width: 1520px) {
    .multipack__list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .multipack__item-wrapper:nth-of-type(2) .multipack__item-info,
    .multipack__item-wrapper:first-of-type .multipack__item-info {
        margin-top: unset;
    }
}

.product-gallery {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin: 0 -1rem;
}

.product-gallery__swiper {
    width: 100%;
}

.product-gallery__swiper .swiper-slide {
    max-height: 25rem;
    aspect-ratio: 1/1;
}

.product-gallery__img-wrapper {
    display: flex;
    height: 100%;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.product-gallery__img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transition: .3s ease-in-out transform;
}

.product-gallery__img-wrapper:hover .product-gallery__img {
    transform: scale(1.05);
}

.product-gallery__show-all-images-btn {
    margin: 0 auto;
    display: none;
}

.delivery-gallery-images {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.delivery-gallery-images img {
    width: 80px;
}

.product-gallery-delivery-title {
    font-weight: 400;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.gpsr-link {
    color: var(--black);
    transition: .3s ease-in-out color;
}

.gpsr-link:hover {
    color: var(--orange);
}

.product-gallery__buttons {
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: var(--z-index-product-gallery-buttons);
    display: flex;
    flex-direction: row-reverse;
    gap: 1rem;
}

@media only screen and (min-width: 768px) {
    .product-gallery {
        margin: unset;
    }

    .product-gallery__swiper {
        border-radius: 0.75rem;
    }

    .product-gallery__swiper .swiper-slide {
        max-height: 32rem;
    }
}

@media only screen and (min-width: 1024px) {
    .product-gallery__swiper .swiper-wrapper {
        all: unset;
        display: grid;
        gap: 0.25rem;
        height: fit-content;
    }

    .product-gallery__show-all-images-btn {
        display: flex;
    }


    .product-gallery[data-gallery-count="1"] .product-gallery__swiper .swiper-slide {
        aspect-ratio: unset;
    }

    .product-gallery[data-gallery-count="3"] .product-gallery__swiper .swiper-slide:nth-of-type(n+3),
    .product-gallery[data-gallery-count="4"] .product-gallery__swiper .swiper-slide:nth-of-type(n+3) {
        aspect-ratio: 4/3;
    }

    .product-gallery[data-gallery-count="5"] .product-gallery__swiper .swiper-slide:nth-of-type(n+3),
    .product-gallery[data-gallery-count="6"] .product-gallery__swiper .swiper-slide:nth-of-type(n+3),
    .product-gallery[data-gallery-overfull] .product-gallery__swiper .swiper-slide:nth-of-type(n+3) {
        aspect-ratio: 3/4;
    }

    .product-gallery[data-gallery-count="1"] .product-gallery__swiper .swiper-wrapper {
        grid-template-columns: minmax(0, 1fr);
    }

    .product-gallery[data-gallery-count="2"] .product-gallery__swiper .swiper-wrapper,
    .product-gallery[data-gallery-count="3"] .product-gallery__swiper .swiper-wrapper,
    .product-gallery[data-gallery-count="4"] .product-gallery__swiper .swiper-wrapper {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .product-gallery[data-gallery-count="5"] .product-gallery__swiper .swiper-wrapper,
    .product-gallery[data-gallery-count="6"] .product-gallery__swiper .swiper-wrapper,
    .product-gallery[data-gallery-overfull] .product-gallery__swiper .swiper-wrapper {
        grid-template-columns: repeat(12, minmax(0, 1fr));
    }

    .product-gallery[data-gallery-count="5"] .product-gallery__swiper .swiper-slide:nth-of-type(1),
    .product-gallery[data-gallery-count="6"] .product-gallery__swiper .swiper-slide:nth-of-type(1),
    .product-gallery[data-gallery-overfull] .product-gallery__swiper .swiper-slide:nth-of-type(1) {
        grid-column: 1/7;
    }

    .product-gallery[data-gallery-count="5"] .product-gallery__swiper .swiper-slide:nth-of-type(2),
    .product-gallery[data-gallery-count="6"] .product-gallery__swiper .swiper-slide:nth-of-type(2),
    .product-gallery[data-gallery-overfull] .product-gallery__swiper .swiper-slide:nth-of-type(2) {
        grid-column: 7/13;
    }

    .product-gallery[data-gallery-count="5"] .product-gallery__swiper .swiper-slide:nth-of-type(3),
    .product-gallery[data-gallery-overfull] .product-gallery__swiper .swiper-slide:nth-of-type(3n) {
        grid-column: 1/5;
    }

    .product-gallery[data-gallery-count="5"] .product-gallery__swiper .swiper-slide:nth-of-type(4),
    .product-gallery[data-gallery-overfull] .product-gallery__swiper .swiper-slide:nth-of-type(3n+4) {
        grid-column: 5/9;
    }

    .product-gallery[data-gallery-count="5"] .product-gallery__swiper .swiper-slide:nth-of-type(5),
    .product-gallery[data-gallery-overfull] .product-gallery__swiper .swiper-slide:nth-of-type(3n+5) {
        grid-column: 9/13;
    }

    .product-gallery[data-gallery-count="6"] .product-gallery__swiper .swiper-slide:nth-of-type(3) {
        grid-column: 1/4;
    }

    .product-gallery[data-gallery-count="6"] .product-gallery__swiper .swiper-slide:nth-of-type(4) {
        grid-column: 4/7;
    }

    .product-gallery[data-gallery-count="6"] .product-gallery__swiper .swiper-slide:nth-of-type(5) {
        grid-column: 7/10;
    }

    .product-gallery[data-gallery-count="6"] .product-gallery__swiper .swiper-slide:nth-of-type(6) {
        grid-column: 10/13;
    }

    .product-gallery[data-gallery-overfull]:not(.product-gallery--all-visible) .product-gallery__swiper .swiper-slide:nth-of-type(n+6) {
        display: none;
    }

    .product-gallery__buttons {
        top: 0;
        bottom: unset;
    }
}

.gpsr-link:hover {
    color: var(--orange);
}