.gd-img-container {
	display: flex;
	max-width: 800px;
	margin: 0 auto;
	background-color: white;
	padding: 20px;
}

/* Блок 1: превью изображений */
.gd-img-thumbnails-wrapper {
	width: 64px;
	height: 450px;
	margin-right: 20px;
	position: relative;
	display: flex;
	flex-direction: column;
}

.gd-img-thumbnails-container {
	width: 64px;
	max-height: 400px;
	overflow-y: auto;
	display: flex;
	flex-direction: column;
	gap: 10px;
	flex-shrink: 0;
}

.gd-img-thumbnail {
	border: 2px solid transparent;
	background: none;
	cursor: pointer;
	padding: 1px;
	border-radius: 4px;
	overflow: hidden;
	transition: all 0.2s;
	width: 64px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.gd-img-thumbnail:hover {
	opacity: 0.8;
}

.gd-img-thumbnail.gd-img-active {
	border-color: #007bff;
}

.gd-img-thumbnails-container img {
	display: block;
	width: 100%;
	object-fit: contain;
}

/* Блок 2: вывод превью изображений в полный размер */
.gd-img-goods-container {
	width: 300px;
	height: 450px;
	overflow: hidden;
	position: relative;
	border-radius: 4px;
	background-color: #ffffff;
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
}

.gd-img-goods-container .gd-img-preview {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}

.gd-img-goods-container .gd-img-full-image {
	position: absolute;
	top: 0;
	left: 0;
	display: none;
	cursor: move;
}

/* Кнопки прокрутки */
.gd-img-scroll-btn {
	width: 64px;
	height: 30px;
	background: white;
	border: none;
	cursor: pointer;
	z-index: 10;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s;
}

.gd-img-scroll-btn svg {
	height: 25px;
	width: 25px;
	color: #898989;
}

.gd-img-scroll-btn svg:hover {
	color: #000000;
}

.gd-img-scroll-up {
	margin-bottom: 5px;
}

.gd-img-scroll-down {
	margin-top: 5px;
}

/* Скрыть скроллбар */
.gd-img-thumbnails-container {
	scrollbar-width: none; /* Firefox */
	-ms-overflow-style: none; /* IE and Edge */
}

.gd-img-thumbnails-container::-webkit-scrollbar {
	display: none; /* Chrome, Safari and Opera */
}

/* Модальное окно для полноэкранного просмотра */
.gd-img-modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.9);
	display: none;
	justify-content: center;
	align-items: center;
	z-index: 1000;
}

.gd-img-modal-content {
	display: flex;
	flex-direction: column;
	width: calc(100% - 10px);
	height: calc(100% - 10px);
	max-width: 1200px;
	background-color: white;
	border-radius: 8px;
	overflow: hidden;
	position: relative;
}

/* Контейнер для основного изображения */
.gd-img-modal-image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #ffffff;
    position: relative;
    min-height: 0;
    padding: 10px;
    overflow: hidden;
    touch-action: none;
    /* Добавляем для плавности */
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.gd-img-modal-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transform-origin: center center;
    /* Убираем transition - он вызывает задержку при быстрых движениях */
    will-change: transform;
    user-select: none;
    -webkit-user-select: none;
    pointer-events: none;
    /* Добавляем аппаратное ускорение */
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
    /* Предотвращаем мерцание */
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}


