@charset "utf-8";

:root {
	--main-color: #000aff;
	--main-bg: linear-gradient(180deg, #008fee 0%, #000aff 100%);
	--main-site: 255, 255, 255;
}

/* RESET */
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{
	margin:0;
	padding:0;
	border:0;
	font-size:100%;
	font:inherit;
	vertical-align:baseline
}
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{
	display:block
}
body{
	line-height:1
}
ol,ul{
	list-style:none
}
blockquote,q{
	quotes:none
}
blockquote:before,blockquote:after,q:before,q:after{
	content:'';
	content:none
}
table{
	border-collapse:collapse;
	border-spacing:0
}
* {
	margin: 0;
	padding: 0;
	outline: none;
	list-style: none;
	text-decoration: none;
}
*, :after, :before {
	box-sizing: border-box;
}
input, button, select, optgroup, textarea {
	font-family: inherit;
	font-size: inherit;
	line-height: inherit;
	margin: 0;
	transition: all 0.3s;
	outline: none;
	border: 0;
}
input::-webkit-search-decoration,
input::-webkit-search-cancel-button,
input::-webkit-search-results-button,
input::-webkit-search-results-decoration { display: none; }
button, html [type='button'], [type='reset'], [type='submit'] {
	cursor: pointer;
}
/*end RESET*/
html {
	box-sizing: border-box;
    scrollbar-gutter: stable;
	scroll-behavior: smooth;
}
body {
	background-color: #fff;
	color: #111;
	font-family: 'Gilroy', sans-serif;
	font-size: 15px;
	font-weight: 400;
	line-height: 1.5;
	display: flex;
	flex-direction: column;
}
img {
	max-width: 100%;
	height: auto;
	vertical-align: middle;
	border-style: none;
}
a {
	transition: all 0.3s;
	text-decoration: none;
	color: #000aff;
}
a:hover {
	text-decoration: none;
}
b, strong {
	font-weight: 700;
}
section {
	padding: 20px 0;
	background: #F4F6FC;
}
section h1 {
	font-size: 24px;
	font-weight: 700;
	text-align: left;
}
section h2 {
	font-size: 18px;
	font-weight: 700;
	text-align: left;
}

.wrapper {
	max-width: 1400px;
	margin-right: auto;
	margin-left: auto;
}
.wrapper-fire {
	max-width: 1400px;
	margin-right: auto;
	margin-left: auto;
}

.img-goods {
    border: 1px solid #081549;
    box-shadow: 
        0 0 5px rgba(17, 17, 17, 0.6), /* Размытая внешняя тень для глубины */
        0 0 5px rgba(17, 17, 17, 0.4), /* Ещё более размытая внешняя тень для большей глубины */
        0px 3px 5px rgba(17, 17, 17, 0.76); /* Дополнительная тень для акцента */
    overflow: hidden; /* Это не позволит изображению выходить за рамки закругления */
    border-radius: 5px; /* Закругление углов */
    width: 50px; /* Ширина изображения (можно адаптировать по нуждам) */
}

.border_bottom_rating{
position: absolute;
width: 100%;
left: 0;
height: 2px;
background: #081549;
}
.container_rating{
	display: flex;
flex-wrap: wrap;
flex-direction: column;
justify-content: center;
align-items: center;
padding-bottom: 15px;
}

.info-page-content{
	background: #090c46;
    color: #fff;
	white-space: normal;
	word-wrap: break-word;
	overflow-x: auto;
	box-sizing: border-box;
	padding: 30px 30px 70px 30px;
	border: 2px solid #000aff;
	box-shadow: -10px 8px 20px rgb(0 0 0 / 50%), 10px 8px 20px rgb(0 0 0 / 50%);
	border-radius: 16px;
}

.info-page-content p {
	line-height: 1.6;
	margin-bottom: 10px;
}

/* Специальные стили для страницы refundpolicy с длинными текстовыми блоками */
.refund-policy-content .info-page-content p {
	margin-bottom: 20px;
}

/* Стили для нумерованных пунктов на странице refundpolicy */
.refund-policy-content .info-page-content p.numbered-step {
	padding-left: 25px;
	text-indent: -25px;
}

.refund-policy-content .info-page-content p.numbered-step b {
	display: inline-block;
	width: 25px;
	text-indent: 0;
}

.info-page-content h1 {
	margin: 30px 0 20px 0;
}

.info-page-content h1:first-child {
	margin-top: 20px;
}

.info-page-content h2 {
	margin: 25px 0 15px 0;
}

.support-image-container {
	width: 50%;
	border: 3px solid #000aff;
	border-radius: 16px;
	box-shadow: -10px 8px 15px rgb(0 0 0 / 50%), 10px 8px 20px rgb(0 0 0 / 50%);
	margin: 20px 0 40px 0;
	overflow: hidden;
	position: relative;
}

.support-image {
	width: 100%;
	height: auto;
	display: block;
	transform: scale(1.01);
}

.fa-headset{
	color: #b3b3b3;
}
.fa-clock{
	color: #b3b3b3;
}

/* BTN */
.btn {
	display: inline-block;
	height: 50px;
	line-height: 50px;
	text-align: center;
	text-decoration: none;
	cursor: pointer;
	transition: all 0.3s;
	padding: 0 20px;
	background-color: #f6f6f6;
	color: var(--main-text-color);
}
.btn:hover {
	
	color: #fff;
}
.btn-center {
	display: table;
	margin: 0 auto;
}

.btn-gray {
	border: 1px solid #e7e7e7;
	color: #000;
}
.btn-gray:hover {
	border: 1px solid #000;
}
.btn-green {
	background: #4dae51;
	color: #fff;
}
.btn-green:hover {
	background: #4dae51;
	color: #fff;
}
.btn-nostock {
	background: #d2d2d2;
	color: #fff;
	cursor: default;
}
.btn[disabled]{
	background: #ccc;
	color: #fff;
	cursor: not-allowed;
}
/* end BTN */
/* ALERTS */
.alert {
	background-color: var(--main-color-two);
	color: var(--main-text-color);
	padding: 15px 20px;
	margin-bottom: 20px;
	line-height: 22px;
	width: 100%;
}
.alert:after {
	content: "";
	display: table;
	clear: both;
}
.alert-success {
	background-color: #46b955;
	color: #fff;
}
.alert-danger {
	background-color: #e06060;
	color: #fff;
}
.alert-warning {
	background-color: #f3d766;
	color: var(--main-text-color);
}
.alert-gray {
	background-color: #f3f3f3;
	color: var(--main-text-color);
}
.alert h2 {
	font-weight: 600;
}
.alert a {
	text-decoration: underline;
}
/* end ALERTS */
/* HEADER */
.header__top {
	border-bottom: 1px solid #ebebeb;
}
.header__top>.wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.header__top-menu {
	display: flex;
	align-items: center;
	position: relative;
}
.header__top-menu a {
	display: block;
	padding: 10px 15px;
	font-weight: 600;
    color: rgba(94, 95, 101, 1);
    font-size: 16px;
}
.header__top-menu a:hover {
	color: rgba(255, 162, 76, 1);
}
.header__top-menu li:first-child>a {
	padding-left: 0;
}
.cart-button {
	display: block;
	color: #111;
	padding: 10px 0 10px 15px;
}
.cart-button:hover {
	color: rgb(var(--main-color));
}
.header__inner > .wrapper {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 40px;
    gap: 20px;
}
.header__logo {
	flex-shrink: 0;
	margin-right: 20px;
	max-width: 190px;
}
#search {
	    border-radius: 12px;
    overflow: hidden;
    box-shadow: 4px 4px 10px #111;
}
.header__search .search_form .input-group {
	position: relative;
	height: 45px;
	width: 550px;
}
.header__search .search_form .search_input {
	width: 100%;
	padding: 0 50px 0px 15px;
	box-sizing: border-box;
	background-color: #281c3a;
	font-size: 16px;
	font-weight: 600;
	height: inherit;
	line-height: 50px;
	border: 1px solid transparent;
	border-radius: 25px;
	text-transform: none;

}
.header__search .search_form .search_input:focus{
background: #F4F6FC !important;
color: #333;
}
.header__search .search_form .search_input::-webkit-input-placeholder{
	color: #50527e;
}
.header__search .search_form .search_input:hover, .header__search .search_form .search_input:focus {

	-webkit-transition: 150ms;
	transition: 150ms;
}
.search_form {
	position: relative;
	display: flex;
}
.live_search {
	display: none;
	position: absolute;
	z-index: 999;
	top: 100%;
	width: 100%;
	margin: 10px 0 0;
	padding: 0;
}
.product-item_search a {
	display: flex;
	padding: 13px 20px;
	background-color: #F4F6FC;
	position: relative; /* Убедимся, что родитель позиционирован */
}

.product-item_search a::after {
	content: "";
	position: absolute;
	bottom: 0;
	left: 15px;
	right: 15px;
	height: 1px; /* Толщина обводки */
	background-color: #E0E4E8; /* Цвет обводки, немного темнее фона */
}

.product-item_search a:hover {
	background-color: rgb(219, 233, 246);
}
.product-item__overlay_search {
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	transition: transform 0.3s ease-in-out, font-size 0.3s ease-in-out; /* Добавляем плавный переход для transform и font-size */
	transform-origin: center center; /* Устанавливаем центр трансформации */
}

