.Banner-module__img {
    display: none !important;
}
.container {
    max-width: 100% !important;
    width: auto !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 40px !important;
    padding-right: 40px !important;
    box-sizing: border-box;
}
.Products-module__wrapper {
    grid-template-columns: repeat(auto-fill, minmax(243px, 1fr)) !important;
}
.Index-module__wrapper {
    display: flex !important;
    flex-direction: row-reverse !important;
    align-items: flex-start !important;
    gap: 20px !important;
}
.Shop-module__wrapper {
    flex: 1 !important;
}
.Widgets-module__wrapper {
    flex-shrink: 0 !important;
    width: 264px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 10px !important;
    margin-right: -40px !important;
    padding-right: 40px !important;
}
/* ── Кнопка промокода в хедере ── */
.custom-promo-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 5px !important;
    height: 30px !important;
    padding: 0 11px !important;
    border-radius: 6px !important;
    background: rgba(200, 30, 30, 0.12) !important;
    border: 1px solid rgba(200, 30, 30, 0.28) !important;
    color: rgba(255, 255, 255, 0.65) !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    letter-spacing: 0.05em !important;
    text-transform: uppercase !important;
    cursor: pointer !important;
    margin-right: 8px !important;
    transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s !important;
    white-space: nowrap !important;
}
.custom-promo-btn:hover {
    background: rgba(200, 30, 30, 0.22) !important;
    border-color: rgba(200, 30, 30, 0.55) !important;
    color: #fff !important;
    transform: translateY(-1px) !important;
}

/* ── Модалка промокода ── */
.custom-promo-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}
.custom-promo-modal {
    background: #111;
    border: 1px solid rgba(200, 30, 30, 0.7);
    border-radius: 12px;
    box-shadow: 0 0 12px rgba(200, 30, 30, 0.2), 0 20px 50px rgba(0, 0, 0, 0.6);
    width: 360px;
    max-width: 100%;
    overflow: hidden;
    animation: promo-pop 0.22s ease;
}
@keyframes promo-pop {
    from { opacity: 0; transform: scale(0.96) translateY(6px); }
    to   { opacity: 1; transform: scale(1)    translateY(0); }
}
.custom-promo-modal__header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 16px 20px 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    background: radial-gradient(ellipse at 50% 0%, rgba(200, 30, 30, 0.12), transparent 70%);
}
.custom-promo-modal__header svg {
    color: rgba(200, 30, 30, 0.85);
    flex-shrink: 0;
}
.custom-promo-modal__close {
    margin-left: auto;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    font-size: 16px;
    cursor: pointer;
    padding: 2px 6px;
    border-radius: 6px;
    line-height: 1;
    transition: color 0.15s, background 0.15s;
}
.custom-promo-modal__close:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}
.custom-promo-modal__body {
    padding: 18px 20px 22px;
}
.custom-promo-modal__hint {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    margin: 0 0 14px;
    line-height: 1.5;
}
.custom-promo-modal__row {
    display: flex;
    gap: 8px;
}
.custom-promo-modal__input {
    flex: 1;
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    border-radius: 8px !important;
    color: #fff !important;
    font-size: 13px !important;
    padding: 0 14px !important;
    height: 40px !important;
    outline: none !important;
    transition: border-color 0.18s !important;
    font-family: inherit !important;
}
.custom-promo-modal__input::placeholder {
    color: rgba(255, 255, 255, 0.25) !important;
}
.custom-promo-modal__input:focus {
    border-color: rgba(200, 30, 30, 0.55) !important;
    background: rgba(255, 255, 255, 0.06) !important;
}
.custom-promo-modal__submit {
    height: 40px !important;
    padding: 0 18px !important;
    border-radius: 8px !important;
    background: linear-gradient(135deg, rgba(220, 40, 40, 0.95), rgba(165, 20, 20, 0.95)) !important;
    border: none !important;
    color: #fff !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    cursor: pointer !important;
    white-space: nowrap !important;
    transition: opacity 0.18s, transform 0.15s !important;
    font-family: inherit !important;
}
.custom-promo-modal__submit:hover {
    opacity: 0.88 !important;
    transform: translateY(-1px) !important;
}
.custom-promo-modal__submit:disabled {
    opacity: 0.5 !important;
    cursor: default !important;
    transform: none !important;
}
.custom-promo-modal__status {
    margin-top: 10px;
    font-size: 12px;
    font-weight: 600;
    min-height: 18px;
}
.custom-promo-modal__status--error {
    color: rgba(220, 60, 60, 0.9);
}
.custom-promo-modal__status--success {
    color: rgba(60, 200, 100, 0.9);
}

