

/* Start:/local/templates/sinagear/components/bitrix/catalog.element/my_product/style.css?177608278749138*/
/* ============================================
   НОВАЯ КАРТОЧКА ТОВАРА - АДАПТИВНЫЙ ДИЗАЙН
   Mobile-first подход, двухколоночный grid на десктопе
   ============================================ */

/* Скрытие product-intro */
.product-intro {
    display: none;
}

/* Отступ для page__content в каталоге */
.page__content {
    margin-top: 80px;
}

/* Базовая типографика */
body,
.product-card-new,
.product-section-new,
.product-footer-cta {
    font-family: "PitagonSansMono", -apple-system, BlinkMacSystemFont, "Segoe UI", system-ui, sans-serif;
}

/* Контейнеры */
.product-card-new {
    width: 100%;
    overflow-x: hidden;
    box-sizing: border-box;
    max-width: 100vw;
}

.product-card-new__container {
    width: 100%;
    padding: 0 20px;
    box-sizing: border-box;
    overflow-x: hidden;
    max-width: 100%;
}

@media (min-width: 1024px) {
    .product-card-new__container {
        width: 90%;
        margin: 0px 5%;
        padding: 0 2%;
    }
}

/* Header - фиксированный на скролле */
.product-card-new__header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #fff;
    padding: 10px 0px 0px 10px;
    margin-bottom: 30px;
}

.product-card-new__breadcrumbs {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    margin-left: min(374 / var(--vw-screen) * 100 * 1vw, 374px);
}

@media (max-width: 767px) {
    .product-card-new__breadcrumbs {
        margin-left: 0;
    }
}

@media (min-width: 1400px) and (max-width: 1480px) {
    .product-card-new__breadcrumbs {
        margin-left: min(184 / var(--vw-screen) * 100 * 1vw, 184px);
    }
    .product-card-new__left {
        top: 10px;
    }
}

.product-card-new__breadcrumb-item {
    color: #666;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
}

.product-card-new__breadcrumb-item:hover {
    color: #000;
}

.product-card-new__breadcrumb-item--current {
    color: #000;
    font-weight: 500;
}

.product-card-new__breadcrumb-separator {
    color: #999;
}

.product-card-new__breadcrumb-icon {
    width: 16px;
    height: 16px;
}

.product-card-new__header-content {
    max-width: 1200px;
}

.product-card-new__article {
    font-size: 14px;
    color: #666;
    margin-bottom: 10px;
}

.product-card-new__title {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0 0 10px 0;
    color: #000;
}

@media (min-width: 768px) {
    .product-card-new__title {
        font-size: 36px;
    }
}

.product-card-new__subtitle {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
    margin: 0 0 15px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.product-card-new__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.product-card-new__tag {
    display: inline-block;
    padding: 4px 12px;
    background: #f5f5f5;
    border-radius: 20px;
    font-size: 14px;
    color: #333;
    text-decoration: none;
    transition: background 0.2s;
}

.product-card-new__tag:hover {
    background: #e0e0e0;
}

.product-card-new__rating-badges {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 20px;
}

.product-card-new__rating {
    display: flex;
    align-items: center;
    gap: 10px;
}

.product-card-new__rating-stars {
    display: flex;
    gap: 4px;
}

.product-card-new__rating-star {
    width: 20px;
    height: 20px;
    color: #ddd;
}

.product-card-new__rating-star--active {
    color: #ffc107;
}

.product-card-new__rating-text {
    font-size: 14px;
    color: #666;
}

.product-card-new__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.product-card-new__badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
}

.product-card-new__badge--green {
    background: #e8f5e9;
    color: #2e7d32;
}

/* Основной layout - двухколоночный grid */
.product-card-new__main {
    margin-bottom: 30px;
}

.product-card-new__layout {
    display: grid;
    grid-template-columns: 1fr;
}

@media (max-width: 1023px) {
    .product-card-new__layout {
        display: block;
    }
}

@media (min-width: 1024px) {
    .product-card-new__layout {
        grid-template-columns: 50% 50%;
        margin-top: 100px;
    }
}

.product-card-new__left {
    position: relative;
}

@media (min-width: 1024px) {
    .product-card-new__left {
        position: sticky;
        top: 60px;
        align-self: start;
    }
}

.product-card-new__right {
    padding: 0;
}

@media (min-width: 1024px) {
    .product-card-new__right {
        padding-left: 30px;
    }
}

/* ============================================
   ГАЛЕРЕЯ
   ============================================ */

.product-gallery-new {
    width: 100%;
}

.product-gallery-new__toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    padding: 6px;
    background: #f5f5f5;
    border-radius: 2px;
    position: relative;
}

.product-gallery-new__toggle-btn {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 10px 16px;
    background: transparent;
    border: none;
    border-radius: 2px;
    color: #666;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
    z-index: 1;
}