/* Кнопки сброса зума */
.gd-img-modal-zoom-reset {
    position: absolute;
    bottom: 80px;
    right: 20px;
    background: rgba(0, 0, 0, 0.6);
    color: white;
    border: none;
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 14px;
    cursor: pointer;
    z-index: 1002;
    display: none;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.gd-img-modal-zoom-reset.visible {
    display: block;
}

.gd-img-modal-zoom-reset:hover {
    background: rgba(0, 0, 0, 0.8);
}

/* Обертка для превьюшек (внизу) */
.gd-img-modal-thumbnails-wrapper {
	width: 100%;
	height: auto;
	position: relative;
	display: flex;
	flex-direction: column;
	background-color: #f5f5f5;
	border-top: 1px solid #ddd;
	padding: 10px 0;
}

/* Контейнер с горизонтальной прокруткой для превьюшек */
.gd-img-modal-thumbnails-container {
	width: 100%;
	overflow-x: auto;
	overflow-y: hidden;
	display: flex;
	flex-direction: row;
	gap: 10px;
	padding: 0 10px;
	scrollbar-width: thin;
	-webkit-overflow-scrolling: touch;
	padding-left: 45px;
	padding-right: 45px;
	scroll-padding-left: 45px;
	scroll-padding-right: 75px;	
}

.gd-img-modal-thumbnails-container::-webkit-scrollbar {
	height: 6px;
}

.gd-img-modal-thumbnails-container::-webkit-scrollbar-track {
	background: #e0e0e0;
	border-radius: 3px;
}

.gd-img-modal-thumbnails-container::-webkit-scrollbar-thumb {
	background: #888;
	border-radius: 3px;
}

.gd-img-modal-thumbnail {
	flex-shrink: 0;
	border: 2px solid transparent;
	background: none;
	cursor: pointer;
	padding: 1px;
	border-radius: 4px;
	overflow: hidden;
	transition: all 0.2s;
	width: 60px;
	height: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.gd-img-modal-thumbnail:hover {
	opacity: 0.8;
}

.gd-img-modal-thumbnail.gd-img-active {
	border-color: #007bff;
	box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

.gd-img-modal-thumbnail img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Кнопки прокрутки для превьюшек (горизонтальные) */
.gd-img-modal-scroll-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	width: 30px;
	height: 60px;
	background: rgba(0, 0, 0, 0.5);
	border: none;
	cursor: pointer;
	z-index: 20;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s;
	border-radius: 4px;
}

.gd-img-modal-scroll-btn:hover {
	background: rgba(0, 0, 0, 0.7);
}

.gd-img-modal-scroll-btn svg {
	height: 20px;
	width: 20px;
	color: white;
}

.gd-img-modal-scroll-up {
	left: 5px;
	transform: translateY(-50%) rotate(-90deg);
}

.gd-img-modal-scroll-down {
	right: 5px;
	transform: translateY(-50%) rotate(-90deg);
}

/* Кнопка закрытия */
.gd-img-modal-close {
	position: absolute;
	top: 10px;
	right: 10px;
	background: rgba(0, 0, 0, 0.7);
	border: 1px solid #ddd;
	color: white;
	font-size: 24px;
	width: 40px;
	height: 40px;
	border-radius: 50%;
	cursor: pointer;
	z-index: 1001;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s;
}

.gd-img-modal-close:hover {
	background: rgba(0, 0, 0, 0.9);
}

/* Кнопки навигации (влево/вправо) */
.gd-img-modal-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(0, 0, 0, 0.7);
	border: 1px solid #ddd;
	color: white;
	width: 40px;
	height: 80px;
	border-radius: 4px;
	font-size: 20px;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s;
	z-index: 1001;
}

.gd-img-modal-nav:hover {
	background: rgba(0, 0, 0, 0.9);
}

.gd-img-modal-prev {
	left: 10px;
}

.gd-img-modal-next {
	right: 10px;
}

/* Адаптация для маленьких экранов */
@media (max-width: 768px) {
	.gd-img-modal-thumbnail {
		width: 50px;
		height: 50px;
	}
	
	.gd-img-modal-nav {
		width: 35px;
		height: 60px;
		font-size: 18px;
	}
	
	.gd-img-modal-scroll-btn {
		width: 25px;
		height: 50px;
	}
	.gd-img-modal-thumbnails-container {
		padding-left: 35px;
		padding-right: 35px;
	}
}

@media (max-width: 700px) {
	.gd-img-container {
		padding: 10px;
	}
}

@media (max-width: 700px) {
	.gd-img-container {
		padding: 10px;
	}
}


/* Для совсем маленьких экранов */
@media (max-width: 480px) {
	.gd-img-modal-thumbnails-container {
		padding-left: 30px;
		padding-right: 30px;
	}
	.gd-img-container {
		padding: 3px;
	}
}

/* Базовые стили для spacer */
.gd-img-modal-spacer {
    width: 75px;
    flex-shrink: 0;
    height: 1px;
    pointer-events: none;
}


/* скроем кнопки навигации для мобильных устройств */
@media (any-pointer: coarse) {
	.gd-img-modal-nav {
		display: none;
	}
	.gd-img-modal-scroll-btn {
		display: none;
	}
    .gd-img-modal-spacer {
        width: 10px !important;
    }
	.gd-img-modal-thumbnails-container {
		padding-left: 5px;
		padding-right: 5px;
		scroll-padding-left: 5px;
		scroll-padding-right: 10px !important;
        scrollbar-width: none;
        -ms-overflow-style: none;		
	}
    .gd-img-modal-thumbnails-container::-webkit-scrollbar {
        display: none;
        width: 0;
        height: 0;
        background: transparent;
    }
    
}



/* ===== МОБИЛЬНАЯ ГАЛЕРЕЯ ===== */
/* Мобильная галерея по умолчанию скрыта */
.mobile-gallery-wrapper {
    display: none;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    touch-action: pan-y pinch-zoom;
}

/* Показываем мобильную галерею только при наличии класса mobile-mode-forced */
html.mobile-mode-forced .mobile-gallery-wrapper {
    display: block;
}

/* Скрываем десктопные элементы в мобильном режиме */
html.mobile-mode-forced .gd-img-thumbnails-wrapper,
html.mobile-mode-forced .gd-img-goods-container {
    display: none !important;
}

/* Показываем десктопные элементы в обычном режиме */
html:not(.mobile-mode-forced) .gd-img-thumbnails-wrapper,
html:not(.mobile-mode-forced) .gd-img-goods-container {
    display: flex;
}

html:not(.mobile-mode-forced) .gd-img-thumbnails-wrapper {
    display: flex;
    flex-direction: column;
}

/* Остальные стили мобильной галереи */
.mobile-gallery-wrapper:active {
    cursor: grabbing;
}

.mobile-gallery-wrapper::-webkit-scrollbar {
    display: none;
}

.mobile-gallery-list {
    display: flex;
    flex-direction: row;
    gap: 0px;
    width: fit-content;
    padding: 5px 0;
}

.mobile-gallery-item {
    display: flex;
    flex-shrink: 0;
    height: auto;
    max-height: 300px;
    border: 1px solid #cccccc;
    border-radius: 8px;
    overflow: hidden;
    background-color: #ffffff;
    cursor: pointer;
    transition: opacity 0.2s;
    -webkit-tap-highlight-color: transparent;
    margin-left: 5px;
    margin-right: 5px;
}

.mobile-gallery-item:active {
    opacity: 0.7;
}

.mobile-gallery-item img {
    width: 100%;
    height: 100%;
    max-height: 300px;
    object-fit: contain;
    display: block;
    pointer-events: none;
    user-select: none;
    -webkit-user-select: none;
}



/* Скрываем блок оператора, когда открыто модальное окно */
body.modal-goods-open .stream-wood-btn {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    pointer-events: none !important;
}










.v2022goods__main {
	display: flex;
	margin: 0;
}

.v2022goods__goods-info {
	font-size: 9pt;
	font-family: Arial;
	color: #373737;
	padding-left: 8px;
	padding-right: 8px;
    width: 95%;
}

.v2022goods__goods-info .goods-title {
	margin-bottom: 12px;
	margin-top: 18px;
}

.v2022goods__goods-info .goods-title h1 {
	font-size: 15pt;
	color: #1c3d4f;
	font-weight: bold;
	margin: 0px;
}

.v2022goods__goods-info .goods-title h3 {
	font-size: 9pt;
	color: #8c8c8c;
	margin: 0px 8px 0px 10px;
	font-weight: normal;
}




.v2022goods__main-options-table {
	display: flex;
	flex-direction: column;
	margin-top: 20px;
	font-size: 11pt;
	font-family: 'Segoe UI', Tahoma, 'sans-serif';
}

.v2022goods__main-options-table .row {
	display: flex;
	flex-direction: row;
}

.v2022goods__options-table .phone-view {
	display: none !important;
}	


.v2022goods__main-options-table .cell-left:before {
	border-bottom: 1px dotted #c1c1c1;
	left: 0;
	top: 16px;
	right: 5px;
	content: "";
	position: absolute;
}

.v2022goods__main-options-table .cell-left {
	width: 40%;
	position: relative;
}

.v2022goods__main-options-table .cell-left span {
	color: #898989;
	background: #fff;
	display: inline-block;
	position: relative;
	padding: 0 3px 0 0;
}

.v2022goods__main-options-table .cell-right {
	width: 60%;
}

.v2022goods__main-options-table a {
	color: #0061a5;
	text-decoration: none;
}
.v2022goods__main-options-table a:hover {
	color: #001d31;
}





.v2022goods__tabbutton.active {
	color: black;
	border-color: #007bff;
	font-weight: bold;
	border-bottom: 1px solid #000;
}

.v2022goods__tabcontent {
	display: none;
	padding: 10px;
	margin-top: 10px;
}


.v2022goods__video-container {
	padding: 10px 10px 10px 20px;
}

.v2022goods__video-container iframe {
	height: 315px;
	width: 100%;
	max-width: 700px;
}

.v2022goods__tabbutton-container {
	display: flex;
	font-size: 13pt;
	border-bottom: 1px solid #cdcdcd;
	font-family: 'Roboto', arial, sans-serif;
	margin-top: 20px;
}


.v2022goods__tabbutton {
	color: #292929;
	cursor: pointer;
	vertical-align: top;
	padding: 12px;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;	
}

.v2022goods__tabbutton:hover  {
	color: #d9241c;
}


.v2022goods__options-table {
	display: flex;
	flex-direction: column;
	margin-left: 20px;
}

.v2022goods__options-table .row {
	display: flex;
	flex-direction: row;
}


.v2022goods__options-table .cell-left:before {
	border-bottom: 1px dotted #c1c1c1;
	left: 0;
	top: 16px;
	right: 5px;
	content: "";
	position: absolute;
}

.v2022goods__options-table .cell-left {
	width: 30%;
	position: relative;
}

.v2022goods__options-table .cell-left span {
	color: #898989;
	background: #fff;
	display: inline-block;
	position: relative;
	padding: 0 3px 0 0;
}

.v2022goods__options-table .hint {
	vertical-align: middle;
	width: 12px;
	height: 12px;
	border: none;
}

.v2022goods__options-table .cell-right {
	width: 70%;
}

.v2022goods__options-table a, :visited {
	color: #0772bf;
	text-decoration: none;
}
.v2022goods__options-table a:hover {
	color: #001d31;
}

.v2022goods__options-table .separator {
	margin-top: 20px;
}


.v2022goods__goods-info .rating-stars a, :visited {
	color: #00497c;
	text-decoration: none;
	display: inline-flex;
	align-items: center;
	gap: 5px;
}
.v2022goods__goods-info .rating-stars a:hover {
	color: #00497c;
}
.v2022goods__goods-info .rating-stars .value {
	font-weight: bold;
	font-size: 11pt;
}
.v2022goods__goods-info .rating-stars .votes {
	font-size: 10pt;
	color: #00497cd6;
}





.v2022goods__goods-info .options-all {
	margin-top: 12px;
}
.v2022goods__goods-info .options-all a, :visited {
	font-size: 13pt;
	color: #00497c;
	text-decoration: none;
}
.v2022goods__goods-info .options-all a:hover {
	color: #d9241c;
}
.v2022goods__goods-info .options-all span {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='currentColor' class='bi bi-chevron-right' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M4.646 1.646a.5.5 0 0 1 .708 0l6 6a.5.5 0 0 1 0 .708l-6 6a.5.5 0 0 1-.708-.708L10.293 8 4.646 2.354a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
	width: 12px;
	height: 12px;
	display: inline-block;
	vertical-align: middle;
	margin-left: 4px;
}



.v2022goods__order {
    background-color: #dbdbdbba;
    border-radius: 13px;
    border: 0px;
    padding: 16px;
    margin: 20px 0px 20px 0px;
	display: inline-block;
}

.v2022goods__order button {
    cursor: pointer;
    border-radius: 6px;
    border: 0px;
    padding: 16px 23px 16px 23px;
    font-size: 12pt;
    font-weight: bold;
    font-family: Helvetica, Arial, sans-serif;
}

.v2022goods__order a {
    text-decoration: none;
}

.v2022goods__order .bt-fast-order {
    background-color: #d3d3d3;
}

.v2022goods__order .bt-fast-order:hover {
    background-color: #cacaca;
}

.v2022goods__order .bt-to-basket {
    background-color: #ffe630;
}

.v2022goods__order .bt-to-basket:hover {
    background-color: #eed72c;
}

.v2022goods__order .bt-basket {
    background-color: #ffe630;
}

.v2022goods__order .bt-basket:hover {
    background-color: #eed72c;
}

.v2022goods__order .bt-not-available {
    background-color: #f1d888;
}

.v2022goods__order .bt-not-available:hover {
    background-color: #e5d18b;
}

.v2022goods__order .goods-reliz {
	margin-top: 30px;
	background-color: #ffe9a4;
    border: 1px solid #8aa2b3;
    border-radius: 6px;
    padding: 5px 15px 5px 15px;
	color: #535353;
}
.v2022goods__order .goods-reliz h2 {
	font-size: 10pt;
	font-family: Helvetica, Arial, sans-serif;
}
.v2022goods__order .goods-reliz .reliz-date {
	font-weight: bold;
	color: #124d77;
    font-size: 110%;
}

.v2022goods__order .goods-price {
	display: flex;
	align-items: center;
    margin-bottom: 20px;
    gap: 15px;
}
.v2022goods__order .goods-price .price {
	color: #1a5a00ff;
    font-size: 16pt;
	font-weight: bold;
}
.v2022goods__order .goods-price .old-price {
	color: #4b4b4bff;
    font-size: 11pt;
	text-decoration: line-through;
}
.v2022goods__order .goods-price .discount-percent {
	color: #c9142c;
    font-size: 16pt;
	font-weight: bold;
}

.v2022goods__order .onsklad-info {
    height: 20px;
    background-color: #9ce789;
    border-radius: 5px;
    border: 0px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    font-size: 10pt;
}

.v2022goods__order .free-shiping-info {
    background-color: #ffe79a;
    border-radius: 5px;
    border: 0px;
    align-items: center;
    margin-bottom: 20px;
    font-size: 11pt;
    font-family: Tahoma;
    padding: 7px;
}


.v2022goods__order .to-basket-container {
	display: flex;
	align-items: center;
    gap: 15px;
}



.v2022goods__goods-info .icons-container {
	display: flex;
	align-items: center;
    gap: 15px;
}


.icons-container .icon-have {
	width: 30px;
	height: 30px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%239c9c9c' viewBox='0 0 16 16'%3E%3Cpath d='M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14zm0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16z'/%3E%3Cpath d='M10.97 4.97a.235.235 0 0 0-.02.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-1.071-1.05z'/%3E%3C/svg%3E");
	cursor: pointer;
	opacity: 0.8;
}

.icons-container .icon-have.checked {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%230771bb' viewBox='0 0 16 16'%3E%3Cpath d='M8 15A7 7 0 1 1 8 1a7 7 0 0 1 0 14zm0 1A8 8 0 1 0 8 0a8 8 0 0 0 0 16z'/%3E%3Cpath d='M10.97 4.97a.235.235 0 0 0-.02.022L7.477 9.417 5.384 7.323a.75.75 0 0 0-1.06 1.06L6.97 11.03a.75.75 0 0 0 1.079-.02l3.992-4.99a.75.75 0 0 0-1.071-1.05z'/%3E%3C/svg%3E");
}

.icons-container .icon-have:hover {
	opacity: 1;
}


.icons-container .icon-favorites {
	width: 30px;
	height: 30px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%239c9c9c' viewBox='0 0 16 16'%3E%3Cpath d='m8 2.748-.717-.737C5.6.281 2.514.878 1.4 3.053c-.523 1.023-.641 2.5.314 4.385.92 1.815 2.834 3.989 6.286 6.357 3.452-2.368 5.365-4.542 6.286-6.357.955-1.886.838-3.362.314-4.385C13.486.878 10.4.28 8.717 2.01L8 2.748zM8 15C-7.333 4.868 3.279-3.04 7.824 1.143c.06.055.119.112.176.171a3.12 3.12 0 0 1 .176-.17C12.72-3.042 23.333 4.867 8 15z'/%3E%3C/svg%3E");
	cursor: pointer;
	opacity: 0.8;
}

.icons-container .icon-favorites.checked {
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23d9241c' viewBox='0 0 16 16'%3E%3Cpath fill-rule='evenodd' d='M8 1.314C12.438-3.248 23.534 4.735 8 15-7.534 4.736 3.562-3.248 8 1.314z'/%3E%3C/svg%3E");
}

.icons-container .icon-favorites:hover {
	opacity: 1;
}

.icons-container .icon-share {
	width: 30px;
	height: 30px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23646464' viewBox='0 0 512 512'%3E%3Cg transform='translate(0 512)scale(.1 -.1)'%3E%3Cpath d='M3013 4776c-179-44-324-202-353-386-5-36-10-203-10-371l0-306-117-12c-1190-125-2180-989-2459-2147-55-227-66-342-71-729-4-333-3-363 14-394 26-49 83-92 132-98 79-11 171 46 187 115 106 448 312 758 654 987 279 186 613 297 1035 345 50 5 210 10 358 10l267 0 0-297c0-164 5-327 10-363 40-253 291-435 540-391 39 7 103 29 141 48 64 32 121 87 871 854 442 451 818 843 835 871 52 83 68 140 67 253 0 110-19 174-73 255-15 23-388 409-827 858-680 694-809 822-860 849-112 60-227 76-341 49zm224-398c136-131 1508-1539 1520-1561 16-28 16-86 0-114-24-43-1569-1613-1594-1619-43-11-95 4-128 36l-30 30-5 438-5 439-25 36c-14 21-44 47-68 58-41 21-52 21-460 16-434-5-516-11-752-58-407-82-755-235-1034-457-39-31-115-101-168-155-54-55-98-95-98-91 0 22 43 188 71 273 122 378 322 704 604 986 443 443 1027 703 1640 730 175 8 190 11 232 48 63 56 63 53 63 513 0 454 1 461 58 496 15 10 47 18 70 18 40 0 49-5 109-62z'/%3E%3C/g%3E%3C/svg%3E");
	cursor: pointer;
	opacity: 0.8;
}

.icons-container .icon-share:hover {
	opacity: 1;
}




.rating-widget {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  max-width: 750px;
  background: #fafafa;
  margin-bottom: 30px;
}

.rating-widget .rating-title {
  font-weight: 600;
  color: #333;
}

.rating-widget .stars-container {
  display: flex;
  gap: 4px;
  justify-content: center;
}

.rating-widget .star-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 4px;
  transition: all 0.2s ease;
  touch-action: manipulation; /* Улучшение для мобильных */
}

