@font-face {
	font-family: 'Inter';
	src: url('../fonts/inter/InterVariable.woff2') format('woff2-variations');
	font-weight: 100 900;
	font-style: normal;
}

html {
	font-family:
		'Inter',
		-apple-system,
		BlinkMacSystemFont,
		'Segoe UI',
		Roboto,
		'Helvetica Neue',
		Arial,
		sans-serif;
}

html {
  scroll-behavior: smooth;
}

/* html, body {
  height: 100%;
  margin: 0;
} */

.wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
main {
	flex: 1;
}

/* ===== Firefox ===== */
* {
	scrollbar-width: thin;
	scrollbar-color: #d9d9d9 rgba(217, 217, 217, 0.05);
}

/* ===== WebKit (Chrome, Edge, Safari, Opera) ===== */
*::-webkit-scrollbar {
	width: 5px;
	height: 5px; /* на случай горизонтального скролла */
}

*::-webkit-scrollbar-track {
	background-color: rgba(217, 217, 217, 0.05);
	border-radius: 55px;
}

*::-webkit-scrollbar-thumb {
	background-color: #d9d9d9;
	border-radius: 55px;
	/* отступ от края трека */
	border: 1px solid transparent;
	background-clip: padding-box;
}

*::-webkit-scrollbar-thumb:hover {
	background-color: #d9d9d9;
}

/* убрать стрелочки (кнопки прокрутки) */
*::-webkit-scrollbar-button {
	display: none;
	width: 0;
	height: 0;
}

*::-webkit-scrollbar-corner {
	background-color: transparent;
}
*::-webkit-scrollbar-thumb {
	background-color: #d9d9d9;
	border-radius: 55px;
	box-shadow:
		inset 0 5px 0 rgba(0, 0, 0, 0),
		inset 0 -5px 0 rgba(0, 0, 0, 0);
	/* если нужен реальный отступ от начала/конца трека, надёжнее эмулировать через доп. margin на элементе-обёртке */
}

[data-simplebar] {
	--simplebar-scrollbar-thickness: 5px;
	--simplebar-scrollbar-radius: 55px;
}
/* трек */
.simplebar-track.simplebar-vertical {
	width: 5px !important;
	background-color: rgba(217, 217, 217, 0.05) !important;
	border-radius: 55px !important;
	right: 0 !important;
	top: 5px !important;
	bottom: 5px !important;
}

.simplebar-track.simplebar-horizontal {
	height: 5px !important;
	background-color: rgba(217, 217, 217, 0.05) !important;
	border-radius: 55px !important;
	bottom: 0 !important;
	left: 5px !important;
	right: 5px !important;
}

/* сам бегунок рисуется через ::before у .simplebar-scrollbar */
.simplebar-scrollbar::before {
	background-color: #d9d9d9 !important;
	border-radius: 55px !important;
	opacity: 1 !important;
	left: 0 !important;
	right: 0 !important;
	top: 0;
	bottom: 0;
}

/* отступ бегунка от начала/конца трека — вертикальный скролл */
.simplebar-track.simplebar-vertical .simplebar-scrollbar::before {
	top: 5px;
	bottom: 5px;
}

/* отступ бегунка от начала/конца трека — горизонтальный скролл */
.simplebar-track.simplebar-horizontal .simplebar-scrollbar::before {
	left: 5px;
	right: 5px;
}

/* показывать скроллбар всегда, без затемнения при отсутствии ховера/скролла */
.simplebar-scrollbar.simplebar-visible::before {
	opacity: 1 !important;
}

body {
	background: #000;
	color: white;
	position: relative;
}

.container {
	max-width: 1280px;
	margin-left: auto;
	margin-right: auto;
}
.header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding-top: 24px;
	padding-bottom: 24px;
}
.header__logo-online {
	display: flex;
	align-items: center;
	gap: 16px;
}
.header__logo {
	font-weight: 900;
	color: white;
	font-size: 24px;
	display: block;
}
.header__online {
	padding: 5px 9px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: #323232;
	border-radius: 8px;
	gap: 4px;
}
.header__online-text {
	font-weight: bold;
	font-size: 14px;
	color: rgba(255, 255, 255, 0.5);
}
.header__online-text-number {
	color: white;
}
.header__online-icon {
	opacity: 0.5;
}