.product-gallery-new__toggle-btn:hover {
    color: #ffffff;
    background: #f63b24;
}

.product-gallery-new__toggle-btn--active {
    color: #ffffff;
    background: #2e2e2e;
    box-shadow: 0px 0px 4px 0px rgb(0 0 0);
}

@media (max-width: 767px) {
    .product-gallery-new__toggle-btn {
        gap: 0px;
    }
}

.product-gallery-new__toggle-label {
    white-space: nowrap;
}

.product-gallery-new__toggle-count {
    font-size: 12px;
    color: #999;
    font-weight: 400;
}

.product-gallery-new__main {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
    box-sizing: border-box;
    overflow: visible;
}

.product-gallery-new {
    overflow: visible;
    width: 100%;
}

.product-gallery-new__main-slider {
    width: 100%;
    max-width: 100%;
}

.product-gallery-new__main-slider .swiper-wrapper {
    display: flex;
}

.product-gallery-new__main-slider .swiper-slide {
    flex-shrink: 0;
}

.product-gallery-new__slide {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 2px;
    max-width: 100%;
    box-sizing: border-box;
    flex-shrink: 0;
    position: relative;
}

@media (max-width: 767px) {
    .product-gallery-new__main-slider .swiper-slide {
        width: 100%;
        min-width: 100%;
    }

    .product-gallery-new__slide {
        width: 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
    }
}

/* Принудительно ограничиваем размеры изображений внутри слайдов */
.product-gallery-new__slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: cover;
    display: block;
}

.product-gallery-new__image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.product-gallery-new__video-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.product-gallery-new__video {
    width: 100%;
    /*height: 100%;
    object-fit: cover;*/
    display: block;
}

.product-gallery-new__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
    cursor: pointer;
}

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

.product-gallery-new__image:hover {
    opacity: 0.9;
}

.product-gallery-new__zoom-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
    z-index: 12;
}

.product-gallery-new__zoom-btn:hover {
    background: #fff;
}

.product-gallery-new__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    padding: 0 10px;
    z-index: 10;
}

.product-gallery-new__nav-btn {
    width: 30px;
    height: 30px;
    background: rgba(255,255,255,0.9);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: all;
    transition: background 0.2s;
    z-index: 11;
    position: relative;
}

.product-gallery-new__nav-btn:hover {
    background: #fff;
}

.product-gallery-new__thumbs {
    margin-bottom: 20px;
}

.product-gallery-new__thumbs-slider {
    width: 100%;
    max-width: 100%;
    overflow: visible;
}

.product-gallery-new__thumbs-slider .swiper-wrapper {
    display: flex;
}

.product-gallery-new__thumb-slide {
    width: auto;
    flex-shrink: 0;
}


.product-gallery-new__thumb {
    width: 60px;
    height: 60px;
    padding: 0;
    border: 2px solid transparent;
    border-radius: 2px;
    overflow: hidden;
    background: none;
    cursor: pointer;
    transition: border-color 0.2s;
    flex-shrink: 0;
}

@media (min-width: 768px) {
    .product-gallery-new__thumb {
        width: 80px;
        height: 80px;
    }
}

@media (min-width: 1024px) {
    .product-gallery-new__thumb {
        width: 100px;
        height: 100px;
    }
}

@media (min-width: 1440px) {
    .product-gallery-new__thumb {
        width: 120px;
        height: 120px;
    }
}

.product-gallery-new__thumb:hover {
    border-color: #ddd;
}

.product-gallery-new__thumb--active {
    border-color: #000;
}

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

.product-gallery-new__actions {
    display: none; /* Временно скрыто */
}

.product-gallery-new__share {
    position: relative;
}

.product-gallery-new__share-btn,
.product-gallery-new__compare-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: #f5f5f5;
    border: none;
    border-radius: 2px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s;
}

.product-gallery-new__share-btn:hover,
.product-gallery-new__compare-btn:hover {
    background: #e0e0e0;
}

.product-gallery-new__share-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    margin-top: 10px;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 2px;
    padding: 10px;
    display: none;
    flex-direction: column;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.product-gallery-new__share-dropdown--visible {
    display: flex;
}

.product-gallery-new__share-link {
    padding: 8px 12px;
    text-decoration: none;
    color: #333;
    border-radius: 4px;
    transition: background 0.2s;
}

.product-gallery-new__share-link:hover {
    background: #f5f5f5;
}

.product-gallery-new__video {
    margin-top: 30px;
}

.product-gallery-new__video-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 */
    border-radius: 2px;
    overflow: hidden;
}

.product-gallery-new__video-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Lightbox для увеличения фото */
.product-gallery-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.product-gallery-lightbox--open {
    display: flex;
}

.product-gallery-lightbox__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    cursor: pointer;
}