.rating-widget svg {
	width: 75px;
	height: 65px;
}

@media screen and (max-width: 650px) {
	.rating-widget svg {
		width: 50px;
		height: 45px;
	}
}

@media screen and (max-width: 450px) {
	.rating-widget svg {
		width: 40px;
		height: 35px;
	}
}

.rating-widget .star-btn:hover {
  transform: scale(1.1);
}

.rating-widget .star-icon {
  fill: #ddd;
  transition: fill 0.2s ease;
}

/* Закрашивание слева направо */
.rating-widget .star-btn.active .star-icon {
  fill: #ffc107;
}

/* При наведении - закрашиваем текущую и все предыдущие звезды */
.rating-widget .stars-container:hover .star-btn .star-icon {
  fill: #ffc107; /* Все звезды золотые при наведении на контейнер */
}

.rating-widget .star-btn:hover ~ .star-btn .star-icon {
  fill: #ddd; /* Все последующие звезды серые */
}

.rating-widget .rating-feedback {
  min-height: 24px;
}

.rating-widget .rating-message {
  color: #d32f2f;
  font-weight: 500;
  text-align: center;
}

.rating-widget .rating-result {
  color: #2e7d32;
  font-weight: 500;
}

.rating-widget .loading {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #666;
}

/* Для мобильных устройств */
@media (max-width: 768px) {
  .rating-widget .rating-widget {
    padding: 12px;
    gap: 6px;
  }
  
  .rating-widget .star-btn {
    padding: 6px; /* Увеличиваем область касания */
  }
}






