:root {
    --primary-red: #FF0000;
    --bg-color: #050505;
    --card-bg: #2a2a2a;
    --card-light: #d9d9d9;
    --light-gray: #6b6b6b;
    --text-white: #ffffff;
    --text-gray: #888;
    --border-gray: #333;
    --glow: 0 0 15px rgba(255, 0, 0, 0.4);
    --glow-soft: 0 0 15px rgba(255, 0, 0, 0.3);
    --border-radius: 20px;
    --border-radius-sm: 10px;
    --border-radius-lg: 30px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html, body { height: 100%; overflow-x: hidden; }

body {
    background-color: var(--bg-color);
    color: var(--text-white);
    font-family: 'Montserrat', sans-serif;
    line-height: 1.4;
    overflow-y: scroll;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
body::-webkit-scrollbar { display: none; }

a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
img { max-width: 100%; height: auto; display: block; }

.hide-scrollbar::-webkit-scrollbar { display: none; }
.hide-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

.container { max-width: 1440px; margin: 0 auto; padding: 0 30px; }

.header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 0; border-bottom: 1px solid var(--border-gray);
    position: relative; margin-bottom: 30px;
}
.header::after {
    content: ''; position: absolute; bottom: -1px; left: 0; width: 100%; height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary-red), transparent);
    box-shadow: 0 0 10px var(--primary-red);
}
.header__logo { display: flex; align-items: center; gap: 10px; font-size: 28px; font-weight: 900; letter-spacing: 1px; cursor: pointer; flex-shrink: 0; }
.header__logo-text { color: var(--text-white); }
.header__logo-text--red { color: var(--primary-red); }

.header__logo-eye {
    width: 50px;
    height: 30px;
    background: radial-gradient(ellipse at center, #ff0000 0%, #990000 50%, #330000 100%);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(255, 0, 0, 0.6), 0 0 40px rgba(255, 0, 0, 0.3), inset 0 0 15px rgba(0, 0, 0, 0.5);
    position: relative;
    cursor: pointer;
    overflow: hidden;
}

.header__logo-eye::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 5px;
    height: 24px;
    background: linear-gradient(180deg,
        transparent 0%,
        #000 8%,
        #000 92%,
        transparent 100%
    );
    border-radius: 40%;
    transform: translate(-50%, -50%);
    transition: all 0.5s ease;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.9);
}

.header__logo-eye::after {
    content: '';
    position: absolute;
    top: 20%;
    left: 30%;
    width: 8px;
    height: 4px;
    background: rgba(255, 150, 150, 0.4);
    border-radius: 50%;
    transform: rotate(-20deg);
    transition: all 0.5s ease;
}

.header__logo-eye.look-left::before {
    transform: translate(-200%, -50%);
}

.header__logo-eye.look-left::after {
    left: 15%;
}

.header__logo-eye.look-right::before {
    transform: translate(100%, -50%);
}

.header__logo-eye.look-right::after {
    left: 55%;
}

.header__logo-eye.look-wide {
    box-shadow:
        0 0 30px rgba(255, 0, 0, 0.8),
        0 0 60px rgba(255, 0, 0, 0.4),
        inset 0 0 20px rgba(0, 0, 0, 0.4);
}

.header__logo-eye.look-wide::before {
    width: 9px;
    height: 22px;
    background: linear-gradient(180deg,
        transparent 0%,
        #000 5%,
        #0a0000 50%,
        #000 95%,
        transparent 100%
    );
    box-shadow:
        0 0 8px rgba(0, 0, 0, 0.9),
        0 0 15px rgba(255, 0, 0, 0.3);
}

.header__logo-eye.look-wide::after {
    opacity: 0.6;
}

.header__search { flex: 1; max-width: 500px; margin: 0 40px; position: relative; min-width: 0; }
.search-box {
    height: 44px; display: flex; align-items: center; gap: 10px; padding: 0 14px;
    border-radius: 14px; background: rgba(90,90,90,0.55);
    border: 1px solid rgba(255,255,255,0.08); box-shadow: 0 10px 28px rgba(0,0,0,0.28);
    transition: all 0.2s ease; cursor: text;
}
.search-box:hover { background: rgba(100,100,100,0.6); }
.search-box__input { flex: 1; border: 0; outline: 0; background: transparent; color: var(--text-white); font-size: 14px; font-family: inherit; min-width: 0; }
.search-box__input::placeholder { color: rgba(255,255,255,0.55); }
.search-box__icon { width: 16px; height: 16px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.7); flex-shrink: 0; }
.search-box__close {
    width: 28px; height: 28px; border-radius: 50%; border: none; background: rgba(255,255,255,0.1);
    color: white; font-size: 18px; display: flex; align-items: center; justify-content: center;
    cursor: pointer; flex-shrink: 0; transition: all 0.2s; line-height: 1;
}
.search-box__close:hover { background: var(--primary-red); }

.header__actions { display: flex; align-items: center; gap: 25px; flex-shrink: 0; }
.header__support { display: flex; flex-direction: column; align-items: center; font-size: 10px; cursor: pointer; transition: 0.2s; gap: 4px; margin-top: 3px;}
.header__support:hover { color: var(--primary-red); }
.header__support-icon { width: 22px; height: 22px; display: flex; align-items: center; justify-content: center; }
.header__user-btn {
    width: 45px; height: 45px; border-radius: 50%; background: #333;
    border: none; display: flex; align-items: center;
    justify-content: center; cursor: pointer; transition: 0.2s; overflow: hidden;
}
.header__user-btn img { width: 100%; height: 100%; object-fit: cover; }

.search-overlay { position: fixed; inset: 0; z-index: 1000; display: none; }
.search-overlay.active { display: block; }
.search-overlay::before {
    content: ''; position: absolute; inset: 0; background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); pointer-events: none;
}
.search-container {
    position: relative; z-index: 2; width: 100%;
    background: linear-gradient(180deg, rgba(15, 15, 15, 0.98) 0%, rgba(20, 20, 20, 0.95) 100%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    padding: 25px 30px; pointer-events: auto;
}
.search-header { display: flex; gap: 20px; align-items: center; }
.search-header__left { flex: 0 0 55%; max-width: 55%; }
.search-header__right { flex: 1; display: flex; align-items: center; }
.search-chips { display: flex; gap: 10px; flex-wrap: wrap; pointer-events: auto; }
.search-chip {
    height: 38px; padding: 0 14px; border-radius: 999px; border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06); color: rgba(255, 255, 255, 0.88);
    display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 600;
    font-family: inherit; cursor: pointer; transition: all 0.2s ease; white-space: nowrap; pointer-events: auto;
}
.search-chip:hover { background: rgba(255, 255, 255, 0.1); }
.search-chip.active { border-color: rgba(255, 27, 27, 0.5); background: rgba(255, 27, 27, 0.15); }
.search-chip__dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(255, 255, 255, 0.3); transition: all 0.2s ease; }
.search-chip.active .search-chip__dot { background: var(--primary-red); box-shadow: 0 0 6px var(--primary-red); }