.product-gallery-lightbox__content {
    position: relative;
    width: 90vw;
    height: 90vh;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: auto;
    padding: 20px;
    box-sizing: border-box;
    cursor: pointer;
    /* Скрытие scrollbar */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE и Edge */
}

.product-gallery-lightbox__content::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.product-gallery-lightbox__image {
    max-width: calc(90vw - 40px);
    max-height: calc(90vh - 40px);
    width: auto;
    height: auto;
    display: block;
    object-fit: contain;
    cursor: move;
    user-select: none;
    pointer-events: auto;
    transition: transform 0.2s ease-out;
    will-change: transform;
    z-index: 10000;
}

.product-gallery-lightbox__image.draggable {
    cursor: grab;
}

.product-gallery-lightbox__image.dragging {
    cursor: grabbing;
}

.product-gallery-lightbox__close {
    position: fixed;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    color: #000;
    width: 44px;
    height: 44px;
    border-radius: 2px;
    cursor: pointer;
    z-index: 12001;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.product-gallery-lightbox__close:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.product-gallery-lightbox__close:active {
    transform: scale(0.95);
}

.product-gallery-lightbox__close svg {
    width: 20px;
    height: 20px;
}

/* Контролы zoom */
.product-gallery-lightbox__controls {
    position: fixed;
    bottom: 0;
    transform: translateY(-50%);
    z-index: 2001;
    display: flex;
    align-items: center;
    gap: 16px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 16px;
    border-radius: 2px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    pointer-events: auto;
    transition: opacity 0.2s ease;
}

@media (max-width: 767px) {
    .product-gallery-lightbox__controls {
        padding: 14px 10px;
        gap: 10px;
        border-radius: 2px;
        background: rgba(255, 255, 255, 0.98);
    }
}

.product-gallery-lightbox__zoom-out,
.product-gallery-lightbox__zoom-in {
    width: 40px;
    height: 40px;
    border: none;
    background: #c60f0f;
    border-radius: 2px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    color: #ffffff;
}

@media (max-width: 767px) {
    .product-gallery-lightbox__zoom-out,
    .product-gallery-lightbox__zoom-in {
        width: 36px;
        height: 36px;
        border-radius: 2px;
    }
}

.product-gallery-lightbox__zoom-out:hover:not(:disabled),
.product-gallery-lightbox__zoom-in:hover:not(:disabled) {
    background: #b00e0e;
    transform: scale(1.1);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.product-gallery-lightbox__zoom-out:active:not(:disabled),
.product-gallery-lightbox__zoom-in:active:not(:disabled) {
    transform: scale(0.95);
}

.product-gallery-lightbox__zoom-out:disabled,
.product-gallery-lightbox__zoom-in:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.product-gallery-lightbox__zoom-out svg,
.product-gallery-lightbox__zoom-in svg {
    width: 18px;
    height: 18px;
}

@media (max-width: 767px) {
    .product-gallery-lightbox__zoom-out svg,
    .product-gallery-lightbox__zoom-in svg {
        width: 16px;
        height: 16px;
    }
}

.product-gallery-lightbox__zoom-slider-wrapper {
    position: relative;
    width: 200px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 767px) {
    .product-gallery-lightbox__zoom-slider-wrapper {
        width: 150px;
        height: 36px;
    }
}

.product-gallery-lightbox__zoom-slider {
    width: 200px;
    height: 4px;
    background: #e0e0e0;
    border-radius: 2px;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    cursor: pointer;
    transform-origin: center;
    position: absolute;
}

@media (max-width: 767px) {
    .product-gallery-lightbox__zoom-slider {
        width: 150px;
        height: 3px;
    }
}

.product-gallery-lightbox__zoom-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 16px;
    height: 16px;
    background: #000;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

@media (max-width: 767px) {
    .product-gallery-lightbox__zoom-slider::-webkit-slider-thumb {
        width: 14px;
        height: 14px;
    }
}

.product-gallery-lightbox__zoom-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
}

.product-gallery-lightbox__zoom-slider::-moz-range-thumb {
    width: 16px;
    height: 16px;
    background: #000;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

@media (max-width: 767px) {
    .product-gallery-lightbox__zoom-slider::-moz-range-thumb {
        width: 14px;
        height: 14px;
    }
}

.product-gallery-lightbox__zoom-slider::-moz-range-thumb:hover {
    transform: scale(1.2);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.3);
}

.product-gallery-lightbox__zoom-slider::-ms-thumb {
    width: 16px;
    height: 16px;
    background: #000;
    border-radius: 50%;
    border: none;
    cursor: pointer;
}

@media (max-width: 767px) {
    .product-gallery-lightbox__zoom-slider::-ms-thumb {
        width: 14px;
        height: 14px;
    }
}

/* ============================================
   ИНФОРМАЦИЯ О ТОВАРЕ (правая колонка)
   ============================================ */

.product-info-new {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.product-info-new__header {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 10px;
    overflow-x: hidden;
    word-wrap: break-word;
}

.product-info-new__article {
    font-size: 14px;
    color: #666;
}

.product-info-new__title {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
}

@media (min-width: 1400px) and (max-width: 1480px) {
    .product-info-new__title {
        font-size: 24px;
    }
}

.product-info-new__subtitle {
    font-size: 15px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.product-info-new__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.product-info-new__tag {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 20px;
    background: #f5f5f5;
    font-size: 13px;
    color: #333;
    text-decoration: none;
}

.product-info-new__rating-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
}

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

.product-info-new__rating-stars {
    display: flex;
    gap: 3px;
    color: #ddd;
}

.product-info-new__rating-star--active {
    color: #ffc107;
}

.product-info-new__rating-text {
    font-size: 13px;
    color: #666;
}

.product-info-new__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.product-info-new__badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.product-info-new__badge--green {
    background: #e8f5e9;
    color: #2e7d32;
}

.product-info-new__badge--grey {
    background: #a7a7a7;
    color: #000000;
}

.product-info-new__price-block {
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.product-info-new__price {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin-bottom: 15px;
}

.product-info-new__price-old {
    font-size: 24px;
    color: #999;
    text-decoration: line-through;
}

.product-info-new__price-current {
    font-size: 40px;
    font-weight: 800;
    color: #252525;
}

/* Подарочная карта — произвольная цена */
.product-info-new__gift-card-price {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.product-info-new__gift-card-label {
    font-size: 15px;
    font-weight: 500;
    color: #252525;
}

.product-info-new__gift-card-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.product-info-new__gift-card-btn {
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 600;
    color: #252525;
    background: #f5f5f5;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
}

.product-info-new__gift-card-btn:hover {
    background: #eee;
    border-color: #000;
}

.product-info-new__gift-card-btn:focus {
    outline: none;
}

.product-info-new__gift-card-btn--active {
    background: #000;
    color: #fff;
    border-color: #000;
}

.product-info-new__gift-card-input-wrap {
    display: flex;
    align-items: center;
    gap: 8px;
    max-width: 280px;
}

.product-info-new__gift-card-input {
    flex: 1;
    min-width: 0;
    padding: 14px 18px;
    font-size: 18px;
    font-weight: 500;
    border: 2px solid #ddd;
    border-radius: 4px;
    color: #252525;
}

.product-info-new__gift-card-input::placeholder {
    color: #999;
}

.product-info-new__gift-card-input:focus {
    outline: none;
    border-color: #000;
}

.product-info-new__gift-card-suffix {
    font-size: 18px;
    font-weight: 600;
    color: #666;
}

.product-info-new__gift-card-display {
    font-size: 32px;
    font-weight: 700;
    color: #252525;
}

.product-info-new__stock {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.product-info-new__stock-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    width: fit-content;
}

.product-info-new__stock-badge--green {
    background: #e8f5e9;
    color: #2e7d32;
}

.product-info-new__stock-badge--red {
    background: #ffebee;
    color: #c62828;
}

.product-info-new__stock-progress {
    width: 200px;
    height: 8px;
    background: #f0f0f0;
    border-radius: 4px;
    overflow: hidden;
}

.product-info-new__stock-progress-bar {
    height: 100%;
    background: #ff9800;
    transition: width 0.3s;
}

.product-info-new__stock-warning {
    font-size: 13px;
    color: #ff9800;
    font-weight: 500;
}

.product-info-new__variants {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.product-info-new__variants--size-row {
    gap: 0;
}

.product-info-new__variant-label--inline-end {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px 16px;
    width: 100%;
    margin-bottom: 10px;
}

.product-info-new__variant-label-text {
    flex: 0 1 auto;
    min-width: 0;
    text-align: left;
}

.product-info-new__variant-label--inline-end .product-info-new__size-guide-link {
    flex-shrink: 0;
    margin-left: auto;
}

.product-info-new__size-guide-link {
    margin: 0;
    padding: 0;
    border: none;
    background: none;
    font: inherit;
    font-size: 16px;
    font-weight: 500;
    color: inherit;
    cursor: pointer;
    text-align: right;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.product-info-new__size-guide-link:hover {
    opacity: 0.75;
}

/* Контейнер только для вставки попапа; сам .popup переносится в body скриптом size.guide */
.product-info-new__size-guide--popup-only {
    display: none;
}

@media (max-width: 767px) {
    .product-info-new__variant-label--inline-end {
        align-items: flex-start;
    }

    .product-info-new__variant-label--inline-end .product-info-new__size-guide-link {
        margin-left: 0;
        text-align: left;
    }

    .product-info-new__size-chips {
        justify-content: flex-start;
    }
}

.product-info-new__variant-label {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 10px;
}

/* Камуфляж и Слой */
.product-info-new__features-row {
    display: flex;
    flex-wrap: wrap;
}

.product-info-new__camouflage,
.product-info-new__layer {
    flex: 0 0 30%;
    min-width: 0;
}

.product-info-new__camouflage-link,
.product-info-new__layer-link {
    text-decoration: none;
    color: inherit;
    display: block;
    width: 100%;
    transition: opacity 0.2s;
}

.product-info-new__camouflage-link:hover,
.product-info-new__layer-link:hover {
    opacity: 0.8;
}

.product-info-new__camouflage-wrapper,
.product-info-new__layer-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px;
    background: #f5f5f5;
    border-radius: 3px;
    transition: background 0.2s;
    margin: 10px 0;
    width: 84%;
}

@media (max-width: 767px) {
    .product-info-new__camouflage-wrapper,
    .product-info-new__layer-wrapper {
        width: 100%;
        gap: 8px;
    }
    .product-info-new__features-row {
        gap: 4%;
    }
    .product-info-new__camouflage,
    .product-info-new__layer {
        flex: 0 0 48%;
    }
}

.product-info-new__camouflage-wrapper,
.product-info-new__layer-wrapper {
    cursor: pointer;
}

.product-info-new__camouflage-link:hover .product-info-new__camouflage-wrapper,
.product-info-new__layer-link:hover .product-info-new__layer-wrapper {
    background: #e0e0e0;
}

.product-info-new__camouflage-image,
.product-info-new__layer-image {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #e0e0e0;
}

.product-info-new__camouflage-image img,
.product-info-new__layer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.product-info-new__camouflage-name,
.product-info-new__layer-name {
    font-size: 14px;
    font-weight: 500;
    color: #252525;
}

.product-info-new__variant-required {
    color: #f44336;
}

.product-info-new__color-swatches {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.product-info-new__color-swatch {
    width: 48px;
    height: 48px;
    border: 2px solid transparent;
    border-radius: 50%;
    padding: 0;
    cursor: pointer;
    position: relative;
    transition: all 0.2s;
}

.product-info-new__color-swatch:hover {
    transform: scale(1.1);
}

.product-info-new__color-swatch--active {
    border-color: #000;
}

.product-info-new__color-swatch-check {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    display: none;
}

.product-info-new__color-swatch--active .product-info-new__color-swatch-check {
    display: block;
}

.product-info-new__size-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.product-info-new__size-chip {
    padding: 10px 20px;
    background: #f5f5f5;
    border: 2px solid transparent;
    border-radius: 2px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    transition: all 0.2s;
}

.product-info-new__size-chip:hover:not(:disabled) {
    background: #e0e0e0;
}

.product-info-new__size-chip--active {
    background: #000;
    color: #fff;
    border-color: #000;
}

.product-info-new__size-chip--disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.product-info-new__cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
}

.product-info-new__call {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    border: none;
    border-radius: 2px;
    font-size: 16px;
    font-weight: 600;
    background: #000;
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
    flex: 0 0 auto;
}

.product-info-new__call svg {
    display: block;
    width: min(20 / var(--vw-screen) * 100 * 1vw, 20px);
    height: min(20 / var(--vw-screen) * 100 * 1vw, 20px);
    flex-shrink: 0;
}

.product-info-new__call:hover {
    background: #000;
    color: #fff;
}

.product-info-new__call:focus-visible {
    outline: 2px solid #000;
    outline-offset: 2px;
}

@media (max-width: 767px) {
    .product-info-new__call {
        flex: 1 1 100%;
        text-align: center;
    }
}

.product-info-new__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 24px;
    border: none;
    border-radius: 2px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    flex: 0 0 auto;
}

.product-info-new__btn svg {
    display: block;
    width: min(20 / var(--vw-screen) * 100 * 1vw, 20px);
    height: min(20 / var(--vw-screen) * 100 * 1vw, 20px);
    flex-shrink: 0;
}

.product-info-new__btn--primary {
    background: #f63b24;
    color: #fff;
}

.product-info-new__btn--primary:hover:not(:disabled) {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.product-info-new__btn--primary:disabled,
.product-info-new__btn--disabled {
    background: #ccc;
    color: #999;
    cursor: not-allowed;
    opacity: 0.6;
}

.product-info-new__btn--primary:disabled:hover,
.product-info-new__btn--disabled:hover {
    background: #ccc;
    transform: none;
    box-shadow: none;
}

.product-info-new__btn--secondary {
    background: #f5f5f5;
    color: #000;
}

.product-info-new__btn--secondary:hover {
    background: #e0e0e0;
}

.product-info-new__quantity {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #ddd;
    border-radius: 2px;
    padding: 8px;
    width: fit-content;
}

.product-info-new__quantity-btn {
    width: 32px;
    height: 32px;
    background: #f5f5f5;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    cursor: pointer;
    transition: background 0.2s;
    text-align: center;
}

.product-info-new__quantity-btn:hover {
    background: #e0e0e0;
}

.product-info-new__quantity-input {
    width: 60px;
    text-align: center;
    border: none;
    font-size: 16px;
    font-weight: 500;
}

.product-info-new__advantages {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 2px;
}

.product-info-new__advantage-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
}

.product-info-new__advantage-icon {
    width: 20px;
    height: 20px;
    color: #2e7d32;
    flex-shrink: 0;
}

.product-info-new__specs-short {
    padding: 20px;
    background: #f9f9f9;
    border-radius: 2px;
}

.product-info-new__specs-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
    margin-bottom: 15px;
}

.product-info-new__spec-item {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    width: 90%;
}

.product-info-new__spec-name {
    color: #666;
    flex-shrink: 0;
    margin-right: 10px;
}

.product-info-new__spec-value {
    font-weight: 500;
    color: #000;
    text-align: right;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.product-info-new__specs-link {
    color: #000;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

.product-info-new__specs-link:hover {
    color: #666;
}

/* ============================================
   СЕКЦИИ (ниже основного блока)
   ============================================ */

.product-section-new {
    padding: 0;
    border-bottom: 1px solid #f0f0f0;
}

.product-section-new:last-child {
    border-bottom: none;
}

.product-section-new__container {
    max-width: 1200px;
    margin: 0 auto;
    /*padding: 0 20px;*/
}

.product-section-new__title {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 40px 0;
}

.product-section-new__content {
    /*max-width: 900px;*/
    margin: 0 auto;
}

.product-section-new__content--full {
    max-width: 100%;
}

/* Описание */
.product-description-new__text {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    max-height: 200px;
    overflow: hidden;
    transition: max-height 0.3s;
}

.product-description-new__text--expanded {
    max-height: none;
}

.product-description-new__expand {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    padding: 10px 20px;
    background: #161616;
    color: aliceblue;
    border: none;
    border-radius: 2px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.2s;
}

.product-description-new__expand:hover {
    background: #f63b24;
}

/* Преимущества */
.product-advantages-new {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .product-advantages-new {
        grid-template-columns: repeat(2, 1fr);
    }
}

.product-advantages-new__item {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 2px;
    transition: box-shadow 0.2s;
}

.product-advantages-new__item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.product-advantages-new__icon {
    width: 48px;
    height: 48px;
    color: #2e7d32;
    flex-shrink: 0;
}

.product-advantages-new__title {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 10px 0;
}

.product-advantages-new__description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Характеристики */
.product-specs-new__tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    border-bottom: 2px solid #f0f0f0;
    flex-wrap: wrap;
}

.product-specs-new__tab {
    padding: 12px 24px;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    font-size: 16px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    transition: all 0.2s;
}

.product-specs-new__tab:hover {
    color: #000;
}

.product-specs-new__tab--active {
    color: #000;
    border-bottom-color: #000;
}

.product-specs-new__tab-content {
    display: none;
}

.product-specs-new__tab-content--active {
    display: block;
}

.product-specs-new__table {
    width: 100%;
    border-collapse: collapse;
}

.product-specs-new__row {
    border-bottom: 1px solid #f0f0f0;
}

.product-specs-new__row:last-child {
    border-bottom: none;
}

.product-specs-new__cell {
    padding: 16px 0;
    font-size: 15px;
}

.product-specs-new__cell--name {
    color: #666;
    width: 40%;
}

.product-specs-new__cell--value {
    font-weight: 500;
    color: #000;
}

.product-specs-new__unit {
    color: #999;
    font-size: 14px;
    margin-left: 5px;
}

/* Аккордеон характеристик */
.product-specs-new__accordion {
    border-radius: 0;
    overflow: hidden;
}

.product-specs-new__accordion-item {
    margin-bottom: 12px;
}

.product-specs-new__accordion-item:last-child {
    margin-bottom: 0;
}

.product-specs-new__accordion-item + .product-specs-new__accordion-item {
    border-top: 1px solid #f0f0f0;
}

.product-specs-new__accordion-header {
    width: 100%;
    padding: 14px 16px;
    background: #4a4a4a;
    border: none;
    color: aliceblue;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    transition: background 0.3s ease, color 0.3s ease;
}

.product-specs-new__accordion-item--open .product-specs-new__accordion-header {
    background: #f63b24;
    color: aliceblue;
}

.product-specs-new__accordion-icon {
    transition: transform 0.2s;
}

.product-specs-new__accordion-title {
    white-space: normal;
    text-overflow: ellipsis;
    overflow: hidden;
}

.product-specs-new__accordion-item--open .product-specs-new__accordion-icon {
    transform: rotate(180deg);
}

.product-specs-new__accordion-body {
    padding: 16px;
}

.product-specs-new__content-html {
    font-size: 14px;
    line-height: 1.6;
    white-space: normal;
    word-wrap: break-word;
}

.product-specs-new__content-html > *:first-child {
    margin-top: 0;
}

.product-specs-new__content-html > *:last-child {
    margin-bottom: 0;
}

.product-specs-new__content-html p,
.product-specs-new__content-html li,
.product-specs-new__content-html span,
.product-specs-new__content-html div {
    font-size: 14px;
    line-height: initial;
}

.product-specs-feature-item {
    margin-bottom: 12px;
}

.product-specs-feature-item:last-child {
    margin-bottom: 0;
}

.product-specs-feature-item:first-child {
    margin-top: 0;
}

.product-specs-feature-item strong {
    font-weight: 700;
    display: inline-block;
    margin-right: 8px;
}

/* Видео и описание в двух колонках */
.product-section-new--video-description {
    width: 100%;
    padding: 0;
    overflow-x: hidden;
}

.product-video-description__layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    width: 100%;
}

@media (min-width: 1024px) {
    .product-video-description__layout {
        grid-template-columns: 50% 50%;
        gap: 0;
    }
}

.product-video-description__left {
    width: 100%;
}

.product-video-description__right {
    width: 100%;
}

@media (max-width: 767px) {
    .product-video-new {
        height: 360px !important;
    }
    
    .product-section-new__container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0;
    }
}

@media (min-width: 1024px) {
    .product-video-description__right {
        padding: 0 0 0 30px;
    }
}

.product-video-new {
    width: 100%;
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    background: #000;
}

.product-video-new__player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Скрываем стандартные элементы управления */
}

.product-video-new__player::-webkit-media-controls {
    display: none !important;
}

.product-video-new__player::-webkit-media-controls-enclosure {
    display: none !important;
}

.product-video-new__controls {
    position: absolute;
    bottom: 20px;
    right: 20px;
    display: flex;
    gap: 12px;
    z-index: 10;
}

.product-video-new__control-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.product-video-new__control-btn:hover {
    background: rgba(0, 0, 0, 0.8);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.product-video-new__control-btn:active {
    transform: scale(0.95);
}

.product-video-new__icon {
    width: 24px;
    height: 24px;
    color: #fff;
    fill: currentColor;
}

@media (max-width: 768px) {
    .product-video-new__controls {
        bottom: 15px;
        right: 15px;
        gap: 10px;
    }
    
    .product-video-new__control-btn {
        width: 44px;
        height: 44px;
    }
    
    .product-video-new__icon {
        width: 20px;
        height: 20px;
    }
}

/* Блок "Похожие товары" */
.product-section-new--similar {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 0;
    overflow-x: hidden;
}

.product-section-new--similar .product-section-new__container {
    max-width: 100%;
    padding: 0;
}

.product-section-new--similar .product-slider {
    overflow: hidden;
    position: relative;
}

.product-section-new--similar .swiper-slide {
    height: auto;
}

/* Блок "С этим товаром покупают" */
.product-section-new--related {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    padding: 0;
    overflow-x: hidden;
}

.product-section-new--related .product-section-new__container {
    max-width: 100%;
    padding: 0;
}

.product-section-new--related .product-slider {
    overflow: hidden;
    position: relative;
}

.product-section-new--related .swiper-slide {
    height: auto;
}

.product-section-new--related .product-slider__item {
    width: 100%;
    height: 100%;
}

/* Отзывы */
.product-reviews-new__carousel {
    margin-bottom: 40px;
}

.product-reviews-new__carousel-slider {
    padding-bottom: 40px;
}

.product-reviews-new__item {
    padding: 30px;
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 2px;
    height: auto;
}

.product-reviews-new__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
}

.product-reviews-new__author {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.product-reviews-new__date {
    font-size: 13px;
    color: #999;
}

.product-reviews-new__rating {
    display: flex;
    gap: 4px;
    color: #ffc107;
}

.product-reviews-new__text {
    font-size: 15px;
    line-height: 1.6;
    color: #333;
}

.product-reviews-new__nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.product-reviews-new__nav-btn {
    width: 40px;
    height: 40px;
    background: #f5f5f5;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
}

.product-reviews-new__nav-btn:hover {
    background: #e0e0e0;
}

.product-reviews-new__form {
    padding: 30px;
    background: #f9f9f9;
    border-radius: 2px;
}

.product-reviews-new__form-title {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 20px 0;
}

.product-reviews-new__form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .product-reviews-new__form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.product-reviews-new__form-input {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 2px;
    font-size: 15px;
}

.product-reviews-new__form-rating {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.product-reviews-new__form-stars {
    display: flex;
    gap: 5px;
}

.product-reviews-new__form-star {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    color: #ddd;
    transition: color 0.2s;
}

.product-reviews-new__form-star:hover,
.product-reviews-new__form-star--active {
    color: #ffc107;
}

.product-reviews-new__form-textarea {
    width: 100%;
    min-height: 120px;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 2px;
    font-size: 15px;
    font-family: inherit;
    resize: vertical;
    margin-bottom: 20px;
}

.product-reviews-new__form-submit {
    padding: 12px 24px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 2px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.product-reviews-new__form-submit:hover {
    background: #333;
}

/* Дополнительно */
.product-addons-new__tabs {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
    border-bottom: 2px solid #f0f0f0;
    flex-wrap: wrap;
}

.product-addons-new__tab {
    padding: 12px 24px;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    font-size: 16px;
    font-weight: 500;
    color: #666;
    cursor: pointer;
    transition: all 0.2s;
}

.product-addons-new__tab:hover {
    color: #000;
}

.product-addons-new__tab--active {
    color: #000;
    border-bottom-color: #000;
}

.product-addons-new__tab-content {
    display: none;
}

.product-addons-new__tab-content--active {
    display: block;
}

.product-addons-new__tab-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 15px 0;
}

.product-addons-new__tab-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

.product-addons-new__videos {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.product-addons-new__video-item {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    border-radius: 2px;
    overflow: hidden;
}

.product-addons-new__video-item iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Sticky Footer CTA */
.product-footer-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 -2px 8px rgba(0,0,0,0.1);
    padding: 15px 0;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.product-footer-cta--visible {
    transform: translateY(0);
}

.product-footer-cta__container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.product-footer-cta__price-value {
    font-size: 24px;
    font-weight: 700;
    color: #2e7d32;
}

.product-footer-cta__btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 2px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.product-footer-cta__btn svg {
    display: block;
    width: min(20 / var(--vw-screen) * 100 * 1vw, 20px);
    height: min(20 / var(--vw-screen) * 100 * 1vw, 20px);
    flex-shrink: 0;
}

.product-footer-cta__btn:hover:not(:disabled) {
    background: #333;
}

.product-footer-cta__btn:disabled {
    background: #ccc;
    color: #999;
    cursor: not-allowed;
    opacity: 0.6;
}

.product-footer-cta__btn:disabled:hover {
    background: #ccc;
}

.product-footer-cta__back-top {
    width: 40px;
    height: 40px;
    background: #f5f5f5;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
}

.product-footer-cta__back-top:hover {
    background: #e0e0e0;
}

@media (min-width: 768px) {
    .product-footer-cta {
        display: none;
    }
}

.gallery-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding-bottom: 14px;
}

.gallery-tabs .product-gallery-new__toggle-btn {
    padding: 10px 20px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.2s;
    background-color: var(--c-milk);
    color: var(--c-black);
    box-shadow: none;
}

.gallery-tabs .product-gallery-new__toggle-btn:hover {
    background: #f5f5f5;
}

.gallery-tabs .product-gallery-new__toggle-btn.product-gallery-new__toggle-btn--active {
    background-color: var(--c-orange);
    color: #fff;
}
.gallery-tabs .product-gallery-new__toggle-btn.product-gallery-new__toggle-btn--active .product-gallery-new__toggle-count {
    color: #fff;
}
.product-description-new {
    margin: 30px 0;
}
.product-related-new .section {
    padding: 40px;
}
.product-related-new .section__header {
    margin-bottom: 32px;
}
.product-section-new--specs {
    margin-bottom: 30px;
}

.product-gallery-lightbox__previous,
.product-gallery-lightbox__next {
    position: fixed;
    top: 0;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    color: #000;
    border-radius: 2px;
    cursor: pointer;
    z-index: 2001;
    display: flex;
    align-items: center;
    transition: all 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    height: 100%;
    width: 30%;
}

.product-gallery-lightbox__previous {
    left: 0;
    background: -moz-linear-gradient(to left,rgba(0,0,0,0) 0%,rgba(0,0,0,.5) 100%);
    background: -webkit-linear-gradient(to left,rgba(0,0,0,0) 0%,rgba(0,0,0,.5) 100%);
    background: linear-gradient(to left, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .5) 100%);
    justify-content: left;
}
.product-gallery-lightbox__next {
    right: 0;
    background: -moz-linear-gradient(to right,rgba(0,0,0,0) 0%,rgba(0,0,0,.5) 100%);
    background: -webkit-linear-gradient(to right,rgba(0,0,0,0) 0%,rgba(0,0,0,.5) 100%);
    background: linear-gradient(to right, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, .5) 100%);
    justify-content: right;
}

.product-gallery-lightbox__previous:hover,
.product-gallery-lightbox__next:hover {
    transform: scale(1.1);
}

.product-gallery-lightbox__previous svg,
.product-gallery-lightbox__next svg {
    width: 60px;
    height: 60px;
    margin: 5%;
}
/* End */
/* /local/templates/sinagear/components/bitrix/catalog.element/my_product/style.css?177608278749138 */