/* Иконки соцсетей в хедере */
.custom-social-icons {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    margin-right: 8px !important;
}
.custom-social-icon {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 30px !important;
    height: 30px !important;
    border-radius: 6px !important;
    color: rgba(255, 255, 255, 0.55) !important;
    transition: color 0.2s, background 0.2s, transform 0.2s !important;
    text-decoration: none !important;
}
.custom-social-icon:hover {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.08) !important;
    transform: translateY(-1px) !important;
}
/* Скрываем выпадающий список языков — переключение через JS */
.LangSwitcher-module__list,
[class*="LangSwitcher-module__list"] {
    display: none !important;
}
/* Кнопка смены языка — hover-анимация как у остальных кнопок */
.LangSwitcher-module__btn {
    transition: color 0.2s, background 0.2s, transform 0.15s !important;
}
.LangSwitcher-module__btn:hover {
    transform: translateY(-1px) !important;
    background: rgba(255, 255, 255, 0.08) !important;
}
/* Кнопка профиля с аватаром и ником */
.PlayerMenu-module__profileLink {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 0 12px !important;
    height: 34px !important;
    border-radius: 8px !important;
    text-decoration: none !important;
    color: #ffffff !important;
    background-color: rgba(255, 255, 255, 0.08) !important;
    transition: background 0.2s, transform 0.15s !important;
}
.PlayerMenu-module__profileLink:hover {
    background: rgba(255, 255, 255, 0.06) !important;
    transform: translateY(-1px) !important;
}
.custom-profile-avatar {
    width: 26px !important;
    height: 26px !important;
    border-radius: 6px !important;
    object-fit: cover !important;
    flex-shrink: 0 !important;
    display: block !important;
    transform: none !important;
    transition: box-shadow 0.2s !important;
}
.PlayerMenu-module__profileLink:hover .custom-profile-avatar {
    box-shadow: 0 0 0 1px rgba(200, 30, 30, 0.6) !important;
}
.custom-profile-nick {
    font-size: 11px !important;
    font-weight: 600 !important;
    color: inherit !important;
    white-space: nowrap !important;
    max-width: 120px !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}