.search-panel { margin-top: 20px; max-height: 50vh; overflow-y: auto; border-radius: 16px; background: rgba(0, 0, 0, 0.3); border: 1px solid rgba(255, 255, 255, 0.06); padding: 14px; }
.search-panel::-webkit-scrollbar { width: 6px; }
.search-panel::-webkit-scrollbar-track { background: rgba(255, 255, 255, 0.05); border-radius: 10px; }
.search-panel::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.15); border-radius: 10px; }
.search-panel__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(90px, 1fr)); gap: 12px; }
.search-card {
    display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 10px 6px;
    border-radius: 14px; cursor: pointer; transition: all 0.15s ease; pointer-events: auto;
}
.search-card:hover { background: rgba(255, 255, 255, 0.08); transform: translateY(-2px); }
.search-card__icon {
    width: 64px; height: 64px; border-radius: 16px; border: 1px solid rgba(255, 255, 255, 0.1);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3); display: flex; align-items: center;
    justify-content: center; overflow: hidden; font-size: 22px;
}
.search-card__icon img { width: 100%; height: 100%; object-fit: cover; }
.search-card__name { font-size: 11px; font-weight: 600; text-align: center; color: rgba(255, 255, 255, 0.85); max-width: 80px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.search-empty { padding: 40px; text-align: center; color: rgba(255, 255, 255, 0.5); font-size: 14px; grid-column: 1 / -1; }

.btn { border: none; border-radius: 12px; font-weight: 700; cursor: pointer; transition: 0.2s; display: inline-flex; align-items: center; justify-content: center; }
.btn--primary { background: var(--primary-red); color: white; box-shadow: var(--glow); height: 35px; width: 70px;}
.btn--primary:hover { transform: scale(1.02); }
.btn--large { padding: 18px 40px; font-size: 18px; font-weight: 800; border-radius: 12px; }
.btn--full { width: 100%; padding: 15px; font-size: 16px; }
.btn:disabled { opacity: 0.6; cursor: not-allowed; }

.login-overlay {
    position: fixed; inset: 0; background: rgba(0, 0, 0, 0.9); z-index: 3000;
    display: none; align-items: center; justify-content: center;
}
.login-overlay.active { display: flex; }
.login-card {
    background-color: #000; border: 1px solid var(--primary-red); border-radius: 30px;
    padding: 40px 60px; text-align: center; width: 100%; max-width: 450px;
    box-shadow: 0 0 30px rgba(255, 0, 0, 0.15);
}
.login-card__title { font-size: 20px; font-weight: 700; margin-bottom: 25px; }
.login-card__actions { display: flex; flex-direction: column; align-items: center; gap: 15px; }
#telegramWidgetContainer { min-height: 50px; display: flex; justify-content: center; align-items: center; }
#telegramWidgetContainer iframe { filter: hue-rotate(170deg) saturate(5) brightness(0.75) contrast(1.4); }

.hero-slider {
    position: relative; margin: 15px 0 25px; width: 100vw;
    margin-left: calc(-50vw + 50%); overflow: hidden; padding: 20px 0;
}
.hero-slider__track { display: flex; gap: 20px; will-change: transform; cursor: grab; }
.hero-slider__track:active { cursor: grabbing; }
.hero-slider__slide {
    flex-shrink: 0; width: min(1000px, 90vw); height: 380px;
    border-radius: 20px; overflow: hidden; opacity: 0.4; transform: scale(0.85);
    background: var(--card-bg); user-select: none;
}
.hero-slider__slide.slide-transition {
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.hero-slider__slide--active { opacity: 1; transform: scale(1); box-shadow: 0 10px 40px rgba(0, 0, 0, 0.4); }
.hero-slider__slide img { width: 100%; height: 100%; object-fit: cover; pointer-events: none; -webkit-user-drag: none; }
.hero-slider__dots {
    position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
    display: flex; gap: 8px; z-index: 10;
}
.hero-slider__dot {
    width: 8px; height: 8px; border-radius: 50%; background: rgba(255, 255, 255, 0.4);
    cursor: pointer; transition: 0.2s; border: none;
}
.hero-slider__dot.active { background: white; width: 24px; border-radius: 4px; }

.home-section { margin-bottom: 40px; }
.home-section__header { display: flex; align-items: center; gap: 10px; margin-bottom: 15px; }
.home-section__title { font-size: 16px; font-weight: 700; }
.home-grid { display: grid; grid-template-columns: repeat(11, 1fr); gap: 15px; min-width: 0; }
.home-grid__item {
    background: var(--card-light); border-radius: var(--border-radius); aspect-ratio: 1;
    cursor: pointer; transition: transform 0.2s, background-color 0.2s, box-shadow 0.2s;
    display: flex; justify-content: center; align-items: center; overflow: hidden;
}
.home-grid__item img { width: 100%; height: 100%; object-fit: cover; }
.home-grid__item:hover { transform: translateY(-5px); background-color: white; box-shadow: 0 8px 25px rgba(255, 255, 255, 0.15); }
.home-grid__item--coming { font-size: 32px; font-weight: 900; color: var(--primary-red); user-select: none; line-height: 1; }
.home-grid--categories { display: flex; gap: 12px; overflow-x: auto; padding-bottom: 10px; }
.home-grid__item--category { flex: 0 0 auto; width: 80px; display: flex; flex-direction: column; align-items: center; gap: 8px; cursor: pointer; transition: transform 0.2s; }
.home-grid__item--category:hover { transform: translateY(-3px); }
.home-grid__item--category-icon {
    width: 70px; height: 70px; border-radius: 16px; background: var(--card-light);
    overflow: hidden; display: flex; align-items: center; justify-content: center;
}
.home-grid__item--category-icon img { width: 100%; height: 100%; object-fit: cover; }
.home-grid__item--category-name { font-size: 11px; font-weight: 600; text-align: center; color: #aaa; max-width: 80px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.home-sections-row { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-bottom: 30px; }

.catalog-banner {
    width: 100%; height: 340px; background-color: var(--light-gray); border: none;
    border-radius: 20px; box-shadow: none; margin-bottom: 40px; overflow: hidden;
}
.catalog-banner img { width: 100%; height: 100%; object-fit: cover; }

.catalog-header { display: flex; gap: 20px; margin-bottom: 25px; align-items: center; flex-wrap: wrap; }
.catalog-header__info { display: flex; align-items: center; gap: 15px; margin-bottom: 15px; }
.catalog-header__icon { width: 50px; height: 50px; border-radius: 12px; overflow: hidden; background: #222; }
.catalog-header__icon img { width: 100%; height: 100%; object-fit: cover; }
.catalog-header__name { font-size: 24px; font-weight: 900; }

.catalog-controls-row {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.catalog-search {
    position: relative;
    min-width: 300px;
    max-width: 400px;
    flex-shrink: 0;
}

.catalog-search__input {
    width: 100%; height: 46px; padding: 0 15px 0 45px; background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; color: white; font-size: 14px; outline: none;
}
.catalog-search__input:focus { border-color: var(--primary-red); background: rgba(255,255,255,0.08); }
.catalog-search__icon { position: absolute; left: 15px; top: 14px; color: rgba(255,255,255,0.5); }

.subcategories-row {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    flex: 1;
    min-width: 0;
}

.subcategory-chip {
    height: 36px; padding: 0 16px; border-radius: 18px; border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.06); color: rgba(255, 255, 255, 0.85); font-size: 13px; font-weight: 600;
    white-space: nowrap; cursor: pointer; transition: all 0.2s; display: inline-flex; align-items: center; gap: 6px;
    flex-shrink: 0;
}
.subcategory-chip:hover { background: rgba(255, 255, 255, 0.1); }
.subcategory-chip.active { background: rgba(255, 0, 0, 0.15); border-color: rgba(255, 0, 0, 0.5); color: #fff; }

.catalog-filters-row { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 30px; }
.filter-chip {
    height: 42px; padding: 0 18px; border-radius: 12px; background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1); display: inline-flex; align-items: center; gap: 10px;
    font-size: 13px; font-weight: 600; cursor: pointer; transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    color: rgba(255, 255, 255, 0.7); backdrop-filter: blur(10px);
}
.filter-chip:hover {
    background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.2);
    color: white; transform: translateY(-2px);
}
.filter-chip.active {
    background: rgba(255, 0, 0, 0.15); border-color: var(--primary-red);
    color: white; box-shadow: 0 4px 15px rgba(255, 0, 0, 0.2);
}
.filter-chip__icon {
    display: flex; align-items: center; justify-content: center;
    color: var(--primary-red);
}
.filter-chip__icon svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.filter-modal__content { padding-top: 10px; }
.filter-modal__row { display: flex; gap: 10px; margin-bottom: 15px; }
.filter-modal__input {
    flex: 1; height: 45px; padding: 0 15px; border-radius: 10px; border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.06); color: #fff; font-size: 14px; font-family: inherit; outline: none;
}
.filter-modal__input:focus { border-color: var(--primary-red); }
.filter-modal__options { display: flex; flex-direction: column; gap: 8px; }
.filter-option {
    padding: 15px; border-bottom: 1px solid #222; cursor: pointer; color: #aaa; transition: 0.2s;
    display: flex; align-items: center; gap: 10px;
}
.filter-option:hover { color: white; }
.filter-option.active { color: var(--primary-red); font-weight: 700; }

.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); gap: 25px; }
.product-card { background: transparent; display: flex; flex-direction: column; gap: 12px; cursor: pointer; }
.product-card:hover .product-card__image { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(255, 255, 255, 0.1); }
.product-card__image {
    background-color: #1a1a1a; border-radius: 15px; aspect-ratio: 4 / 3;
    width: 100%; transition: transform 0.2s, box-shadow 0.2s; overflow: hidden;
}
.product-card__image img { width: 100%; height: 100%; object-fit: contain; }
.product-card__title { font-weight: 800; font-size: 16px; margin-bottom: 4px; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; }
.product-card__subtitle { font-size: 14px; font-weight: 600; color: #ccc; margin-bottom: 8px; }
.product-card__rating { display: flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 700; margin-bottom: 8px; }
.product-card__stars { color: var(--primary-red); letter-spacing: -2px; }
.product-card__reviews { color: #bbb; font-weight: 500; }
.product-card__price { font-size: 20px; font-weight: 900; color: var(--primary-red); }
.product-card__price-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.product-card__discount { background-color: var(--primary-red); color: white; padding: 2px 6px; border-radius: 6px; font-size: 12px; font-weight: 800; }
.product-card__old-price { font-size: 14px; text-decoration: line-through; color: #666; }
.product-card__stock { font-size: 11px; padding: 4px 8px; border-radius: 6px; display: inline-block; margin-top: 5px; }
.product-card__stock--in { background: rgba(34,197,94,0.15); color: #4ade80; }
.product-card__stock--out { background: rgba(239,68,68,0.15); color: #f87171; }
.products-empty { grid-column: 1 / -1; text-align: center; padding: 60px 20px; color: #666; }
.products-empty__icon { font-size: 48px; margin-bottom: 15px; }
.products-empty__text { font-size: 16px; font-weight: 600; }

.product-nav { display: flex; align-items: center; gap: 15px; margin-bottom: 30px; }
.product-nav__back { font-size: 28px; cursor: pointer; transition: 0.2s; background: none; border: none; color: white; }
.product-nav__back:hover { color: var(--primary-red); transform: translateX(-5px); }
.product-nav__icon { width: 30px; height: 30px; background: var(--card-light); border-radius: 8px; overflow: hidden; flex-shrink: 0; }
.product-nav__icon:empty { display: none; }
.product-nav__icon img { width: 100%; height: 100%; object-fit: cover; }
.product-nav__title { font-size: 20px; font-weight: 800; }
.product-layout { display: grid; grid-template-columns: 1.3fr 1fr; gap: 60px; margin-bottom: 60px; }
.product-visual {
    width: 100%; height: auto; aspect-ratio: 4/3; background-color: #1a1a1a; border: none;
    border-radius: 8px; box-shadow: none; margin-bottom: 30px; overflow: hidden;
}
.product-visual img { width: 100%; height: 100%; object-fit: contain; }
.product-description__title { font-size: 20px; font-weight: 800; margin-bottom: 15px; }
.product-description__text { color: #ccc; font-size: 14px; line-height: 1.6; white-space: pre-wrap; }
.product-main-title { font-size: 32px; font-weight: 900; margin-bottom: 10px; line-height: 1.2; }
.product-rating { display: flex; align-items: center; gap: 10px; font-size: 16px; font-weight: 700; margin-bottom: 25px; }
.product-method-box {
    background: linear-gradient(90deg, #444, #333); border-left: 4px solid var(--primary-red);
    padding: 12px 15px; border-radius: 8px; margin-bottom: 20px; width: fit-content; min-width: 200px;
}
.product-method-box__label { font-size: 12px; color: #aaa; margin-bottom: 2px; }
.product-method-box__value { font-size: 15px; font-weight: 600; }
.product-guarantees { list-style: none; margin-bottom: 30px; }
.product-guarantees__item { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; font-size: 13px; font-weight: 700; }
.product-guarantees__check { width: 18px; height: 18px; background-color: var(--primary-red); border-radius: 4px; display: flex; justify-content: center; align-items: center; color: white; font-size: 11px; flex-shrink: 0; }
.product-price-block { margin: 25px 0; display: flex; align-items: center; gap: 15px; }
.product-price-block__current { font-size: 36px; font-weight: 900; color: var(--primary-red); }
.product-price-block__discount { background: var(--primary-red); color: white; padding: 4px 8px; border-radius: 6px; font-size: 16px; font-weight: 800; }
.product-price-block__old { text-decoration: line-through; color: #666; font-size: 20px; font-weight: 700; }
.product-footer-icons { display: flex; justify-content: space-between; font-size: 12px; font-weight: 700; margin-bottom: 40px; padding-top: 15px; }
.product-footer-icons__item { display: flex; align-items: center; gap: 8px; }
.product-footer-icons__icon { width: 18px; height: 18px; border: 2px solid var(--primary-red); border-radius: 4px; display: flex; align-items: center; justify-content: center; font-size: 10px; }
.product-seller__info { display: flex; align-items: center; gap: 15px; margin-top: 12px; }
.product-seller__avatar-wrapper { position: relative; width: 50px; height: 50px; }
.product-seller__avatar { width: 50px; height: 50px; background: #222; border-radius: 50%; border: 2px solid #555; overflow: hidden; display: flex; align-items: center; justify-content: center; font-weight: 800; color: var(--primary-red); }
.product-seller__online { width: 14px; height: 14px; background: #22c55e; border-radius: 50%; position: absolute; bottom: -2px; right: -2px; border: 3px solid var(--bg-color); z-index: 2; }
.product-seller__name { font-weight: 800; font-size: 15px; }
.product-seller__reviews { font-size: 12px; font-weight: 600; color: #aaa; margin-top: 2px; display: flex; align-items: center; }
.product-section-title { font-size: 20px; font-weight: 800; margin-bottom: 10px; }

.reviews-section { margin-top: 60px; border-top: 1px solid #333; padding-top: 40px; }
.reviews-section__header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; position: relative; }
.reviews-section__title { font-size: 24px; font-weight: 800; }
.reviews-section__all-btn {
    padding: 10px 20px; border: 1px solid #444; border-radius: 20px; background: transparent;
    color: white; font-size: 13px; font-weight: 600; display: inline-block; text-decoration: none;
}
.reviews-section__all-btn:hover { border-color: var(--primary-red); background: rgba(255, 255, 255, 0.05); }
.reviews-section__big-rating { font-size: 48px; font-weight: 900; display: flex; align-items: center; gap: 15px; margin-bottom: 5px; }
.reviews-section__subtext { font-size: 11px; color: #666; margin-bottom: 25px; }
.reviews-section__verified { display: flex; align-items: center; gap: 10px; font-size: 13px; font-weight: 700; margin-top: 15px; margin-bottom: 40px; }
.reviews-section__verified-icon { width: 20px; height: 20px; border: 2px solid var(--primary-red); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary-red); font-size: 12px; }

.reviews-page { max-width: 1200px; margin: 0 auto; padding-top: 20px; }
.reviews-page__back { display: inline-block; color: #888; font-size: 14px; font-weight: 600; margin-bottom: 20px; transition: color 0.2s; }
.reviews-page__back:hover { color: var(--primary-red); }
.reviews-page__header { display: flex; align-items: center; gap: 20px; margin-bottom: 10px; flex-wrap: wrap; }
.reviews-page__title { font-size: 32px; font-weight: 900; }
.reviews-page__rating { display: flex; align-items: center; gap: 10px; }
.reviews-page__rating-value { font-size: 32px; font-weight: 900; color: var(--primary-red); }
.reviews-page__rating-count { color: #888; font-size: 14px; }
.reviews-page__verified { display: flex; align-items: center; gap: 8px; color: #888; font-size: 13px; margin-bottom: 30px; }

.reviews-grid, .reviews-page__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 30px; }
.review-card { background-color: #3a3a3a; border-radius: 20px; padding: 20px; display: flex; flex-direction: column; gap: 15px; border: 1px solid #2a2a2a; min-height: 180px; }
.review-card__header { display: flex; justify-content: space-between; align-items: flex-start; }
.review-card__user { display: flex; gap: 10px; align-items: center; }
.review-card__avatar { width: 40px; height: 40px; background-color: #222; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--primary-red); font-size: 14px; }
.review-card__avatar-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    background: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.review-card__avatar-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.review-card__user-name { font-size: 14px; font-weight: 700; }
.review-card__stars { color: var(--primary-red); letter-spacing: 1px; font-size: 14px; }
.review-card__body { font-size: 14px; color: #ddd; line-height: 1.5; flex-grow: 1; }
.review-card__date { font-size: 12px; color: #666; }
.review-card__product { display: flex; gap: 10px; padding: 10px; margin-top: 12px; background: rgba(255, 255, 255, 0.04); border-radius: 10px; border: 1px solid rgba(255, 255, 255, 0.08); transition: all 0.2s; align-items: center; text-decoration: none; color: inherit; }
.review-card__product:hover { background: rgba(255, 255, 255, 0.06); }
.review-card__product--unavailable { opacity: 0.5; pointer-events: none; }
.review-card__product-img { width: 50px; height: 50px; border-radius: 8px; background: var(--card-bg); overflow: hidden; flex-shrink: 0; }
.review-card__product-img img { width: 100%; height: 100%; object-fit: cover; }
.review-card__product-info { flex: 1; min-width: 0; }
.review-card__product-title { font-size: 13px; font-weight: 600; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; margin-bottom: 2px; }
.review-card__product-price { font-size: 13px; font-weight: 700; color: var(--primary-red); display: flex; align-items: center; gap: 6px; }
.review-card__product-discount { background: var(--primary-red); color: #fff; padding: 1px 4px; border-radius: 4px; font-size: 10px; }
.review-card__product-old { color: #666; text-decoration: line-through; font-size: 11px; font-weight: 500; }
.reviews-page__pagination { display: flex; justify-content: center; gap: 8px; }
.pagination-btn { width: 36px; height: 36px; border-radius: 8px; border: 1px solid rgba(255, 255, 255, 0.12); background: rgba(255, 255, 255, 0.05); color: rgba(255, 255, 255, 0.7); font-size: 14px; font-weight: 600; cursor: pointer; transition: all 0.2s; }
.pagination-btn:hover { background: rgba(255, 255, 255, 0.1); }
.pagination-btn.active { background: var(--primary-red); border-color: var(--primary-red); color: #fff; }

.review-card--no-text .review-card__header {
    flex-wrap: wrap;
}

.review-card--no-text .review-card__stars {
    width: 100%;
    text-align: center;
    font-size: 32px;
    letter-spacing: 6px;
    margin-top: 20px;
    order: 2;
}

.reviews-filters-modern {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border-gray);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 25px;
}

.reviews-filters__row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: flex-end;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    min-width: 140px;
}

.filter-group__label {
    font-size: 11px;
    font-weight: 700;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.filter-group--rating {
    min-width: auto;
}

.rating-buttons {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.rating-btn {
    height: 36px;
    padding: 0 12px;
    background: var(--bg-color);
    border: 1px solid var(--border-gray);
    border-radius: 8px;
    color: var(--text-gray);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    font-family: inherit;
    white-space: nowrap;
}

.rating-btn:hover {
    border-color: #555;
    color: var(--text-white);
}

.rating-btn.active {
    background: rgba(255, 0, 0, 0.15);
    border-color: var(--primary-red);
    color: var(--primary-red);
}

.filter-select-wrap {
    height: 40px;
    padding: 0 12px;
    background: var(--bg-color);
    border: 1px solid var(--border-gray);
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.2s;
    min-width: 160px;
}

.filter-select-wrap:hover {
    border-color: var(--primary-red);
}

.filter-select-icon {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background: var(--border-gray);
    overflow: hidden;
    flex-shrink: 0;
    display: none;
}

.filter-select-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.filter-select-arrow {
    width: 20px;
    height: 20px;
    margin-left: auto;
    color: var(--text-gray);
}

.price-range-inputs {
    display: flex;
    align-items: center;
    gap: 8px;
}

.price-input {
    width: 80px;
    height: 40px;
    padding: 0 12px;
    background: var(--bg-color);
    border: 1px solid var(--border-gray);
    border-radius: 10px;
    color: var(--text-white);
    font-size: 13px;
    outline: none;
}

.price-input:focus {
    border-color: var(--primary-red);
}

.price-range__sep {
    color: var(--text-gray);
    font-size: 14px;
}

.filter-sort-select {
    height: 40px;
    padding: 0 12px;
    background: var(--bg-color);
    border: 1px solid var(--border-gray);
    border-radius: 10px;
    color: var(--text-white);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    outline: none;
    min-width: 160px;
}

.reviews-filters__toggles {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid var(--border-gray);
}

.filter-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-gray);
    transition: color 0.2s;
}

.filter-toggle:hover {
    color: var(--text-white);
}

.filter-toggle.active {
    color: var(--primary-red);
}

.filter-toggle__check {
    width: 20px;
    height: 20px;
    border: 2px solid var(--border-gray);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.filter-toggle.active .filter-toggle__check {
    background: var(--primary-red);
    border-color: var(--primary-red);
}

.filter-toggle.active .filter-toggle__check::after {
    content: '✓';
    color: white;
    font-size: 12px;
}

.filter-reset-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    background: transparent;
    border: 1px solid var(--primary-red);
    border-radius: 8px;
    color: var(--primary-red);
    font-size: 12px;
    font-weight: 600;
    cursor: pointer;
    margin-left: auto;
    transition: all 0.2s;
    font-family: inherit;
}

.filter-reset-btn:hover {
    background: var(--primary-red);
    color: white;
}

.filter-reset-btn svg {
    width: 14px;
    height: 14px;
}

.category-filter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 12px;
}

.category-filter-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px 10px;
    background: var(--bg-color);
    border: 2px solid var(--border-gray);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.category-filter-item:hover {
    border-color: #444;
    transform: translateY(-2px);
}

.category-filter-item.active {
    border-color: var(--primary-red);
    background: rgba(255, 0, 0, 0.08);
}

.category-filter-item__icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: var(--border-gray);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.category-filter-item__icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-filter-item__name {
    font-size: 11px;
    font-weight: 600;
    text-align: center;
    color: var(--text-white);
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.profile-title { font-size: 24px; font-weight: 800; margin-bottom: 25px; }
.profile-header { display: flex; flex-direction: column; gap: 20px; margin-bottom: 20px; }
.profile-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: radial-gradient(20px 20px at 30% 25%, rgba(255,255,255,0.18), transparent 70%), rgba(255,255,255,0.06);
    box-shadow: 0 16px 40px rgba(0,0,0,0.35);
    cursor: pointer;
    transition: transform 0.2s;
    margin-bottom: 10px;
}

.profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    image-rendering: crisp-edges;
    backface-visibility: hidden;
    -webkit-transform: translate3d(0,0,0);
}

.profile-name { font-weight: 900; font-size: 16px; display: flex; align-items: center; gap: 8px; }
.profile-verify { width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 1px; font-size: 11px; color: var(--primary-red); }
.profile-meta { margin-top: 6px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; font-size: 13px; color: rgba(255, 255, 255, 0.75); }
.profile-stars { color: var(--primary-red); font-size: 12px; }
.money-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 14px; }
.balance-block { display: flex; gap: 12px; align-items: center; }
.pill { width: 320px; height: 46px; border-radius: 14px; border: 1px solid rgba(255, 255, 255, 0.1); background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03)); box-shadow: 0 14px 45px rgba(0, 0, 0, 0.45); display: flex; align-items: center; gap: 10px; padding: 0 12px; max-width: 100%; }
.pill__icon { width: 26px; height: 26px; border-radius: 10px; display: flex; align-items: center; justify-content: center; background: rgba(255, 26, 26, 0.14); border: 1px solid rgba(255, 26, 26, 0.35); flex-shrink: 0; }
.pill__icon svg { width: 14px; height: 14px; }
.pill__main { display: flex; align-items: center; gap: 10px; flex: 1; min-width: 0; }
.pill__value { font-weight: 900; white-space: nowrap; }
.pill__sub { font-size: 12px; color: rgba(255, 255, 255, 0.6); white-space: nowrap; }
.pill__endbtn { width: 34px; height: 34px; border-radius: 10px; border: 1px solid rgba(255, 255, 255, 0.1); background: rgba(255, 255, 255, 0.05); display: flex; align-items: center; justify-content: center; cursor: pointer; flex-shrink: 0; }
.pill__endbtn:hover { background: rgba(255, 255, 255, 0.1); }
.ref-code { font-family: monospace; font-weight: 900; color: var(--primary-red); }
.ref-meta { font-size: 12px; color: rgba(255, 255, 255, 0.6); }
.ref-meta b { color: rgba(255, 255, 255, 0.88); }
.btn-topup { height: 46px; padding: 0 18px; border-radius: 14px; border: 1px solid rgba(255, 26, 26, 0.55); background: linear-gradient(180deg, #ff3b3b, #ff0000); cursor: pointer; font-weight: 900; color: #fff; white-space: nowrap; box-shadow: 0 16px 45px rgba(255, 26, 26, 0.22); font-size: 14px; }
.btn-topup:hover { opacity: 0.9; }
.profile-tabs-new { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 20px; }
.profile-tab-new { height: 40px; padding: 0 16px; border-radius: 20px; border: 1px solid rgba(255, 255, 255, 0.1); background: rgba(255, 255, 255, 0.05); cursor: pointer; font-weight: 700; color: rgba(255, 255, 255, 0.88); display: flex; align-items: center; gap: 8px; font-size: 14px; transition: 0.2s; }
.profile-tab-new:hover { background: rgba(255, 255, 255, 0.08); }
.profile-tab-new.active { background: rgba(255, 26, 26, 0.18); border-color: rgba(255, 26, 26, 0.55); color: #fff; }
.profile-tab-new__count { font-weight: 900; }
.profile-subtabs { display: flex; gap: 8px; margin-bottom: 15px; }
.profile-subtab { padding: 8px 14px; border-radius: 10px; border: 1px solid rgba(255, 255, 255, 0.1); background: rgba(255, 255, 255, 0.03); color: rgba(255, 255, 255, 0.7); font-size: 13px; font-weight: 600; cursor: pointer; transition: 0.2s; }
.profile-subtab:hover { background: rgba(255, 255, 255, 0.06); }
.profile-subtab.active { background: rgba(255, 255, 255, 0.08); color: #fff; }
.profile-panel { display: none; }
.profile-panel.active { display: block; }
.placeholder-block { border-radius: 20px; border: 1px dashed rgba(255, 255, 255, 0.16); background: rgba(255, 255, 255, 0.03); padding: 40px 20px; text-align: center; display: flex; flex-direction: column; align-items: center; gap: 15px; }
.placeholder-block__img { width: 120px; height: 120px; border-radius: 20px; overflow: hidden; opacity: 0.6; }
.placeholder-block__img img { width: 100%; height: 100%; object-fit: cover; }
.placeholder-block__text { color: rgba(255, 255, 255, 0.65); font-size: 14px; max-width: 300px; }
.purchases-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 20px; }
.purchase-card { display: flex; flex-direction: column; gap: 10px; cursor: pointer; transition: transform 0.2s; }
.purchase-card:hover { transform: translateY(-3px); }
.purchase-card__image { background-color: #1a1a1a; border-radius: 12px; aspect-ratio: 4/3; position: relative; overflow: hidden; }
.purchase-card__image img { width: 100%; height: 100%; object-fit: contain; }
.purchase-card__status { position: absolute; top: 10px; right: 10px; padding: 4px 10px; border-radius: 10px; font-size: 10px; font-weight: 700; color: white; }
.purchase-card__status--paid { background-color: #22c55e; }
.purchase-card__status--pending { background-color: #f59e0b; }
.purchase-card__title { font-size: 12px; font-weight: 800; }
.purchase-card__price { display: flex; gap: 5px; align-items: center; font-size: 11px; }
.purchase-card__price-current { color: var(--primary-red); font-weight: 800; }

.modal-overlay { position: fixed; inset: 0; background: rgba(0, 0, 0, 0.85); backdrop-filter: blur(8px); z-index: 4000; display: none; align-items: center; justify-content: center; }
.modal-overlay.active { display: flex; }
.modal { background: #1a1a1a; border: 1px solid var(--primary-red); border-radius: 30px; width: 100%; max-width: 500px; max-height: 90vh; overflow-y: auto; padding: 30px; animation: modalSlideUp 0.3s ease; scrollbar-width: none; }
.modal::-webkit-scrollbar { display: none; }
@keyframes modalSlideUp { from { transform: translateY(50px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.modal__header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 25px; }
.modal__title { font-size: 22px; font-weight: 800; }
.modal__close { width: 40px; height: 40px; background: #333; border: none; border-radius: 50%; color: white; font-size: 20px; cursor: pointer; transition: 0.2s; }
.modal__close:hover { background: var(--primary-red); }
.payment-modal__product { display: flex; gap: 15px; padding: 15px; background: #2a2a2a; border-radius: 15px; margin-bottom: 25px; }
.payment-modal__product-img { width: 80px; height: 60px; background: #1a1a1a; border-radius: 10px; overflow: hidden; }
.payment-modal__product-img img { width: 100%; height: 100%; object-fit: contain; }
.payment-modal__product-title { font-weight: 700; font-size: 14px; margin-bottom: 5px; }
.payment-modal__product-price { font-size: 18px; font-weight: 800; color: var(--primary-red); }
.payment-methods { display: flex; flex-direction: column; gap: 12px; margin-bottom: 25px; }
.payment-method { display: flex; align-items: center; gap: 15px; padding: 15px; background: #2a2a2a; border: 2px solid #444; border-radius: 15px; cursor: pointer; transition: 0.2s; }
.payment-method:hover { border-color: #666; }
.payment-method.selected { border-color: var(--primary-red); background: rgba(255, 0, 0, 0.08); }
.payment-method__icon { width: 45px; height: 45px; background: white; border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 22px; min-width: 40px; background-color: white; }
.payment-method__info { flex: 1; }
.payment-method__title { font-weight: 700; font-size: 14px; margin-bottom: 2px; }
.payment-method__desc { font-size: 11px; color: #888; }
.payment-method__fee { font-size: 12px; color: #f59e0b; font-weight: 600; margin-top: 4px; }
.payment-method__radio { width: 22px; height: 22px; border: 2px solid #555; border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: 0.2s; }
.payment-method.selected .payment-method__radio { border-color: var(--primary-red); background: var(--primary-red); }
.payment-method.selected .payment-method__radio::after { content: '✓'; color: white; font-size: 12px; }
.payment-method--insufficient { opacity: 0.7; }
.success-modal__icon { font-size: 64px; text-align: center; margin-bottom: 15px; }
.success-modal__title { font-size: 24px; font-weight: 800; text-align: center; color: var(--primary-red); margin-bottom: 8px; }
.success-modal__subtitle { text-align: center; color: #888; font-size: 14px; margin-bottom: 25px; }
.promocode-box { background: rgba(255, 0, 0, 0.1); border: 2px dashed var(--primary-red); border-radius: 15px; padding: 20px; text-align: center; margin: 20px 0; }
.promocode-box__label { color: #888; font-size: 12px; margin-bottom: 8px; }
.promocode-box__value { font-size: 18px; font-weight: 800; color: var(--primary-red); user-select: all; word-break: break-all; }
.balance-modal__current { text-align: center; margin-bottom: 25px; }
.balance-modal__current-label { font-size: 14px; color: #888; margin-bottom: 5px; }
.balance-modal__current-value { font-size: 36px; font-weight: 900; color: var(--primary-red); }
.balance-input-group { margin-bottom: 20px; }
.balance-input-group label { display: block; font-size: 13px; color: #888; margin-bottom: 8px; }
.balance-input { width: 100%; padding: 15px; border-radius: 12px; border: 2px solid #444; background: #2a2a2a; color: white; font-size: 18px; font-weight: 700; text-align: center; outline: none; transition: 0.2s; }
.balance-input:focus { border-color: var(--primary-red); }
.balance-presets { display: flex; gap: 10px; margin-bottom: 20px; flex-wrap: wrap; }
.balance-preset { flex: 1; min-width: 70px; padding: 10px; border: 2px solid #444; border-radius: 10px; background: #2a2a2a; color: white; font-weight: 700; cursor: pointer; transition: 0.2s; text-align: center; }
.balance-preset:hover { border-color: #666; }
.balance-preset.selected { border-color: var(--primary-red); background: rgba(255, 0, 0, 0.1); }
.purchase-modal { max-width: 450px; }
.purchase-modal__image { width: 100%; height: auto; aspect-ratio: 4/3; background: #1a1a1a; border-radius: 12px; overflow: hidden; margin-bottom: 15px; }
.purchase-modal__image img { width: 100%; height: 100%; object-fit: contain; }
.purchase-modal__title { font-size: 18px; font-weight: 700; margin-bottom: 15px; }
.purchase-modal__row { display: flex; justify-content: space-between; padding: 12px 0; border-bottom: 1px solid #333; font-size: 14px; }
.purchase-modal__label { color: #888; }
.purchase-modal__value { font-weight: 600; }
.purchase-modal__promocode { background: rgba(255, 0, 0, 0.1); border: 1px dashed var(--primary-red); border-radius: 10px; padding: 15px; text-align: center; margin: 15px 0; }
.purchase-modal__promocode-label { font-size: 12px; color: #888; margin-bottom: 5px; }
.purchase-modal__promocode-value { font-size: 18px; font-weight: 700; color: var(--primary-red); font-family: monospace; word-break: break-all; }
.purchase-modal__manual { background: #2a2a2a; border-radius: 10px; padding: 15px; margin: 15px 0; }
.purchase-modal__manual-title { font-size: 14px; font-weight: 700; margin-bottom: 8px; color: #f59e0b; }
.purchase-modal__manual-text { font-size: 13px; color: #ccc; line-height: 1.5; }
.review-form { background: #2a2a2a; border-radius: 15px; padding: 15px; margin-top: 10px; }
.review-form__stars { display: flex; gap: 5px; margin-bottom: 10px; }
.review-form__star { font-size: 24px; cursor: pointer; color: #444; transition: 0.2s; }
.review-form__star:hover, .review-form__star.active { color: var(--primary-red); }
.review-form__textarea { width: 100%; min-height: 60px; padding: 10px; border-radius: 8px; border: 1px solid #444; background: #1a1a1a; color: white; font-family: inherit; font-size: 13px; resize: vertical; margin-bottom: 10px; }
.review-form__textarea:focus { outline: none; border-color: var(--primary-red); }
.review-form__submit { background: var(--primary-red); border: none; color: white; padding: 10px 20px; border-radius: 8px; font-weight: 700; font-size: 13px; cursor: pointer; transition: 0.2s; align-content: center; align-items: center;}
.review-form__submit:hover { opacity: 0.9; }
.review-form__submit:disabled { opacity: 0.5; cursor: not-allowed; }

.loader { display: flex; justify-content: center; align-items: center; padding: 40px; grid-column: 1 / -1; }
.spinner { width: 40px; height: 40px; border: 4px solid #333; border-top-color: var(--primary-red); border-radius: 50%; animation: spin 0.8s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.empty-state { text-align: center; padding: 60px 20px; color: #666; grid-column: 1 / -1; }
.empty-state__icon { font-size: 50px; margin-bottom: 15px; opacity: 0.5; }
.empty-state__text { font-size: 16px; font-weight: 600; }

.toast-container {
    position: fixed;
    top: 80px;
    right: 30px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 15px;
    pointer-events: none;
    opacity: 70%;
}

.toast {
    background: rgba(10, 10, 10, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-white);
    padding: 16px 20px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    gap: 15px;
    min-width: 300px;
    max-width: 400px;
    pointer-events: auto;
    animation: toastIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    backdrop-filter: blur(12px);
}

.toast__icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.toast__content {
    flex: 1;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
}

.toast__close {
    cursor: pointer;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    transition: color 0.2s;
    padding: 5px;
}

.toast__close:hover {
    color: var(--text-white);
}

@keyframes toastIn {
    from { opacity: 0; transform: translateX(50px) scale(0.9); }
    to { opacity: 1; transform: translateX(0) scale(1); }
}

@keyframes toastOut {
    to { opacity: 0; transform: translateX(50px) scale(0.9); }
}

.toast--success { border-left: 4px solid #22c55e; }
.toast--error { border-left: 4px solid #ef4444; }
.toast--info { border-left: 4px solid #3b82f6; }

.stars-container { display: inline-block; font-size: 14px; font-family: Times; line-height: 1; position: relative; letter-spacing: 2px; }
.stars-container::before { content: '★★★★★'; background: linear-gradient(90deg, var(--primary-red) calc(var(--rating) / 5 * 100%), #444 calc(var(--rating) / 5 * 100%)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.page-404 { display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 60vh; text-align: center; padding: 40px 20px; }
.page-404__code { font-size: 120px; font-weight: 900; color: var(--primary-red); line-height: 1; text-shadow: 0 0 40px rgba(255, 0, 0, 0.3); }
.page-404__text { font-size: 18px; color: #888; margin: 20px 0 30px; }
.page-404__btn { padding: 15px 40px; background: var(--primary-red); border: none; border-radius: 12px; color: white; font-weight: 700; font-size: 16px; cursor: pointer; transition: 0.2s; text-decoration: none; }
.page-404__btn:hover { transform: scale(1.05); box-shadow: var(--glow); }

.default-avatar {
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #222;
    image-rendering: auto;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}

.default-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    image-rendering: auto;
    shape-rendering: geometricPrecision;
    backface-visibility: hidden;
    display: block;
}

.avatar-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px;
    border-radius: 15px;
    border: 2px solid #333;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s;
    backface-visibility: hidden;
    will-change: border-color, background;
}

.avatar-option:hover {
    border-color: #555;
}

.avatar-option.selected {
    border-color: var(--primary-red);
    background: rgba(255, 0, 0, 0.1);
}

.avatar-option__preview {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #222;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: inset 0 0 0 1px #222;
    backface-visibility: hidden;
    will-change: transform;
}

.avatar-option__preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    image-rendering: auto;
    shape-rendering: geometricPrecision;
    display: block;
    transform: translateZ(0);
}

.avatar-option__name {
    font-size: 12px;
    color: #888;
}

#avatarGrid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-top: 20px;
}

.reviews-nav {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}
.reviews-nav__back {
    color: var(--text-white);
    display: flex;
    transition: color 0.2s;
}
.reviews-nav__back:hover { color: var(--primary-red); }
.reviews-nav__title { font-size: 20px; font-weight: 700; }

.reviews-summary {
    display: flex;
    align-items: flex-end;
    gap: 15px;
    margin-bottom: 10px;
}
.reviews-summary__value {
    font-size: 48px;
    font-weight: 900;
    color: var(--text-white);
    line-height: 0.9;
}
.reviews-summary__details {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding-bottom: 4px;
}
.reviews-summary__count {
    font-size: 13px;
    color: var(--text-gray);
}

.reviews-verified {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #fff;
    margin-bottom: 30px;
}

.reviews-verified__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background-color: red;
    color: black;
    border-radius: 50%;
    flex-shrink: 0;
}

.reviews-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 20px;
}

.reviews-toolbar__left {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.reviews-star-widget {
    display: flex;
    gap: 4px;
    padding-right: 15px;
    border-right: 1px solid var(--border-gray);
}
.star-icon {
    width: 20px;
    height: 20px;
    fill: #333;
    cursor: pointer;
    transition: all 0.2s;
}
.star-icon:hover, .star-icon.active { fill: var(--text-gray); }
.star-icon.active { fill: var(--text-white); }

.reviews-filter-btns {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.filter-btn {
    background: var(--bg-color);
    border: 1px solid var(--border-gray);
    color: var(--text-white);
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    gap: 6px;
}
.filter-btn:hover { background: rgba(255,255,255,0.05); }
.filter-btn.active { background: rgba(255,255,255,0.1); border-color: var(--text-white); }
.filter-btn__icon { display: flex; opacity: 0.7; }

.reviews-sort-wrap {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    position: relative;
}
.reviews-sort-select {
    appearance: none;
    background: transparent;
    border: none;
    color: var(--info);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    outline: none;
    padding-right: 15px;
    text-align: right;
}
.reviews-sort-arrow {
    position: absolute;
    right: 0;
    pointer-events: none;
    color: var(--info);
}

.reset-filters-row {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-red);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    margin-bottom: 20px;
    padding: 8px 12px;
    background: rgba(255,0,0,0.1);
    border-radius: 8px;
}

.category-grid-select {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 12px;
}

.category-card-select {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 15px 10px;
    background: var(--bg-color);
    border: 2px solid var(--border-gray);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.2s;
}

.category-card-select:hover {
    border-color: #444;
    transform: translateY(-2px);
}

.category-card-select.active {
    border-color: var(--primary-red);
    background: rgba(255, 0, 0, 0.08);
}

.category-card-select__icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: var(--border-gray);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
}

.category-card-select__icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-card-select__name {
    font-size: 11px;
    font-weight: 600;
    text-align: center;
    color: var(--text-white);
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.list-select {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    padding: 5px;
}

.list-option {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 50px;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-gray);
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    animation: fadeInUp 0.3s ease forwards;
    opacity: 0;
}

.list-option:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    color: var(--text-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.list-option.active {
    background: rgba(255, 0, 0, 0.15);
    border-color: var(--primary-red);
    color: var(--text-white);
    box-shadow: 0 0 15px rgba(255, 0, 0, 0.25);
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.list-option:nth-child(1) { animation-delay: 0.05s; }
.list-option:nth-child(2) { animation-delay: 0.1s; }
.list-option:nth-child(3) { animation-delay: 0.15s; }
.list-option:nth-child(4) { animation-delay: 0.2s; }
.list-option:nth-child(5) { animation-delay: 0.25s; }
.list-option:nth-child(6) { animation-delay: 0.3s; }

.list-option:last-child {
    border-bottom: none;
}

.reviews-sort-select option {
    background-color: var(--bg-color);
    color: var(--text-white);
    padding: 10px;
}

.custom-dropdown {
    position: relative;
    cursor: pointer;
}

.custom-dropdown__trigger {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: white;
    transition: color 0.2s;
}

.custom-dropdown__trigger:hover { color: var(--text-white); }

.custom-dropdown__menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 10px;
    background: var(--card-bg);
    border: 1px solid var(--border-gray);
    border-radius: 12px;
    padding: 5px;
    min-width: 180px;
    display: none;
    z-index: 100;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.custom-dropdown.active .custom-dropdown__menu { display: block; animation: fadeIn 0.2s; }

.custom-dropdown__item {
    padding: 10px 15px;
    font-size: 13px;
    color: var(--text-gray);
    border-radius: 8px;
    transition: 0.2s;
}

.custom-dropdown__item:hover {
    background: rgba(255,255,255,0.05);
    color: var(--text-white);
}

.custom-dropdown__item.active {
    color: var(--primary-red);
    background: rgba(255, 0, 0, 0.1);
}

@keyframes fadeIn { from { opacity: 0; transform: translateY(-5px); } to { opacity: 1; transform: translateY(0); } }

.profile-header-row {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.profile-header-left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.profile-header-title {
    font-size: 24px;
    font-weight: 800;
}

.profile-username-display {
    color: var(--text-gray);
    font-size: 14px;
    margin-left: auto;
}

.profile-menu-btn {
    width: 30px;
    height: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    cursor: pointer;
}

.profile-menu-btn span {
    display: block;
    height: 2px;
    background: var(--text-white);
    border-radius: 2px;
    transition: 0.3s;
}
.profile-menu-btn span:nth-child(1) { width: 20px; }
.profile-menu-btn span:nth-child(2) { width: 14px; }
.profile-menu-btn span:nth-child(3) { width: 20px; }

.profile-menu-btn:hover span { background: var(--primary-red); }

.profile-header-text {
    display: flex;
    gap: 8px;
    font-size: 24px;
    font-weight: 800;
}

.profile-header-label { color: var(--text-white); }
.profile-header-name { color: var(--text-gray); font-weight: 600; font-size: 24px; }

.settings-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(8px);
    z-index: 3000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.settings-overlay.active { display: flex; }

.settings-modal {
    width: 100%;
    max-width: 400px;
    background: #050505;
    border: 1px solid var(--primary-red);
    border-radius: 30px;
    padding: 30px 20px;
    position: relative;
    box-shadow: 0 0 40px rgba(255, 0, 0, 0.15);
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.settings-close-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #fff;
    cursor: pointer;
    opacity: 0.7;
    transition: 0.2s;
    z-index: 10;
}
.settings-close-icon:hover { opacity: 1; color: var(--primary-red); }

.settings-scroll-area {
    overflow-y: auto;
    flex: 1;
    padding-right: 5px;
}

.settings-avatar-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 25px;
}

.settings-avatar-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #111;
    border: 2px solid #222;
    overflow: hidden;
    margin-bottom: 8px;
    box-shadow: 0 0 20px rgba(0,0,0,0.5);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}
.settings-avatar-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.settings-change-text {
    font-size: 12px;
    color: var(--primary-red);
    font-weight: 700;
    cursor: pointer;
}

.settings-tg-card {
    background: #0f0f0f;
    border-radius: 16px;
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 25px;
}

.settings-tg-icon-wrap {
    width: 32px; height: 32px;
    background: rgba(255,0,0,0.1);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary-red);
}
.settings-tg-icon-wrap svg { width: 18px; height: 18px; }

.settings-tg-label { font-size: 10px; color: #666; }
.settings-tg-value { font-size: 13px; font-weight: 700; color: #fff; }

.settings-menu-list {
    border-top: 1px solid #222;
    border-bottom: 1px solid #222;
    padding: 10px 0;
    margin-bottom: 20px;
}

.settings-menu-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    cursor: pointer;
}

.settings-menu-icon {
    width: 20px;
    height: 20px;
    display: flex; align-items: center; justify-content: center;
}
.settings-menu-icon svg { width: 20px; height: 20px; }
.red-fill { color: var(--primary-red); }
.gray-fill { color: #555; }

.settings-menu-text { flex: 1; }
.settings-menu-title { font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.settings-menu-subtitle { font-size: 11px; color: #666; }

.settings-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    background: #333;
    padding: 4px;
    border-radius: 20px;
    transition: 0.3s;
    width: 60px;
    justify-content: space-between;
    box-sizing: border-box;
}

.settings-toggle.active {
    background: var(--primary-red);
}

.settings-toggle-label {
    font-size: 10px;
    font-weight: 700;
    color: #fff;
    margin-left: 6px;
    display: none;
}

.settings-toggle-switch {
    width: 18px;
    height: 18px;
    background: #fff;
    border-radius: 50%;
    transition: 0.3s;
    transform: translateX(0);
}

.settings-toggle.active .settings-toggle-switch {
    transform: translateX(34px);
}

.settings-toggle-btn {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s;
    background: #333;
    color: #888;
}
.settings-toggle-btn.active {
    background: var(--primary-red);
    color: white;
}

.settings-arrow-right {
    color: #666;
    font-size: 18px;
    font-weight: 300;
}

.settings-links-list {
    margin-bottom: 25px;
    border-bottom: 1px solid #222;
    padding-bottom: 15px;
}

.settings-link-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: #ccc;
    transition: 0.2s;
}
.settings-link-item:hover { color: #fff; }

.settings-link-icon {
    width: 24px; height: 24px;
    display: flex; align-items: center; justify-content: center;
}
.settings-link-icon svg { width: 20px; height: 20px; }
.gray-outline { color: #666; }
.red-outline { color: var(--primary-red); }

.settings-footer { text-align: center; }
.settings-footer-text { font-size: 11px; color: #444; margin-bottom: 12px; }
.settings-socials { display: flex; justify-content: center; gap: 12px; }

.settings-social-btn {
    width: 25px;
    height: 25px;
    border: 1px solid var(--primary-red);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-red);
    background: #000;
    transition: 0.2s;
}
.settings-social-btn:hover { background: var(--primary-red); color: white; }
.settings-social-btn svg { width: 15px; height: 15px; }

.settings-badge-dev {
    background: rgba(255,255,255,0.1);
    color: #888;
    font-size: 11px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 12px;
    border: 1px solid #444;
}

.settings-social-btn--disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.settings-coming-soon {
    text-align: center;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 10px;
    font-weight: 500;
}

.external-reviews-badge {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.08), rgba(255, 215, 0, 0.03));
    border: 1px solid rgba(255, 215, 0, 0.2);
    border-radius: 14px;
    margin-bottom: 25px;
}

.external-reviews-badge__icon {
    font-size: 22px;
    flex-shrink: 0;
}

.external-reviews-badge__info {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.external-reviews-badge__rating {
    font-size: 20px;
    font-weight: 900;
    color: red;
}

.external-reviews-badge__stars {
    color: red ;
    font-size: 14px;
    letter-spacing: 1px;
}

.external-reviews-badge__text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
}

@media (max-width: 1024px) {
    .hero-slider__slide { width: 70vw; height: 280px; }
    .reviews-grid, .reviews-page__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .container { padding: 0 15px; }
    .home-section { margin-bottom: 20px; }
    .home-grid { gap: 8px; }
.home-grid__item--coming { font-size: 20px; }
.home-grid__item { border-radius: 12px; }
    .header {
        flex-wrap: wrap;
        padding: 15px 0;
        margin-bottom: 20px;
        gap: 10px;
    }
    .header__search {
        order: 3;
        flex: 1 1 100%;
        max-width: 100%;
        margin: 5px 0 0;
    }
    .header__logo { font-size: 22px; }
    .header__logo-eye { width: 40px; height: 24px; }
    .header__actions { gap: 15px; }
    .header__user-btn { width: 38px; height: 38px; }

    .search-container { padding: 15px; }
    .search-header { flex-direction: column; gap: 15px; }
    .search-header__left { flex: none; max-width: 100%; width: 100%; }
    .search-header__right { width: 100%; }

    .catalog-banner { height: 220px; border-radius: 15px; }
    .catalog-header__name { font-size: 20px; }
    .product-visual { aspect-ratio: 4/3; }
    .product-main-title { font-size: 24px; }
    .product-price-block__current { font-size: 28px; }
    .product-layout { gap: 30px; }

    .hero-slider__slide { width: 85vw; height: 220px; }
    .reviews-grid, .reviews-page__grid { grid-template-columns: 1fr; }
    .money-grid { grid-template-columns: 1fr; }
    #avatarGrid { grid-template-columns: repeat(2, 1fr); }
    .home-sections-row { grid-template-columns: 1fr; gap: 15px; }
.product-layout { grid-template-columns: 1fr; gap: 30px; }
    .catalog-controls-row { flex-direction: column; align-items: stretch; }
    .catalog-search { max-width: 100%; min-width: 0; }
    .subcategories-row { width: 100%; }
    .reviews-filters__row { flex-direction: column; align-items: stretch; }
    .filter-group { width: 100%; }
    .filter-select-wrap { width: 100%; }
    .filter-sort-select { width: 100%; }
    .reviews-toolbar { flex-direction: column; align-items: flex-start; }
    .reviews-toolbar__left { width: 100%; }
    .reviews-star-widget { border-right: none; width: 100%; padding-right: 0; justify-content: space-between; border-bottom: 1px solid var(--border-gray); padding-bottom: 15px; margin-bottom: 5px; }
    .star-icon { width: 28px; height: 28px; }
    .reviews-sort-wrap { width: 100%; justify-content: flex-end; }

    .pill { width: 100%; }
    .balance-block { flex-wrap: wrap; }
    .btn-topup { width: 100%; }

    .profile-header-text { font-size: 20px; }
    .profile-header-name { font-size: 20px; }

    .toast-container { right: 15px; left: 15px; }
    .toast { min-width: 0; max-width: 100%; }

    .login-card { padding: 30px 25px; }
    .modal { margin: 10px; padding: 25px; }

    .reviews-section__title { font-size: 20px; }
    .reviews-section__big-rating { font-size: 36px; gap: 10px; }
    .reviews-section__header { flex-direction: column; gap: 10px; align-items: flex-start; }
}

@media (max-width: 480px) {
    .container { padding: 0 12px; }

    .header__logo { font-size: 18px; }
    .header__logo-eye { width: 35px; height: 20px; }
    .header__actions { gap: 10px; }
    .header__user-btn { width: 34px; height: 34px; }
    .header__support { font-size: 9px; }
    .header__support-icon { width: 18px; height: 18px; }

    .hero-slider__slide { width: 90vw; height: 180px; }
   .home-grid { grid-template-columns: repeat(11, 1fr); gap: 4px; }
.home-grid__item--coming { font-size: 14px; }
.home-grid__item { border-radius: 8px; }
.home-section { margin-bottom: 15px; }
.home-sections-row { gap: 10px; }

.external-reviews-badge { padding: 10px 14px; gap: 8px; }
.external-reviews-badge__rating { font-size: 16px; }
.external-reviews-badge__text { font-size: 11px; }

    .catalog-banner { height: 160px; border-radius: 12px; }
    .catalog-header__name { font-size: 18px; }
    .product-visual { aspect-ratio: 4/3; border-radius: 6px; }
    .product-main-title { font-size: 20px; }
    .product-price-block__current { font-size: 24px; }
    .product-price-block { gap: 10px; flex-wrap: wrap; }

    .login-card { padding: 25px 15px; border-radius: 20px; }
    .modal { border-radius: 20px; padding: 20px; }

    .reviews-section__big-rating { font-size: 32px; }
    .reviews-summary__value { font-size: 36px; }

    .profile-header-text { font-size: 18px; }
    .profile-header-name { font-size: 18px; }
}

@media (max-width: 600px) {
    .rating-buttons { flex-wrap: wrap; }
}