.v2022goods__modal-share {
	width: 300px;
	height: 100px;
}

.v2022goods__modal-share .title {
	font-weight: bold;
	font-size: 13pt;
	color: #4f4d5b;
}

.v2022goods__modal-share img {
	margin-left: 6px;
	margin-right: 6px;
	border: 0px;
	width: 20px;
    height: 20px;
}





.v2022goods__reviews-container {
	margin-left: 20px;
}

.v2022goods__reviews-container .title-responses {
	margin-bottom: 20px;
	font-weight: bold;
	color: #4f4d5b;
}

.v2022goods__reviews-container .new-response-link {
	margin: 20px;
}

.v2022goods__reviews-container .rvoting-info {
	background-color: #9cffc8de;
	border-radius: 13px;
	border: 1px solid;
	border-color: #b1b1b1;
	padding: 16px;
	margin: 20px 0px 20px 0px;
}

.v2022goods__reviews-container .our-opinion {
    padding: 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    max-width: 750px;
    background: #fffaeb;
    margin-bottom: 30px;
}

.v2022goods__reviews-container .our-opinion-title {
	font-size: 15pt;
	font-weight: bold;
	color: #242424;
	margin-bottom: 20px;
}

.v2022goods__reviews-container .no-response {
	margin-top: 30px;
}