/* Визуальный + внутри кнопки баланса */
.custom-balance-plus {
    color: #e8490a !important;
    font-size: 16px !important;
    font-weight: 700 !important;
    line-height: 1 !important;
    margin-left: 4px !important;
    padding-left: 5px !important;
    border-left: 1px solid rgba(255, 255, 255, 0.15) !important;
    vertical-align: middle !important;
    pointer-events: none !important;
}
/* Кнопка входа — выравниваем flex и скругление */
.PlayerMenu-module__loginLink {
    box-sizing: border-box !important;
    display: inline-flex !important;
    align-items: center !important;
    border-radius: 8px !important;
}
/* Кнопка входа — стиль активной кнопки категории */
.PlayerMenu-module__loginLink {
    background-color: var(--active-cat-bg, transparent) !important;
    color: var(--active-cat-color, inherit) !important;
    padding: 0 14px !important;
    font-weight: var(--active-cat-fw, 600) !important;
    font-size: var(--active-cat-fs, 13px) !important;
    border-radius: 8px !important;
    transition: opacity 0.2s ease, transform 0.15s ease !important;
    white-space: nowrap !important;
    height: 34px !important;
    min-height: 34px !important;
    outline: none !important;
    border: none !important;
    cursor: pointer !important;
}
.PlayerMenu-module__loginLink:hover {
    opacity: 0.9 !important;
    transform: translateY(-1px) !important;
}
/* Снимаем стили с активной кнопки категории и передаём их кнопке входа через CSS-переменные */
.Categories-module__active {
    --active-cat-bg: var(--bg);
    --active-cat-color: var(--color);
    --active-cat-fw: var(--fw);
    --active-cat-fs: var(--fs);
}
/* Скрываем текстовое название */
.Header-module__logo {
    display: none !important;
}
/* Логотип в хедере */
.custom-header-logo {
    height: 30px;
    width: auto;
    vertical-align: middle;
    margin-left: 0 !important;
    display: inline-block;
    transition: transform 0.3s ease;
}
.custom-header-logo:hover {
    transform: rotate(-5deg) scale(1.05);
}
/* Мягкое повышение контрастности */
.container,
.Header-module__wrapper,
.Widgets-module__wrapper {
    filter: contrast(1.08) brightness(1.04) !important;
}
/* Картинки — без изменений */
.Product-module__wrapper img,
.KitContent-module__itemImg,
.custom-header-logo {
    filter: none !important;
}
/* Убираем отступ сверху страницы */
html, body {
    margin-top: 0 !important;
    padding-top: 0 !important;
}
/* Хедер — с blur эффектом и градиентом */
.Header-module__wrapper {
    border-radius: 8px !important;
    margin-top: 10px !important;
    box-sizing: border-box !important;
    background: linear-gradient(180deg, rgba(28, 28, 28, 0.7), rgba(20, 20, 20, 0.55)) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04) !important;
    transition: background 0.3s ease !important;
}
/* Большая картинка товара в модалке */
.custom-modal-hero {
    display: block !important;
    width: 200px !important;
    height: 200px !important;
    object-fit: contain !important;
    margin: 8px auto !important;
    filter: drop-shadow(0 6px 14px rgba(0,0,0,0.5));
}
/* Модалка коробки — компактная сетка предметов */
.KitContent-module__containsItems {
    display: grid !important;
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 4px !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
}
.KitContent-module__containsItem {
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 6px !important;
    padding: 3px !important;
    gap: 2px !important;
    position: relative !important;
    background: rgba(255, 255, 255, 0.05) !important;
    background-color: rgba(255, 255, 255, 0.05) !important;
    background-image: none !important;
    border: none !important;
    box-shadow: none !important;
    transition: background-color 0.18s ease, transform 0.18s ease !important;
}
.KitContent-module__containsItem:hover {
    background: rgba(200, 30, 30, 0.15) !important;
    transform: scale(1.04) !important;
}
/* Убираем любые фоны с дочерних элементов ячейки */
.KitContent-module__containsItem > * {
    background: transparent !important;
    background-color: transparent !important;
    background-image: none !important;
    box-shadow: none !important;
}
.KitContent-module__itemImg {
    width: 100% !important;
    height: auto !important;
    max-height: 50px !important;
    object-fit: contain !important;
}
/* Скрываем названия предметов */
.KitContent-module__itemName {
    display: none !important;
}
.KitContent-module__itemCount {
    position: absolute !important;
    bottom: 3px !important;
    right: 4px !important;
    left: auto !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    color: #fff !important;
    background: transparent !important;
    background-color: transparent !important;
    text-shadow: 0 1px 4px rgba(0,0,0,1) !important;
    line-height: 1 !important;
    margin: 0 !important;
    padding: 0 !important;
    z-index: 3 !important;
    pointer-events: none !important;
}
/* Бейдж количества на превью предметов в модалке */
.ProductItemSelector-module__item {
    position: relative !important;
}
.custom-item-count-badge {
    position: absolute !important;
    bottom: 3px !important;
    right: 4px !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    color: #fff !important;
    text-shadow: 0 1px 3px rgba(0,0,0,1), 0 0 5px rgba(0,0,0,1) !important;
    pointer-events: none !important;
    z-index: 5 !important;
    line-height: 1 !important;
}
/* Отступ между сеткой и блоком Amount/Quantity */
.KitContent-module__containsItems {
    margin-bottom: 12px !important;
}
/* Заголовок модалки по центру */
.ProductModal-module__header {
    text-align: center !important;
    justify-content: center !important;
}
.ProductModal-module__set .boxBody {
    padding: 8px 16px !important;
    box-sizing: border-box !important;
}
/* Модалка — скругление только по внешним углам */
.ModalLayout-module__modal.ProductModal-module__set {
    width: 394px !important;
    max-width: 394px !important;
    border-radius: 12px !important;
    overflow: hidden !important;
}
/* Все модальные окна — скругление только по 4 углам */
.ModalLayout-module__modal {
    border-radius: 12px !important;
    overflow: hidden !important;
}
/* Внутренние блоки модалок — без своих скруглений */
.ModalLayout-module__modal .boxHeader,
.ModalLayout-module__modal .boxBody,
.ModalLayout-module__modal .boxFooter {
    border-radius: 0 !important;
}
.modal-inner {
    flex-shrink: 0 !important;
}
/* Убираем отдельные скругления у внутренних блоков */
.ProductModal-module__set .boxHeader,
.ProductModal-module__set .boxBody,
.ProductModal-module__set .boxFooter,
.ProductModal-module__set .KitContent-module__footer {
    border-radius: 0 !important;
}
/* Скругление — только кнопки и инпуты */
button,
input,
[class*="module__btn"],
[class*="module__button"],
[class*="module__input"] {
    border-radius: 8px !important;
}
/* Скрываем заголовок "Shop" и встроенный футер магазина */
.Shop-module__wrapper > .boxHeader,
.Shop-module__wrapper > h2,
.Shop-module__header,
.Shop-module__wrapper > .boxFooter {
    display: none !important;
}
/* Внешние контейнеры — скругление + обрезка дочерних */
.Shop-module__wrapper {
    border-radius: 8px !important;
    overflow: hidden !important;
    background: rgba(20, 20, 20, 0.55) !important;
}
/* Слегка полупрозрачный фон за карточками — еле видно фон сайта */
.Products-module__wrapper,
.Shop-module__wrapper > .boxBody,
.Shop-module__wrapper > div {
    background: rgba(20, 20, 20, 0.55) !important;
}
.Widgets-module__wrapper {
    border-radius: 0 !important;
    overflow: visible !important;
}
/* Каждый виджет — единый скруглённый блок */
.Widgets-module__wrapper > * {
    border-radius: 8px !important;
    overflow: hidden !important;
    transition: transform 0.2s ease, box-shadow 0.2s ease !important;
}
.Widgets-module__wrapper > *:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 18px rgba(0,0,0,0.35) !important;
}
/* Все внутренние блоки — без скруглений */
.Shop-module__wrapper * {
    border-radius: 0 !important;
}
/* Внутри каждого виджета — без скруглений */
.Widgets-module__wrapper > * > * {
    border-radius: 0 !important;
}
/* Кнопки внутри блоков — возвращаем скругление */
.Shop-module__wrapper button,
.Shop-module__wrapper input,
.Widgets-module__wrapper button,
.Widgets-module__wrapper input {
    border-radius: 8px !important;
}
/* Заголовок виджетов — меньше и по центру */
.Widgets-module__wrapper .boxHeader {
    font-size: 15px !important;
    text-align: center !important;
    padding-top: 5px !important;
    padding-bottom: 5px !important;
}
/* Отступ сверху для блока категорий */
.Categories-module__wrapper {
    padding-top: 30px !important;
}
/* Карточки товаров — flex-колонка: картинка сверху, текст снизу */
.Product-module__wrapper {
    border-radius: 8px !important;
    overflow: hidden !important;
    display: flex !important;
    flex-direction: column !important;
    transition: background-color 0.22s ease, transform 0.25s ease, box-shadow 0.25s ease, outline-color 0.22s ease !important;
    position: relative !important;
    outline: 1px solid transparent !important;
    outline-offset: -1px !important;
}
/* Бейдж скидки — без фона, только иконка */
.Product-module__discount {
    position: absolute !important;
    top: 4px !important;
    right: 4px !important;
    z-index: 5 !important;
    background: none !important;
    background-color: transparent !important;
    box-shadow: none !important;
    border-radius: 0 !important;
    padding: 0 !important;
    font-size: 0 !important;
    color: transparent !important;
    width: 26px !important;
    height: 26px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
}
.custom-discount-icon {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    color: #e8490a !important;
}
.custom-discount-icon svg {
    width: 30px !important;
    height: 30px !important;
    display: block !important;
}
/* Тултип со скидкой — появляется слева от иконки */
.custom-discount-tooltip {
    position: fixed;
    z-index: 9999;
    background: rgba(18, 18, 18, 0.96);
    border: 1px solid rgba(200, 30, 30, 0.6);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 6px;
    white-space: nowrap;
    pointer-events: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.45);
    transition: opacity 0.15s ease;
    opacity: 0;
    display: none;
}
/* Hover — лифт + цвет фона + красная обводка */
.Product-module__wrapper:hover {
    background-color: rgba(200, 30, 30, 0.32) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 10px 22px rgba(0, 0, 0, 0.45) !important;
    outline-color: rgba(220, 40, 40, 0.55) !important;
}
/* Картинка товара в карточке — уменьшаем + лёгкий зум при hover */
.Product-module__wrapper img {
    transform: scale(0.85) !important;
    transform-origin: center center !important;
    transition: transform 0.3s ease !important;
}
.Product-module__wrapper:hover img {
    transform: scale(0.92) !important;
}
/* Цена — снимаем absolute, белый текст, прозрачный фон */
.Product-module__price {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    background: transparent !important;
    color: white !important;
    padding: 2px 8px 8px !important;
}
.Product-module__price * {
    background: transparent !important;
}
/* Оригинальное название сайта — скрываем, используем свой оверлей */
.Product-module__name {
    display: none !important;
}
/* Кастомный оверлей с названием */
.custom-name-overlay {
    display: block !important;
    padding: 8px 8px 2px !important;
    background: transparent !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    pointer-events: none;
    width: 100%;
    box-sizing: border-box;
}
/* Overlay для блюра фона при открытой модалке.
   visibility: hidden важно: backdrop-filter с opacity:0 всё равно
   тратит ресурсы GPU на каждый кадр. visibility исключает оверлей
   из композита, пока модалка не открыта. */