.product-item_search a:hover .product-item__overlay_search {
	transform: scale(1.02); /* Увеличиваем содержимое при наведении на родительский a */
	font-size: 110%; /* Увеличиваем шрифт на 10% */
}
.product-item__content_search {
	display: flex;
	align-items: center;
	gap: 10px;
	flex: 1;
	min-width: 0; /* Позволяет сжиматься */
	overflow: hidden; /* Предотвращает выход за границы */
}
.product-item__content_search i {
	font-size: 12px;
	background: linear-gradient(180deg, #9ca3af 0%, #6b7280 100%); /* Добавляем линейный градиент */
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-fill-color: transparent;
	flex-shrink: 0; /* Иконка не сжимается */
}
.product-item__content_search i.fa-key, .product-item__content_search i.fa-user, .product-item__content_search i.fa-unlock {
	font-size: 12px;
	background: linear-gradient(180deg, #9ca3af 0%, #6b7280 100%);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
	background-clip: text;
	text-fill-color: transparent;
}
.product-item__title_search {
	color: #111;
	font-size: 16px;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	margin-right: 15px; /* Отступ справа для равномерности */
	min-width: 0; /* Позволяет flex-элементу сжиматься */
	max-width: calc(100% - 25px); /* Ограничиваем ширину с учетом иконки */
	flex: 1; /* Занимает доступное пространство */
}
.product-item__right_search {
	display: flex;
	align-items: center;
	gap: 12px; /* Увеличиваем отступ между элементами */
	flex-shrink: 0; /* Предотвращаем сжатие правого блока */
}
.product-item__right_search .catalog-card__lable {
	position: static;
	background: linear-gradient(135deg, #ff6b6b, #ff8e53);
	color: #fff;
	padding: 4px 8px;
	border-radius: 4px;
	font-size: 12px;
	font-weight: 500;
}
.q_link a {
	justify-content: center;
	font-size: 16px;
	font-weight: 500;
	text-align: center;
	padding: 5px;
}
.q_link .product-item__overlay_search {
	width: 100% !important;
	flex-shrink: 0;
	white-space: normal;
	overflow: visible;
	text-overflow: clip;
	padding: 5px 0;
	justify-content: center;
	align-items: center;
}

.header__cart {
	display: block;
	position: absolute;
	right: 0px;
}

.header__cart-link {
	display: flex;
	align-content: center;
	align-items: center;
	justify-content: center;
	width: 176px;
	height: 45px;
	background: linear-gradient(180deg, #000aff 5%, #111 100%);
	box-shadow: 0px 4px 10px rgba(64, 65, 71, 0.25);
	border-radius: 12px;
	border: 2px #111;
}
.header__cart-link:hover {
	box-shadow:
	0 0 0 4px rgba(0, 10, 255, 0.85), /* Основная синяя обводка */
	0 0 15px rgba(0, 10, 255, 0.6), /* Размытая внешняя тень для глубины */
	0 0 15px rgba(0, 10, 255, 0.4), /* Ещё более размытая внешняя тень для большей глубины */
 	0px 8px 15px rgba(0, 10, 255, 0.76);
	transform: scale(1.05); /* Увеличиваем текст на 5% */
	transition: all 0.3s;
}

.header__cart-link svg {
	display: block;
	width: 27px;
	height: 27px;
	color: #fff;
}
.header__cart-link span{
	font-weight: 600;
    font-size: 16px;
    color: #FFFFFF;
    margin-left: 7px;
}


.favorite_header {
position: relative;
display: flex;
align-items: center;
column-gap: 5px;
text-transform: inherit;
height: 45px;
font-weight: 600;
background: linear-gradient(180deg, #000aff 5%, #111 100%);
box-shadow: 0px 4px 10px rgba(64, 65, 71, 0.25);
color: #fff;
border-radius: 12px;
border: 2px #111;
margin-left: 20px;
margin-right: 10px;
}
.favorite_header:hover {
	box-shadow:
	0 0 0 4px rgba(0, 10, 255, 0.85), /* Основная синяя обводка */
	0 0 15px rgba(0, 10, 255, 0.6), /* Размытая внешняя тень для глубины */
	0 0 15px rgba(0, 10, 255, 0.4), /* Ещё более размытая внешняя тень для большей глубины */
 	0px 8px 15px rgba(0, 10, 255, 0.76);
	background: linear-gradient(180deg, #000aff 5%, #111 100%) !important;
	transform: scale(1.05); /* Увеличиваем текст на 5% */
	transition: all 0.3s;
}

.favorite_header:hover svg{
fill: #fff;
}

.favorite_header:hover span{
color: #fff;
}
.favorite_header span {
display: block;
content: "9";
position: absolute;
font-weight: 700;
font-size: 16px;
line-height: 21px;
color: #fffbfb;
background: linear-gradient(180deg, #387dff 5%, #111 100%);
-webkit-backdrop-filter: blur(10px);
backdrop-filter: blur(10px);
border-radius: 9px;
top: 3px;
left: 10px;
padding: 0px 4px;
}
.favorite_header svg {
fill: #387dff;
-webkit-transition: fill 0.3s;
-o-transition: fill 0.3s;
transition: fill 0.3s;
margin-right: 3px;
}

.header__bar {
	background: var(--main-site);
	border-top: 1px solid #2d1f44;
}
.search_enter{
	position: absolute;
	right: 0px;
	left: auto;
	width: 45px;
	height: 45px;
	background: var(--main-bg);
	box-shadow: 0px 4px 12px rgba(0, 10, 255, 0.32);
	border-radius: 79px;
	z-index: 1;
	display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;
}
.search_enter svg{
	display: block;
    width: 20px;
    height: 20px;
    color: #fff;
}

.header__search{
	display: flex;
}
.header-bar-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 0 0;
	flex-wrap: wrap;
}

.header-bar-inner a {
    color: #fff;
    font-weight: 600;
	font-family: 'Quicksand', sans-serif;
    font-size: 16px;
    padding: 15px 16px;
    transition: transform 0.3s ease, font-size 0.3s ease;
    display: inline-block;
    text-decoration: none;
    white-space: nowrap;
}
.header-bar-inner a:hover {
    transform: scale(1.05); /* Увеличиваем текст на 5% */
}

/* end HEADER */
/* SLIDER */
.main-slider {
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-image: linear-gradient(45deg, #1a1919 25%, #0e216d 50%, #1a1919 75%);
    border-bottom: 10px solid #F4F6FC; /* Добавляем цветной отступ */
}

/* Новые стили для контейнера и скелетонов слайдера */
.main-slider-container-wrapper {
    position: relative;
    transition: height 0.3s ease;
    padding: 15px 0;
    z-index: 1; /* Добавляем z-index для корректного наложения */
}

.main-slider-container-wrapper.loaded .promo-slider {
    opacity: 1;
    visibility: visible;
    z-index: 4;
    transition-delay: 0s;
}

.main-slider-container-wrapper.loaded .main-slider-skeletons {
    opacity: 0;
    /* visibility removed to allow overlay */
    pointer-events: none;
    z-index: 1;
    transition-delay: 0s;
}

.main-slider-skeletons {
    display: flex;
    flex-wrap: nowrap;
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    opacity: 1;
    visibility: visible;
    transition: none;
    padding: 30px 10px 30px 0;
    z-index: 3; /* Более высокий z-index, чем у слайдера (2) */
}

@keyframes shimmer {
    0% {
        background-position: -1000px -1000px;
    }
    100% {
        background-position: 1000px 1000px;
    }
}

@keyframes steam-skeleton-loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.promo-slider {
    display: flex;
    flex-wrap: nowrap; /* Запрещаем перенос слайдов на следующую строку */
    opacity: 0;
    visibility: hidden;
    transition: none;
    position: relative;
    z-index: 2;
}

.promo-slider .category-col {
    width: 24%; /* Задаем ширину каждого слайда */
    aspect-ratio: 392 / 522;
    border-radius: 16px;
    overflow: hidden;
    margin: 0 10px;
    box-shadow:
    0 0 7px rgba(17, 17, 17, 0.6), /* Размытая внешняя тень для глубины */
    0 0 7px rgba(17, 17, 17, 0.4), /* Ещё более размытая внешняя тень для большей глубины */
    2px 5px 7px rgba(17, 17, 17, 0.76); /* Дополнительная тень для акцента */
    transition: box-shadow 0.3s ease-out, transform 0.3s ease-out, opacity 0.5s, transform 0.5s;
    opacity: 0;
    transform: translateX(-100%);
}
.promo-slider .category-col:last-child {
    margin-right: 10px;
}
.promo-slider .category-col.visible {
    opacity: 1;
    transform: translateX(0);
}



.promo-slider .category-col:hover {
	box-shadow:
	0 -2px 9px rgba(0, 10, 255, 0.6), /* Размытая внешняя тень для глубины */
	0 -2px 9px rgba(0, 10, 255, 0.4), /* Ещё более размытая внешняя тень для большей глубины */
	2.5px 5px 9px rgba(0, 10, 255, 0.76);
	transition: transform 0.3s ease-out;
	transform: translateY(-5px);
}
.promo-slider .slick-list{
margin: 0 -5px;
}
.promo-slider .category-col .category-card-inner {
    position: relative; /* Это уже есть в вашем коде */
    display: flex;      /* Это поддерживает гибкость внутренних элементов */
    width: 100%;        /* Занимает полную ширину родителя */
    height: 100%;       /* Занимает полную высоту родителя */
}

.promo-slider .category-col .bg_category {
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 75%, rgba(0, 10, 255, 0.85) 100%);
	border: 2px solid #111; /* Обводка */
    border-radius: 16px; /* Закругление углов */
    z-index: 1;
}

.promo-slider .category-col .category-card-inner img {
    object-fit: cover;
    object-position: center; /* Центрирует изображение */
    width: 100%;
    height: 100%;
    transition: 2s;
}

.promo-slider .category-col:hover .category-card-inner img{
  transform: scale(1.1) ease-out;
}
.slick-slider._animated .slick-active .ani__img {
	transform:scale(1);
}
.ani__img {
	transform: scale(1.3);
	transform-origin: 50%;
	transition: transform 5.5s;
}

/* end SLIDER */

.genres_block {
    display: flex;
    margin: 0 10px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 3px solid transparent;
    box-sizing: border-box;
}

.genres_block:hover {
    border: 3px solid #000aff;
}

.genres-list__item-bg{
	width: 100%;
	height: 75px;
}
.genres-list__item-bg img{
	object-fit: cover;
}
.genres_text{
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 0;
    font-weight: 600;
}
/* FOOTER */
footer {

}
.footer__top {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: #111 !important;
	flex-wrap: wrap;
}
.footer__avg{
display: flex;
max-width: 1400px;
width: 100%;
justify-content: flex-start;
margin: 0 auto;
padding: 0 20px 25px 20px;
box-sizing: border-box;
}
.footer__avg-menu{
display: flex;
font-size: 16px;
font-weight: 500;
flex-wrap: wrap;
}
.footer__avg-menu li{
display: flex;
}
.footer__avg-menu li a{
padding: 10px 15px 10px 0;
color: rgba(121, 122, 128, 1);
}
.footer__avg-menu li a:hover{
color: #fff;
}

/* end FOOTER */
/* BREADCRUMBS */
.breadcrumbs {
	display: flex;
	list-style-type: none;
	flex-wrap: wrap;
}
.breadcrumbs__item {
	position: relative;
	padding: 1px 0;
}
.breadcrumbs__item:after {
	content: "";
	width: 5px;
	height: 9px;
	background: url(../img/svg/breadcrumbs-arrow.svg) no-repeat;
	position: absolute;
	top: 7px;
	right: -17px;
}
.breadcrumbs__item>a {
	color: #111;
}
.breadcrumbs__item+.breadcrumbs__item {
	padding-left: 30px;
}
.breadcrumbs__item:last-child a {
	color: #adadad;
}
.breadcrumbs__item:last-child:after{
	display:none;
}
/* end BREADCRUMBS */


/* CATALOG */
.flex {
    display: flex;
    flex-wrap: wrap; /* Позволяет элементам переноситься на новую строку */
    align-items: center; /* Изменено для поддержки начального выравнивания по вертикали */
    font-size: 16px;
}

.filter_catalog {
    display: flex;
	align-items: left;
    row-gap: 25px;
    column-gap: 15px; /* Определяем промежуток между элементами */
    margin: 15px 0;
}

/* Выбираем последний элемент внутри .filter_catalog и добавляем отступ справа */
.filter_catalog > :last-child {
    margin-right: 5px;
}

.select {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    min-width: 240px;
    width: fit-content;
    max-width: 300px;
    margin-left: auto;
    z-index: 5;
}
/* Медиа-запрос для управления расположением элементов на основе размера экрана */
@media (max-width: 670px) { /* Примерная точка перелома, адаптируйте под свои нужды */
    .flex {
        flex-direction: column;
    }
    .filter_catalog {
        row-gap: 15px;
    }
	.platforms-filter {
		margin-bottom: 10px; /* Существующий нижний отступ */
		margin-top: 10px; /* Добавляем верхний отступ */
	}
    .select {
        margin-bottom: 10px; 
		margin-left: 0;
    }
}

.select__head {
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    width: 100%;
    max-width: 100%;
    padding: 12px 16px;
    border: 2px solid #0e216d;
    border-radius: 18px;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    background:
        linear-gradient(160deg, rgba(15, 25, 55, 0.98) 0%, rgba(25, 40, 80, 0.95) 52%, rgba(18, 32, 65, 0.98) 100%);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.55),
        0 0 18px rgba(92, 141, 255, 0.32),
        0 18px 38px rgba(6, 13, 35, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 0 0 1px rgba(123, 222, 255, 0.12);
    color: #ffffff;
    text-shadow:
        0 0 8px rgba(150, 220, 255, 0.5),
        0 0 16px rgba(92, 141, 255, 0.25);
    min-height: 48px;
    backdrop-filter: blur(18px);
    position: relative;
    height: auto;
    white-space: nowrap;
}

.select__head:hover,
.select__head.open {
    border-color: rgba(103, 236, 255, 0.55);
    background:
        linear-gradient(160deg, rgba(20, 35, 65, 0.98) 0%, rgba(28, 48, 90, 0.96) 52%, rgba(22, 38, 72, 0.98) 100%);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.8),
        0 0 25px rgba(66, 214, 255, 0.35),
        0 20px 36px rgba(7, 15, 38, 0.2),
        0 0 40px rgba(66, 214, 255, 0.15);
    color: #ffffff;
    text-shadow:
        0 0 12px rgba(98, 226, 255, 0.7),
        0 0 24px rgba(98, 226, 255, 0.45),
        0 0 36px rgba(92, 141, 255, 0.3);
}

.select__head .select-main-icon,
.select__head .select-arrow {
    font-size: 14px;
    color: #c2f0ff;
    flex-shrink: 0;
    filter: drop-shadow(0 0 4px rgba(98, 226, 255, 0.6));
}

.select__head .select-arrow {
    transition: transform 0.3s ease;
}

.select__head .select-text {
    flex: 1;
    text-align: left;
    color: inherit;
}

.select__head.open .select-arrow {
    transform: rotate(180deg);
}

.select__list {
    font-family: 'Roboto', sans-serif;
    font-weight: 450;
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    padding: 8px;
    border: 2px solid #0e216d;
    border-radius: 18px;
    background:
        linear-gradient(160deg, rgba(15, 25, 55, 0.98) 0%, rgba(25, 40, 80, 0.96) 52%, rgba(18, 32, 65, 0.98) 100%);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.7),
        0 0 20px rgba(92, 141, 255, 0.25),
        0 22px 40px rgba(6, 13, 35, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    max-height: 205px;
    overflow-x: hidden;
    overflow-y: auto;
    z-index: 100;
    margin: 0;
    font-size: 14px;
    color: #ffffff;
    scrollbar-color: dark;
    scrollbar-width: thin;
    overscroll-behavior: contain;
}

.select__list::-webkit-scrollbar {
    width: 6px;
    background: transparent;
}

.select__list::-webkit-scrollbar-thumb {
    border-radius: 999px;
    background: rgba(141, 176, 255, 0.32);
}

.select__list .select__item {
    position: relative;
    margin-bottom: 6px;
    padding: 11px 14px;
    border: 1px solid rgba(121, 157, 242, 0.25);
    border-radius: 12px;
    background:
        linear-gradient(180deg, rgba(25, 38, 72, 0.9) 0%, rgba(18, 28, 52, 0.94) 100%);
    color: #ffffff;
    text-shadow:
        0 0 6px rgba(150, 220, 255, 0.5),
        0 0 12px rgba(92, 141, 255, 0.25);
    cursor: pointer;
    list-style-type: none;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.select__list .select__item:last-child {
    margin-bottom: 0;
}

.select__list .select__item:hover {
    border-color: rgba(103, 236, 255, 0.55);
    background:
        linear-gradient(135deg, rgba(35, 90, 200, 0.95) 0%, rgba(65, 75, 200, 0.96) 55%, rgba(95, 55, 190, 0.95) 100%);
    box-shadow:
        0 12px 22px rgba(8, 18, 52, 0.22),
        0 0 20px rgba(66, 214, 255, 0.35),
        0 0 40px rgba(66, 214, 255, 0.15);
    color: #ffffff;
    text-shadow:
        0 0 10px rgba(98, 226, 255, 0.8),
        0 0 20px rgba(98, 226, 255, 0.5),
        0 0 30px rgba(92, 141, 255, 0.3);
}

/* Каталог: кнопки фильтров и выпадающие списки — тёмная тема */
.sticky-filters-panel {
    background:
        linear-gradient(160deg, rgba(15, 25, 55, 0.98) 0%, rgba(25, 40, 80, 0.95) 52%, rgba(18, 32, 65, 0.98) 100%);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.55),
        0 0 18px rgba(92, 141, 255, 0.32),
        0 18px 38px rgba(6, 13, 35, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.sticky-filters-panel.is-stuck {
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.7),
        0 0 20px rgba(92, 141, 255, 0.25),
        0 22px 40px rgba(6, 13, 35, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.filter-btn {
    padding: 12px 16px;
    border: 2px solid #0e216d;
    border-radius: 18px;
    background:
        linear-gradient(160deg, rgba(15, 25, 55, 0.98) 0%, rgba(25, 40, 80, 0.95) 52%, rgba(18, 32, 65, 0.98) 100%);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.55),
        0 0 18px rgba(92, 141, 255, 0.32),
        0 18px 38px rgba(6, 13, 35, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.1),
        inset 0 0 0 1px rgba(123, 222, 255, 0.12);
    color: #ffffff;
    text-shadow:
        0 0 8px rgba(150, 220, 255, 0.5),
        0 0 16px rgba(92, 141, 255, 0.25);
    min-height: 48px;
    backdrop-filter: blur(18px);
}

.filter-btn:hover,
.filter-btn.open {
    border-color: rgba(103, 236, 255, 0.55);
    background:
        linear-gradient(160deg, rgba(20, 35, 65, 0.98) 0%, rgba(28, 48, 90, 0.96) 52%, rgba(22, 38, 72, 0.98) 100%);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.8),
        0 0 25px rgba(66, 214, 255, 0.35),
        0 20px 36px rgba(7, 15, 38, 0.2),
        0 0 40px rgba(66, 214, 255, 0.15);
    color: #ffffff;
    text-shadow:
        0 0 12px rgba(98, 226, 255, 0.7),
        0 0 24px rgba(98, 226, 255, 0.45),
        0 0 36px rgba(92, 141, 255, 0.3);
}

.filter-btn i {
    color: #c2f0ff;
    filter: drop-shadow(0 0 4px rgba(98, 226, 255, 0.6));
}

.filter-reset-trigger i,
.filter-reset-trigger-all i {
    color: #c2f0ff;
}

.filter-reset-trigger:hover i,
.filter-reset-trigger-all:hover i {
    color: rgba(103, 236, 255, 0.9);
}

.filter-btn.active + .filter-reset-trigger,
#open-all-filters-btn.active + .filter-reset-trigger-all {
    background:
        linear-gradient(160deg, rgba(20, 35, 65, 0.98) 0%, rgba(28, 48, 90, 0.96) 52%, rgba(22, 38, 72, 0.98) 100%);
    border: 2px solid rgba(103, 236, 255, 0.55);
    border-left: none;
    margin-left: -2px;
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.8),
        0 0 25px rgba(66, 214, 255, 0.35);
}

#open-all-filters-btn.active + .filter-reset-trigger-all i {
    color: #c2f0ff;
}

.filter-dropdown {
    margin-top: 10px;
    padding: 8px;
    border: 2px solid #0e216d;
    border-radius: 18px;
    background:
        linear-gradient(160deg, rgba(15, 25, 55, 0.98) 0%, rgba(25, 40, 80, 0.96) 52%, rgba(18, 32, 65, 0.98) 100%);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.7),
        0 0 20px rgba(92, 141, 255, 0.25),
        0 22px 40px rgba(6, 13, 35, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.dropdown-content {
    padding: 8px;
    box-shadow: none;
    border-radius: 12px;
    background: transparent;
}

.dropdown-item {
    margin-bottom: 6px;
    padding: 11px 14px;
    border: 1px solid rgba(121, 157, 242, 0.25);
    border-radius: 12px;
    background:
        linear-gradient(180deg, rgba(25, 38, 72, 0.9) 0%, rgba(18, 28, 52, 0.94) 100%);
    color: #ffffff;
    text-shadow:
        0 0 6px rgba(150, 220, 255, 0.5),
        0 0 12px rgba(92, 141, 255, 0.25);
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.dropdown-item:last-child {
    margin-bottom: 0;
}

.dropdown-item:hover {
    border-color: rgba(103, 236, 255, 0.55);
    background:
        linear-gradient(135deg, rgba(35, 90, 200, 0.95) 0%, rgba(65, 75, 200, 0.96) 55%, rgba(95, 55, 190, 0.95) 100%);
    box-shadow:
        0 12px 22px rgba(8, 18, 52, 0.22),
        0 0 20px rgba(66, 214, 255, 0.35),
        0 0 40px rgba(66, 214, 255, 0.15);
    color: #ffffff;
    text-shadow:
        0 0 10px rgba(98, 226, 255, 0.8),
        0 0 20px rgba(98, 226, 255, 0.5),
        0 0 30px rgba(92, 141, 255, 0.3);
}

.dropdown-item.active {
    border-color: rgba(103, 236, 255, 0.55);
    background:
        linear-gradient(135deg, rgba(35, 90, 200, 0.95) 0%, rgba(65, 75, 200, 0.96) 55%, rgba(95, 55, 190, 0.95) 100%);
    box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.8),
        0 0 25px rgba(66, 214, 255, 0.35);
    color: #ffffff;
}

input[type='text'] {
    font-size: 14px;
    width: 100%;
    height: 40px;
    padding: 0 10px;
    color: #111;
    outline: none;
    background-color: #fff;
}
fieldset {
    padding: 15px 0;
    border-bottom: 1px solid #cecece;
}
.catalog-filter form {
    border-top: 1px solid #cecece;
}

fieldset .field-container {
    padding-top: 10px;
}


/* end CATALOG */

/* GOODS */
.category-page-top-left {
    width: 35%;
    padding-right: 15px;
}
.category-page-top-left .buying {
    width: 100%;
    font-size: 16px;
}
.category-page-top-left .buying {
    width: 100%;
	min-height: 50px;
    font-size: 16px;
    box-shadow: 0px 4px 20px rgb(0 0 0 / 7%);
    border-radius: 0 0 12px 12px;
}
.hidden {
    display: none;
}

.fade-in {
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.fade-in.visible {
    display: block;
    opacity: 1;
}

.skeleton {
    display: flex;
    justify-content: space-between;
}

.skeleton-item {
    background-color: #ddd;
    width: 30%;
    height: 140px;
    border-radius: 8px;
}
/* end GOODS */

.info-block-product {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #111 5%, #081549 100%);
    box-shadow:
    0 0 15px rgba(17, 17, 17, 0.6),
    0 0 15px rgba(17, 17, 17, 0.4),
    0px 8px 15px rgba(17, 17, 17, 0.76);
    border-radius: 12px;
    font-size: 16px;
    color: #fff;
    margin-bottom: 20px;
}


.info-block-product.clickable:hover {
    cursor: pointer; /* Изменяет курсор на указатель, показывая, что элемент можно нажать */
}

.info-block-product>li {
    position: relative;
    height: 50px;
    line-height: 50px;
    padding-left: 30px;
    font-weight: 600;
    display: flex;
    align-items: center;
}
.info-block-product>li:first-child {
    padding-left: 0;
}
.info-block-product>li:last-child:after{
    display:none;
	border-bottom: 20px;
}
.info-block-product>li>a {
    display: block;
    padding: 0 8px;
}
.info-block-product>li>a:hover {
    color: #111;
}
.info-block-product>li i {
    margin-right: 5px;
    font-size: 18px;
}
.info-block-product>li i.negative {
    margin-left: 15px; /* Установите размер отступа по своему усмотрению */
}

/* TABS */
#tabs div.tabs {
	display: none;
	background: rgba(94, 94, 101, 0.05);
    border-radius: 9px;
    padding: 31px;
}
#tabs div.active {
	display: block;
	overflow-wrap: break-word;
	font-size: 16px;
}

.tabs-header {
	display: flex;
	flex-wrap: wrap;
	justify-content: left;
	align-items: center;
}
.tabs-header a {
	pointer-events: none;
}
.tabs-header a.active {
	color: #111;
}
.tabs-header a.active, .tabs-header a.active:hover, .tabs-header a:hover {
	color: #111;
}
/* end TABS */
/* products-list */
.products-list {
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start; /* Изменено для равномерного распределения с gap */
	gap: 20px; /* Оставляем только gap для одинаковых отступов */
    width: 100%;
    padding: 20px 0;
}
.skeleton-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; /* Центрирование карточек в контейнере */
}

.skeleton-card {
    width: calc((100% - 100px) / 6);
    min-width: 0;
    height: 396px;
    border-radius: 12px;
    background: linear-gradient(to right, #e0e0e0 8%, #f0f0f0 18%, #e0e0e0 33%);
    box-shadow: 4px 4px 6px rgba(0, 0, 0, 0.3);
    background-size: 1000px 104px;
    animation: shimmer 0.4s infinite linear;
}

@keyframes shimmer {
    0% {
        background-position: -468px 0;
    }
    100% {
        background-position: 468px 0;
    }
}

.catalog-col_main, .catalog-card-inner {
    cursor: pointer;
}
.catalog-col_main {
	width: calc((100% - 100px) / 6);
    min-width: 0;
    background: #FFFFFF;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 4px 4px 6px rgba(0, 0, 0, 0.3);
    transition: all 0.3s; /* Плавное изменение свойств */
    display: flex;
    flex-direction: column;
}
  
.catalog-col_main:hover, .category-cards .category-list__item:hover {
    box-shadow:
		0 0 0 4px rgba(0, 10, 255, 0.85), /* Основная синяя обводка */
		2px 2px 15px rgba(0, 10, 255, 0.6), /* Лёгкое смещение */
		2px 2px 20px rgba(0, 10, 255, 0.4); /* Ещё более размытая внешняя тень для глубины */
    transition: all 0.3s;
}
.catalog-card__info-stat{
    justify-content: flex-start; /* Выравнивание элементов в начале контейнера */
    min-height: 27px; /* Минимальная высота, чтобы обеспечить видимость, даже если другие элементы отсутствуют */
    font-size: 13px;
    line-height: 19px;
    margin: 0 15px;
    white-space: break-spaces;
    overflow: hidden;
    display: flex;
    align-items: center;
    text-overflow: ellipsis;
}

    .catalog-card__info-stat span{
display: inline-flex;
   align-items: center;
   margin-right: 10px;
   font-weight: 600;
   font-family: 'Lato', sans-serif;
   line-height: 1.5;
}

.separator-dot {
    display: inline-flex;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(266.26deg, #000aff 8.85%, #ccc 100%);
    position: relative;
    flex-shrink: 0;
}

.separator-dot::after {
    content: '';
    position: absolute;
    top: 0.5px;
    left: 1px;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.7);
    opacity: 0.8;
}

.item-rating {
	background-image: linear-gradient(to top, #cccccc 0%, #ffff9959 50%);
    border-radius: 10px; /* Закругленные углы, размер радиуса можно настроить */
    display: inline-flex; /* Удерживает элементы в строке и позволяет использовать flex-свойства */
    align-items: center; /* Центрирование содержимого по вертикали */
    padding: 3px 5px; /* Внутренние отступы для создания пространства вокруг текста и иконки */
	border: 1px solid #cccccc; /* Тонкая серая обводка */
}
.item-rating:before {
    content: "";
    display: inline-flex;
    margin-right: 3px;
    width: 18px;
    height: 16px;
    background: url(/assets/img/svg/star-item.svg) center;
    background-size: cover;
}

.catalog-card__info-stat .product-card-badges {
    background: none;
    border: none;
    border-radius: 0;
    padding-top: 10px;
    padding-bottom: 8px;
    display: inline-flex;
    align-items: center;
    flex-wrap: nowrap;
    white-space: nowrap;
}

.card-type-badge, .platform-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
    border-radius: 12px;
    font-weight: 400;
    font-size: 12px;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.card-type-badge {
    background: linear-gradient(180deg, #f0f0ff 0%, #e0e0ff 100%);
    border: 1px solid #c0c0ff;
    color: #000aff;
}
.platform-badge {
    background: linear-gradient(180deg, #f8f8f8 0%, #e8e8e8 100%);
    border: 1px solid #dcdcdc;
    color: #444;
    margin-right: 7px;
}

.catalog-card__info-stat span:last-child{
    white-space: nowrap;
    text-overflow: ellipsis;
    display: inline-flex;
}

.catalog-card-inner {
	position: relative;
	width: 100%;
	display: block;
	padding-top: 100%;
	overflow: hidden;
	border-top-left-radius: 9px; /* Закругление верхнего левого угла */
    border-top-right-radius: 9px; /* Закругление верхнего правого угла */
}
.catalog-card-inner__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(3px) brightness(0.9);
    z-index: 1;
    border-top-left-radius: 9px;
    border-top-right-radius: 9px;
    pointer-events: none;
    user-select: none;
}
.catalog-card-inner__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    z-index: 2;
    border-top-left-radius: 9px;
    border-top-right-radius: 9px;
    background: transparent;
    /* Эффект плавного растворения краёв */
    -webkit-mask-image: radial-gradient(circle at 50% 50%, rgba(0,0,0,1) 70%, rgba(0,0,0,0) 100%);
    mask-image: radial-gradient(circle at 50% 50%, rgba(0,0,0,1) 70%, rgba(0,0,0,0) 100%);
    mask-mode: alpha;
    -webkit-mask-mode: alpha;
    transition: mask-image 0.3s, -webkit-mask-image 0.3s, box-shadow 0.5s cubic-bezier(.4,2,.6,1);
    /* Добавление свечения вокруг изображения */
    box-shadow: 0 0 20px 0 rgba(0, 143, 238, 0.15), 0 0 40px 0 rgba(0, 10, 255, 0.08);
}

/* Создаем halo-эффект через псевдоэлемент */
.catalog-card-inner {
    position: relative;
    width: 100%;
    display: block;
    padding-top: 100%;
    overflow: hidden;
    border-top-left-radius: 9px; /* Закругление верхнего левого угла */
    border-top-right-radius: 9px; /* Закругление верхнего правого угла */
}

.catalog-card-inner::after {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 12px;
    pointer-events: none;
    z-index: 3;
    background: conic-gradient(from 0deg, rgba(0, 143, 238, 0.5), rgba(0, 10, 255, 0.5), rgba(0, 143, 238, 0.5) 100%);
    opacity: 0;
    filter: blur(15px);
    transition: opacity 0.4s;
}

/* Световой блик (shine) через псевдоэлемент */
.catalog-card-inner::before {
    content: '';
    position: absolute;
    top: -10%;
    left: -100%;
    width: 200%;
    height: 120%;
    background: linear-gradient(
        120deg, 
        rgba(255,255,255,0) 30%, 
        rgba(0, 143, 238, 0.3) 40%,
        rgba(255,255,255,0.5) 50%, 
        rgba(0, 10, 255, 0.3) 60%,
        rgba(255,255,255,0) 70%
    );
    transform: skewX(-20deg);
    pointer-events: none;
    opacity: 0;
    z-index: 4;
}

/* Активация эффектов при наведении */
.catalog-col_main:hover .catalog-card-inner::after {
    opacity: 0;
    animation: none;
}

.catalog-col_main:hover .catalog-card-inner__img {
    box-shadow: 0 0 30px 10px rgba(0, 143, 238, 0.35), 0 0 50px 20px rgba(0, 10, 255, 0.2);
}

.catalog-col_main:hover .catalog-card-inner::before {
    opacity: 1;
    animation: shine-move 2s cubic-bezier(.4,0,.2,1) infinite;
}

/* Дополнение для эффекта на карточках в сетке каталога */
.catalog-col_main:hover .catalog-card-inner::after {
    opacity: 0;
    animation: none;
}

.catalog-col_main:hover .catalog-card-inner__img {
    box-shadow: 0 0 30px 10px rgba(0, 143, 238, 0.35), 0 0 50px 20px rgba(0, 10, 255, 0.2);
}

.catalog-col_main:hover .catalog-card-inner::before {
    opacity: 1;
    animation: shine-move 2s cubic-bezier(.4,0,.2,1) infinite;
}

/* Анимации для эффектов */
@keyframes halo-rotate {
    0% { filter: blur(15px) hue-rotate(0deg);}
    100% { filter: blur(15px) hue-rotate(360deg);}
}

@keyframes shine-move {
    0%, 100% { left: -100%; opacity: 0; }
    15% { opacity: 1; }
    50% { left: 100%; opacity: 1; }
    51% { opacity: 0; }
}

.seller-name-bar {
    background: #f3f3f3;
    color: #444;
    text-align: center;
    padding: 5px 10px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 14px;
    border-bottom-left-radius: 9px;
    border-bottom-right-radius: 9px;
    position: relative;
    z-index: 10;
}

.seller-name-bar a {
    color: #444;
    text-decoration: none;
    position: relative;
    display: inline-block;
    transition: transform 0.2s;
    font-weight: 400;
}
.seller-name-bar a:hover {
    transform: scale(1.08);
    z-index: 2;
}
.seller-name-text {
    vertical-align: middle;
    font-weight: 400;
    font-size: 14px;
}
.seller-name-bar .fa-user {
    font-size: 15px;
    color: #444;
    vertical-align: middle;
    margin-right: 6px;
}
.seller-tooltip {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    left: 50%;
    bottom: 100%;
    transform: translateX(-50%) translateY(-14px);
    max-width: 95%;
    min-width: 120px;
    min-height: 32px;
    background: #fff;
    color: #444;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 400;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.25s, transform 0.25s;
    z-index: 9999;
    white-space: normal;
    line-height: 1.3;
    max-height: 3.2em;
    overflow-wrap: break-word;
    word-break: break-word;
    text-align: center;
}
.seller-name-bar a:hover .seller-tooltip {
    opacity: 1;
    pointer-events: auto;
    transform: translateX(-50%) translateY(-18px);
}
.seller-tooltip .fa-arrow-right {
    font-size: 15px;
    color: #444;
    margin-left: 8px;
    vertical-align: middle;
}
.seller-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 8px 10px 0 10px;
    border-style: solid;
    border-color: #fff transparent transparent transparent;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.10));
}

.catalog-card__lable {
	position: absolute;
	top: 5px;
	right: 5px;
	font-size: 12px;
	background-color: #3ab54b;
	color: #fff;
	padding: 2px 5px;
}
.catalog-card__info{
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: flex-start;
}
.catalog-card__info-title {
    max-width: 355px; /* Ограничивает максимальную ширину */
    font-weight: 600;
    font-size: 16px;
    line-height: 21px; /* Устанавливает высоту строки */
    color: #5E5F65;
    padding: 0 15px;
    box-sizing: border-box; /* Включает padding в общую ширину */
    overflow: hidden; /* Скрывает текст, выходящий за пределы */
    text-overflow: ellipsis; /* Добавляет многоточие в конец обрезанного текста */
    display: -webkit-box; /* Для поддержки многоточия в конце обрезанного текста */
    -webkit-line-clamp: 3; /* Ограничивает количество строк до 3 */
    -webkit-box-orient: vertical; /* Ориентация содержимого коробки */
    word-wrap: break-word; /* Разрешает перенос слов на новую строку */
    overflow-wrap: break-word; /* Обеспечивает перенос длинных слов/URL */
    min-height: 63px; /* Фиксированная высота для 3 строк (3 * 21px) */
}

.buy_info{
    border-radius: 0 0 12px 12px;
    width: 100%;
    height: 40px;
    background: linear-gradient(266.26deg, #008fee 8.85%, #000aff 100%);
    box-shadow: 0px 0px 0 5px #000aff3d;
    transition: all 0.3s;
    margin-top: 15px;
}
.buy_info:hover{
    box-shadow: 0px 0px 0 7px #000aff3d;
    color: #000aff;
    transform: scale(1.02);
}

.buy_info a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 22px;
    text-transform: uppercase;
    transition: all 0.3s;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    -webkit-text-stroke: 0.2px #000;
    text-stroke: 0.2px #000;
    color: #fff; /* Устанавливаем обычный белый цвет текста */
}

.buy_info a:hover {
    font-size: 24px;
}

/* Стили для символа валюты внутри кнопки купить */
.buy_info a .buy-button__currency {
    margin-left: 5px; /* Отступ слева как в старых стилях */
    font-size: 18px; /* Размер шрифта как в старых стилях */
    text-shadow: 0.5px 0.5px 1px rgba(0, 0, 0, 0.5); /* Тень как в старых стилях */
    /* Цвет и обводка наследуются от родительского <a> */
}

.bg__new{
	background: linear-gradient(250.58deg, #FD6585 -0.57%, #FD6585 99.41%)!important;
}
.bg__new:hover {
    box-shadow: 0px 0px 0 2px #fd658533!important;
}
/* end products-list */

.rules {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 12px;
	padding: 4px 0;
}
.rules input, .rules label {
	cursor: pointer;
}
.rules label {
	margin-left: 4px;
}

delivery, attention, allotted-dark {
    display: block;
	padding: 15px;
	margin: 10px 0;
	border-radius: 12px;
	border: 1px solid rgb(204, 204, 204, 0.5);
	box-shadow: 0px 4px 10px rgb(0 0 0 / 7%);
}
delivery {
    background-color: rgb(219, 233, 246, 0.5);
}
attention {
    background-color: rgb(221, 234, 246, 0.5);
}
allotted-dark {
    margin-top: 15px;
    background-color: #111;
    position: relative;
    width: 100%;
    padding: 28px 32px;
    border-radius: 12px;
    border: 1px solid rgb(204, 204, 204, 0.5);
    box-shadow: 0px 4px 10px rgb(0 0 0 / 7%);
    color: #fff;
}

allotted-dark h2 {
    text-align: left;
    font-weight: 700;
    font-size: 14px;
    color: #fff;
    letter-spacing: .5px;
    line-height: 28px;
    margin: 0 0 10px 0 !important;
    display: flex;
    align-items: center;
}

allotted-dark h2 .h2-text {
    margin-left: 10px;
    line-height: 1.2;
}

allotted-dark p {
    margin: 0;
    padding-top: 6px;
    font-size: 15px;
    font-weight: 400;
    color: #fff;
    letter-spacing: 0;
    line-height: 20px;
}

allotted-dark a {
    color: #51baff;
}

allotted-dark a:hover {
    color: #008fee;
}

.allotted-dark-list {
	padding-bottom: 15px;
}

.rules_menu {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 10px;
	margin: 0 0 40px 0;
}
.rules_menu>li {
	flex: 1;
	margin: 0;
}
.rules_menu>li>a {
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 10px 0;
	min-height: 100px;
	color: #fff;
	border: 1px solid #adadad;
	text-align: center;
	border-radius: 12px;
}
.rules_menu>li>a:hover {
	
	color: #fff;
	border-color: rgb(var(--main-color));
}
.rules_block {
	margin-bottom: 40px;
}
.rules_block:last-child {
	margin-bottom: 0;
}
.rules_block h3 {
	font-size: 16px;
	font-weight: 600;
	text-transform: uppercase;
	margin-bottom: 10px;
}
/**/
.reviews__item, .reviews_none {
	background: #F4F6FC;
	padding: 25px;
	border-radius: 16px;
	color: #FFFFFF;
}
.reviews__item:not(:last-child) {
	margin-bottom: 20px;
}

.reviews__item.good {
    background: linear-gradient(135deg, #081549 85%, #00FF00 100%);
    box-shadow: 0px 0px 0px 3px rgba(0, 255, 0, 0.7) inset, 4px 0px 10px rgba(0, 0, 0, 0.5);
}

.reviews__item.bad {
    background: linear-gradient(135deg, #081549 85%, #FF0000 100%);
    box-shadow: 0px 0px 0px 3px rgba(255, 0, 0, 0.7) inset, 4px 0px 10px rgba(0, 0, 0, 0.5);
}

.reviews_none{
    font-size: 16px;
    background: linear-gradient(135deg, #081549 85%, #0e216d 100%);
    box-shadow: 0px 0px 0px 3px #000aff inset, 4px 0px 10px rgba(0, 0, 0, 0.5);
}

.reviews__item-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 54px;
}
.reviews__item_container{
	width: 94%;
	display: flex;
    flex-wrap: wrap;
    align-self: normal;
}
.reviews__item .answer-title {
	font-size: 10px;
	letter-spacing: .1em;
	text-transform: uppercase;
	color: #faf0f0;
	opacity: .4;
	margin-top: 8px;
}
.reviews__item .answer-text {
	font-size: 14px;
	color: #fff;
}
.reviews__item-icon {
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 6px;
    margin-right: 10px;
}
.good .reviews__item-icon {
    background-image: url('/assets/img/svg/positive-list.svg'); /* Путь к вашей иконке */
}
.bad .reviews__item-icon {
    background-image: url('/assets/img/svg/negative-list.svg'); /* Путь к вашей иконке */
}
.good .reviews__item-icon, .bad .reviews__item-icon {
	display: inline-block; /* Элемент ведет себя как inline, но позволяет задать ширину и высоту */
    width: 50px; /* Ширина иконки, задайте по желанию */
    height: 50px; /* Высота иконки, задайте по желанию */
    background-size: contain;
    background-repeat: no-repeat; /* Предотвращает повторение изображения */
	background-position: center; /* Центрирование иконки */
}
.reviews__item-text {
	font-size: 16px;
	flex: 1;
}
.reviews__item-date {
	color: #adadad;
}
.reviews__item-type{
	font-weight: bold;
    font-size: 18px;
}
.good_color{
	color: rgba(90, 239, 114, 1);
}
.bad_color{
	color: rgba(255, 81, 81, 1);
}
.load-more-btn {
    color: #fff;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 30px;
    transition: 0.3s;
    background: linear-gradient(180deg, #000aff 5%, #060f33 100%);
    box-shadow: 0px 0px 0px 3px #000aff inset, 4px 4px 10px rgba(0, 0, 0, 0.5);
    border: none;
    cursor: pointer;
}

.load-more-btn:hover {
    box-shadow:
        0 0 0 4px rgba(0, 10, 255, 1), /* Основная синяя обводка */
        0 0 15px rgba(0, 10, 255, 0.6), /* Размытая внешняя тень для глубины */
        0 8px 20px rgba(0, 10, 255, 0.5); /* Ещё более размытая внешняя тень для большей глубины */
    transform: scale(1.05);
    transition: all 0.3s;
}

.load-more-btn.light, .btn_catalog_main.light, .sidebar-apply-btn, .dropdown-apply-btn {
    box-shadow: 0px 0px 0 5px #000aff3d;
    background: linear-gradient(180deg, #008fee 0%, #000aff 100%);
}
.load-more-btn.light:hover, .btn_catalog_main.light:hover {
    box-shadow: 0px 0px 0 8px #000aff3d;
    transform: scale(1.05);
    transition: all 0.3s;
}

.load-more-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.5);
}

.load-more-btn .remaining-count {
    font-weight: 700;
    margin-left: 10px;
    border: 1px solid #fff;
    padding: 3px 5px;
    border-radius: 12px;
}
/**/
.seller_block_category-page-top {
	flex-grow: 1;
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin: 0 -10px 10px -10px;
}

.seller_block_goods{
    align-items: center;
    background: linear-gradient(180deg, #111111 5%, #081549 100%);
    box-shadow:
    0 0 15px rgba(17, 17, 17, 0.6), /* Размытая внешняя тень для глубины */
    0 0 15px rgba(17, 17, 17, 0.4), /* Ещё более размытая внешняя тень для большей глубины */
    0px 8px 15px rgba(17, 17, 17, 0.76); /* Дополнительная тень для акцента */
    border-radius: 12px;
    display: flex;
    flex-wrap: wrap;
    row-gap: 17px;
    column-gap: 27px;
    justify-content: center;
    padding: 17px;
	margin-bottom: 40px;
}
.link-seller {
	background: linear-gradient(0deg, #111 0%, #081549 100%);
    border: 2px solid #081549;
	display: flex;
	align-items: center;
	padding: 10px 18px 10px 24px;
	min-height: 60px;
	width: 48%;
	box-shadow:
    0 0 15px rgba(17, 17, 17, 0.6), /* Размытая внешняя тень для глубины */
    0 0 15px rgba(17, 17, 17, 0.4), /* Ещё более размытая внешняя тень для большей глубины */
    0px 3px 15px rgba(17, 17, 17, 0.76); /* Дополнительная тень для акцента */
    border-radius: 16px;
	text-align: center;
}
.link-seller:hover {
	box-shadow:
	0 0 0 4px rgba(0, 10, 255, 0.85), /* Основная синяя обводка */
	0 0 15px rgba(0, 10, 255, 0.6), /* Размытая внешняя тень для глубины */
	0 0 15px rgba(0, 10, 255, 0.4), /* Ещё более размытая внешняя тень для большей глубины */
 	0px 8px 15px rgba(0, 10, 255, 0.76);
	background: linear-gradient(180deg, #000aff 5%, #111 100%) !important;
	transform: scale(1.01) translateY(-5px); /* Увеличиваем текст на 5% и смещаем вверх на 5px */
	transition: all 0.3s;
}
.link-seller-wrap {
	display: flex;
	flex-direction: column;
	text-align: center;
	flex: 1;
	margin-left: 20px;
	min-width: 0; /* Позволяет flex-item сжиматься и правильно обрезать текст */
}
.link-seller-title {
	font-size: 14px;
	color: #fff;
	text-shadow: 
	0 0 10px rgba(0, 0, 0, 1),
	0 0 10px rgba(0, 0, 0, 1),
	0 0 10px rgba(0, 0, 0, 1);
}
.link-seller-name {
	font-size: 17px;
	font-weight: 700;
	color: #008fee;
	text-shadow: 
	0 0 10px rgba(0, 0, 0, 1),
	0 0 10px rgba(0, 0, 0, 1),
	0 0 10px rgba(0, 0, 0, 1);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	display: block;
	max-width: 100%;
}
.link-seller-down {
	font-size: 15px;
	font-weight: 700;
	color: #ffc107;
	text-shadow: 
	0 0 10px rgba(0, 0, 0, 1),
	0 0 10px rgba(0, 0, 0, 1),
	0 0 10px rgba(0, 0, 0, 1);
}

.seller_block_goods-bottom {
	flex-grow: 1;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.pay-methods .payments-list .item {
	display: flex;
	align-items: center;
	margin: 0 10px;
}
.pay-methods .payments-list .item svg {
	width: 20px;
	height: 20px;
}
.saller-rating-items {
	display: flex;
	align-items: center;
}
.saller-rating-item {
	background: linear-gradient(180deg, #111 0%, #081549 100%);
	display: flex;
	align-items: center;
	padding: 5px 18px 5px 24px;
	min-height: 60px;
	border: 1px solid #081549;
	box-shadow:
    0 0 15px rgba(17, 17, 17, 0.6), /* Размытая внешняя тень для глубины */
    0 0 15px rgba(17, 17, 17, 0.4), /* Ещё более размытая внешняя тень для большей глубины */
    0px 3px 15px rgba(17, 17, 17, 0.76); /* Дополнительная тень для акцента */
    border-radius: 16px;
	text-align: center;
}

/**/
.tabs-header a span:first-child,
.headline span:first-child {
	font-weight: 700;
    font-size: 24px;
    line-height: 29px;
    text-align: center;
    color: #000aff;
    margin-right: 3px;
}
.tabs-header a span:last-child,
.headline span:last-child {
	font-weight: 700;
    font-size: 24px;
    line-height: 29px;
    text-align: center;
    color: #111;
}

.headline {
	margin: 0;
	padding: 0;
	cursor: default;
}
	footer .wrapper{
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 40px 20px;
	max-width: 1400px;
	margin: 0 auto;
	box-sizing: border-box;
	}
	.footer__top{
		background: #21182f;
	}
.footer-logo-container{
	height: 114px;
}
	.footer__top-left{
		display: flex;
    width: 64%;
    color: rgba(121, 122, 128, 1);
    line-height: 23px;
    font-size: 16px;
    font-weight: 500;
	}
	.footer__top-right{
		display: flex;
		width: 100%;
		justify-content: flex-end;
	}
	.footer__top-right li{
		display: flex;
		margin-right: 10px;
	}
	.footer__top-right li a{
		width: 47px;
    	height: 47px;
    	background: #11081F;
    	border-radius: 9px;
    	display: flex;
    	justify-content: center;
    	align-items: center;
	}
	.footer__top-right li svg{
		width: 20px;
	}

.footer__top-wrapper {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    padding-top: 60px !important;
    padding-bottom: 60px !important;
}

.footer__top-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 60px; /* Отступ от баннера до контента, такой же как padding-top у wrapper */
}

@media (max-width: 768px) {
    .footer__top-wrapper {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }
    .footer__top-content {
        flex-direction: column;
        margin-top: 50px; /* Отступ от баннера на мобильных */
    }
}
	.product-card-badges svg{
	width: 15px;
    height: 18px;
    color: #c3c4c6;
    margin-right: 2px;
	}
	.brn_catalog_cont{
	display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
	}
	.btn_catalog_main{
    color: #fff;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 30px;
	margin-bottom: 20px;
    transition: 0.3s;
	background: linear-gradient(180deg, #000aff 5%, #111 100%);
	box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.5);
	}
	.btn_catalog_main:hover{
		box-shadow:
			0 0 0 4px rgba(0, 10, 255, 1), /* Основная синяя обводка */
			0 0 15px rgba(0, 10, 255, 0.6), /* Размытая внешняя тень для глубины */
			0 8px 20px rgba(0, 10, 255, 0.5); /* Ещё более размытая внешняя тень для большей глубины */
		transform: scale(1.05);
		transition: all 0.3s;
	}
	.clear_flex{
	flex-basis: 100%;
  	height: 0;
	}

.category, .goods {
    background-color: linear-gradient(0deg, #0e203f 20%, #040b17 80%);
	background-image: 
	url('/assets/img/backgrounds/product-category-bg.webp');
	background-size: cover; 
	background-repeat: no-repeat;
	background-position: center top;
	padding: 30px 0;
}
.category span {
	text-shadow: 2px 2px 15px rgba(0, 0, 0, 0.9);
}

section.goods {
    position: relative; /* Для позиционирования псевдоэлемента */
	margin-bottom: 20px;
}

section.goods::before {
    content: ""; /* Добавление пустого контента */
    position: absolute; /* Позиционирование псевдоэлемента */
    bottom: -20px; /* Сдвиг на высоту отступа вниз */
    left: 0; /* Расположение слева от контейнера */
    width: 100%; /* Ширина псевдоэлемента равна ширине контейнера */
    height: 20px; /* Высота отступа вниз */
    background-color: #F4F6FC; /* Цвет отступа вниз */
    z-index: -1; /* Помещение псевдоэлемента позади содержимого контейнера */
}

.new-games {
    background-size: cover; /* Обеспечивает покрытие всей доступной области */
    background-repeat: no-repeat; /* Изображение не будет повторяться */
    background-position: center center; /* Центрирует изображение в слайдере */
    border-top: 20px solid #F4F6FC;
}
.new-category span {
	text-shadow: 
    2px 2px 15px rgba(0, 0, 0, 0.9), /* Исходная тень */
    4px 4px 15px rgba(0, 0, 0, 0.7), /* Дополнительная тень немного дальше и менее насыщенная */
    -2px -2px 15px rgba(0, 0, 0, 0.5); /* Ещё одна тень в противоположном направлении для создания эффекта глубины */
}

.seller {
	background-image: 
	url('/assets/img/new-games.webp');
	background-size: cover; 
	background-repeat: no-repeat;
	background-position: center top;
	padding: 40px 10px 65px 10px;
}

@keyframes fadeIn {
    from {
        opacity: 0.5;
    }
    to {
        opacity: 1;
    }
}

.catalog-list {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0) 3%), url('/assets/img/blue-red-stripes.webp');
    background-size: 100% auto, 100% auto; /* Растягивает изображения на 100% ширины элемента, высота автоматически адаптируется */
    background-repeat: no-repeat, repeat-y; /* Градиент не повторяется, изображение повторяется по вертикали */
    background-position: top center, top center; /* Выравнивание изображений по верхнему краю и центру */
    padding: 40px 10px 65px 10px;
    animation: fadeIn 0.3s ease-out forwards;
}


.categ-list {
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0) 2%), url('/assets/img/categ.webp');
    background-size: 100% auto, 100% auto; /* Растягивает изображения на 100% ширины элемента, высота автоматически адаптируется */
    background-repeat: no-repeat, repeat-y; /* Градиент не повторяется, изображение повторяется по вертикали */
    background-position: top center, top center; /* Выравнивание изображений по верхнему краю и центру */
    padding: 40px 10px 65px 10px;
	animation: fadeIn 1s ease-out forwards;
}

.basis-background {
    position: relative;
	background: linear-gradient(45deg, #0848a8 0%, #3a0e44 70%, #b61441 100%);
    padding: 30px 5px;
    z-index: 1;
}
.basis-background-categories {
	background: linear-gradient(45deg, #0848a8 0%, #3a0e44 98%, #b61441 100%);
}

.basis-bg-image, .basis-bg-image-preview, .basis-bg-image-full {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    background-size: 100% auto;
    background-repeat: repeat-y;
    background-position: top center;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.basis-bg-image-preview {
    background-image: url('/assets/img/backgrounds/prewiew-basis-backgorund.webp');
}

.basis-bg-image-full {
    background-image: url('/assets/img/backgrounds/basis-backgorund.png');
}

.basis_block{
	border: 2px solid #000aff;
	box-shadow: -10px 8px 20px rgb(0 0 0 / 50%), 10px 8px 20px rgb(0 0 0 / 50%);
	border-radius: 16px;
	background: #F4F6FC;
	padding: 20px 20px 0 20px;
	z-index: 1;
}

/* Темные страницы - десктопные стили */
/* ДОБАВЛЕНО: поддержка ситуации, когда класс page-dark находится на том же элементе */
.basis-background.page-dark {
	background: #090c46;
}
.basis-bg-image-full.page-dark {
	background: #090c46;
}

/* Цвет ссылок на темных страницах */
.page-dark a {
    color: #51baff;
}

.page-dark a:hover {
    color: #008fee;
}

.restriction-content-section {
	border: 2px solid var(--main-color);
	box-shadow: 0 8px 32px rgba(0, 10, 255, 0.3);
	border-radius: 16px;
	background: linear-gradient(135deg, #1a1f3a 0%, #0f1429 100%);
	padding: 24px;
	z-index: 1;
	max-width: 100%;
	margin: 0 auto;
}

.restriction-notice-compact {
	display: flex;
	align-items: center;
	gap: 20px;
	color: #fff;
}

.restriction-notice-compact__icon {
	flex-shrink: 0;
	width: 48px;
	height: 48px;
	background: var(--main-color);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
}

.restriction-notice-compact__content {
	flex: 1;
	min-width: 0;
}

.restriction-notice-compact__content h3 {
	font-size: 18px;
	font-weight: 700;
	color: #fff;
	margin: 0 0 8px 0;
	line-height: 1.3;
}

.restriction-notice-compact__content p {
	font-size: 14px;
	color: #b8c5d6;
	line-height: 1.5;
	margin: 0;
}

.restriction-notice-compact__actions {
	flex-shrink: 0;
	display: flex;
	gap: 12px;
}

.btn-compact {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 6px;
	padding: 10px 16px;
	border-radius: 8px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	border: none;
	cursor: pointer;
	font-size: 13px;
	white-space: nowrap;
	text-align: center;
}

.btn-compact.btn-primary {
	color: #fff;
    margin-bottom: 0;
    transition: transform 0.3s ease-out, box-shadow 0.3s ease-out;
    font-size: 28px;
    box-shadow:
    0 0 5px rgba(0, 10, 255, 0.6), /* Размытая внешняя тень для глубины */
    0 0 5px rgba(0, 10, 255, 0.4), /* Ещё более размытая внешняя тень для большей глубины */
    0px 0 5px rgba(0, 10, 255, 0.76);
}

.btn-compact.btn-primary:hover {
	transform: translateY(-5px);
    font-size: 28px;
    box-shadow:
    0 0 10px rgba(0, 10, 255, 0.6), /* Размытая внешняя тень для глубины */
    0 0 10px rgba(0, 10, 255, 0.4), /* Ещё более размытая внешняя тень для большей глубины */
    0px 0 10px rgba(0, 10, 255, 0.76);
}

.btn-compact.btn-secondary {
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-compact.btn-secondary:hover {
	background: rgba(255, 255, 255, 0.2);
	border-color: rgba(255, 255, 255, 0.3);
}

.btn-compact i {
	font-size: inherit;
	line-height: 1;
}

.btn-compact.btn-primary i {
	font-size: 20px;
    margin-right: 5px;
}

@media (max-width: 768px) {
	.restriction-notice-compact {
		flex-direction: column;
		text-align: center;
		gap: 16px;
	}
	
	.restriction-notice-compact__actions {
		justify-content: center;
		flex-wrap: wrap;
	}
	
	.btn-compact {
		min-width: 120px;
	}
}

.rf-background {
    background: linear-gradient(135deg, #111 0%, #081549 100%);
    background-size: 100% auto; /* Растягивает изображения на 100% ширины элемента, высота автоматически адаптируется */
    background-repeat: no-repeat, repeat-y; /* Градиент не повторяется, изображение повторяется по вертикали */
    background-position: top center, top center; /* Выравнивание изображений по верхнему краю и центру */
    padding: 30px 20px;
}


.main__folder {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding: 0 0 25px;
	line-height: 1;
	font-size: 15px;
	color: #fff;
	margin-right: 9px;
}
.main__folder_href {
    margin-right: 9px;
    display: inline-block; /* Для корректного отображения фона */
    min-width: 23px; /* Минимальная ширина контейнера */
    min-height: 23px; /* Минимальная высота контейнера */
    background-image: url('/assets/img/svg/home.svg'); /* Путь к SVG иконке */
    filter: drop-shadow(0 0 5px rgba(0, 10, 255, 0.8)); /* Исходная тень */
    transition: transform 0.3s ease, filter 0.3s ease; /* Плавный переход */
	background-repeat: no-repeat;
	background-size: 23px 23px;
}
.main__folder_href:hover {
    transform: scale(1.2); /* Увеличение иконки при наведении */
    filter: drop-shadow(0 0 8px rgba(0, 10, 255, 1)); /* Более выраженная тень при наведении */
}

.section__folder_href {
	margin: 0 9px;
	color: #fff;
	text-shadow: 
	0 0 25px rgba(0, 0, 0, 1),
	0 0 25px rgba(0, 0, 0, 1),
	0 0 25px rgba(0, 0, 0, 1);
}
.main__folder_section {
	color: #fff;
	margin-left: 9px;
	text-shadow: 
	0 0 25px rgba(0, 0, 0, 1),
	0 0 25px rgba(0, 0, 0, 1),
	0 0 25px rgba(0, 0, 0, 1);
}

.arrow-right {
    display: inline-block; /* Элемент ведет себя как inline, но позволяет задать ширину и высоту */
    min-width: 12px; /* Ширина иконки, задайте по желанию */
    min-height: 12px; /* Высота иконки, задайте по желанию */
    background-image: url('/assets/img/svg/arrow-right.svg'); /* Путь к вашей иконке */
    background-size: cover; /* Иконка покрывает весь элемент */
    background-position: center; /* Центрирование иконки */
}
.sales {
    display: inline-block; /* Элемент ведет себя как inline, но позволяет задать ширину и высоту */
    width: 27px; /* Ширина иконки, задайте по желанию */
    height: 27px; /* Высота иконки, задайте по желанию */
    background-image: url('/assets/img/svg/trolley.svg'); /* Путь к вашей иконке */
    background-size: cover; /* Иконка покрывает весь элемент */
    background-position: center; /* Центрирование иконки */
}
.type-goods {
    display: inline-block; /* Элемент ведет себя как inline, но позволяет задать ширину и высоту */
    width: 25px; /* Ширина иконки, задайте по желанию */
    height: 25px; /* Высота иконки, задайте по желанию */
    background-image: url('/assets/img/svg/unlock.svg'); /* Путь к вашей иконке */
    background-size: cover; /* Иконка покрывает весь элемент */
    background-position: center; /* Центрирование иконки */
}
.platform {
    display: inline-block; /* Элемент ведет себя как inline, но позволяет задать ширину и высоту */
    width: 25px; /* Ширина иконки, задайте по желанию */
    height: 25px; /* Высота иконки, задайте по желанию */
    background-image: url('/assets/img/svg/check.svg'); /* Путь к вашей иконке */
    background-size: cover; /* Иконка покрывает весь элемент */
    background-position: center; /* Центрирование иконки */
}
.rating {
    display: inline-block; /* Элемент ведет себя как inline, но позволяет задать ширину и высоту */
    width: 25px; /* Ширина иконки, задайте по желанию */
    height: 25px; /* Высота иконки, задайте по желанию */
    background-image: url('/assets/img/svg/star-g.svg'); /* Путь к вашей иконке */
    background-size: cover; /* Иконка покрывает весь элемент */
    background-position: center; /* Центрирование иконки */
	margin-right: 10px;
}
.positive {
    display: inline-block; /* Элемент ведет себя как inline, но позволяет задать ширину и высоту */
    width: 25px; /* Ширина иконки, задайте по желанию */
    height: 25px; /* Высота иконки, задайте по желанию */
    background-image: url('/assets/img/svg/positive.svg'); /* Путь к вашей иконке */
    background-size: cover; /* Иконка покрывает весь элемент */
    background-position: center; /* Центрирование иконки */
}
.negative {
    display: inline-block; /* Элемент ведет себя как inline, но позволяет задать ширину и высоту */
    width: 25px; /* Ширина иконки, задайте по желанию */
    height: 25px; /* Высота иконки, задайте по желанию */
    background-image: url('/assets/img/svg/negative-info.svg'); /* Путь к вашей иконке */
    background-size: cover; /* Иконка покрывает весь элемент */
    background-position: center; /* Центрирование иконки */
}
.sales-seller {
    display: inline-block; /* Элемент ведет себя как inline, но позволяет задать ширину и высоту */
    width: 30px; /* Ширина иконки, задайте по желанию */
    height: 30px; /* Высота иконки, задайте по желанию */
    background-image: url('/assets/img/svg/shopping-bag.svg'); /* Путь к вашей иконке */
    background-size: cover; /* Иконка покрывает весь элемент */
    background-position: center; /* Центрирование иконки */
}
.products-seller {
    display: inline-block; /* Элемент ведет себя как inline, но позволяет задать ширину и высоту */
    width: 30px; /* Ширина иконки, задайте по желанию */
    height: 30px; /* Высота иконки, задайте по желанию */
    background-image: url('/assets/img/svg/products-seller.svg'); /* Путь к вашей иконке */
    background-size: cover; /* Иконка покрывает весь элемент */
    background-position: center; /* Центрирование иконки */
}
.positive-seller {
    display: inline-block; /* Элемент ведет себя как inline, но позволяет задать ширину и высоту */
    width: 30px; /* Ширина иконки, задайте по желанию */
    height: 30px; /* Высота иконки, задайте по желанию */
    background-image: url('/assets/img/svg/chat-posit.svg'); /* Путь к вашей иконке */
    background-size: cover; /* Иконка покрывает весь элемент */
    background-position: center; /* Центрирование иконки */
}
.negative-seller {
    display: inline-block; /* Элемент ведет себя как inline, но позволяет задать ширину и высоту */
    width: 30px; /* Ширина иконки, задайте по желанию */
    height: 30px; /* Высота иконки, задайте по желанию */
    background-image: url('/assets/img/svg/chat-neg.svg'); /* Путь к вашей иконке */
    background-size: cover; /* Иконка покрывает весь элемент */
    background-position: center; /* Центрирование иконки */
}



.header-title {
    color: #fff;
	text-shadow: 
	0 0 25px rgba(0, 0, 0, 1),
	0 0 25px rgba(0, 0, 0, 1),
	0 0 25px rgba(0, 0, 0, 1);
}
#loading
{
  text-align:center; 
  background: url('/assets/img/preloader.gif') no-repeat center; 
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 100%;
  height: 100px;
}
header{
background: #111;
}
.header__top-menu{
	max-width: 1170px;
   margin-right: auto;
   margin-left: auto;
   justify-content: center;
}
.header__top-menu a{
	color: #fff;
}
.header__cart{
	position: relative;
	right: auto;
}
.header__search .search_form .search_input{
	padding: 0px 0px 0px 10px;
	border-radius: 12px;
	border: 2px solid transparent;
}
.header__search .search_form .search_input:hover{
	border: 2px solid #fff;
}
.search_enter {
   background: none;
   box-shadow: none;
   left: auto;
   right: 0;
}

.header__search .search_form .search_input:focus{
	border: 2px solid #387DFF;
}

.all_cat_hor:before{
content: " ";
background: url(/assets/img/header_img/categories.svg);
width: 20px;
height: 20px;
margin-right: 5px;
background-position: center;
background-size: cover;
display: inline-flex;
}
.goods_hor:before{
content: " ";
background: url(/assets/img/header_img/catalog.svg);
width: 25px;
height: 25px;
margin-right: 5px;
background-position: center;
background-size: cover;
display: inline-flex;
}
.header-bar-inner > a{
    display: flex;
    align-items: center;
    position: relative;
	background: linear-gradient(135deg, #111 0%, #081549 100%);
    border: 1px solid #081549;
	border-radius: 9px;
}

.header-bar-inner > a:hover{
    box-shadow: inset 0 4px 25px -4px #000aff;
	border-radius: 9px;
}

  .currency_menu{
	display: none;
	    position: absolute;
    width: 100%;
    text-align: center;
    z-index: 999;
    background: #fff;
    color: #333;
    border-radius: 0 0 12px 12px;
    overflow: hidden;
}

.header__top-menu .curr_a{
	text-transform: uppercase;
	display: flex;
    align-content: center;
    align-items: center;
    justify-content: center;
    width: 95px;
    /* height: 45px; */
    background: linear-gradient( 
266.26deg
 , #404147 8.85%, #2E2F33 100%);
    box-shadow: 0px 4px 10px rgb(64 65 71 / 25%);
    border-radius: 12px;
    color: #fff;
}
.header__top-menu li{
	position: relative;
}
/* END HEADER */

/* START CATEGORIES*/
    #genre_select{
        border-radius: 10px;
        transition: all 0.3s;
        font-size: 16px;
        box-shadow: 0px 4px 20px 10px rgb(0 0 0 / 3%);
    }
.select {
    display: inline-flex;
}


.countdown_block{
        width: 70%;
    margin: auto;
}
ul.countdown {
list-style: none;
padding: 0;
display: flex;
align-items: center;
justify-content: center;
border-radius: 0px 0px 10px 10px;
border: 2px solid;
border-top: 0;

}
ul.countdown i{
    margin-right: 5px;
}
ul.countdown li span{
    width: 22px;
    display: flex;
    justify-content: center;
}
ul.countdown li .days_ref{
    margin-right: 5px;
}
ul.countdown li:first-child{
    width: 40%;
}
ul.countdown li {
display: flex;
    align-items: baseline;
    font-size: 16px;

}
ul.countdown li .days{
        margin-right: 5px;
}
/* END CATEGORY */

@media (max-width: 1140px){
	.slick-prev {
		left: 0px !important;
	}
	.slick-next {
		right: 0px !important;
	}
	footer .wrapper{
		padding: 60px 20px !important;
	}
}
@media(max-width: 768px){
.reviews__item-icon {
    margin-right: 20px;
}
}

.product-item-top__btn-favorite {
    position: relative;
    z-index: 2;
    padding: 0;
    background: transparent;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
	right: 2px;
    opacity: 1;
    transition: all 0.3s; /* Обновлено для упрощения */
}

/* Стили для иконок, добавляемых через CSS */
.product-item-top__btn-favorite::before {
    content: '';
    display: block;
    width: 30px; /* Размер вашей иконки */
    height: 30px; /* Размер вашей иконки */
    background-size: contain;
    background-repeat: no-repeat;
    transition: transform 0.3s;
}

/* Первая иконка по умолчанию */
.product-item-top__btn-favorite::before {
    background-image: url('/assets/img/svg/favorite-default.svg'); /* Путь к вашей первой иконке */
}

/* Изменение на вторую иконку при добавлении класса .liked */
.product-item-top__btn-favorite.liked::before {
    background-image: url('/assets/img/svg/favorite-liked.svg'); /* Путь к вашей второй иконке */
}

.product-item-top__btn-favorite:hover {
	transform: scale(1.2);
}

.category-item-top__btn-favorite {
    /* Ваши оригинальные стили остаются неизменными */
    position: absolute;
    z-index: 2;
    padding: 5px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 9px;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 10px;
    right: 10px;
    transition: all 0.3s;
}

/* Стили для иконок, добавляемых через CSS */
.category-item-top__btn-favorite::before {
    content: '';
    display: block;
    width: 30px; /* Размер вашей иконки */
    height: 30px; /* Размер вашей иконки */
    background-size: contain;
    background-repeat: no-repeat;
    transition: transform 0.3s;
}

/* Первая иконка по умолчанию */
.category-item-top__btn-favorite::before {
    background-image: url('/assets/img/svg/favorite-default.svg'); /* Путь к вашей первой иконке */
}

/* Изменение на вторую иконку при добавлении класса .liked */
.category-item-top__btn-favorite.liked::before {
    background-image: url('/assets/img/svg/favorite-liked.svg'); /* Путь к вашей второй иконке */
}

/* Эффект увеличения при наведении */
.category-item-top__btn-favorite:hover::before {
    transform: scale(1.2);
}

.goods-item-top__btn-favorite {
    /* Ваши оригинальные стили остаются неизменными */
    position: absolute;
    z-index: 2;
    padding: 5px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 9px;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 10px;
    right: 10px;
    transition: all 0.3s;
}



.goods-item-top__btn-favorite {
    /* Ваши оригинальные стили остаются неизменными */
    position: absolute;
    z-index: 2;
    padding: 5px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 9px;
    display: flex;
    justify-content: center;
    align-items: center;
    top: 10px;
    right: 10px;
    transition: all 0.3s;
}
/* Стили для иконок, добавляемых через CSS */
.goods-item-top__btn-favorite::before {
    content: '';
    display: block;
    width: 30px; /* Размер вашей иконки */
    height: 30px; /* Размер вашей иконки */
    background-size: contain;
    background-repeat: no-repeat;
    transition: transform 0.3s;
}

/* Первая иконка по умолчанию */
.goods-item-top__btn-favorite::before {
    background-image: url('/assets/img/svg/favorite-default.svg'); /* Путь к вашей первой иконке */
}

/* Изменение на вторую иконку при добавлении класса .liked */
.goods-item-top__btn-favorite.liked::before {
    background-image: url('/assets/img/svg/favorite-liked.svg'); /* Путь к вашей второй иконке */
}

/* Эффект увеличения при наведении */
.goods-item-top__btn-favorite:hover::before {
    transform: scale(1.2);
}

	@media (max-width: 768px){
	.info-block-product{
		flex-wrap: wrap;
	}
	.category-page-top-left{
	width: 100%;
	padding-right: 0px;
	}
	.select__list{
	top: 40px;
	}
	}

	@media (max-width: 720px){
	.header_seller_goods{
	flex-wrap: wrap;
	margin-bottom: 5px;
	}
	}

	@media(max-width: 580px) {
		.header__cart {
		margin-left: 10px;
		  }
		  .header__cart-link svg {
			display: block!important;
		}
		.header__cart-link{
				width: 150px;
	column-gap: 10px;
		}
		.header__cart-link span{
			margin-left: 0;
		}
		}

		@media(max-width: 340px) {
			.header__cart {
	margin-left: 0px;
}
		}


	@media (max-width: 475px){
	
	.seller_info_left ul{
	width: 75%;
	}
	}
	@media (max-width: 375px){
	.seller_info_left ul{
	width: 100%;
	}
}

@media (min-width: 1200px) {
  .header__search {
    flex: 1;
    min-width: 0;
  }
  .header__search .search_form {
    display: flex;
    width: 100%;
  }
  .header__search .search_form .input-group {
    width: 100%;
    flex: 1;
  }

  .wrapper,
  .wrapper-fire {
    padding-left: 20px;
    padding-right: 20px;
  }
}

@media (max-width: 975px) {
  .favorite_header {
    margin-right: 15px;
  }
}

/* Базовые стили для закладки избранного */
.bookmark-favorite {
    position: absolute;
    top: 0;
    right: 10px;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* Базовые стили для фона закладки */
.bookmark-favorite-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 40px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 0 0 5px 5px;
    z-index: 10;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 70%, 0 100%);
}

/* Модификатор для закладки категорий - только изменение прозрачности */
.bookmark-favorite-bg--category {
    background-color: rgba(255, 255, 255, 0.75);
}

/* Базовые стили для кнопки избранного внутри закладки */
.bookmark-favorite .product-item-top__btn-favorite,
.bookmark-favorite .category-item-top__btn-favorite {
    position: absolute;
    top: 2.5px;
    right: 6.6px;
    z-index: 11;
    background: transparent;
    border: none;
    width: auto;
    height: auto;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    opacity: 1;
}

/* Размер иконки сердца в закладке */
.bookmark-favorite .product-item-top__btn-favorite::before,
.bookmark-favorite .category-item-top__btn-favorite::before {
    width: 27px;
    height: 27px;
}

/* Видимость закладки при наведении на карточку товара */
.catalog-col_main:hover .bookmark-favorite {
    opacity: 1;
}

/* Видимость закладки при наведении на элемент игры */
.category-list__item:hover .bookmark-favorite {
    opacity: 1;
}

/* На мобильных устройствах закладка видна всегда */
@media(max-width: 992px) {
    .bookmark-favorite {
        opacity: 1;
    }
    .bookmark-favorite-bg {
        background-color: rgba(255, 255, 255, 0.8);
    }
    .bookmark-favorite-bg--category {
        background-color: rgba(255, 255, 255, 0.7);
    }
    .footer__top-left{
        margin-right: 40px;
    }
}

.catalog-card__info-wrapper {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.promo-products-container .catalog-card__info-wrapper {
    justify-content: flex-start;
    min-height: 74px; /* Гарантируем минимальную высоту блока информации в слайдере */
}

.bottom-stats {
    margin-top: 5px;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    white-space: nowrap;
    justify-content: flex-start; 
    height: 27px; /* Фиксированная высота блока статистики */
    font-size: 13px;
    line-height: 19px;
    margin-left: 15px; /* Добавляем отступ слева */
    margin-right: 15px; /* Добавляем отступ справа */
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Стили для карточки без статистики */
.has-no-stats .bottom-stats {
    visibility: hidden; /* Скрываем содержимое, но сохраняем место для одинаковой высоты карточек */
}

/* Стили для блока Steam-ключей */
.promo-block {
    position: relative;
    padding: 30px 0;
}

.promo-block .wrapper {
    position: relative;
    z-index: 2;
    background-image: url('/assets/img/backgrounds/promo-block-index-1.webp');
    background-size: cover;
    background-position: center;
    border-radius: 16px;
    padding: 30px 40px; /* Увеличиваем боковые отступы */
}

.promo-block .tabs-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 20px;
    position: relative;
    z-index: 5; /* Повышаем z-index чтобы кнопка была кликабельной */
}

.promo-block .tabs-header a {
    color: #fff;
}

.promo-block .btn_catalog_main.header-position {
    display: inline-block;
    position: relative;
    z-index: 10; /* Повышаем z-index для кнопки */
    margin-bottom: 0;
    box-shadow: 0px 8px 20px rgba(0, 0, 0, 0.5), 0px -8px 20px rgba(0, 0, 0, 0.5);
}

.promo-block .btn_catalog_main.header-position:hover {
    box-shadow: 0px 0px 0px 4px rgba(0, 10, 255, 1), 0px 0px 15px rgba(0, 10, 255, 0.6), 0px 8px 20px rgba(0, 10, 255, 0.5);
    transform: scale(1.05);
    transition: all 0.3s;
}

.promo-block .mobile-only {
    display: none;
}

/* Новый контейнер-обертка для управления отображением скелетона и карточек */
.products-container-wrapper {
    position: relative;
    min-height: 396px; /* Минимальная высота равна высоте скелетонов */
    margin-bottom: 20px; /* Стабильный отступ до кнопки */
}

.promo-products-container {
    /* display: flex; */ /* Удалено, Slick управляет этим */
    /* flex-wrap: wrap; */ /* Удалено */
    /* gap: 15px; */ /* Удалено, Slick управляет отступами через margin на .slick-slide */
    /* justify-content: flex-start; */ /* Удалено */
    padding: 0;
    margin: 0;
    position: relative;
    z-index: 2;
    opacity: 0; /* Изначально карточки скрыты */
    transition: opacity 0.3s ease; /* Плавное появление */
    min-height: 396px; /* Совпадает с высотой скелетонов */
}

/* Контейнер для скелетонов */
.promo-products-skeletons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    justify-content: flex-start;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 3; /* Выше карточек */
    opacity: 1; /* Скелетоны изначально видны */
    transition: opacity 0.3s ease; /* Более быстрое исчезновение */
    height: auto; /* Автоматическая высота */
}

/* Добавляем плавный переход для карточек */
.products-container-wrapper.loaded .promo-products-container {
    opacity: 1; /* Показываем карточки */
    transition: opacity 0.3s ease; /* Плавное появление */
}

.products-container-wrapper.loaded .promo-products-skeletons {
    opacity: 0; /* Скрываем скелетоны */
    pointer-events: none; /* Отключаем взаимодействие */
    visibility: hidden; /* Полностью скрываем, чтобы они не влияли на размер */
    transition: opacity 0.3s ease, visibility 0s linear 0.3s; /* Быстрый переход */
}

.promo-products-container .catalog-col_main {
    margin: 0;
    width: calc((100% - 75px) / 6);
}

/* Стили для скелетонов внутри блока Steam-ключей */
.promo-block .skeleton-card {
    height: 396px; /* Фиксированная высота */
    background: linear-gradient(90deg, #1a1919 25%, #0e216d 50%, #1a1919 75%);
    background-size: 200% 100%;
    animation: steam-skeleton-loading 1.5s infinite linear;
    border-radius: 12px;
    width: calc((100% - 75px) / 6);
    /* Важно: сохраняем все существующие размеры и позиционирование */
}

.promo-block .brn_catalog_cont {
    margin-top: 20px;
}

@keyframes steam-skeleton-loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

.promo-products-container .slick-slide {
    margin: 0 7.5px;
}

.promo-products-container .slick-list {
    margin: 0 -7.5px;
}

/* Стили теней как у слайдов основного слайдера */
.promo-products-container .catalog-col_main, .promo-block .skeleton-card {
    box-shadow:
    0 0 7px rgba(17, 17, 17, 0.6), /* Размытая внешняя тень для глубины */
    0 0 7px rgba(17, 17, 17, 0.4), /* Ещё более размытая внешняя тень для большей глубины */
    2px 5px 7px rgba(17, 17, 17, 0.76); /* Дополнительная тень для акцента */
}

.promo-products-container .catalog-col_main:hover {
    box-shadow:
	0 -2px 9px rgba(0, 10, 255, 0.6), /* Размытая внешняя тень для глубины */
	0 -2px 9px rgba(0, 10, 255, 0.4), /* Ещё более размытая внешняя тень для большей глубины */
	2.5px 5px 9px rgba(0, 10, 255, 0.76);
}

@media (max-width: 1000px) {
    .promo-block .wrapper {
        padding: 20px 30px; /* Уменьшаем отступы пропорционально */
    }
}

.promo-products-container .catalog-card-inner__bg {
    width: 100%;
    height: 100%;
}

.promo-products-container .catalog-card-inner__img {
    margin: auto;
}

.main-slider-skeletons .slider-skeleton-card {
    width: 24%;
    aspect-ratio: 392 / 522;
    margin: 0 10px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow:
    0 0 7px rgba(17, 17, 17, 0.6),
    0 0 7px rgba(17, 17, 17, 0.4),
    2px 5px 7px rgba(17, 17, 17, 0.76);
    background: linear-gradient(90deg, #1a1919 25%, #0e216d 50%, #1a1919 75%);
    background-size: 200% 100%;
    animation: steam-skeleton-loading 1.5s infinite linear;
    flex: 0 0 auto;
}

.main-slider-container-wrapper.loaded .promo-slider .category-col {
    opacity: 1;
    transform: none;
    transition: opacity 0.1s ease-in-out, box-shadow 0.1s ease-out;
    width: 100%;
}

.link-seller > img[src*="arrow-right.svg"] {
  margin-left: 15px;
  flex-shrink: 0; /* Запрещает сжатие иконки стрелки */
}