.v2022goods__author-goods-container .title {
	font-weight: bold;
	font-size: 11pt;
	color: #4f4d5b;
}


.v2022goods__author-goods-container a, :visited {
	font-size: 11pt;
	color: #00497c;
	text-decoration: none;
}
.v2022goods__author-goods-container a:hover {
	color: #d9241c;
}

.v2022goods__author-goods-container .director-list {
	margin-left: 20px;
	margin-bottom: 20px;
	font-size: 11pt;
	display: inline-block;
}

.v2022goods__author-goods-container .actor-list {
	margin-left: 20px;
	margin-bottom: 20px;
	font-size: 11pt;
	display: inline-block;
}

.v2022goods__after-tab-container1 {
	font-size: 10pt;
	margin: 15px 10px 30px 10px;
}
.v2022goods__after-tab-container1 a, :visited {
	font-size: 10pt;
	color: #00497c;
	text-decoration: none;
}
.v2022goods__after-tab-container1 a:hover {
	color: #d9241c;
}

.v2022goods__after-tab-container1 .report-bug {
	text-align: right;
	margin-right: 20px;
}

.v2022goods__tabcontent-goods-info {
	color: #070707;
}

.v2022goods__tabcontent-goods-info h2 {
	font-family: Arial, sans-serif;
	font-size: 13pt;
	color: #242424;
}