.modal-blur-overlay {
    position: fixed;
    inset: 0;
    backdrop-filter: blur(3px) brightness(0.8);
    -webkit-backdrop-filter: blur(3px) brightness(0.8);
    background: rgba(0, 0, 0, 0.2);
    z-index: 100;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.18s ease, visibility 0s linear 0.18s;
}
body.has-modal .modal-blur-overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transition: opacity 0.18s ease, visibility 0s linear 0s;
}
/* Модалка — выше оверлея, чуть выше центра экрана, тёмный фон, красная обводка */
.ModalLayout-module__modal {
    z-index: 1000 !important;
    position: fixed !important;
    top: 42% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    background: #111 !important;
    outline: 1px solid rgba(200, 30, 30, 0.7) !important;
    box-shadow: 0 0 12px rgba(200, 30, 30, 0.25), 0 18px 40px rgba(0, 0, 0, 0.55) !important;
    animation: modal-pop 0.22s ease !important;
}
@keyframes modal-pop {
    from { opacity: 0; transform: translate(-50%, -48%) scale(0.96); }
    to   { opacity: 1; transform: translate(-50%, -50%) scale(1); }
}
.ModalLayout-module__modal .boxHeader,
.ModalLayout-module__modal .boxBody,
.ModalLayout-module__modal .boxFooter {
    background: #111 !important;
}
/* Скругления — явно на обёртке контента внутри модалки */
.modal-inner {
    border-radius: 12px !important;
    overflow: hidden !important;
    flex-shrink: 0 !important;
}
/* ── СТРАНИЦА ПРОФИЛЯ ── */
.ProfileNav-module__wrapper,
.ProfileContent-module__wrapper,
.BasketContent-module__wrapper,
[class*="HistoryContent-module__wrapper"],
[class*="ProfileTickets-module__wrapper"] {
    border-radius: 8px !important;
    overflow: hidden !important;
}
/* Поиск в корзине/истории */
.BasketSearch-module__wrapper,
[class*="HistorySearch-module__wrapper"],
[class*="HistoryFilters-module__wrapper"] {
    border-radius: 8px !important;
    overflow: hidden !important;
}
.BasketSearch-module__input,
[class*="HistorySearch-module__input"] {
    border-radius: 8px !important;
}
/* Заголовки разделов — по центру */
.BasketContent-module__header,
[class*="HistoryContent-module__header"],
.ProfileContent-module__header,
[class*="ProfileTickets-module__header"] {
    text-align: center !important;
    justify-content: center !important;
}
/* Заголовок основной страницы профиля */
[class*="ProfileInfo-module__header"],
[class*="ProfileContent-module__"] h2,
[class*="Content-module__header"].boxHeader {
    text-align: center !important;
    justify-content: center !important;
}
/* ── ПЕРЕРАБОТКА ОКНА ПРОФИЛЯ ── */
.Profile-module__wrapper {
    gap: 24px !important;
    padding-top: 24px !important;
    align-items: flex-start !important;
}
.ProfileNav-module__wrapper {
    background: linear-gradient(180deg, rgba(30, 30, 30, 0.85), rgba(15, 15, 15, 0.85)) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.4) !important;
    width: 220px !important;
    flex-shrink: 0 !important;
}
.ProfileNav-module__header {
    padding: 22px 16px 16px !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 10px !important;
    background:
        radial-gradient(circle at 50% 0%, rgba(200, 30, 30, 0.18), transparent 70%),
        rgba(0, 0, 0, 0.25) !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
}
.ProfileNav-module__img {
    width: 96px !important;
    height: 96px !important;
    min-width: 96px !important;
    border-radius: 50% !important;
    object-fit: cover !important;
    margin: 0 auto !important;
    padding: 3px !important;
    background: linear-gradient(135deg, rgba(220, 50, 50, 0.95), rgba(120, 20, 20, 0.45)) !important;
    box-shadow: 0 0 18px rgba(200, 30, 30, 0.3) !important;
    transition: transform 0.3s ease, box-shadow 0.3s ease !important;
}
.ProfileNav-module__img:hover {
    transform: scale(1.04) !important;
    box-shadow: 0 0 24px rgba(220, 40, 40, 0.55) !important;
}
.ProfileNav-module__name {
    font-size: 16px !important;
    font-weight: 700 !important;
    color: #fff !important;
    text-align: center !important;
    display: block !important;
    letter-spacing: 0.02em !important;
    text-shadow: 0 1px 6px rgba(0, 0, 0, 0.6) !important;
}
/* Навигация — горизонтальный ряд */
.ProfileNav-module__body.boxBody {
    display: flex !important;
    flex-direction: row !important;
    align-items: stretch !important;
    padding: 0 !important;
    gap: 0 !important;
    border-radius: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    overflow: hidden !important;
}
.ProfileNav-module__navItem {
    flex: 1 1 0% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    margin: 0 !important;
    height: 50px !important;
    min-height: 50px !important;
    max-height: 50px !important;
    font-size: 0 !important;
    line-height: 0 !important;
    border-radius: 0 !important;
    opacity: 0.45 !important;
    transition: opacity 0.2s, background 0.2s !important;
    box-sizing: border-box !important;
    border-right: 1px solid rgba(255, 255, 255, 0.05) !important;
    position: relative !important;
}
.ProfileNav-module__navItem:last-child {
    border-right: none !important;
}
.ProfileNav-module__navItem:hover {
    opacity: 1 !important;
    background: rgba(255, 255, 255, 0.04) !important;
}
.ProfileNav-module__navItem.ProfileNav-module__active {
    opacity: 1 !important;
    background: rgba(200, 30, 30, 0.18) !important;
}
.ProfileNav-module__navItem.ProfileNav-module__active::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(220, 40, 40, 0.95), transparent);
    box-shadow: 0 0 6px rgba(220, 40, 40, 0.7);
}
.ProfileNav-module__navItem svg {
    width: 22px !important;
    height: 22px !important;
    min-width: 22px !important;
    min-height: 22px !important;
    display: block !important;
    flex-shrink: 0 !important;
    transition: transform 0.18s ease !important;
}
.ProfileNav-module__navItem:hover svg {
    transform: translateY(-1px) scale(1.05) !important;
}
/* Когда активна вкладка настроек — переопределяем активные классы React */
.ProfileNav-module__wrapper.custom-settings-active .ProfileNav-module__navItem.ProfileNav-module__active:not(.custom-settings-tab) {
    opacity: 0.45 !important;
    background: rgb(40, 40, 40) !important;
}
.ProfileNav-module__wrapper.custom-settings-active .ProfileNav-module__navItem.ProfileNav-module__active:not(.custom-settings-tab)::after {
    display: none !important;
}
.ProfileNav-module__wrapper.custom-settings-active .custom-settings-tab {
    opacity: 1 !important;
    background: rgba(200, 30, 30, 0.18) !important;
}
.ProfileNav-module__wrapper.custom-settings-active .custom-settings-tab::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(220, 40, 40, 0.95), transparent);
    box-shadow: 0 0 6px rgba(220, 40, 40, 0.7);
}
/* Кнопка выхода */
.ProfileNav-module__logOut {
    width: calc(100% - 24px) !important;
    margin: 14px 12px !important;
    border-radius: 8px !important;
    transition: opacity 0.18s, transform 0.15s !important;
}
.ProfileNav-module__logOut:hover {
    opacity: 0.92 !important;
    transform: translateY(-1px) !important;
}
/* Контент профиля — карточный стиль */
.ProfileContent-module__wrapper,
.BasketContent-module__wrapper,
[class*="HistoryContent-module__wrapper"],
[class*="ProfileTickets-module__wrapper"] {
    background: linear-gradient(180deg, rgba(30, 30, 30, 0.85), rgba(15, 15, 15, 0.85)) !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.4) !important;
}
.ProfileContent-module__header,
.BasketContent-module__header,
[class*="HistoryContent-module__header"],
[class*="ProfileTickets-module__header"] {
    background:
        radial-gradient(circle at 50% 0%, rgba(200, 30, 30, 0.12), transparent 60%),
        transparent !important;
    padding: 16px 20px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05) !important;
    font-size: 18px !important;
    letter-spacing: 0.02em !important;
}
.ProfileContent-module__body {
    padding: 20px !important;
}
.ProfileContent-module__title {
    display: block !important;
    font-size: 11px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.08em !important;
    color: rgba(255, 255, 255, 0.45) !important;
    margin: 4px 0 8px !important;
}
.ProfileContent-module__infoWrapper {
    background: rgba(255, 255, 255, 0.03) !important;
    border-radius: 8px !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    overflow: hidden !important;
    margin-bottom: 18px !important;
}
.ProfileContent-module__infoLine {
    padding: 12px 16px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    transition: background 0.15s !important;
}
.ProfileContent-module__infoLine:last-child {
    border-bottom: none !important;
}
.ProfileContent-module__infoLine:hover {
    background: rgba(255, 255, 255, 0.02) !important;
}
.ProfileContent-module__infoLine > span:first-child {
    color: rgba(255, 255, 255, 0.55) !important;
    font-size: 13px !important;
}
.ProfileContent-module__infoLineValue {
    font-weight: 600 !important;
    color: #fff !important;
}
.ProfileContent-module__steamid {
    color: rgba(220, 60, 60, 0.95) !important;
    transition: color 0.18s !important;
}
.ProfileContent-module__steamid:hover {
    color: rgba(255, 100, 100, 1) !important;
}
.ProfileContent-module__inputWrapper {
    display: flex !important;
    gap: 8px !important;
    align-items: stretch !important;
}
.ProfileContent-module__input {
    flex: 1 !important;
    background: rgba(255, 255, 255, 0.04) !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    color: #fff !important;
    padding: 0 14px !important;
    height: 42px !important;
    transition: border-color 0.18s, background 0.18s !important;
}
.ProfileContent-module__input:focus {
    outline: none !important;
    border-color: rgba(220, 40, 40, 0.6) !important;
    background: rgba(255, 255, 255, 0.06) !important;
}
/* ── Скрываем ProfileContent пока идёт переход к настройкам ── */
body.custom-settings-loading .ProfileContent-module__wrapper > *:not(.custom-settings-panel) {
    visibility: hidden !important;
    pointer-events: none !important;
}

