.product-back-arrow {
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.product-back-arrow svg,
.product-back-arrow span {
    transition: var(--transition);
}

.product-back-arrow:hover svg,
.product-back-arrow:hover span {
    color: var(--red);
}

.product-stars {
    display: flex;
    align-items: center;
    gap: 4px;
}

.product-container {
    margin: 42px 0px 0px;
    display: grid;
    grid-template-columns: repeat(2, minmax(100px, 650px));
    gap: 50px;
}

/* --------------- Product gallery - START --------------- */

.product-image-container {
    padding: 88px 46px;
    width: 100%;
    height: 540px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gray);
}

.product-image-container--swiper {
    position: relative;
    padding-left: 56px;
    padding-right: 56px;
    align-items: stretch;
}

.product-main-swiper {
    position: initial;
    width: 100%;
    height: 100%;
    margin: 0 auto;
}

.product-main-swiper .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
    box-sizing: border-box;
}

.product-image-container--swiper .product-main-swiper .catalog-product-card__image-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 0;
    cursor: zoom-in;
}

.product-image-container--swiper .product-main-swiper .catalog-product-card__image,
.product-image-container--swiper .product-main-swiper img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* Общий блок: стрелки + буллеты (как .banner-list__pagination в banner.php) */
.product-main-swiper__pagination {
    display: none;
}

.product-main-swiper .js-product-main-swiper-next,
.product-main-swiper .js-product-main-swiper-prev,
.product-main-swiper__pagination .swiper-pagination {
    position: static;
}

.product-main-swiper__pagination .swiper-pagination {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: auto;
}

.product-main-swiper__pagination .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet,
.product-main-swiper__pagination .swiper-pagination-bullet {
    margin: 0;
}

.product-gallery-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-gallery-container .product__labels-list {
    margin: 0px;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.product-image-container:not(.product-image-container--swiper) img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-gallery-thumbs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    align-items: center;
    justify-content: flex-start;
    min-height: 0;
}

.product-gallery-thumbs:empty {
    display: none;
}

.product-gallery-thumbs.is-gallery-loading:empty {
    display: flex;
    min-height: 40px;
}

.product-gallery-thumbs.is-gallery-loading {
    opacity: 0.65;
    pointer-events: none;
}

.product-gallery-thumb {
    position: relative;
    height: 144px;
    display: block;
    padding: 0;
    margin: 0;
    border: 1px solid var(--gray);
    border-radius: 2px;
    background: transparent;
    cursor: pointer;
    overflow: hidden;
    transition: var(--transition);
}

.product-gallery-thumb__icon {
    position: absolute;
    right: 20px;
    bottom: 20px;
    z-index: 1;
}

.product-gallery-thumb::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.3;
    transition: var(--transition);
}

.product-gallery-thumb:hover::before {
    opacity: 0;
}

.product-gallery-thumb.is-active {
    border-color: var(--blue-dark);
}

.product-gallery-thumb.is-active::before {
    opacity: 0;
}

.product-gallery-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.product-gallery-thumb__more {
    display: none;
}

.product-container.is-loading {
    opacity: 0.7;
}

/* --------------- Product gallery - END --------------- */

/* --------------- Product Info - START ---------------   */