.v2022goods__tabcontent-goods-info b {
	color: #4b4b4b;
}


.v2022goods__tabcontent-goods-info .description {
	font-size: 11pt;
	color: #181818;
	text-align: justify;
	padding: 10px 10px 10px 20px;
}
.v2022goods__tabcontent-goods-info .music-tracks {
	padding: 0px 10px 0px 20px;
	font-size: 11pt;
}
.v2022goods__tabcontent-goods-info .options {
	padding: 0px 10px 0px 20px;
	font-size: 11pt;
}

.v2022goods__tabcontent-goods-info .drugWarning {
	border: 3px solid #959595;
    border-radius: 8px;
    padding: 10px;
    font-weight: 700;
    color: #393939;
    background-color: #f9f1e6;
}

.v2022goods__tabcontent-goods-info .goods_description_important {
	font: Bold 12pt Tahoma;
    color: #9b00db;
}

.v2022goods__tabcontent-goods-info .goods_additional_materials_note {
	font: Bold 12pt Tahoma;
    color: #df7070;
}




/* Основной контейнер для сворачивающихся текстов */
.v2022goods__text-wrapper {
	font-family: Arial, sans-serif;
	font-size: 11pt;
	line-height: 1.5;
	margin-bottom: 30px;
	padding: 10px 10px 10px 20px;
}