/* ── РАЗДЕЛ НАСТРОЕК ── */
.custom-settings-panel {
    color: rgba(255, 255, 255, 0.85);
    animation: settings-fade 0.22s ease;
}
@keyframes settings-fade {
    from { opacity: 0; transform: translateY(6px); }
    to   { opacity: 1; transform: translateY(0); }
}
.custom-settings-panel .boxBody {
    padding: 20px !important;
}
.custom-settings-section {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin-bottom: 18px;
    overflow: hidden;
}
.custom-settings-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: background 0.15s;
    gap: 14px;
}
.custom-settings-row:last-child {
    border-bottom: none;
}
.custom-settings-row:hover {
    background: rgba(255, 255, 255, 0.02);
}
.custom-settings-row__label {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 14px;
    font-weight: 500;
    flex: 1;
    min-width: 0;
}
.custom-settings-row__icon {
    color: rgba(220, 60, 60, 0.85);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: rgba(200, 30, 30, 0.1);
    flex-shrink: 0;
}
.custom-settings-row__icon svg {
    width: 18px;
    height: 18px;
}
.custom-settings-row__label-stack {
    display: flex;
    flex-direction: column;
    min-width: 0;
}
.custom-settings-row__label-stack > span:first-child {
    color: #fff;
    font-weight: 600;
    font-size: 14px;
}
.custom-settings-row__hint {
    display: block;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 400;
    margin-top: 2px;
    line-height: 1.3;
}
/* Toggle switch */
.custom-toggle {
    position: relative;
    width: 44px;
    height: 24px;
    background: rgba(255, 255, 255, 0.1) !important;
    border-radius: 12px !important;
    cursor: pointer;
    transition: background 0.22s ease;
    flex-shrink: 0;
    border: none !important;
    padding: 0 !important;
    outline: none !important;
}
.custom-toggle::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 50%;
    transition: transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1), background 0.2s;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}