.header__tabs {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
}

.header__tabs-tab {
	padding: 14px 20px;
	border-radius: 16px;
	font-weight: bold;
	cursor: pointer;
	border: 2px solid rgba(0, 0, 0, 0);
	color: white;

	transition: all 0.2s;
}
.header__tabs-tab:hover {
	background: rgba(50, 50, 50, 0.7);
	border: 2px solid rgba(62, 62, 62, 0.7);
}
.header__tabs-tab.active {
	background: #323232;
	border: 2px solid #3e3e3e;
}

.advertise-cards__container {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 16px;
	height: 300px;
}
.advertise-cards__card {
	padding: 27px;
	border-radius: 38px;
	height: 100%;
	position: relative;
}
.advertise-cards__doplata {
	flex: 10000;
	background: linear-gradient(18.764deg, #ea5a00 0%, #db9410 100%);
}
.advertise-cards__doplata::before {
	border-radius: 38px;
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('/assets/images/doplata.png') no-repeat left 50px bottom;
	z-index: 1;
}
.advertise-cards__free-cases {
	width: 300px;
	background: radial-gradient(#9b65f2, #704dff);
}
.advertise-cards__free-cases::before {
	border-radius: 38px;
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: url('/assets/images/free-cases.png') no-repeat right bottom;
	z-index: 1;
}
.advertise-cards__arrow {
	backdrop-filter: blur(10px);
	position: relative;
	z-index: 2;
	margin-top: 19px;
	border-radius: 16px;
	background-color: rgba(255, 255, 255, 0.16);
	border: 1px solid rgba(255, 255, 255, 0.07);
	width: 40px;
	height: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	transition: all 0.2s;
}
.advertise-cards__arrow:hover {
	background-color: rgba(255, 255, 255, 0.2);
	border: 1px solid rgba(255, 255, 255, 0.13);
}
.advertise-cards__header {
	font-size: 26px;
	font-weight: bold;
	/* position: relative;
	z-index: 2;
	backdrop-filter: blur(10px);
	width: max-content;
	height: max-content;
	padding: 5px 10px;
	border-radius: 10px; */
}
.advertise-cards__description {
	margin-top: 8px;
	font-size: 16px;
	font-weight: 500;
	/* position: relative;
	z-index: 2;
	backdrop-filter: blur(10px);
	width: max-content;
	height: max-content;
	padding: 5px 10px;
	border-radius: 10px; */
}

.shop__container {
	margin-top: 60px;
}
.shop__server-selection {
	gap: 10px;
}
.shop__server-selection__gap {
	width: 22px;
	height: 17px;
	background: url('/assets/images/gap.svg');
}
.shop__server-selection__item__icon {
	width: 16px;
	height: 16px;
	background: url('/assets/images/server-icon.svg');
	z-index: 2;
}
.shop__server-selection__item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 10px;
	background: #19191a;
	padding: 25px;
	border-radius: 20px;
	max-width: 225px;
	width: 100%;
	cursor: pointer;
	position: relative;
	transition: all 0.5s;
}
.shop__server-selection__item__left {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	z-index: 2;
}
.shop__server-selection__item__text {
	font-weight: bold;
	font-size: 16px;
}
.shop__server-selection__item__arrow {
	width: 19px;
	height: 19px;
	background: url('/assets/images/server-arrow-icon.svg') no-repeat;
	opacity: 0.5;
	z-index: 2;
}
.shop__server-selection__container {
	display: flex;
	justify-content: start;
	align-items: center;
	gap: 10px;
}
.shop__server-selection__item__funtime::before {
	position: absolute;
	border-radius: 20px;
	content: '';
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	background: url('/assets/images/funtime-button-background.png')
		no-repeat -100px;
	background-size: cover;

	opacity: 0;
}

.shop__server-selection__item__holyworld::before {
	position: absolute;
	border-radius: 20px;
	content: '';
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1;
	background: url('/assets/images/holyworld-button-background.png') no-repeat;
	background-size: cover;
	opacity: 0;
}
.shop__server-selection__item::before {
	transition: opacity 0.2s;
}
.shop__server-selection__item.active::before {
	opacity: 1;
}
.shop__server-selection__item:not(.active):hover::before {
	opacity: 0.4;
}

.shop__block {
	display: flex;
	justify-content: space-between;
	align-items: start;
	gap: 16px;
	margin-top: 20px;
}
.shop__block__left {
	max-width: 416px;
	width: 100%;
	border-radius: 38px;
	display: flex;
	flex-direction: column;
	gap: 14px;
	padding: 14px;
	background: linear-gradient(#932e00 -150%, #141414);
	height: 690px;
}
.shop__block__right {
	flex: 100;
	width: 100%;
	border-radius: 38px;
	display: flex;
	flex-direction: column;
	gap: 14px;
	padding: 14px;
	height: 690px;
}
.shop__block__right__description__text {
	white-space: pre-wrap;
}

.shop__block__left__reminder {
	padding: 26px;
	width: 100%;
	background: #e56301;
	border-radius: 28px;
	font-weight: bold;
	font-size: 18px;
	background: url('/assets/images/funtime-button-background.png');
	background-size: cover;
}
.shop__block__left__products {
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.shop__block__left__products__container {
	padding: 25px;
	border-radius: 28px;
	width: 100%;
	background: #1a1a1a;
	border: 1px solid #2b2b2b;
	display: flex;
	flex-direction: column;
	gap: 8px;

	height: 100%;
	overflow-y: auto;
}
.shop__block__left__products__container .simplebar-content {
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.shop__block__left__products__product {
	padding: 12px;
	border-radius: 22px;
	border: 1px solid rgba(255, 255, 255, 0);
	transition: all 0.2s;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: rgba(255, 255, 255, 0.16);
	width: 100%;
	cursor: pointer;
}
.shop__block__left__products__product.active {
	border: 1px solid rgba(255, 255, 255, 0.7);
}
.shop__block__left__products__product__left {
	gap: 20px;
	display: flex;
	justify-content: start;
	align-items: center;
}
.shop__block__left__products__product__image {
	background: rgba(255, 255, 255, 0.12);
	display: flex;
	justify-content: center;
	align-items: center;
	/* padding: 4px; */
	border-radius: 13px;
}
.shop__block__left__products__product__image img {
	width: 48px;
	height: 48px;
	border-radius: 13px;
}

.shop__block__left__products__product {
	position: relative;
}

.product__discount-badge {
	position: absolute;
	top: -4px;
	right: -4px;
	background: #f04848;
	color: white;
	font-size: 9px;
	font-weight: 900;
	padding: 3px 5px;
	border-radius: 6px;
	white-space: nowrap;
	box-shadow: 0 2px 6px rgba(0,0,0,0.3);
	letter-spacing: 0.3px;
	z-index: 2;
}

.shop__block__left__products__product__right {
	display: flex;
	align-items: center;
	gap: 2px;
}

.shop__block__left__products__product__price {
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	line-height: 1.15;
}

.product__price-old {
	font-size: 11px;
	font-weight: 500;
	color: rgba(255,255,255,0.35);
	text-decoration: line-through;
}

.product__price-new {
	font-size: 16px;
	font-weight: 700;
	color: #ffffff;
}
.shop__block__left__products__product__title-block {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}
.shop__block__left__products__product__title {
	font-weight: bold;
	font-size: 18px;
}
.shop__block__left__products__product__title-block {
	display: flex;
	align-items: center;
	gap: 8px;
	flex-wrap: wrap;
}
.shop__block__left__products__product__right {
	display: flex;
	gap: 2px;
}
.shop__block__left__products__product__arrow {
	background: url('/assets/images/product_arrow.svg');
	width: 20px;
	height: 20px;
}
.shop__block__left__products__product__price {
	font-weight: bold;
	font-size: 18px;
}

.shop__block__right__header {
	padding: 40px;
	border-radius: 24px;
	background: #202020;
	background-image: url('/assets/images/right-shop-block-header-bg.png');
	border: 1px solid #393939;
}
.shop__block__right__header__info {
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
}
.shop__block__right__header__info__left,
.shop__block__right__header__info__right {
	display: flex;
	flex-direction: column;
	gap: 4px;
	align-items: start;
	justify-content: center;
}
.shop__block__right__header__info__right {
	align-items: end;
}
.shop__block__right__header__info__left__title,
.shop__block__right__header__info__right__title {
	font-weight: bold;
	font-size: 14px;
	color: #a6a6a6;
}
.shop__block__right__header__info__left__name,
.shop__block__right__header__info__right__name {
	font-weight: bold;
	font-size: 25px;
	color: white;
}

.shop__block__right__header__info__right__name {
	color: #44f440;
}

.shop__block__right__header__info__middle {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 5px;
}
.shop__block__right__header__info__middle__image {
	background: #252525;
	border-radius: 24px;
	border: 1px solid #323232;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 62px;
	height: 62px;
}
.shop__block__right__header__info__middle__image img {
	max-width: 48px;
	max-height: 48px;
}

.shop__block__right__header__selector {
	margin-top: 37px;
	width: 100%;
	display: flex;
}
.shop__block__right__header__selector__item {
	background: rgba(255, 255, 255, 0.07);
	padding: 18px 0;
	flex: 1;
	display: flex;
	justify-content: center;
	align-items: center;
	border: 1px solid rgba(255, 255, 255, 0.06);
	transition: all 0.2s;
	cursor: pointer;
	font-weight: bold;
	font-size: 14px;
}
.shop__block__right__header__selector__item:hover {
	opacity: 80%;
}
.shop__block__right__header__selector__item.active {
	background: rgba(255, 255, 255, 0.15);
}
.shop__block__right__header__selector__item:first-child {
	border-radius: 18px 0 0 18px;
}
.shop__block__right__header__selector__item:last-child {
	border-radius: 0 18px 18px 0;
}

.shop__block__right {
	background: radial-gradient(#272727, #161616);
}
.shop__block__right__description {
	padding: 27px;
	border-radius: 28px;
	background: #262626;
	border: 1px solid #2e2d2d;
	height: 100%;
	/* max-height: 300px; */
}
.shop__block__right__description__header {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 20px;
	font-size: 16px;
	font-weight: bold;
}
.shop__block__right__description__main {
	/* height: 100%; */
	max-height: 200px;
	overflow-y: auto;
}
.shop__block__right__description__list {
	display: flex;
	flex-direction: column;
	/* gap: 30px; */
}
.shop__block__right__description__list__item {
	display: flex;
	align-items: center;
	justify-content: space-between;
	position: relative;
	padding-left: 17px;
	padding-top: 20px;
	padding-bottom: 20px;
	padding-right: 30px;
}
.shop__block__right__description__list__item:not(:last-child) {
	border-bottom: 1px solid #2f2f2f;
}
.shop__block__right__description__list__item::before {
	content: '';
	position: absolute; /* больше не flex-элемент */
	left: 0;
	top: 50%;
	transform: translateY(-50%);
	width: 7px;
	height: 7px;
	background-color: #e76c03;
	border-radius: 50%;
}
.shop__block__right__description__list__item__left {
	font-weight: bold;
	font-size: 16px;
}
.shop__block__right__description__list__item__right {
	font-weight: bold;
	font-size: 16px;
	color: #bbbbbb;
}
.shop__block__right__description__text {
	font-size: 16px;
}

.shop__block__right__footer {
	padding: 21px;
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.shop__block__right__footer__left__icon {
	background: #303030;
	width: 56px;
	height: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 18px;
}
.shop__block__right__footer__left__price-block {
	display: flex;
	flex-direction: column;
	gap: 3px;
	justify-content: center;
	align-items: start;
}
.shop__block__right__footer__left__price-block__title {
	font-weight: bold;
	font-size: 14px;
}
.shop__block__right__footer__left__price-block__price {
	font-size: 24px;
	font-weight: bold;
}
.shop__block__right__footer__left {
	gap: 13px;
	display: flex;
}
.shop__block__right__footer__right__button {
	background: linear-gradient(-20.948deg, #ea7000 3%, #cf2500 100%);
	display: flex;
	font-size: 14px;
	font-weight: bold;
	padding: 17px 31px;
	border-radius: 18px;
	justify-content: center;
	align-items: center;
	gap: 3px;
}
.shop__block__right__footer__right__button {
	transition: all 0.2s;
}
.shop__block__right__footer__right__button:hover {
	opacity: 0.8;
}
.shop__block__right__description__list__item {
	transition: all 0.2s;
}
.shop__block__right__description__list__item:hover {
	opacity: 0.8;
}
.shop__block__left__products__product {
	transition: all 0.2s;
}
.shop__block__left__products__product:not(.active):hover {
	opacity: 0.8;
}

footer {
	background: radial-gradient(
		rgba(39, 39, 39, 0.5) 0%,
		rgba(16, 16, 16, 0.5) 97%
	);
	margin-top: 200px;
	padding: 14px;
	padding-bottom: 0;
	border-radius: 38px 38px 0 0;
	position: relative;
	width: 100%;
}
.footer__container {
	background: radial-gradient(
		rgba(27, 27, 27, 0.8) 0%,
		rgba(29, 29, 29, 0.8) 49%
	);
	padding: 30px 40px;
	border-radius: 28px 28px 0 0;
}
.footer__top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 25px;
	padding-bottom: 45px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.footer__top__left {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: start;
	gap: 5px;
}
.footer__top__left__title {
	font-size: 20px;
	font-weight: bold;
}
.footer__top__left__description {
	font-size: 14px;
	font-weight: bold;
	color: #8d8d8e;
}
.footer__top__right {
	display: flex;
	gap: 50px;
	justify-content: end;
	align-items: center;
}

.footer__top__right__social {
	display: flex;
	gap: 12px;
	justify-content: center;
	align-items: center;
	cursor: pointer;
	padding: 8px;
	transition: all 0.2s;
	border-radius: 14px;
}
.footer__top__right__social:hover {
	background: rgba(0, 0, 0, 0.1);
}
.footer__top__right__social__icon {
	width: 52px;
	height: 52px;
	display: flex;
	justify-content: center;
	align-items: center;
	border: 1px solid rgba(255, 255, 255, 0.06);
	border-radius: 18px;
}

.telegram .footer__top__right__social__icon {
	background: rgba(40, 124, 203, 0.16);
}
.discord .footer__top__right__social__icon {
	background: rgba(155, 79, 255, 0.16);
}
.vk .footer__top__right__social__icon {
	background: rgba(32, 136, 255, 0.16);
}

.footer__top__right__social__right {
	display: flex;
	flex-direction: column;
	gap: 5px;
}
.footer__top__right__social__right__title {
	font-weight: 500;
	font-size: 15px;
	color: #a9a5a6;
}
.footer__top__right__social__right__link {
	font-weight: bold;
	font-size: 17px;
	display: flex;
	align-items: center;
	gap: 5px;
	color: white;
}

.footer__top__right__social__right__link img {
	width: 11px;
	height: 11px;
}

.footer__bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
}
.footer__bottom__left {
	display: flex;
	gap: 18px;
	flex-wrap: wrap;
}
.footer__bottom__left a {
	color: white;
	font-weight: bold;
}
.footer__bottom__right {
	font-weight: bold;
	color: #8f8d8d;
}

body::before {
	content: '';
	position: absolute; /* or absolute, but fixed sticks to viewport bottom even when scrolling? They said "в самом конце страницы" - bottom of page, so absolute is fine, but if page scrolls, fixed keeps it at viewport bottom. They want at the bottom of the page content, I think absolute relative to body. So position: absolute; */
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 100%; /* or auto width of image, but need to set width to some max to not overflow */
	max-width: 1320px; /* whatever appropriate */
	height: 480px; /* height of SVG */
	background: url('/assets/images/bottom-blur-pc.svg') no-repeat center
		bottom / contain;
	pointer-events: none; /* so it doesn't block clicks */
	/* z-index: 100; */
}

.header__burger {
	display: none;
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
}
.mobile-menu {
	position: fixed;
	top: 0;
	left: 0;
	width: 100vw;
	height: 100vh;
	background: #090909;
	z-index: 1000;
	display: flex;
	flex-direction: column;
	opacity: 0;
	visibility: hidden;
	transition:
		opacity 0.3s,
		visibility 0.3s;
	overflow: hidden;
}
.mobile-menu.open {
	opacity: 1;
	visibility: visible;
}
.mobile-menu__header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 24px 20px;
}
.mobile-menu__close {
	background: none;
	border: none;
	cursor: pointer;
	padding: 8px;
}
.mobile-menu__nav {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	flex: 1;
	gap: 24px;
}
.mobile-menu__link {
	color: white;
	font-size: 22px;
	font-weight: 500;
	text-decoration: none;
}

@media (max-width: 1300px) {
	.container {
		max-width: 1100px;
	}
}
@media (max-width: 1100px) {
	.container {
		max-width: 960px;
	}
}

@media (max-width: 960px) {
	.container {
		max-width: 768px;
		padding-left: 15px;
		padding-right: 15px;
	}
	.header__tabs {
		display: none;
	}
	.header__online {
		/* display: none; */
	}
	.header__burger {
		display: block;
	}

	.footer__top {
		flex-direction: column;
		gap: 10px;
	}
	.footer__top__left {
		align-items: center;
		gap: 10px;
		text-align: center;
	}
	.footer__top__right {
		flex-direction: column;
		align-items: start;
		gap: 10px;
	}
	.footer__bottom {
		justify-content: center;
	}
	.footer__bottom__left {
		justify-content: center;
	}
	.shop__block {
		flex-direction: column;
		justify-content: center;
		align-items: center;
		width: 100%;
	}
	.shop__server-selection__container {
		justify-content: center;
	}
	.shop__block__right {
		max-height: none;
	}
	.shop__block__right__description__main {
		max-height: 400px;
	}
	.advertise-cards__container {
		display: none;
	}
	.shop__block__left {
		height: max-content;
	}
	/* .shop__block__left {
		max-width: 100%;
	} */
}
@media (max-width: 768px) {
	.container {
		max-width: 580px;
	}

	.shop__block__left {
		max-width: 100%;
	}
	.shop__block__right__header__info__right__name,
	.shop__block__right__header__info__left__name {
		font-size: 20px;
	}
	.shop__block__left__products__container {
		padding: 20px;
		padding-top: 12px;
	}
}
@media (max-width: 580px) {
	.container {
		max-width: 480px;
	}
	.shop__block__right__header__info__middle {
		display: none;
	}
	.shop__block__right__header__info {
		grid-template-columns: 1fr 1fr;
	}
	.shop__block__right__header {
		padding: 20px;
	}
	.shop__server-selection__gap {
		display: none;
	}
	.shop__block__right__description__list__item__left,
	.shop__block__right__description__list__item__right {
		font-size: 14px;
	}
	.shop__block__right__description__text {
		font-size: 14px;
	}
	.shop__block__right__description {
		padding: 20px;
	}
	.shop__block__right__description {
		max-height: 1000px;
	}
	.shop__block__left__products__container {
		padding: 15px;
		padding-top: 8px;
	}
	.footer__bottom__left {
		flex-direction: column;
		text-align: center;
	}
	body::before {
		height: 800px; /* height of SVG */
		/* width: 396px; */
		background: url('/assets/images/bottom-blur-phone.svg') center;
		background-size: cover;
	}
}
@media (max-width: 460px) {
	.container {
		max-width: 100vw;
	}
	.shop__server-selection__container {
		flex-direction: column;
		width: 100%;
	}
	.shop__server-selection__item {
		max-width: 100%;
	}
	.shop__block__right__header__info {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	.shop__block__right__header__selector {
		margin-top: 20px;
	}
	.shop__block__right__header__info__left {
		align-items: center;
	}
	.shop__block__right__header__info__right {
		align-items: center;
	}
	.shop__server-selection__item__funtime::before {
		background-position: 0 0;
	}
	.shop__block__right__description__list__item__left,
	.shop__block__right__description__list__item__right {
		font-size: 12px;
		font-weight: 500;
	}
	.shop__block__right__description__text {
		font-size: 12px;
	}
	.shop__block__right__description__header {
		font-weight: 500;
	}
	.shop__block__right__header {
		background-size: cover;
	}
	.shop__block__right__footer__left__icon {
		display: none;
	}
	.shop__block__right__footer__left__price-block {
		align-items: center;
	}
	.shop__block__right__footer {
		flex-direction: column;
		gap: 20px;
	}
	.shop__block__right__footer__right {
		width: 100%;
	}
	.shop__block__right__footer__right__button {
		width: 100%;
	}
	.shop__block__right__description__list__item {
		padding: 10px 20px 10px 10px;
	}
	.header__logo {
		font-size: 18px;
	}
	.shop__block__left__products__product__left {
		gap: 10px;
	}
}
@media (max-width: 360px) {
	.shop__block__left__products__product__title {
		font-size: 16px;
	}
	.shop__block__left__products__product__price {
		font-size: 16px;
	}
}