.v2022goods__text-wrapper .v2022goods__text-content {
	position: relative;
	overflow: hidden;
	transition: max-height 0.5s ease;
}

.v2022goods__text-wrapper .v2022goods__text-content.collapsed {
	max-height: 100px;
}

.v2022goods__text-wrapper .v2022goods__text-content.expanded {
	max-height: 5000px;
}

.v2022goods__text-wrapper .v2022goods__fade-overlay {
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 80px;
	background: linear-gradient(to bottom, transparent, rgba(249, 249, 249, 0.7) 70%, #f9f9f9);
	pointer-events: none;
	opacity: 1;
	transition: opacity 0.3s ease;
}

.v2022goods__text-wrapper .v2022goods__text-content.expanded .v2022goods__fade-overlay {
	opacity: 0;
}

.v2022goods__text-wrapper .v2022goods__toggle-btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: none;
	border: 2px solid #007ed7;
	color: #007ed7;
	padding: 6px 20px;
	border-radius: 25px;
	cursor: pointer;
	font-size: 16px;
	font-weight: 600;
	transition: all 0.3s ease;
	margin-top: 15px;
}

.v2022goods__text-wrapper .v2022goods__toggle-btn:hover {
	background-color: #1885d3ff;
	color: white;
}

.v2022goods__text-wrapper .v2022goods__toggle-btn .v2022goods__icon {
	transition: transform 0.3s ease;
}

.v2022goods__text-wrapper .v2022goods__text-content.expanded + .v2022goods__toggle-btn .v2022goods__icon {
	transform: rotate(180deg);
}

.v2022goods__text-wrapper .v2022goods__hidden {
	display: none;
}



.pictures-container strong {
	font-size: 13pt;
	color: #242424;
}

.v2022goods__delivery-info {
	color: #8d8d8d;
	font-size: 9pt;
	padding: 20px;
}

.v2022goods__delivery-info h3 {
	font-size: 10pt;
	font-weight: 500;
}


.main-content .buy-text {
	color: #515151;
	font-size: 10pt;
	margin: 30px 5px 10px 5px;
}

.main-content .buy-text b {
	color: #717171;
}


/* Стили для блюр-оверлея */
.v2022__modal-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.5);
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
	z-index: 9998;
	display: none;
}