.custom-toggle.is-on {
    background: linear-gradient(135deg, rgba(220, 40, 40, 0.95), rgba(180, 25, 25, 0.95)) !important;
    box-shadow: 0 0 8px rgba(200, 30, 30, 0.4);
}
.custom-toggle.is-on::before {
    transform: translateX(20px);
}
.custom-toggle:hover::before {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}
/* Сегментированный переключатель языка */
.custom-segment {
    display: flex;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 3px;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.04);
}
.custom-segment__btn {
    background: transparent !important;
    border: none !important;
    color: rgba(255, 255, 255, 0.55) !important;
    padding: 6px 14px !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    border-radius: 6px !important;
    cursor: pointer;
    transition: all 0.18s ease;
    min-width: 44px;
    letter-spacing: 0.04em;
}
.custom-segment__btn.is-active {
    background: linear-gradient(135deg, rgba(220, 40, 40, 0.95), rgba(180, 25, 25, 0.95)) !important;
    color: #fff !important;
    box-shadow: 0 2px 6px rgba(200, 30, 30, 0.3);
}
.custom-segment__btn:not(.is-active):hover {
    color: #fff !important;
    background: rgba(255, 255, 255, 0.04) !important;
}
.custom-settings-footnote {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.35);
    margin: 6px 0 0;
    text-align: center;
}
/* Поиск — единый блок с 4 скруглениями */
.Search-module__wrapper {
    border-radius: 8px !important;
    overflow: hidden !important;
    margin-bottom: 30px !important;
}
.Search-module__wrapper * {
    border-radius: 0 !important;
}
.Search-module__input {
    transition: background 0.2s !important;
}
.Search-module__input:focus {
    background: rgba(255, 255, 255, 0.05) !important;
}
/* ── ВИЗУАЛЬНЫЕ УЛУЧШЕНИЯ САЙТА ── */
/* Глобальный режим без анимаций (управляется JS-настройкой) */
.no-anim *,
.no-anim *::before,
.no-anim *::after {
    transition: none !important;
    animation: none !important;
}
/* Категории — плавные переходы и hover */
.Categories-module__wrapper > * {
    transition: background 0.18s, transform 0.18s, box-shadow 0.18s !important;
}
.Categories-module__wrapper > *:not(.Categories-module__active):hover {
    transform: translateY(-1px) !important;
    background: rgba(255, 255, 255, 0.06) !important;
}
.Categories-module__active {
    box-shadow: 0 4px 12px rgba(200, 30, 30, 0.3) !important;
}
/* Появление страницы — плавно */
.Shop-module__wrapper {
    animation: page-fade 0.35s ease;
}
.Profile-module__wrapper .ProfileContent-module__wrapper,
.BasketContent-module__wrapper,
[class*="HistoryContent-module__wrapper"] {
    animation: page-fade 0.2s ease;
}

