body {
    overflow-x: unset;
}
.catalog-page {
    position: relative;
}
.catalog-page * {
    color: var(--text);
    font-family: 'Montserrat', sans-serif;
}
.catalog-page .first {
    height: 320px;
    background: var(--bg);
}
.catalog-page .soon {
    height: 160px;
    margin-top: -220px;
    margin-bottom: 40px;
}
.catalog-page .content {
    display: grid;
    grid-template-columns: 260px 1fr;
    background: var(--bg-2);
}
.catalog-page .content .filters {
    display: flex;
    flex-direction: column;
    padding: 15px 0 30px;
    gap: 30px;
    border: 1px solid var(--border);
    height: fit-content;
    position: relative;
    margin-bottom: 20px;
}
.catalog-page .content .filters h2 {
    font-size: 20px;
    padding: 0 15px;
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}
.catalog-page .content .filters h2 .cross {
    width: 40px;
    height: 40px;
    display: none;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}
.catalog-page .content .filters h2 .cross::before {
    font-family: 'Icon';
    content: '\e907';
    color: var(--text);
    font-size: 18px;
    transition: 0.3s linear;
}
.catalog-page .content .filters > div {
    padding: 0 15px;
}
.catalog-page .content .filters div .selector {
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}
.catalog-page .content .filters div h3 {
    font-size: 13px;
    font-weight: 700;
    display: flex;
    gap: 6px;
    cursor: pointer;
    position: relative;
    align-items: start;
}
.catalog-page .content .filters .range h3 {
    cursor: default;
}
.catalog-page .content .filters .range .selector {
    margin-bottom: 10px;
}
.catalog-page .content .filters .range .minmax {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
    width: 100%;
    user-select: none; 
}
.catalog-page .content .filters .range .minmax .input {
    position: relative;
    display: flex;
    align-items: center;
    user-select: none; 
}
.catalog-page .content .filters .range .minmax .input span {
    position: absolute;
    text-transform: uppercase;
    color: var(--main-color);
    font-size: 13px;
    font-weight: 400;
    right: 8px;
    pointer-events: none;
    user-select: none; 
}
.catalog-page .content .filters .range .minmax input {
    width: 90px;
    height: 28px;
    border: 1px solid #3a3840;
    background: #18171c;
    text-align: center;
    color: #fff;
    padding: 5px;
    font-size: 14px;
    font-weight: 700;
    padding-right: 30px;
    user-select: none; 
}
.catalog-page .content .filters .range .line {
    width: 190px;
    height: 1px;
    margin-bottom: 5px;
    position: relative;
    background: var(--border);
    margin: 0 auto;
    user-select: none; 
}
.catalog-page .content .filters .range .line .red-line {
    position: absolute;
    height: 1px;
    top: 0;
    left: 0;
    right: 0;
    background: var(--main-color);
    user-select: none; 
}
.catalog-page .content .filters .range .line :is(.min-range, .max-range) {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--text);
    position: absolute;
    left: -7px;
    top: -7px;
    cursor: pointer;
    user-select: none; 
}
.catalog-page .content .filters .range .line :is(.min-range, .max-range)::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--main-color);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    user-select: none; 
}
.catalog-page .content .filters .range .line .max-range {
    left: calc(100% - 7px);
    top: -7px;
    user-select: none; 
}
.catalog-page .content .filters .checks h3::after {
    font-family: Icon;
    content: '\e903';
    font-size: 8px;
    font-weight: 400;
    transform: rotate(90deg);
    transition: 0.3s linear;
    margin-top: 3px;
    margin-top: 5px;
}
.catalog-page .content .filters .checks.pegi h3::after {
    position: relative;
    right: 30px;
}
.catalog-page .content .filters .checks.show h3::after {
    transform: rotate(-90deg);
}
.catalog-page .content .filters .checks.active .selector {
    position: relative;
}
.catalog-page .content .filters .checks .selector span {
    height: 100%;
    width: 20px;
    position: absolute;
    right: 0;
    top: 0;
    cursor: pointer;
    display: none;
    z-index: 1;
}
.catalog-page .content .filters .checks.active .selector span {
    display: flex;
}
.catalog-page .content .filters .checks .selector span::before {
    content: '';
    height: 1px;
    width: 12px;
    background: var(--main-color);
    position: absolute;
    right: 0;
    top: 9px;
}
.catalog-page .content .filters .checks .list {
    border-bottom: 1px solid transparent;
    max-height: 0;
    transition: 0.3s linear;
    overflow: hidden;
    position: relative;
}
.catalog-page .content .filters .checks.show .list {
    border-bottom: 1px solid var(--border);
    max-height: 280px;
}
.catalog-page .content .filters .checks.show .list::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 10px;
    right: 0;
    top: 15px;
    z-index: 1;
    background: var(--bg-2);
}
.catalog-page .content .filters .checks.show .list::before {
    content: '';
    position: absolute;
    width: 4px;
    height: 10px;
    right: 0;
    bottom: 13px;
    z-index: 1;
    background: var(--bg-2);
}
.catalog-page .content .filters .checks .list .box {
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 15px 0;
    max-height: 250px;
}
.catalog-page .content .filters .checks .list .box::-webkit-scrollbar {
    width: 4px;
    background: var(--border);
}
.catalog-page .content .filters .checks .list .box::-webkit-scrollbar-thumb {
    width: 4px;
    background: var(--main-color);
}
.catalog-page .content .filters .checks .list .checkbox input {
    display: none;
}
.catalog-page .content .filters .checks .list .checkbox label {
    color: var(--game-text);
    transition: 0.3s linear;
    display: flex;
    gap: 8px;
    font-size: 13px;
    font-weight: 400;
    cursor: pointer;
    position: relative;
}
.catalog-page .content .filters .checks .list .checkbox label::before {
    content: '';
    width: 14px;
    height: 14px;
    border: 1px solid var(--border);
    transition: 0.3s linear;
    cursor: pointer;
}
.catalog-page .content .filters .checks .list .checkbox label::after {
    position: absolute;
    content: '';
    width: 6px;
    height: 6px;
    transition: 0.3s linear;
    cursor: pointer;
    left: 4px;
    top: 4px;
}
.catalog-page .content .filters .checks .list .checkbox input:checked+label {
    color: var(--text);
}
.catalog-page .content .filters .checks .list .checkbox input:checked+label::before {
    border: 1px solid var(--main-color);
}
.catalog-page .content .filters .checks .list .checkbox input:checked+label::after {
    background: var(--main-color) !important;
}
.catalog-page .content .filters .checks .list .checkbox input:disabled+label {
    color: var(--border2);
    opacity: 0.2;
}
.catalog-page .content .filters .checks .list .checkbox input:disabled+label::before {
    border: 1px solid var(--border2);
    opacity: 0.4;
}
.catalog-page .content .filters .checks .list .checkbox input:disabled+label::after {
    background: var(--bg-2) !important;
}
.catalog-page .content .filters .switch .selector {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.catalog-page .content .filters .switch .selector h3 {
    cursor: default;
}
.catalog-page .content .filters .switch .selector input {
    display: none;
}
.catalog-page .content .filters .switch .selector label {
    display: flex;
    position: relative;
    width: 30px;
    height: 16px;
    border-radius: 20px;
    border: 1px solid var(--game-text, rgba(170, 170, 170, 0.67));
    cursor: pointer;
    transition: 0.2s linear;
}
.catalog-page .content .filters .switch .selector label::after {
    content: '';
    display: flex;
    width: 14px;
    height: 14px;
    position: absolute;
    left: 0;
    top: 0;
    border-radius: 50%;
    background: var(--game-text);
    transition: 0.2s linear;
}
.catalog-page .content .filters .switch .selector input:checked+label {
    border: 1px solid var(--text3);
}
.catalog-page .content .filters .switch .selector input:checked+label::after {
    background: var(--main-color);
    left: calc(100% - 14px);
}
.catalog-page .content .filters .switch .selector input:disabled+label {
    border: 1px solid var(--border);
    opacity: 0.4;
}
.catalog-page .content .filters .switch .selector input:disabled+label::after {
    opacity: 0.4;
    background: var(--text3);
}
.catalog-page .content .filters .switch .selector:has(input:disabled) h3 {
    opacity: 0.2;
}
.catalog-page .content aside .info {
    width: 100%;
    display: flex;
    border: 1px solid var(--border);
    background: var(--bg-2);
    z-index: 90;
    padding: 0;
    position: sticky;
    bottom: 0;
}
.catalog-page .content aside .info .quantity {
    width: 100%;
    max-width: 100%;
    display: flex;
    border-right: 1px solid var(--border);
    background: var(--bg);
    padding: 15px 0;
    text-transform: uppercase;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: 400;
    transition: 0.3s linear;
}
.catalog-page .content aside .info .reset {
    max-width: 0;
    overflow: hidden;
    border: none;
    background: var(--bg-2);
    position: relative;
    z-index: 2;
    border-left: 1px solid transparent;
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    transition: 0.3s linear;
    justify-content: left;
    padding-right: 0;
    padding-left: 0;
    display: flex;
    align-items: center;
    cursor: pointer;
}
.catalog-page .content aside .info .reset span {
    position: relative;
    color: var(--main-color);
    white-space: nowrap;
    left: -200px;
    top: 0;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 400;
    transition: 0.3s 0.1s linear;
}
.catalog-page .content aside .info .cross {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    max-width: 0;
    height: 100%;
    overflow: hidden;
    background: var(--bg-2);
    cursor: pointer;
    z-index: 3;
    display: flex;
    align-items: center;
    border-left: 1px solid transparent;
    pointer-events: none;
}
.catalog-page .content aside .info .cross::after {
    position: absolute;
    right: -14px;
    content: '';
    display: flex;
    width: 12px;
    height: 1px;
    background: var(--main-color);
    transition: 0.5s linear;
}
.catalog-page .content aside .info .cross::before {
    position: absolute;
    right: -14px;
    content: '';
    display: flex;
    width: 12px;
    height: 1px;
    background: var(--main-color);
    transition: 0.5s linear;
}
.catalog-page .content aside .info.second .cross {
    max-width: 40px;
    border-left: 1px solid var(--border);
    pointer-events: auto;
}
.catalog-page .content aside .info .cross::after {
    right: 14px;
}
.catalog-page .content aside .info .cross::before {
    right: 14px;
}
.catalog-page .content aside .info.second .reset {
    max-width: 40px;
}
.catalog-page .content aside .info.open .cross {
    border-left: 1px solid transparent;
}
.catalog-page .content aside .info.open .cross::after {
    transform: rotate(-225deg);
}
.catalog-page .content aside .info.open .cross::before {
    transform: rotate(225deg);
}
.catalog-page .content aside .info.open .reset {
    width: calc(100% - 32px);
    max-width: calc(100% - 32px);
    border-left: 1px solid var(--border);
    justify-content: center;
    padding-right: 55px;
    padding-left: 40px;
}
.catalog-page .content aside .info.open .reset span {
    left: 0;
    top: 0;
}
.catalog-page .content aside .info .animation {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid var(--border);
    background: var(--bg);
    top: 0;
    left: 0;
    z-index: 5;
    display: none;
    align-items: center;
    justify-content: center;
    animation: border 1.5s linear infinite;
}
@keyframes border {
	0% {
		border: 1px solid var(--border);
	}
	25% {
		border: 1px solid var(--main-color);
	}
	50% {
		border: 1px solid var(--border);
	}
	75% {
		border: 1px solid var(--main-color);
	}
	100% {
		border: 1px solid var(--border);
	}
}
.catalog-page .content aside .info .animation.loading-anime {
    display: flex;
}
.catalog-page .content aside .info .item {
    background: var(--bg);
    position: relative;
    overflow: hidden;
    width: 30px;
    height: 30px;
}
.catalog-page .content aside .info .item::before {
    content: '';
    position: absolute;
    left: -50%;
    top: -50%;
    width: 200%;
    height: 200%;
    background-repeat: no-repeat;
    background-size: 100% 65%;
    background-position: 0 0, 100% 0;
    background-image: linear-gradient(180deg, var(--main-color) 00%, var(--main-color) 70%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
    transition: .3s linear;
    animation: rotate 2.5s linear infinite;
}
.catalog-page .content aside .info .item::after {
    content: '';
    position: absolute;
    left: 1px;
    right: 1px;
    top: 1px;
    bottom: 1px;
    background-color: var(--bg);
    display: block;
    z-index: 2;
}
@keyframes rotate {
	0% {
		transform: rotate(0);
	}
	25% {
		transform: rotate(60deg);
	}
	50% {
		transform: rotate(180deg);
	}
	75% {
		transform: rotate(240deg);
	}
	100% {
		transform: rotate(360deg);
	}
}
.catalog-page .content .cards {
    padding-left: 40px;
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
    border-top: 1px solid var(--border, #363539);
}
.catalog-page .content .cards .head {
    display: flex;
    gap: 40px;
}

.catalog-page .content .cards .head h2 {
    font-size: 28px;
    font-weight: 700;
    position: relative;
    text-transform: uppercase;
    width: fit-content;
    padding-top: 12px;
}
.catalog-page .content .cards .head .sorting {
    width: 100%;
    padding-bottom: 4px;
    border-bottom: 1px solid var(--border, #363539);
    display: flex;
    gap: 40px;
    height: fit-content;
    padding-top: 15px;
    border-right: 1px solid var(--border, #363539);
}
.catalog-page .content .cards .head .sorting input {
    display: none;
}
.catalog-page .content .cards .head .sorting label {
    cursor: pointer;
    color: var(--game-text);
    transition: 0.3s linear;
    text-transform: uppercase;
    font-size: 14px;
    position: relative;
    transition: 0.3s linear;
    font-weight: 700;
}
.catalog-page .content .cards .head .sorting input:checked+label {
    color: var(--text);
    text-shadow: 0px 0px 20px rgba(255, 255, 255, 0.70);
}
.catalog-page .content .cards .head .sorting input:checked+label::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: -4px;
    left: 0;
    background: var(--text);
}
.catalog-page .content .cards .head h2::after {
    background: var(--bg-2);
    content: '';
    position: absolute;
    width: 100px;
    bottom: 0;
    left: 0;
    height: 11px;
}
.catalog-page .content .cards .head h2 .filters-btn {
    display: none;
    border: 1px solid var(--border);
    background: var(--bg);
    padding: 11px;
    cursor: pointer;
}
.catalog-page .content .cards .head h2 .filters-btn::before {
    font-family: 'Icon';
    content: '\e906';
    color: var(--text);
    font-size: 18px;
    transition: 0.3s linear;
}
.catalog-page .content .cards .items {
    gap: 40px;
    display: flex;
    flex-direction: column;
}
.catalog-page .content .cards .items .item {
    display: grid;
    grid-template-columns: 170px 1fr;
    gap: 40px;
    padding: 10px;
    position: relative;
    overflow: hidden;
}
.catalog-page .content .cards .items .item > * {
    z-index: 4;
    position: relative;
}
.catalog-page .content .cards .items .item::before {
    position: absolute;
    content: '';
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    border: 1px solid var(--border);
    background: var(--bg-2);
    z-index: 1;
}
.catalog-page .content .cards .items .item::after {
    content: '';
    position: absolute;
    width: 240px;
    height: 100%;
    left: -100px;
    background: rgba(255, 255, 255, 0.50);
    filter: blur(50px);
    z-index: 3;
    transition: 0.3s linear;
    opacity: 0;
    border-radius: 50%;
}
.catalog-page .content .cards .items .item .fon {
    content: '';
    position: absolute;
    width: 160px;
    height: 160px;
    right: -80px;
    top: -80px;
    background: rgba(72, 72, 72, 0.10);
    filter: blur(25px);
    z-index: 3;
    transition: 0.3s linear;
}
.catalog-page .content .cards .items .item .img {
    position: relative;
}
.catalog-page .content .cards .items .item .img::after {
    position: absolute;
    right: -4px;
    top: 1px;
    content: '';
    background: linear-gradient(100deg, #e53046 0.47%, #921b29 93.46%);
    width: 7px;
    height: 5px;
    z-index: -1;
    transform: rotate(30deg);
}
.catalog-page .content .cards .items .item .img img {
    box-shadow: 6px 6px 12px 0px rgba(0, 0, 0, 0.25);
}
.catalog-page .content .cards .items .item .img a {
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
}
.catalog-page .content .cards .items .item .img span {
    position: absolute;
    display: flex;
    padding: 1px 3px 1px 0;
    background: linear-gradient(-100deg, #E53046 0.47%, #921B29 93.46%);
    font-size: 12px;
    font-weight: 700;
    align-items: center;
    gap: 2px;
    top: 4px;
    right: -5px;
    z-index: 1;
    text-transform: uppercase;
    min-width: 35px;
    justify-content: center;
}
.catalog-page .content .cards .items .item .img span:after {
    font-family: Icon;
    content: '\e900';
    font-size: 10px;
    background: var(--star-gradient) no-repeat;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.catalog-page .content .cards .items .item .img span.text:after {
    display: none;
}
.catalog-page .content .cards .items .item .img span::before {
    content: '';
    position: absolute;
    left: -4px;
    z-index: -1;
    width: 8px;
    height: 100%;
    border-radius: 50%;
    background: #921B29;
}
.catalog-page .item .img .localization {
    position: absolute;
    left: -2px;
    bottom: -1px;
    width: fit-content;
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 13px;
    font-weight: 700;
    line-height: 16px;
    z-index: 1;
    border-radius: 2px;
    border: 1px solid var(--main-color);
    background: rgba(0, 0, 0, 0.5);
    padding: 4px;
}
.catalog-page .item .img .localization::before {
    content: '';
    width: 20px;
    height: 15px;
    flex-shrink: 0;
    background: url(../images/icons/ru.svg) center / 100%;
}
.catalog-page .content .cards .items .item .text {
    padding-top: 10px;
}
.catalog-page .content .cards .items .item h3 {
    margin-bottom: 6px;
}
.catalog-page .content .cards .items .item h3 a {
    display: flex;
    width: fit-content;
    max-width: 560px;
    min-height: 45px;
    font-size: 18px;
}
.catalog-page .content .cards .items .item .date {
    display: flex;
    font-size: 14px;
    color: var(--border2);
    margin-bottom: 15px;
}
.catalog-page .content .cards .items .item .bottom {
    display: flex;
    width: 100%;
    justify-content: space-between;
    min-height: 105px;
}
.catalog-page .content .cards .items .item .info {
    margin-bottom: 15px;
    max-width: 435px;
    max-height: 40px;
    overflow: hidden;
}
.catalog-page .content .cards .item .info span {
    color: var(--text3);
    border: 1px solid var(--border);
}
.catalog-page .content .cards .items .price {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 120px;
    justify-content: end;
    column-gap: 16px;
    row-gap: 10px;
    z-index: 1;
    margin-top: auto;
    min-width: 250px;
}
.catalog-page .content .cards .items .price p {
    text-align: end;
    font-size: 18px;
    font-weight: 600;
}
.catalog-page .content .cards .items .price p span {
    font-size: 14px;
    font-weight: 400;
}
.catalog-page .content .cards .items .price a {
    grid-column: 1 / span 2;
    text-align: end;
    font-size: 13px;
}
.catalog-page .content .cards .items .item .buy {
    border: 1px solid var(--border);
}
.catalog-page .content .cards .items .item .price div,
.catalog-page .content .cards .items .item.discount .price p {
    display: none;
}
.catalog-page .content .cards .items .item.discount .price div {
    display: flex;
    font-size: 18px;
    font-weight: 600;
    color: var(--text4);
}
.catalog-page .content .item.discount .full-price {
    line-height: 20px;
    color: var(--border2);
    text-decoration: line-through;
    margin-right: 16px;
    line-height: 20px;
    font-weight: 400;
}
.catalog-page .content .item.discount .full-price + span {
    font-size: 14px;
    font-weight: 400;
    margin-right: 5px;
    line-height: inherit;
    padding-top: 4px;
}
.catalog-page .content .cards .pagination {
    justify-content: end;
}
.catalog-page .content .cards .pagination .more {
    justify-self: start;
    margin-left: 0;
    margin-right: auto;
    font-size: 12px;
}
.catalog-page .content .cards .pagination button {
    padding: 16px 15px;
    transition: 0.3s linear;
    border: 1px solid var(--border);
    color: #fff;
    position: relative;
}
.catalog-page .content .cards .pagination button.prev {
    right: -1px;
}
.catalog-page .content .cards .pagination p {
    color: var(--border2);
}
.catalog-page .content .cards .pagination p span {
    color: var(--border2);
}
.catalog-page .content .cards .search-error {
    gap: 30px;
    align-items: end;
    padding-left: 165px;
    margin-top: 70px;
    display: flex;
}
.catalog-page .content .cards .search-error h2 {
    text-shadow: -16px 0px 22px rgba(0, 0, 0, 0.40);
    font-size: 23px;
    font-weight: 900;
    text-transform: uppercase;
    background: linear-gradient(180deg, #F9A424 0%, #A60 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.catalog-page .content .cards .search-error button {
    margin-bottom: 6px;
    font-size: 12px;
}
.catalog-page .content .cards:has(.search-error) {
    background: url(../images/video-games/search-error.png) left top 60px no-repeat;
}
.catalog-page .content .cards:has(.search-error) .pagination {
    display: none;
}
.filters-bg {
    display: none;
    position: fixed;
    z-index: 100;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.70);
}
.filters-bg.show {
    display: flex;
}

@media screen and (max-width: 1000px) {
    .catalog-page .first {
        height: 300px;
    }
    .catalog-page .soon {
        height: 100px;
        margin-top: -200px;
    }
    .catalog-page .soon img {
        object-fit: cover;
        height: 100%;
    }
    .catalog-page .content {
        grid-template-columns: 1fr;
        position: relative;
    }
    .catalog-page .content.wrapper {
        padding: 0;
    }
    .catalog-page .content aside {
        position: fixed;
        max-height: 100dvh;
        width: 0;
        top: 0;
        right: 0;
        z-index: 101;
        transition: 0.3s linear;
        overflow-y: scroll;
        overflow-x: unset;
    }
    .catalog-page .content aside::-webkit-scrollbar {
        width: 0;
    }
    .catalog-page .content aside.show {
        width: 260px;
    }
    .catalog-page .content .filters {
        padding: 5px 0 30px;
        background: var(--bg-2);
        min-width: 260px;
    }
    .catalog-page .content .filters h2 {
        display: flex;
        position: relative;
    }
    .catalog-page .content .filters h2::after {
        content: '';
        position: absolute;
        width: 100%;
        height: 1px;
        left: 0;
        bottom: -5px;
        background: var(--border);
    }
    .catalog-page .content .filters h2 .cross {
        display: flex;
    }
    .catalog-page .content .cards {
        padding-left: 0;
        gap: 20px;
        padding: 0 20px;
    }
    .catalog-page .content .cards .head {
        flex-direction: column;
        position: relative;
    }
    .catalog-page .content .cards .head h2 {
        display: flex;
        justify-content: space-between;
        width: 100%;
        align-items: end;
    }
    .catalog-page .content .cards .head h2 .filters-btn {
        display: flex;
    }
    .catalog-page .content .cards .head .sorting {
        border: none;
        position: relative;
        padding-top: 0;
        width: fit-content;
    }
    .catalog-page .content .cards .head::after {
        content: '';
        height: 1px;
        width: calc(100% + 15px);
        background: var(--border);
        position: absolute;
        bottom: -1px;
        left: 0;
    }
    .catalog-page .content .cards:has(.search-error) {
        background: url(../images/video-games/search-error.png) left top 120px no-repeat;
    }
    .catalog-page .content .cards .search-error {
        gap: 20px;
        align-items: start;
        padding-left: 170px;    
        margin-top: 85px;
        flex-direction: column;
    }
}
@media screen and (max-width: 667px) {
    .catalog-page .content .cards {
        padding: 0 15px;
        overflow: hidden;
    }
    .catalog-page .content .cards .head .sorting {
        width: 100%;
        overflow-x: scroll;
    }
    .catalog-page .content .cards .head .sorting::-webkit-scrollbar {
        height: 0;
    }
    .catalog-page .content .cards .head .sorting label {
        font-weight: 400;
    }
    .catalog-page .content .cards .items .item {
        grid-template-columns: 126px 1fr;
        gap: 10px;
        padding: 6px;
        background: var(--bg);
    }
    .catalog-page .content .cards .items .item::before {
        height: 85px;
    }
    .catalog-page .item .img .localization {
        font-size: 12px;
        padding: 3px;
    }
    .catalog-page .item .img .localization::before {
        width: 16px;
        height: 12px;
    }
    .catalog-page .content .cards .items .item .text {
        padding-top: 0;
    }
    .catalog-page .content .cards .items .item h3 {
        margin-bottom: 0;
    }
    .catalog-page .content .cards .items .item h3 a {
        max-width: 100%;
        min-height: 48px;
        font-size: 13px;
    }
    .catalog-page .content .cards .items .item .date {
        font-size: 12px;
        margin-bottom: 8px;
    }
    .catalog-page .content .cards .items .item .bottom {
        flex-direction: column;
        min-height: 0;
    }
    .catalog-page .content .cards .items .item .info {
        margin-bottom: 4px;
        max-width: 100%;
        min-height: 40px;
    }
    .catalog-page .content .cards .items .price {
        grid-template-columns: 1fr 85px;
        column-gap: 8px;
        margin-top: auto;
        min-width: 0;
        width: 100%;
    }
    .catalog-page .content .cards .items .price .offers {
        display: none;
    }
    .catalog-page .content .cards .items .price p {
        font-size: 14px;
    }
    .catalog-page .content .cards .items .price p span {
        font-size: 12px;
    }
    .catalog-page .content .cards .items .item .fon {
        display: none;
    }
    .pagination input {
        margin: 0 5px 0 20px;
    }
    .catalog-page .content .cards .pagination {
        justify-content: center;
    }
    .catalog-page .content .cards .pagination button {
        font-size: 0;
        width: 48px;
        height: 48px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .catalog-page .content .cards .pagination button::before {
        font-family: 'Icon';
        content: '\e908';
        font-size: 18px;
        color: var(--text);
    }
    .catalog-page .content .cards .pagination button.prev::before {
        content: '\e909';
    }
}
@media screen and (min-width: 667px) {
    .catalog-page .content .filters .checks .list .checkbox:hover label {
        color: var(--border2);
    }
    .catalog-page .content .filters .checks .list .checkbox:hover label::before {
        border: 1px solid var(--border2);
    }
    .catalog-page .content .filters .checks .list .checkbox input:hover+label::after {
        background: var(--border2);
    }
    .catalog-page .content .filters .switch .selector label:hover {
        border: 1px solid var(--text3);
    }
    .catalog-page .content .filters .switch .selector label:hover::after {
        background: var(--text3);
    }
    .catalog-page .content .cards .head .sorting label:hover {
        color: var(--text3);
    }
    .catalog-page .content .cards .head .sorting input:checked+label:hover {
        color: var(--text);
    }
    .catalog-page .content .cards .pagination button:hover {
        background: var(--bg);
        z-index: 1;
    }
    .catalog-page .content .cards .items .item:hover::after {
        opacity: 1;
    }
    .catalog-page .content .cards .items .item:has(.buy:hover):hover::after {
        background: #C92CD1;
    }
    .catalog-page .content .cards .search-error button:hover {
        color: var(--main-color);
    }
    .catalog-page .content .cards .head h2 .filters-btn:hover::before {
        color: var(--main-color);
    }
    .catalog-page .content .filters h2 .cross:hover::before {
        color: var(--main-color);
    }
}