/* Стили для модального окна */
.v2022__modal-content {
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: #fff5d6;
	padding: 20px;
	border-radius: 8px;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
	z-index: 9999;
	display: none;
}


/* Отключение прокрутки тела страницы */
body.no-scroll {
	overflow: hidden;
}





@media screen and (max-width: 750px) {

	.v2022goods__main {
		flex-direction: column;
	}

	.v2022goods__goods-info .goods-title {
		margin-bottom: 10px;
		margin-top: 16px;
	}

	.v2022goods__goods-info .goods-title h1 {
		font-size: 14pt;
		color: #1c3d4f;
		font-weight: bold;
		margin: 0px;
	}

	.v2022goods__goods-info .goods-title h3 {
		font-size: 10pt;
		color: #8c8c8c;
		margin: 0px 8px 0px 10px;
		font-weight: normal;
	}

	.v2022goods__options-table .phone-view {
		display: flex !important;
	}

	.v2022goods__main-options-table {
		display: none;
	}

	.v2022goods__goods-info .options-all {
		display: none;
	}

	.gd-img-container {
		justify-content: center;
	}	

	.v2022goods__tabbutton-container {
		flex-wrap: wrap;
		margin-top: 30px;
	}

	.v2022goods__order {
		margin: 20px 10px 20px 0px;
		display: block;
	}

	.v2022goods__options-table {
		margin-left: 5px;
	}

	.v2022goods__options-table .cell-left {
		width: 36%;
		font-size: 11pt;
	}

	.v2022goods__video-container {
		padding: 10px 0px 10px 0px;
	}

	.v2022goods__reviews-container {
		margin-left: 0px;
	}

}





.v2022goods__gallery-prev {
	display: block;
	max-width: 800px;
	margin-top: 13px;
}
.v2022goods__gallery-prev .prev-list {
	display: flex;
	gap: 10px;
	align-items: center;
}

.v2022goods__gallery-prev .items {
	display: flex;
	gap: 10px;
	flex-wrap: nowrap;
	overflow-x: hidden;
	align-items: stretch;
}

.v2022goods__gallery-prev .item {
	flex: 0 0 calc(20% - 8px);
	display: flex;
	align-items: center;
	justify-content: center;
	background: #f0f0f0;
}

.v2022goods__gallery-prev .item img {
	width: 100%;
	height: auto;
	max-height: 150px;
	object-fit: contain;
}

/* Медиа-запросы */
@media (max-width: 768px) {
	.v2022goods__gallery-prev .item {
		flex: 0 0 calc(33.333% - 7px);
	}
}

@media (max-width: 480px) {
	.v2022goods__gallery-prev .item {
		flex: 0 0 calc(50% - 5px);
	}
	.v2022goods__gallery-prev .item img {
		max-height: 120px;
	}
}

@media (max-width: 320px) {
	.v2022goods__gallery-prev .item {
		flex: 0 0 100%;
	}
	.v2022goods__gallery-prev .item img {
		max-height: 100px;
	}
}

.v2022goods__gallery-prev .navi img{
	width: 100%;
}

.v2022goods__gallery-prev .item img {
	width: 100%;
}

.v2022goods__gallery-prev .show-all {
	text-align: right;
	margin-right: 25px;
	font-size: 12pt;
}


/*
	Ограничение выводимого списка параметров
*/
.params-container {
    position: relative;
}

.params-container.collapsed .params-hidden {
    display: none;
}

.show-more-btn {
	background: none;
    border: none;
    color: #10406f;
    cursor: pointer;
    font-size: inherit;
    font-family: inherit;
    background-color: #007ed733;
    border-radius: 7px;
    padding: 1px 6px 4px 5px;
    text-decoration: none;
    line-height: 15px;
}

.show-more-btn:hover {
    color: #af4540;
}

/* ============================================================
   Прелоадер для блока рекомендованных товаров (AJAX-подгрузка)
   ============================================================ */

.v2022goods__recommend-ajax {
    min-height: 300px;
}

.v2022goods__recommend-preloader {
    text-align: center;
    padding: 30px 20px;
}

.v2022goods__recommend-preloader-spinner {
    width: 40px;
    height: 40px;
    margin: 0 auto 12px auto;
    border: 4px solid #e0e0e0;
    border-top: 4px solid #007ed7;
    border-radius: 50%;
    animation: v2022goods-spin 0.8s linear infinite;
}

@keyframes v2022goods-spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.v2022goods__recommend-preloader-text {
    color: #888;
    font-size: 14px;
}