/* ── Выравнивание отступа от верха — корзина и история как у профиля ── */
.ProfileBasket-module__wrapper,
.ProfileHistory-module__wrapper {
    padding-top: 24px !important;
}
@keyframes page-fade {
    from { opacity: 0; }
    to   { opacity: 1; }
}
/* Виджеты — плавное появление */
.Widgets-module__wrapper {
    animation: widgets-slide 0.4s ease 0.05s backwards;
}
@keyframes widgets-slide {
    from { opacity: 0; transform: translateX(10px); }
    to   { opacity: 1; transform: translateX(0); }
}
/* Кастомный скроллбар */
*::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
*::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.02);
}
*::-webkit-scrollbar-thumb {
    background: rgba(200, 30, 30, 0.35);
    border-radius: 4px;
    transition: background 0.2s;
}
*::-webkit-scrollbar-thumb:hover {
    background: rgba(220, 40, 40, 0.6);
}
/* Балланс — лёгкая анимация */
.PlayerBalance-module__btn,
[class*="PlayerBalance-module__btn"] {
    transition: background 0.2s, transform 0.15s !important;
}
.PlayerBalance-module__btn:hover,
[class*="PlayerBalance-module__btn"]:hover {
    transform: translateY(-1px) !important;
}
/* ── STICKY FOOTER PATTERN ── */
body {
    display: flex !important;
    flex-direction: column !important;
    min-height: 100vh !important;
}
#root {
    flex: 1 0 auto !important;
}
/* ── CUSTOM FOOTER ── */
.custom-footer {
    flex-shrink: 0 !important;
    width: 100%;
    padding: 20px 40px 30px;
    box-sizing: border-box;
    background: rgba(10, 10, 10, 0.92);
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
    line-height: 1.6;
}
.custom-footer__legal {
    text-align: center;
    margin-bottom: 14px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.custom-footer__row {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
}
.custom-footer__links {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
    justify-content: center;
}
.custom-footer__link {
    background: none;
    border: none;
    padding: 0;
    font-family: inherit;
    font-size: 12px;
    color: rgba(200, 30, 30, 0.8);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: color 0.2s;
}
.custom-footer__link:hover {
    color: rgba(230, 60, 60, 1);
}
/* ── FOOTER POPUP ── */
.custom-fp-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    z-index: 3000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}
.custom-fp {
    background: #111;
    border: 1px solid rgba(200, 30, 30, 0.7);
    border-radius: 12px;
    box-shadow: 0 0 30px rgba(200, 30, 30, 0.2);
    width: 80vw;
    max-width: 80vw;
    max-height: 70vh;
    display: flex;
    flex-direction: column;
    position: relative;
    box-sizing: border-box;
}
.custom-fp__header {
    padding: 18px 52px 14px 24px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    flex-shrink: 0;
}
.custom-fp__body {
    padding: 20px 24px 24px;
    overflow-y: auto;
    color: rgba(255, 255, 255, 0.75);
    font-size: 13px;
    line-height: 1.8;
    /* Стилизация скроллбара */
    scrollbar-width: thin;
    scrollbar-color: rgba(200, 30, 30, 0.5) rgba(255, 255, 255, 0.05);
}
.custom-fp__body::-webkit-scrollbar {
    width: 6px;
}
.custom-fp__body::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 3px;
}
.custom-fp__body::-webkit-scrollbar-thumb {
    background: rgba(200, 30, 30, 0.5);
    border-radius: 3px;
}
.custom-fp__body::-webkit-scrollbar-thumb:hover {
    background: rgba(200, 30, 30, 0.8);
}
.custom-fp__close {
    position: absolute;
    top: 10px;
    right: 12px;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.4);
    font-size: 18px;
    cursor: pointer;
    padding: 4px 8px;
    border-radius: 6px;
    line-height: 1;
    transition: color 0.15s, background 0.15s;
}
.custom-fp__close:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