.product-info {
    position: sticky;
    top: 230px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.product-desc {
    margin: 14px 0px 0px;
}

.product-description-container {
    display: flex;
    justify-content: space-between;
    gap: 45px;
}

.product-description-actions__list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.anchor-tabs {
    width: fit-content;
    justify-content: flex-start;
}

.product-description-actions {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-description-actions__item {
    padding: 20px 0px 0px;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    align-items: flex-end;
    border-top: 1px solid var(--gray);
}

.product-description-actions__item:last-child {
    padding: 20px 0px;
    border-bottom: 1px solid var(--gray);
}

.product-description-actions__item .catalog-product-card__price-value ins,
.product-description-actions__item .catalog-product-card__price-value {
    font-weight: 500;
    font-size: 32px;
    line-height: 120%;
    letter-spacing: 0.5%;
}

.product-color-variations {
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-color-variation {
    width: 36px;
    height: 36px;
    padding: 7px;
    border: 1px solid var(--gray);
    border-radius: 50%;
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
}

.product-color-variation__swatch {
    display: block;
    width: 100%;
    height: 100%;
    border-radius: 50%;
}

.product-color-variation.active,
.product-color-variation:hover {
    border-color: var(--blue-dark);
}

.product-decription__buy-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.product-decription__buy-container-title {
    margin-right: auto;
}

.product-decription__quantity {
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-decription__qty-input {
    text-align: center;
}

.product-decription__buy-buttons {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* --------------- Product info - END --------------- */

/* --------------- Product tabs - START --------------- */

.product-tabs {
    scroll-margin-top: 100px;
}

.product-tabs__nav {
    padding: 0px 0px 25px;
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: center;
    gap: 14px;
    border-bottom: 1px solid var(--gray);
}

.product-tabs__tab {
    position: relative;
    z-index: 1;
    margin: 0;
    padding: 9px 24px;
    background-color: transparent;
    border-radius: 8px;
    color: var(--blue-dark);
    cursor: pointer;
    transition: var(--transition);
}

.product-tabs__tab:hover {
    background-color: var(--blue-dark);
    color: var(--white);
}

.product-tabs__tab.is-active {
    background-color: var(--blue-dark);
    color: var(--white);
}

.product-tabs__panels {
    margin: 40px 0px 0px;
}

.product-tabs__panel[hidden] {
    display: none;
}

/* Payment tab */
.product-tabs__panel-inner--payment {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.product-tabs__payment-item {
    display: grid;
    grid-template-columns: minmax(100px, 420px) 1fr;
    align-items: flex-start;
    gap: 70px;
}

.product-tabs__payment-item-title {
    display: flex;
    align-items: center;
    gap: 8px;
}

.product-tabs__payment-item-description p + * {
    margin: 14px 0px 0px;
}

.product-tabs__payment-item-description ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.product-tabs__payment-item-description ul li {
    position: relative;
    padding-left: 34px;
    color: var(--gray-dark);
}

.product-tabs__payment-item-description ul li + li {
    padding-top: 8px;
    border-top: 1px solid var(--gray);
}

.product-tabs__payment-item-description ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0px;
    width: 14px;
    height: 18px;
    background-image: url("data:image/svg+xml;utf8,<svg width='14' height='18' viewBox='0 0 14 18' xmlns='http://www.w3.org/2000/svg'><path d='M0.00364483 6.59184C0.00364483 2.9499 3.13825 0 7.00182 0C10.8654 0 14 2.9499 14 6.59184C14 10.7616 9.61885 15.7596 7.78912 17.6645C7.35902 18.1118 6.64098 18.1118 6.21088 17.6645C4.38115 15.7596 0 10.7616 0 6.59184H0.00364483ZM7.00182 8.94757C8.28847 8.94757 9.33455 7.94447 9.33455 6.71068C9.33455 5.47689 8.28847 4.47379 7.00182 4.47379C5.71518 4.47379 4.6691 5.47689 4.6691 6.71068C4.6691 7.94447 5.71518 8.94757 7.00182 8.94757Z' fill='url(%23paint0_linear)'/><defs><linearGradient id='paint0_linear' x1='8.47619' y1='6.75' x2='16.2712' y2='7.29422'><stop stop-color='%23EF233C'/><stop offset='1' stop-color='%23C01A3A'/></linearGradient></defs></svg>");
    background-repeat: no-repeat;
    background-size: contain;
}

.product-tabs__payment-item-description ul li + li::before {
    top: 8px;
}

/* Delivery tab */
.delivery-variants__desktop {
    display: grid;
    grid-template-columns: 270px 1fr;
    align-items: flex-start;
    gap: 48px;
}

.delivery-variants__sidebar {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.delivery-variants__nav {
    position: relative;
    display: flex;
    background-color: transparent;
    text-align: left;
}

.delivery-variants__nav+.delivery-variants__nav {
    padding: 14px 0px 0px;
    border-top: 1px solid var(--gray);
}

.delivery-variants__nav-title,
.delivery-variants__nav svg {
    transition: var(--transition);
}

.delivery-variants__nav-title {
    max-width: 238px;
    width: 100%;
}

.delivery-variants__nav svg {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray-dark);
}

.delivery-variants__nav:hover .delivery-variants__nav-title,
.delivery-variants__nav:hover svg,
.delivery-variants__nav.is-active .delivery-variants__nav-title,
.delivery-variants__nav.is-active svg {
    color: var(--red);
}

.delivery-variants__content {
    min-width: 0;
}

.delivery-variants__panel[hidden] {
    display: none;
}

.delivery-variants__panel-text > *:first-child {
    margin-top: 0;
}

.delivery-variants__panel-text > * + * {
    margin-top: 14px;
}

.delivery-variants__mobile {
    display: none;
}

.delivery-variants__acc + .delivery-variants__acc {
    padding-top: 14px;
    border-top: 1px solid var(--gray);
}

.delivery-variants__acc-head {
    transition: var(--transition);
}

.js-accordion.active .delivery-variants__acc-head,
.js-accordion.active .delivery-variants__acc-head svg {
    color: var(--red);
}

.delivery-variants__acc-head,
.delivery-variants__acc-inner {
    padding-right: 30px;
}

.delivery-variants__acc-text {
    padding: 14px 0 0;
}

.delivery-variants__acc-text > *:first-child {
    margin-top: 0;
}

/* Reviews tab */

.reviews-products-section .animation-section-header {
    justify-content: space-between;
}

.reviews-products-section .animated-title-line svg {
    max-width: 900px;
}

.product-reviews-tabs {
    margin: 40px 0px 0px;
}

.reviews-tabs-nav {
    display: flex;
    gap: 24px;
}

.reviews-tabs-content {
    margin: 24px 0px 0px;
}

.reviews-tab {
    padding-bottom: 6px;
    align-items: center;
    gap: 8px;
    background: none;
    border: none;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    color: var(--dark);
}

.reviews-tab.btn:hover,
.reviews-tab.btn.is-active {
    color: var(--red);
}

.reviews-tab .icon {
    display: flex;
}

.reviews-tab.btn.simple:after {
    height: 1px;
    background: var(--red-gradient);
}

.reviews-tab.btn.simple.is-active:after {
    width: 50%;
}

.reviews-tab-panel {
    display: none;
}

.reviews-tab-panel.is-active {
    display: block;
}

/* Reviews summary */

.reviews-list.is-active {
    display: grid;
    grid-template-columns: 430px 1fr;
    gap: 30px;
}

.product-reviews-summary {
    position: sticky;
    top: 220px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    border: 1px solid var(--gray);
    border-radius: 4px;
}

.rating-total {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.vm-average-stars {
    display: inline-block;
    line-height: 0;
}

.woocommerce .star-rating::before {
    color: var(--border-light-gray);
}

.woocommerce .star-rating span::before {
    background: var(--red-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

.rating-breakdown {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.rating-row {
    display: grid;
    grid-template-columns: 83px 1fr 24px;
    align-items: center;
    gap: 11px;
}

.rating-bar {
    width: 100%;
    height: 3px;
    background: var(--gray);
    overflow: hidden;
}

.rating-bar span {
    display: block;
    height: 100%;
    background: var(--red-gradient);
}

/* Reviews sorting */

.reviews-sorting-list {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.reviews-sorting-item {
    padding: 9px 24px;
    color: var(--blue-dark);
    border-radius: 4px;
    background-color: var(--white);
    transition: var(--transition);
}

.reviews-sorting-item.active,
.reviews-sorting-item:hover {
    background-color: var(--gray);
}

/* Reviews list */

.product-reviews-list {
    margin: 24px 0px 0px;
    max-height: 1328px;
    overflow-x: hidden;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.review-item {
    padding: 0px 0px 24px;
    border-bottom: 1px solid var(--gray);
}

.review-header {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: space-between;
}

.review-rating {
    display: flex;
    align-items: center;
    gap: 12px;
}

.woocommerce .star-rating {
    transform: scaleX(1.05);
}

.review-text {
    margin: 24px 0px 0px;
}

/* Empty list */

.reviews-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    border: 1px solid var(--border-gray);
    border-radius: 12px;
}

.reviews-empty-icon {
    color: var(--border-gray);
    margin-bottom: 16px;
}

.reviews-empty-title {
    margin: 0 0 8px;
}

.reviews-empty-text {
    margin: 0 0 24px;
    max-width: 320px;
}

.reviews-empty-btn {
    cursor: pointer;
    color: var(--dark);
}

/* Leave review form */

.review-form-container {
    display: grid;
    grid-template-columns: minmax(360px, 430px) 1fr;
    gap: 50px;
}

.review-form-header {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.comment-form {
    margin: 24px 0px 0px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.woocommerce #review_form #respond p.comment-notes {
    margin: 12px 0px 0px;
}

.woocommerce #review_form #respond p.stars {
    margin: 4px 0px 0px;
    width: fit-content;
}

.stars span {
    display: flex;
}

.woocommerce p.stars a::before {
    color: var(--border-gray);
    transition: var(--transition);
}

.woocommerce p.stars.selected a:not(.active)::before,
.woocommerce p.stars:hover a::before,
.woocommerce p.stars a:hover::before,
.woocommerce p.stars.selected a.active::before {
    background: linear-gradient(2.37deg, #ffe998 35.64%, #d1ad7f 171.52%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;

}

/* Форма отзыва: те же SVG 20×19, что у vm_render_average_stars; поведение как в WooCommerce (hover / selected). */
.woocommerce .vm-comment-form-rating p.stars {
    --vm-star-empty: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 19'%3E%3Cpath fill='%23F0F2F4' d='M10 15.27L16.18 19L14.54 11.97L20 7.24L12.81 6.63L10 0L7.19 6.63L0 7.24L5.46 11.97L3.82 19L10 15.27Z'/%3E%3C/svg%3E");
    --vm-star-filled: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 19'%3E%3Cpath fill='%23EF233C' d='M10 15.27L16.18 19L14.54 11.97L20 7.24L12.81 6.63L10 0L7.19 6.63L0 7.24L5.46 11.97L3.82 19L10 15.27Z'/%3E%3C/svg%3E");
}

.woocommerce .vm-comment-form-rating p.stars > span {
    display: flex;
    align-items: center;
    gap: 4px;
}

.woocommerce .vm-comment-form-rating p.stars a {
    position: relative;
    display: inline-block;
    width: 20px;
    height: 19px;
    text-indent: -999em;
    text-decoration: none;
    font-size: 0;
    line-height: 0;
}

.woocommerce .vm-comment-form-rating p.stars a::before {
    content: '' !important;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 19px;
    display: block;
    text-indent: 0;
    line-height: 0;
    background: var(--vm-star-empty) center / contain no-repeat;
    -webkit-text-fill-color: unset;
    -webkit-background-clip: unset;
    background-clip: border-box;
    color: inherit;
    transition: var(--transition);
}

.woocommerce .vm-comment-form-rating p.stars:hover a::before {
    background: var(--vm-star-filled) center / contain no-repeat;
    -webkit-text-fill-color: unset;
    -webkit-background-clip: unset;
    background-clip: border-box;
}

.woocommerce .vm-comment-form-rating p.stars a:hover ~ a::before {
    background: var(--vm-star-empty) center / contain no-repeat;
}

.woocommerce .vm-comment-form-rating p.stars.selected a.active::before {
    background: var(--vm-star-filled) center / contain no-repeat;
    -webkit-text-fill-color: unset;
    -webkit-background-clip: unset;
}

.woocommerce .vm-comment-form-rating p.stars.selected a.active ~ a::before {
    background: var(--vm-star-empty) center / contain no-repeat;
}

.woocommerce .vm-comment-form-rating p.stars.selected a:not(.active)::before {
    background: var(--vm-star-filled) center / contain no-repeat;
    -webkit-text-fill-color: unset;
    -webkit-background-clip: unset;
}

.comment-form .w50 {
    width: calc(50% - 5px);
}

.woocommerce #review_form #respond p {
    margin: 0px;
}
.woocommerce #review_form #respond p.comment-form-comment>label {
    top: 27px;
}

.woocommerce #review_form #respond p textarea {
    height: 120px;
    padding-top: 14px;
    padding-bottom: 14px;
}

.comment-notes {
    order: 0;
}

.comment-form-rating {
    order: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.comment-form-rating .field-error {
    margin: 8px 0px 0px;
    color: var(--red);
}

.comment-form-author {
    order: 2;
}

.comment-form-email {
    order: 3;
}

.comment-form-comment {
    order: 4;
}

.review-form-submit-container {
    width: 100%;
    order: 5;
    display: flex;
    justify-content: center;
}

/* --------------- Product tabs - END --------------- */

/* --------------- Product related - START --------------- */

.related-products-list {
    margin: 40px 0px 0px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* --------------- Product related - END --------------- */

@media (max-width: 1023px) {
    .product-container {
        margin: 30px 0px 0px;
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
    /* --------------- Product gallery - START --------------- */
    .product-gallery-container {
        gap: 16px;
    }
    .product-image-container {
        padding: 77px 66px;
    }
    .product-gallery-thumbs {
        grid-template-columns: repeat(5, 1fr);
    }

    .product-gallery-thumbs .product-gallery-thumb:nth-child(n + 6) {
        display: none;
    }

    .product-gallery-thumb--has-more .product-gallery-thumb__more {
        display: flex;
        align-items: center;
        justify-content: center;
        position: absolute;
        inset: 0;
        z-index: 2;
        color: var(--white);
        background: rgba(0, 0, 0, 0.5);
        pointer-events: none;
    }

    .product-gallery-thumb {
        height: 127px;
    }
    .product-gallery-thumb__icon {
        display: none;
    }
    .product-gallery-thumb::before {
        display: none;
    }
    .product-main-swiper__pagination {
        position: absolute;
        right: 20px;
        bottom: 20px;
        z-index: 2;
        padding: 10px;
        display: flex !important;
        align-items: center;
        gap: 14px;
        border-radius: 2px;
        background-color: var(--white);
    }

    .product-main-swiper__pagination .swiper-pagination {
        flex-direction: row;
        gap: 8px;
    }
    /* --------------- Product gallery - END --------------- */

    /* --------------- Product tabs - START --------------- */
    .product-tabs__panels {
        margin: 30px 0px 0px;
    }

    /* Payment tab */ 
    .product-tabs__payment-item {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    .product-tabs__payment-item-description {
        padding-left: 48px;
    }
    /* Reviews tab */
    .reviews-tabs-nav {
        gap: 20px;
        flex-wrap: wrap;
    }
    .reviews-list.is-active {
        grid-template-columns: 270px 1fr;
        gap: 24px;
    }
    .product-reviews-summary {
        padding: 40px 20px;
    }
    .rating-row {
        gap: 5px;
    }
    .product-reviews-sorting-container {
        overflow: hidden;
    }
    .reviews-sorting-list {
        gap: 8px;
    }
    .reviews-sorting-item {
        padding: 6px 14px;
    }
    .reviews-sorting-list {
        margin-right: -24px;
        overflow: auto;
        flex-wrap: nowrap;
    }
    .reviews-sorting-item {
        min-width: fit-content;
    }
    .review-form-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    /* --------------- Product tabs - END --------------- */

    /* --------------- Product related - START --------------- */

    .related-products-list {
        margin: 30px calc((100% - 100vw) / 2) 0px;
        padding: 0px 24px;
        overflow-x: auto;
        overflow-y: hidden;
        gap: 20px;
    }

    .related-products-list .catalog-product-card {
        width: 287px;
    }


    /* --------------- Product related - END --------------- */
}
@media (max-width: 767px) {
    .product-container {
        margin: 24px 0px 0px;
        gap: 22px;
    }
    /* --------------- Product gallery - START --------------- */
    .product-image-container {
        padding: 38px 32px;
        height: 262px;
    }
    .product-gallery-container {
        gap: 14px;
    }
    .product-gallery-container .product__labels-list {
        top: 14px;
        left: 14px;
        right: auto;
    }
    .product-main-swiper__pagination {
        bottom: 14px;
        right: 14px;
        padding: 0px;
        gap: 4px;
        background-color: transparent;
    }
    .product-main-swiper__pagination .swiper-pagination {
        display: none;
    }
    /* --------------- Product gallery - END --------------- */

    /* --------------- Product info - START --------------- */
    .product-info {
        gap: 14px;
    }
    .product-back-arrow {
        display: none;
    }
    .product-description-container {
        gap: 10px;
    }
    .product-description-actions__item {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 10px;
    }
    .product-description-actions__item .catalog-product-card__price-value ins, 
    .product-description-actions__item .catalog-product-card__price-value {
        font-size: 24px;
    }
    .product-decription__quantity {
        gap: 2px;
    }
    .product-decription__buy-container {
        flex-wrap: wrap;
        gap: 8px;
    }
    .product-decription__buy-buttons {
        gap: 6px;
    }
    /* --------------- Product info - END --------------- */

    /* --------------- Product tabs - START --------------- */
    .product-tabs__panels {
        margin: 24px 0px 0px;
    }
    .product-tabs__nav {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    /* Payment tab */ 
    .product-tabs__payment-item {
        gap: 20px;
    }
    .product-tabs__payment-item-description {
        padding-left: 0px;
    }
    /* Delivery tab */
    .delivery-variants__desktop {
        display: none !important;
    }

    .delivery-variants__mobile {
        display: flex;
        flex-direction: column;
        gap: 14px;
    }
    /* Reviews tab */
    .reviews-tabs-content {
        margin: 14px 0px 0px;
    }
    .reviews-list.is-active {
        grid-template-columns: 1fr;
    }
    .product-reviews-summary {
        padding: 23px;
    }
    .product-reviews-list {
        margin: 18px 0px 0px;
    }
    .review-header-person {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }
    .review-form-container {
        gap: 24px;
    }
    /* --------------- Product tabs - END --------------- */


    /* --------------- Product related - START --------------- */

    .related-products-list {
        margin: 24px calc((100% - 100vw) / 2) 0px;
        padding: 0px 18px;
        overflow-x: auto;
        overflow-y: hidden;
        gap: 14px;
    }

    /* --------------- Product related - END --------------- */
}

@media (max-width: 550px) {
    /* --------------- Product gallery - START --------------- */
    .product-gallery-thumb {
        height: 57px;
    }
    /* --------------- Product gallery - END --------------- */
}