/* ── Quantity presets on single-product modal ── */
.custom-qty-presets {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 6px;
    margin: 4px 0 4px;
    padding: 0;
}
.custom-qty-preset-btn {
    appearance: none;
    -webkit-appearance: none;
    border: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.04);
    color: #e8e8e8;
    font-size: 12px;
    font-weight: 600;
    padding: 8px 4px;
    border-radius: 7px;
    cursor: pointer;
    transition: background 0.18s ease, border-color 0.18s ease, color 0.18s ease, transform 0.15s ease, box-shadow 0.18s ease;
    letter-spacing: 0.02em;
    line-height: 1;
    text-align: center;
    min-width: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    font-family: inherit;
}
.custom-qty-preset-btn:hover {
    background: rgba(220, 40, 40, 0.15);
    border-color: rgba(220, 40, 40, 0.4);
    color: #fff;
    transform: translateY(-1px);
}
.custom-qty-preset-btn:active {
    transform: translateY(0);
}
.custom-qty-preset-btn:disabled {
    opacity: 0.5;
    cursor: default;
    transform: none;
}
.custom-qty-preset-btn:disabled:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.08);
    color: #e8e8e8;
    transform: none;
}

/* ── Modal delivery instructions text — push down ── */
.productModalGiveText {
    margin-top: 14px !important;
    display: block;
}

/* ══════════════════════════════════════════
   INFO PAGE
   ══════════════════════════════════════════ */

/* Скрываем сырое содержимое страницы Информация до того, как
   initInfoPage() перестроит его в кастомные карточки.
   custom-info-page ставится синхронно по URL ещё до маунта React;
   custom-info-page-ready — только после успешного рендера.
   visibility (а не display:none) сохраняет высоту блока, чтобы при
   появлении карточек страница не «прыгала». */
body.custom-info-page .Page-module__wrapper .boxBody {
    visibility: hidden !important;
}
body.custom-info-page.custom-info-page-ready .Page-module__wrapper .boxBody {
    visibility: visible !important;
}

/* Hide sidebar widgets on info page */
body.custom-info-page .Widgets-module__wrapper {
    display: none !important;
}
body.custom-info-page .CustomPage-module__wrapper {
    display: block !important;
    padding-top: 28px !important;
}
/* Reset shared by all three info-page blocks (consolidated to one rule). */
body.custom-info-page .Page-module__wrapper,
body.custom-info-page .Page-module__header.boxHeader,
body.custom-info-page .Page-module__wrapper .boxBody {
    background: none !important;
    border: none !important;
}
body.custom-info-page .Page-module__wrapper {
    max-width: 1200px !important;
    margin: 0 auto !important;
    box-shadow: none !important;
}
body.custom-info-page .Page-module__header.boxHeader {
    text-align: center !important;
    justify-content: center !important;
    font-size: 26px !important;
    letter-spacing: 0.05em !important;
    padding: 0 0 22px !important;
}
body.custom-info-page .Page-module__wrapper .boxBody {
    padding: 0 !important;
}

/* Project title banner */
.custom-info-banner {
    text-align: center;
    margin-bottom: 24px;
    padding: 16px 20px;
    background: radial-gradient(circle at 50% 0%, rgba(200, 30, 30, 0.13), transparent 70%),
                linear-gradient(180deg, rgba(30, 30, 30, 0.6), rgba(15, 15, 15, 0.4));
    border: 1px solid rgba(200, 30, 30, 0.14);
    border-radius: 12px;
}
.custom-info-banner__label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(220, 50, 50, 0.85);
}
.custom-info-banner__title {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-top: 4px;
    letter-spacing: 0.03em;
}

/* Section cards */
.custom-info-card {
    background: linear-gradient(180deg, rgba(30, 30, 30, 0.85), rgba(15, 15, 15, 0.85));
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    margin-bottom: 10px;
    overflow: hidden;
    animation: page-fade 0.28s ease;
}
.custom-info-card__head {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 13px 18px;
    background: radial-gradient(ellipse at 0% 50%, rgba(200, 30, 30, 0.09), transparent 65%),
                rgba(0, 0, 0, 0.22);
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.custom-info-card__num {
    min-width: 26px;
    height: 26px;
    border-radius: 6px;
    background: linear-gradient(135deg, rgba(220, 40, 40, 0.9), rgba(155, 18, 18, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    box-shadow: 0 2px 6px rgba(200, 30, 30, 0.28);
    flex-shrink: 0;
}
.custom-info-card__title {
    flex: 1;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.02em;
}
.custom-info-card__body {
    padding: 10px 18px 14px;
}
.custom-info-item {
    display: flex;
    gap: 10px;
    padding: 7px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    line-height: 1.65;
}
.custom-info-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.custom-info-item__dot {
    color: rgba(220, 40, 40, 0.75);
    flex-shrink: 0;
    margin-top: 2px;
    font-size: 14px;
    line-height: 1.65;
}
.custom-info-item__text {
    flex: 1;
    min-width: 0;
}
.custom-info-item__key {
    color: #fff;
    font-weight: 600;
}

/* FAQ card — Q&A layout */
.custom-faq-item {
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.custom-faq-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}
.custom-faq-q {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 4px;
    display: flex;
    gap: 8px;
    align-items: flex-start;
}
.custom-faq-q__icon {
    color: rgba(220, 40, 40, 0.85);
    flex-shrink: 0;
    font-size: 13px;
    margin-top: 1px;
}
.custom-faq-a {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.62);
    line-height: 1.65;
    padding-left: 20px;
}