/* BuildNexus production CSS bundle v2 */
/* /skin/cache/modules/catalog_drawer/style.82e36ab7.css */
/* catalog_flyout — full-width mega-panel with 3-column cards */
.catalog_flyout__module {
  position: relative;
  display: inline-block;
}

.catalog_flyout__trigger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: #e34c26;
  color: #fff;
  border: none;
  border-radius: 6px;
  font: inherit;
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  line-height: 1.2;
  transition: background-color 0.15s ease;
}

.catalog_flyout__trigger:hover,
.catalog_flyout__trigger[aria-expanded="true"] {
  background: #c43d1e;
}

.catalog_flyout__trigger-icon { display: inline-flex; }

.catalog_flyout__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.35);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 80;
}
.catalog_flyout__backdrop.is-visible {
  opacity: 1;
  pointer-events: auto;
}

.catalog_flyout__panel {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  max-height: 90vh;
  background: #ffffff;
  border-bottom: 2px solid #e34c26;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
  transform: translateY(-105%);
  opacity: 0;
  visibility: hidden;
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    opacity   0.28s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0s linear 0.45s;
  z-index: 90;
  overflow: hidden;
  display: flex;
  will-change: transform, opacity;
}
.catalog_flyout__panel.is-open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  transition:
    transform 0.45s cubic-bezier(0.22, 1, 0.36, 1),
    opacity   0.32s cubic-bezier(0.4, 0, 0.2, 1),
    visibility 0s linear 0s;
}

.catalog_flyout__panel-inner {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 20px 20px 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.catalog_flyout__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid #e3e6ea;
}
.catalog_flyout__title { margin: 0; font-size: 20px; color: #222; }

.catalog_flyout__close {
  background: transparent;
  border: 1px solid #c7ccd4;
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #5b6270;
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease;
}
.catalog_flyout__close:hover { background: #f7f8fa; color: #1a1d21; }

.catalog_flyout__body {
  flex: 1;
  min-height: 0;
  overflow: auto;
}

.catalog_flyout__empty,
.catalog_flyout__error,
.catalog_flyout__loading {
  padding: 32px 16px;
  text-align: center;
  color: #5b6270;
  font-size: 14px;
}
.catalog_flyout__error { color: #c62828; }

/* 3-column grid of category cards (ampermetr-style compact rows) */
.catalog_flyout__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px 24px;
  align-items: start;
}

@media (max-width: 900px) {
  .catalog_flyout__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 600px) {
  .catalog_flyout__grid { grid-template-columns: minmax(0, 1fr); }
}

/* Category card (root-level) */
.catalog_flyout__card {
  position: relative;
  border: 1px solid transparent;
  border-radius: 6px;
  background: #fff;
  padding: 6px 10px;
  transition: border-color 0.12s ease, background-color 0.12s ease;
}

.catalog_flyout__card:hover {
  border-color: #e3e6ea;
  background: #fdfdfd;
}

.catalog_flyout__card.is-expanded {
  border-color: #e34c26;
  background: #fff;
  z-index: 3;
}

.catalog_flyout__card-head {
  display: grid;
  grid-template-columns: 46px 1fr auto;
  align-items: center;
  gap: 12px;
}

.catalog_flyout__card-icon {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: 4px;
  background: #f7f8fa;
}

.catalog_flyout__card-fallback-icon {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #f7f8fa;
  border-radius: 4px;
}

.catalog_flyout__card-title {
  color: #1a1d21;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.3;
  text-decoration: none;
  min-width: 0;
  overflow-wrap: break-word;
  display: inline-flex;
  flex-wrap: wrap;
  gap: 4px;
  align-items: baseline;
}

.catalog_flyout__card-title:hover {
  color: #e34c26;
  text-decoration: none;
}

.catalog_flyout__card-name { font-weight: 600; }

.catalog_flyout__count {
  color: #999;
  font-weight: 400;
  font-size: 12px;
  white-space: nowrap;
}

.catalog_flyout__card-chevron {
  display: inline-block;
  font-size: 18px;
  line-height: 1;
  color: #c7ccd4;
  transition: color 0.15s ease, transform 0.2s ease;
}

.catalog_flyout__card.has-kids:hover .catalog_flyout__card-chevron {
  color: #777;
}

.catalog_flyout__card.is-expanded .catalog_flyout__card-chevron {
  color: #e34c26;
  transform: rotate(90deg);
}

.catalog_flyout__card.has-kids {
  cursor: pointer;
}

/* L2 sublist — overlay popup below card (не сдвигает соседние карточки) */
.catalog_flyout__sub {
  list-style: none;
  margin: 0;
  padding: 0;
}

.catalog_flyout__sub--l2 {
  position: absolute;
  top: calc(100% + 2px);
  left: -1px;
  right: -1px;
  z-index: 4;
  max-height: 420px;
  overflow-y: auto;
  padding: 8px 10px;
  background: #fff;
  border: 1px solid #e34c26;
  border-radius: 6px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.18);
  animation: catalog_flyout__sub-in 0.22s cubic-bezier(0.22, 1, 0.36, 1);
  transform-origin: top center;
}

@keyframes catalog_flyout__sub-in {
  from { opacity: 0; transform: translateY(-6px) scaleY(0.98); }
  to   { opacity: 1; transform: translateY(0) scaleY(1); }
}

.catalog_flyout__sub--l2 > li {
  margin-bottom: 2px;
}

.catalog_flyout__sub-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.catalog_flyout__sub-link {
  flex: 1;
  display: block;
  padding: 6px 4px;
  color: #1a1d21;
  text-decoration: none;
  font-size: 13px;
  line-height: 1.35;
  border-radius: 4px;
}

.catalog_flyout__sub-link:hover {
  color: #e34c26;
  background: rgba(251, 231, 223, 0.5);
  text-decoration: none;
}

.catalog_flyout__sub-toggle {
  width: 22px;
  height: 22px;
  border-radius: 4px;
  border: 1px solid #e3e6ea;
  background: #fff;
  color: #5b6270;
  cursor: pointer;
  font-size: 14px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.15s ease;
}

.catalog_flyout__sub-toggle:hover {
  background: #fbe7df;
  border-color: #e34c26;
  color: #e34c26;
}

/* L3 list nested */
.catalog_flyout__sub--l3 {
  margin-top: 4px;
  margin-left: 12px;
  padding: 0 0 0 12px;
  border-top: none;
  border-left: 2px solid #fbe7df;
}

.catalog_flyout__sub--l3 .catalog_flyout__sub-link {
  font-size: 12px;
  color: #5b6270;
  padding: 4px;
}

.catalog_flyout__sub--l3 .catalog_flyout__sub-link:hover {
  color: #e34c26;
  background: transparent;
}

/* /skin/cache/modules/breadcrumbs/style.c0c50b97.css */
/* breadcrumbs — тонкая полоска со ссылками вверху default-страниц.
 * Источник current_label — из section.current_label (override) либо
 * из контекста page.title через PHP. */

.breadcrumbs {
    width: 100%;
    margin: 0 0 24px;
    padding: 0;
    font-family: var(--font-base);
    font-size: var(--fs-sm);
    color: var(--color-muted);
}

.breadcrumbs__list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.breadcrumbs__item {
    display: inline-flex;
    align-items: center;
}
.breadcrumbs__item + .breadcrumbs__item::before {
    content: "/";
    margin: 0 8px 0 2px;
    color: var(--color-line);
}

.breadcrumbs__link {
    color: var(--color-text);
    text-decoration: none;
    transition: color var(--t-base, 220ms);
}
.breadcrumbs__link:hover { color: var(--color-accent); }

.breadcrumbs__current {
    color: var(--color-ink);
    font-weight: var(--fw-medium);
}

@media (max-width: 767px) {
    .breadcrumbs { margin-bottom: 16px; font-size: var(--fs-xs); }
}

/* /skin/cache/modules/shop_account/style.b65221c5.css */
@charset "UTF-8";
@keyframes shop-account-spin {
  to {
    transform: rotate(360deg);
  }
}
.shop_account__module {
  --account-bg: #f5f7fa;
  --account-surface: #ffffff;
  --account-border: #d7dde5;
  --account-text: #203040;
  --account-muted: #6b7785;
  --account-accent: #1e5aa7;
  --account-accent-soft: #eaf1fb;
  --account-success: #1f8b4c;
  --account-danger: #c43b3b;
  color: var(--account-text);
}
.shop_account__module .shop_account__shell {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.shop_account__module .shop_account__messengers:empty {
  display: none;
}
.shop_account__module .shop_account__hero {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  border: 1px solid var(--account-border);
  background: linear-gradient(180deg, #fbfcfe 0%, #f2f5f9 100%);
  padding: 1.25rem 1.4rem;
}
.shop_account__module .shop_account__hero-copy {
  min-width: 0;
  flex: 1 1 auto;
}
.shop_account__module .shop_account__hero-informer {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.shop_account__module .shop_account__hero-informer:empty {
  display: none;
}
.shop_account__module .shop_account__title {
  margin: 0;
  font-size: 1.75rem;
  line-height: 1.15;
  font-weight: 700;
}
.shop_account__module .shop_account__text {
  margin: 0.55rem 0 0;
  max-width: 46rem;
  color: var(--account-muted);
  font-size: 0.98rem;
  line-height: 1.55;
}
.shop_account__module .shop_account__surface {
  border: 1px solid var(--account-border);
  background: var(--account-bg);
  min-height: 18rem;
}
.shop_account__module .shop_account__app {
  padding: 1rem;
}
.shop_account__module .shop_account__loading,
.shop_account__module .shop-account-empty {
  border: 1px dashed var(--account-border);
  background: var(--account-surface);
  padding: 1.2rem;
  color: var(--account-muted);
}
.shop_account__module .shop-account-auth,
.shop_account__module .shop-account-layout {
  display: grid;
  gap: 1rem;
}
.shop_account__module .shop-account-auth {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.shop_account__module .shop-account-layout {
  grid-template-columns: 17rem minmax(0, 1fr);
  align-items: start;
}
.shop_account__module .shop-account-card,
.shop_account__module .shop-account-panel,
.shop_account__module .shop-account-nav,
.shop_account__module .shop-account-stat,
.shop_account__module .shop-account-order,
.shop_account__module .shop-account-favorite,
.shop_account__module .shop-account-detail {
  border: 1px solid var(--account-border);
  background: var(--account-surface);
}
.shop_account__module .shop-account-card,
.shop_account__module .shop-account-panel,
.shop_account__module .shop-account-detail,
.shop_account__module .shop-account-nav {
  padding: 1rem;
}
.shop_account__module .shop-account-card__title,
.shop_account__module .shop-account-panel__title,
.shop_account__module .shop-account-detail__title {
  margin: 0 0 0.35rem;
  font-size: 1.05rem;
  font-weight: 700;
}
.shop_account__module .shop-account-card__text,
.shop_account__module .shop-account-panel__meta,
.shop_account__module .shop-account-order__meta,
.shop_account__module .shop-account-order__text,
.shop_account__module .shop-account-favorite__meta,
.shop_account__module .shop-account-form__hint {
  color: var(--account-muted);
}
.shop_account__module .shop-account-messengers {
  border: 1px solid var(--account-border);
  background: linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
  padding: 1rem 1.1rem;
}
.shop_account__module .shop-account-messengers__intro {
  display: grid;
  gap: 0.25rem;
  margin-bottom: 0.85rem;
}
.shop_account__module .shop-account-messengers__title {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
}
.shop_account__module .shop-account-messengers__text {
  margin: 0;
  color: var(--account-muted);
  font-size: 0.9rem;
}
.shop_account__module .shop-account-messengers__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(15rem, 1fr));
  gap: 0.75rem;
}
.shop_account__module .shop-account-messenger {
  --messenger-color: var(--account-accent);
  display: grid;
  grid-template-columns: 3rem minmax(0, 1fr);
  gap: 0.8rem;
  align-items: center;
  border: 1px solid var(--account-border);
  background: #fff;
  padding: 0.9rem 1rem;
}
.shop_account__module .shop-account-messenger--telegram {
  --messenger-color: #229ed9;
  background: linear-gradient(180deg, #ffffff 0%, #f3fbff 100%);
}
.shop_account__module .shop-account-messenger--max {
  --messenger-color: #ff6a3d;
  background: linear-gradient(180deg, #ffffff 0%, #fff7f3 100%);
}
.shop_account__module .shop-account-messenger__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 999px;
  background: #f4f7fb;
  color: var(--messenger-color);
}
.shop_account__module .shop-account-messenger__icon svg {
  display: block;
  width: 1.45rem;
  height: 1.45rem;
}
.shop_account__module .shop-account-messenger__body {
  min-width: 0;
  display: grid;
  gap: 0.2rem;
}
.shop_account__module .shop-account-messenger__name {
  display: block;
  font-size: 0.96rem;
  line-height: 1.25;
}
.shop_account__module .shop-account-messenger__meta {
  color: var(--account-muted);
  font-size: 0.84rem;
}
.shop_account__module .shop-account-status {
  margin-bottom: 1rem;
  border: 1px solid var(--account-border);
  background: #fff;
  padding: 0.85rem 1rem;
}
.shop_account__module .shop-account-status.is-error {
  border-color: #f0c2c2;
  background: #fff3f3;
  color: var(--account-danger);
}
.shop_account__module .shop-account-status.is-success {
  border-color: #c4e6d0;
  background: #f2fbf5;
  color: var(--account-success);
}
.shop_account__module .shop-account-form {
  display: grid;
  gap: 0.85rem;
}
.shop_account__module .shop-account-provider {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.9rem;
}
.shop_account__module .shop-account-provider__disabled {
  border: 1px dashed var(--account-border);
  background: #fafbfd;
  padding: 0.85rem 0.95rem;
}
.shop_account__module .shop-account-provider__disabled-title {
  margin-bottom: 0.25rem;
  font-size: 0.9rem;
  font-weight: 600;
}
.shop_account__module .shop-account-provider__divider {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--account-muted);
  font-size: 0.82rem;
}
.shop_account__module .shop-account-provider__divider::before {
  content: "";
  position: absolute;
  inset: 50% 0 auto;
  border-top: 1px solid var(--account-border);
}
.shop_account__module .shop-account-provider__divider span {
  position: relative;
  z-index: 1;
  background: var(--account-surface);
  padding: 0 0.6rem;
}
.shop_account__module .shop-account-form__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}
.shop_account__module .shop-account-form__field {
  display: grid;
  gap: 0.35rem;
}
.shop_account__module .shop-account-form__field.is-span-2 {
  grid-column: span 2;
}
.shop_account__module .shop-account-form__label {
  font-size: 0.88rem;
  font-weight: 600;
}
.shop_account__module .shop-account-form__input {
  min-height: 2.85rem;
  border: 1px solid var(--account-border);
  background: #fff;
  padding: 0.7rem 0.8rem;
  color: var(--account-text);
}
.shop_account__module .shop-account-form__input:focus {
  outline: 2px solid rgba(30, 90, 167, 0.12);
  border-color: var(--account-accent);
}
.shop_account__module .shop-account-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}
.shop_account__module .shop-account-button,
.shop_account__module .shop-account-nav__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  border: 1px solid var(--account-border);
  background: #fff;
  color: var(--account-text);
  padding: 0.7rem 1rem;
  cursor: pointer;
  text-decoration: none;
}
.shop_account__module .shop-account-button--primary {
  border-color: var(--account-accent);
  background: var(--account-accent);
  color: #fff;
}
.shop_account__module .shop-account-button--soft {
  background: var(--account-accent-soft);
  border-color: #c9d8ef;
  color: var(--account-accent);
}
.shop_account__module .shop-account-button--provider {
  width: 100%;
  border-color: #b8d8c2;
  background: #f2f9f4;
  color: #0c6a31;
}
.shop_account__module .shop-account-nav {
  display: grid;
  gap: 0.55rem;
}
.shop_account__module .shop-account-nav__button {
  justify-content: flex-start;
  text-align: left;
}
.shop_account__module .shop-account-nav__button.is-active {
  border-color: var(--account-accent);
  background: var(--account-accent-soft);
  color: var(--account-accent);
}
.shop_account__module .shop-account-hero {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}
.shop_account__module .shop-account-hero__title {
  margin: 0;
  font-size: 1.4rem;
  font-weight: 700;
}
.shop_account__module .shop-account-hero__meta {
  margin-top: 0.3rem;
  color: var(--account-muted);
}
.shop_account__module .shop-account-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.8rem;
  margin-bottom: 1rem;
}
.shop_account__module .shop-account-stat {
  padding: 1rem;
}
.shop_account__module .shop-account-stat__label {
  display: block;
  color: var(--account-muted);
  font-size: 0.85rem;
}
.shop_account__module .shop-account-stat__value {
  display: block;
  margin-top: 0.35rem;
  font-size: 1.35rem;
  font-weight: 700;
}
.shop_account__module .shop-account-orders,
.shop_account__module .shop-account-favorites {
  display: grid;
  gap: 0.8rem;
}
.shop_account__module .shop-account-order,
.shop_account__module .shop-account-favorite,
.shop_account__module .shop-account-detail {
  padding: 1rem;
}
.shop_account__module .shop-account-favorite {
  overflow: hidden;
}
.shop_account__module .shop-account-favorite__layout {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 1rem;
  align-items: start;
}
.shop_account__module .shop-account-favorite__media {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  aspect-ratio: 1;
  border: 1px solid #edf1f5;
  background: #f8fafc;
  overflow: hidden;
}
.shop_account__module .shop-account-favorite__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.shop_account__module .shop-account-favorite__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: var(--account-muted);
  font-size: 1.15rem;
  font-weight: 700;
}
.shop_account__module .shop-account-favorite__content {
  min-width: 0;
  display: grid;
  gap: 0.8rem;
  overflow: hidden;
}
.shop_account__module .shop-account-order__top,
.shop_account__module .shop-account-favorite__top,
.shop_account__module .shop-account-detail__top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
}
.shop_account__module .shop-account-order__top > div,
.shop_account__module .shop-account-favorite__top > div,
.shop_account__module .shop-account-detail__top > div {
  min-width: 0;
  flex: 1 1 auto;
}
.shop_account__module .shop-account-favorite__top {
  display: grid;
  gap: 0.45rem;
  justify-content: stretch;
}
.shop_account__module .shop-account-order__title,
.shop_account__module .shop-account-favorite__title,
.shop_account__module .shop-account-detail__titleline {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
}
.shop_account__module .shop-account-favorite__title {
  display: block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.shop_account__module .shop-account-favorite__meta {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.shop_account__module .shop-account-badge {
  display: inline-flex;
  align-items: center;
  min-height: 1.8rem;
  padding: 0.2rem 0.55rem;
  border: 1px solid var(--account-border);
  background: #fff;
  font-size: 0.82rem;
  flex-shrink: 0;
}
.shop_account__module .shop-account-items,
.shop_account__module .shop-account-detail__items {
  display: grid;
  gap: 0.55rem;
  margin-top: 0.8rem;
}
.shop_account__module .shop-account-item-row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.55rem;
  border-top: 1px solid #edf1f5;
}
.shop_account__module .shop-account-item-row:first-child {
  border-top: none;
  padding-top: 0;
}
.shop_account__module {
  /* Записка «вы уже вошли»: одна карточка по центру колонки — она здесь единственное
     содержимое, и растягивать её на всю ширину кабинета незачем. */
}
.shop_account__module .shop-account-signed-in {
  max-width: 520px;
}
.shop_account__module .shop-account-item-row__image {
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  border-radius: 8px;
  object-fit: contain;
  background: #f5f7fa;
}
.shop_account__module .shop-account-item-row__body {
  flex: 1 1 auto;
  min-width: 0;
}
.shop_account__module .shop-account-item-row__name {
  font-weight: 600;
}
.shop_account__module .shop-account-item-row__meta {
  color: var(--account-muted);
  font-size: 0.88rem;
}
.shop_account__module .shop-account-summary {
  display: grid;
  gap: 0.35rem;
  margin-top: 0.8rem;
}
.shop_account__module .shop-account-summary__row {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}
.shop_account__module .shop-account-summary__row--total {
  padding-top: 0.5rem;
  border-top: 1px solid #edf1f5;
  font-weight: 700;
}
.shop_account__module .shop-account-split {
  display: grid;
  gap: 1rem;
}
@media (min-width: 1180px) {
  .shop_account__module .shop-account-split {
    grid-template-columns: minmax(0, 1.2fr) minmax(20rem, 0.8fr);
    align-items: start;
  }
}
@media (max-width: 960px) {
  .shop_account__module .shop-account-auth,
  .shop_account__module .shop-account-layout,
  .shop_account__module .shop-account-stats,
  .shop_account__module .shop-account-form__grid {
    grid-template-columns: 1fr;
  }
  .shop_account__module .shop-account-form__field.is-span-2 {
    grid-column: auto;
  }
  .shop_account__module .shop-account-hero,
  .shop_account__module .shop-account-order__top,
  .shop_account__module .shop-account-favorite__top,
  .shop_account__module .shop-account-detail__top,
  .shop_account__module .shop-account-item-row {
    flex-direction: column;
  }
  .shop_account__module .shop-account-favorite__layout {
    grid-template-columns: 1fr;
  }
  .shop_account__module .shop-account-favorite__media {
    width: min(9rem, 100%);
  }
}
.shop_account__module {
  /* --- Forgot / Reset password --- */
}
.shop_account__module .shop-account-auth--single {
  display: flex;
  justify-content: center;
}
.shop_account__module .shop-account-auth--single .shop-account-card {
  max-width: 28rem;
  width: 100%;
}
.shop_account__module .shop-account-link {
  background: none;
  border: none;
  color: var(--sa-accent, #2563EB);
  cursor: pointer;
  font-size: 0.875rem;
  padding: 0;
  text-decoration: none;
  transition: color 0.15s;
}
.shop_account__module .shop-account-link:hover {
  color: var(--sa-accent-hover, #1D4ED8);
  text-decoration: underline;
}
.shop_account__module .shop-account-actions .shop-account-link {
  margin-top: 0.25rem;
}
.shop_account__module {
  /* --- Addresses --- */
}
.shop_account__module .shop-account-panel__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 0.75rem;
}
.shop_account__module .shop-account-panel__header .shop-account-panel__title {
  margin-bottom: 0;
}
.shop_account__module .shop-account-addresses {
  display: grid;
  gap: 0.75rem;
}
.shop_account__module .shop-account-address {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 1.25rem;
  border: 1px solid var(--sa-border, #E2E8F0);
  border-radius: 0.5rem;
  background: var(--sa-surface, #fff);
  transition: border-color 0.15s;
}
.shop_account__module .shop-account-address.is-default {
  border-color: var(--sa-accent, #2563EB);
}
.shop_account__module .shop-account-address__body {
  flex: 1;
  min-width: 0;
}
.shop_account__module .shop-account-address__label {
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.shop_account__module .shop-account-address__details {
  font-size: 0.875rem;
  line-height: 1.5;
  color: var(--sa-text-muted, #64748B);
}
.shop_account__module .shop-account-address__comment {
  font-style: italic;
  opacity: 0.75;
}
.shop_account__module .shop-account-badge--small {
  font-size: 0.7rem;
  padding: 0.15em 0.5em;
  border-radius: 0.25rem;
  background: var(--sa-accent, #2563EB);
  color: #fff;
  font-weight: 500;
  white-space: nowrap;
}
.shop_account__module {
  /* --- Timeline --- */
}
.shop_account__module .shop-account-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0.75rem 0;
  margin-bottom: 0.75rem;
}
.shop_account__module .shop-account-timeline__step {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.4rem 0;
  position: relative;
}
.shop_account__module .shop-account-timeline__step:not(:last-child)::before {
  content: "";
  position: absolute;
  left: 0.4375rem;
  top: 1.4rem;
  bottom: -0.4rem;
  width: 2px;
  background: var(--sa-border, #E2E8F0);
}
.shop_account__module .shop-account-timeline__step.is-done:not(:last-child)::before {
  background: #22C55E;
}
.shop_account__module .shop-account-timeline__dot {
  width: 0.875rem;
  height: 0.875rem;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.15rem;
}
.shop_account__module .shop-account-timeline__step.is-pending .shop-account-timeline__dot {
  opacity: 0.5;
}
.shop_account__module .shop-account-timeline__label {
  font-size: 0.875rem;
  font-weight: 500;
}
.shop_account__module .shop-account-timeline__date {
  font-size: 0.75rem;
  color: var(--sa-text-muted, #64748B);
}
.shop_account__module {
  /* --- Order detail blocks --- */
}
.shop_account__module .shop-account-detail__block {
  padding: 0.75rem 0;
  border-top: 1px solid var(--sa-border, #E2E8F0);
}
.shop_account__module .shop-account-detail__subtitle {
  font-size: 0.95rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
}
.shop_account__module .shop-account-detail__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  padding: 0.2rem 0;
  font-size: 0.875rem;
}
.shop_account__module .shop-account-detail__row > span:first-child {
  color: var(--sa-text-muted, #64748B);
}
.shop_account__module .shop-account-detail__comment {
  padding: 0.75rem 0;
  font-size: 0.875rem;
  border-top: 1px solid var(--sa-border, #E2E8F0);
}
.shop_account__module .shop-account-item-row__options {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem 0.5rem;
  margin-top: 0.2rem;
}
.shop_account__module .shop-account-item-row__option {
  font-size: 0.75rem;
  color: var(--sa-text-muted, #64748B);
  background: var(--sa-surface-alt, #F1F5F9);
  padding: 0.1rem 0.4rem;
  border-radius: 0.2rem;
}
@media (max-width: 600px) {
  .shop_account__module .shop-account-address {
    flex-direction: column;
  }
  .shop_account__module .shop-account-panel__header {
    flex-direction: column;
    align-items: stretch;
  }
  .shop_account__module .shop-account-detail__row {
    flex-direction: column;
    align-items: flex-start;
  }
}
.shop_account__module {
  /* Мои запросы (Vue3 mount) */
}
.shop_account__module .shop-account-qr {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.shop_account__module .shop-account-qr__state {
  color: var(--sa-text-muted, #475569);
  padding: 0.75rem 0;
}
.shop_account__module .shop-account-qr__state--error {
  color: #b91c1c;
}
.shop_account__module .shop-account-qr__empty {
  padding: 0.75rem 0;
  color: var(--sa-text-muted, #475569);
}
.shop_account__module .shop-account-qr__list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.shop_account__module .shop-account-qr-card {
  cursor: pointer;
  display: flex;
  align-items: stretch;
  gap: 0.75rem;
  border: 1px solid var(--sa-border, #e2e8f0);
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  background: var(--sa-surface, #fff);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.shop_account__module .shop-account-qr-card:hover {
  border-color: var(--sa-accent, #2563eb);
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.06);
}
.shop_account__module .shop-account-qr-card--unread {
  border-left: 3px solid var(--sa-accent, #2563eb);
}
.shop_account__module .shop-account-qr-card__thumb {
  flex: 0 0 auto;
  width: 4rem;
  height: 4rem;
  border-radius: 0.4rem;
  overflow: hidden;
  background: var(--sa-surface-alt, #f1f5f9);
  border: 1px solid var(--sa-border, #e2e8f0);
  display: flex;
  align-items: center;
  justify-content: center;
}
.shop_account__module .shop-account-qr-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.shop_account__module .shop-account-qr-card__body {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
.shop_account__module .shop-account-qr-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.25rem;
}
.shop_account__module .shop-account-qr-card__title {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--sa-text, #0f172a);
}
.shop_account__module .shop-account-qr-card__excerpt {
  margin: 0.25rem 0 0.5rem;
  color: var(--sa-text-muted, #475569);
  font-size: 0.9rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.shop_account__module .shop-account-qr-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--sa-text-muted, #64748b);
}
.shop_account__module .shop-account-qr-status {
  font-size: 0.75rem;
  padding: 0.15rem 0.55rem;
  border-radius: 0.35rem;
  border: 1px solid currentColor;
  line-height: 1.2;
  white-space: nowrap;
}
.shop_account__module .shop-account-qr-status--new {
  color: #2563eb;
}
.shop_account__module .shop-account-qr-status--processed {
  color: #16a34a;
}
.shop_account__module .shop-account-qr-status--spam {
  color: #b91c1c;
}
.shop_account__module .shop-account-qr-status--unknown {
  color: var(--sa-text-muted, #64748b);
}
.shop_account__module .shop-account-qr-badge {
  background: var(--sa-accent, #2563eb);
  color: #fff;
  font-size: 0.75rem;
  padding: 0.1rem 0.45rem;
  border-radius: 0.8rem;
  font-weight: 600;
}
.shop_account__module .shop-account-qr__detail {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.shop_account__module .shop-account-qr__back {
  align-self: flex-start;
  background: none;
  border: none;
  color: var(--sa-accent, #2563eb);
  cursor: pointer;
  padding: 0;
  font-size: 0.9rem;
}
.shop_account__module .shop-account-qr__back:hover {
  text-decoration: underline;
}
.shop_account__module .shop-account-qr__detail-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.shop_account__module .shop-account-qr__detail-thumb {
  flex: 0 0 auto;
  width: 5rem;
  height: 5rem;
  border-radius: 0.4rem;
  overflow: hidden;
  background: var(--sa-surface-alt, #f1f5f9);
  border: 1px solid var(--sa-border, #e2e8f0);
}
.shop_account__module .shop-account-qr__detail-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.shop_account__module .shop-account-qr__detail-title-wrap {
  flex: 1 1 auto;
  min-width: 0;
}
.shop_account__module .shop-account-qr__detail-title {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 600;
}
.shop_account__module .shop-account-qr__detail-sku {
  margin-top: 0.15rem;
  font-size: 0.8rem;
  color: var(--sa-text-muted, #64748b);
}
.shop_account__module .shop-account-qr__thread {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.5rem 0;
}
.shop_account__module .shop-account-qr-msg {
  border-radius: 0.5rem;
  padding: 0.6rem 0.85rem;
  max-width: 85%;
  border: 1px solid var(--sa-border, #e2e8f0);
}
.shop_account__module .shop-account-qr-msg--client {
  align-self: flex-end;
  background: var(--sa-accent-soft, #eff6ff);
  border-color: var(--sa-accent-soft-border, #bfdbfe);
}
.shop_account__module .shop-account-qr-msg--admin {
  align-self: flex-start;
  background: var(--sa-surface-alt, #f8fafc);
}
.shop_account__module .shop-account-qr-msg--system {
  align-self: center;
  background: transparent;
  border: none;
  color: var(--sa-text-muted, #64748b);
  font-size: 0.8rem;
  text-align: center;
}
.shop_account__module .shop-account-qr-msg__head {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: var(--sa-text-muted, #64748b);
  margin-bottom: 0.25rem;
}
.shop_account__module .shop-account-qr-msg__author {
  font-weight: 600;
}
.shop_account__module .shop-account-qr-msg__body {
  white-space: pre-wrap;
  word-break: break-word;
  font-size: 0.92rem;
  color: var(--sa-text, #0f172a);
}
.shop_account__module .shop-account-qr__reply {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  border-top: 1px solid var(--sa-border, #e2e8f0);
  padding-top: 0.75rem;
}
.shop_account__module .shop-account-qr__textarea {
  width: 100%;
  min-height: 4rem;
  padding: 0.5rem 0.75rem;
  border-radius: 0.4rem;
  border: 1px solid var(--sa-border, #e2e8f0);
  font: inherit;
  resize: vertical;
}
.shop_account__module .shop-account-qr__textarea:focus {
  outline: none;
  border-color: var(--sa-accent, #2563eb);
}
.shop_account__module .shop-account-qr__reply-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
}
.shop_account__module .shop-account-qr__error {
  color: #b91c1c;
  font-size: 0.85rem;
}
.shop_account__module .shop-account-qr__submit {
  background: var(--sa-accent, #2563eb);
  color: #fff;
  border: none;
  padding: 0.45rem 1rem;
  border-radius: 0.4rem;
  cursor: pointer;
  font-size: 0.9rem;
}
.shop_account__module .shop-account-qr__submit:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
.shop_account__module .shop-account-nav__badge {
  display: inline-block;
  margin-left: 0.35rem;
  padding: 0.05rem 0.4rem;
  min-width: 1.1rem;
  text-align: center;
  background: var(--sa-accent, #2563eb);
  color: #fff;
  font-size: 0.7rem;
  line-height: 1.2;
  border-radius: 0.8rem;
  font-weight: 600;
}
.shop_account__module .shop-account-qr-informer {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--sa-surface, #fff);
  border: 1px solid var(--sa-border, #e2e8f0);
  border-radius: 0.45rem;
  padding: 0.4rem 0.7rem;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--sa-text, #0f172a);
  line-height: 1.2;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.shop_account__module .shop-account-qr-informer:hover {
  border-color: var(--sa-accent, #2563eb);
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.06);
}
.shop_account__module .shop-account-qr-informer--unread {
  border-color: var(--sa-accent, #2563eb);
  background: var(--sa-accent-soft, #eff6ff);
}
.shop_account__module .shop-account-qr-informer__icon {
  font-size: 1rem;
  line-height: 1;
}
.shop_account__module .shop-account-qr-informer__badge {
  display: inline-block;
  padding: 0.05rem 0.4rem;
  min-width: 1.1rem;
  text-align: center;
  background: var(--sa-accent, #2563eb);
  color: #fff;
  font-size: 0.72rem;
  line-height: 1.2;
  border-radius: 0.8rem;
  font-weight: 600;
}
.shop_account__module .shop-account-hero-logout {
  background: none;
  border: none;
  padding: 0.2rem 0;
  margin: 0;
  color: var(--account-muted, #6b7785);
  font: inherit;
  font-size: 0.9rem;
  text-decoration: underline;
  text-underline-offset: 3px;
  cursor: pointer;
}
.shop_account__module .shop-account-hero-logout:hover {
  color: var(--account-danger, #c43b3b);
}
.shop_account__module .shop-account-hero-logout:focus-visible {
  outline: 2px solid var(--account-accent, #1e5aa7);
  outline-offset: 2px;
}
.shop_account__module {
  /* Vue-confirm (shop-account-confirm.js) */
}
.shop_account__module .shop-account-confirm {
  /* Хост монтируется в <body>, вне .shop_account__module — продублируем
     палитру, иначе var(--account-*) в .shop-account-button* резолвятся
     в пустоту (кнопка визуально исчезает). */
  --account-bg: #f5f7fa;
  --account-surface: #ffffff;
  --account-border: #d7dde5;
  --account-text: #203040;
  --account-muted: #6b7785;
  --account-accent: #1e5aa7;
  --account-accent-soft: #eaf1fb;
  --account-success: #1f8b4c;
  --account-danger: #c43b3b;
  color: var(--account-text);
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.15s ease;
  padding: 1rem;
}
.shop_account__module .shop-account-confirm.is-visible {
  opacity: 1;
}
.shop_account__module .shop-account-confirm__dialog {
  background: #fff;
  border: 1px solid var(--account-border, #d7dde5);
  border-radius: 0.6rem;
  padding: 1.1rem 1.3rem 1.15rem;
  max-width: 28rem;
  width: 100%;
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.22);
  transform: translateY(6px);
  transition: transform 0.15s ease;
}
.shop_account__module .shop-account-confirm.is-visible .shop-account-confirm__dialog {
  transform: translateY(0);
}
.shop_account__module .shop-account-confirm__title {
  margin: 0 0 0.45rem;
  font-size: 1.08rem;
  font-weight: 700;
  color: var(--account-text, #203040);
}
.shop_account__module .shop-account-confirm__body {
  margin: 0 0 1rem;
  color: var(--account-muted, #6b7785);
  line-height: 1.45;
  font-size: 0.95rem;
}
.shop_account__module .shop-account-confirm__actions {
  display: flex;
  justify-content: flex-end;
  gap: 0.6rem;
}
.shop_account__module .shop-account-button--danger {
  border-color: var(--account-danger, #c43b3b);
  background: var(--account-danger, #c43b3b);
  color: #fff;
}
.shop_account__module .shop-account-confirm__field {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  margin: 0 0 1rem;
}
.shop_account__module .shop-account-confirm__label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--account-text, #203040);
}
.shop_account__module .shop-account-confirm__input,
.shop_account__module .shop-account-confirm__textarea {
  width: 100%;
  min-height: 2.6rem;
  padding: 0.5rem 0.7rem;
  border: 1px solid var(--account-border, #d7dde5);
  background: #fff;
  border-radius: 0.35rem;
  font: inherit;
  color: var(--account-text, #203040);
  box-sizing: border-box;
}
.shop_account__module .shop-account-confirm__textarea {
  min-height: 5rem;
  resize: vertical;
  line-height: 1.4;
}
.shop_account__module .shop-account-confirm__input:focus,
.shop_account__module .shop-account-confirm__textarea:focus {
  outline: 2px solid rgba(30, 90, 167, 0.12);
  border-color: var(--account-accent, #1e5aa7);
}
.shop_account__module .shop-account-button:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
.shop_account__module .shop-account-qr__closed {
  border: 1px solid var(--sa-border, #e2e8f0);
  background: var(--sa-surface-alt, #f8fafc);
  color: var(--sa-text-muted, #64748b);
  padding: 0.75rem 1rem;
  border-radius: 0.4rem;
  font-size: 0.9rem;
  line-height: 1.4;
  margin-top: 0.5rem;
}
.shop_account__module .shop-account-qr__close-btn {
  background: none;
  border: 1px solid var(--sa-border, #e2e8f0);
  color: var(--sa-text-muted, #64748b);
  padding: 0.4rem 0.9rem;
  border-radius: 0.4rem;
  font-size: 0.85rem;
  cursor: pointer;
  margin-right: auto;
  transition: color 0.15s ease, border-color 0.15s ease;
}
.shop_account__module .shop-account-qr__close-btn:hover:not(:disabled) {
  color: #b91c1c;
  border-color: #fca5a5;
}
.shop_account__module .shop-account-qr__close-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}
.shop_account__module .shop-account-qr-status--closed {
  color: #6b7785;
  background: #f1f5f9;
  border-color: #cbd5e1;
}
.shop_account__module .shop-account-address__preferred {
  display: inline-block;
  margin-top: 0.3rem;
  padding: 0.1rem 0.45rem;
  font-size: 0.8rem;
  color: var(--account-accent, #1e5aa7);
  background: var(--account-accent-soft, #eaf1fb);
  border-radius: 0.3rem;
}
.shop_account__module {
  /* Коллекции избранного */
}
.shop_account__module .shop-account-collections {
  margin: 0.5rem 0 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.shop_account__module .shop-account-collection-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.shop_account__module .shop-account-collection-chip {
  padding: 0.4rem 0.8rem;
  border: 1px solid var(--account-border, #d7dde5);
  background: #fff;
  color: var(--account-text, #0f172a);
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.88rem;
  line-height: 1.2;
  transition: border-color 0.15s ease, background 0.15s ease;
}
.shop_account__module .shop-account-collection-chip:hover {
  border-color: var(--account-accent, #1e5aa7);
}
.shop_account__module .shop-account-collection-chip.is-active {
  background: var(--account-accent, #1e5aa7);
  border-color: var(--account-accent, #1e5aa7);
  color: #fff;
}
.shop_account__module .shop-account-collection-chip__count {
  margin-left: 0.3rem;
  padding: 0 0.35rem;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 0.6rem;
  font-size: 0.75rem;
}
.shop_account__module .shop-account-collection-chip.is-active .shop-account-collection-chip__count {
  background: rgba(255, 255, 255, 0.25);
}
.shop_account__module .shop-account-collection-chip__badge {
  display: inline-block;
  margin-left: 0.4rem;
  padding: 0 0.35rem;
  font-size: 0.7rem;
  border-radius: 0.25rem;
  background: rgba(0, 0, 0, 0.08);
}
.shop_account__module .shop-account-collection-chip--add {
  border-style: dashed;
  color: var(--account-muted, #6b7785);
}
.shop_account__module .shop-account-collection-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.88rem;
}
.shop_account__module .shop-account-link {
  background: none;
  border: none;
  padding: 0;
  color: var(--account-accent, #1e5aa7);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.shop_account__module .shop-account-link:hover {
  color: #103e73;
}
.shop_account__module .shop-account-link--danger {
  color: var(--account-danger, #c43b3b);
}
.shop_account__module .shop-account-link--danger:hover {
  color: #8c1f1f;
}
.shop_account__module {
  /* Select-mode карточки + bulk bar */
}
.shop_account__module .shop-account-favorite__checkbox {
  position: absolute;
  top: 0.6rem;
  left: 0.6rem;
  background: rgba(255, 255, 255, 0.9);
  padding: 0.2rem 0.35rem;
  border-radius: 0.3rem;
  z-index: 2;
}
.shop_account__module .shop-account-favorite {
  position: relative;
}
.shop_account__module .shop-account-favorite.is-selected {
  outline: 2px solid var(--account-accent, #1e5aa7);
  outline-offset: -2px;
}
.shop_account__module .shop-account-favorites-bulkbar {
  position: sticky;
  bottom: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  align-items: center;
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  background: #fff;
  border: 1px solid var(--account-border, #d7dde5);
  border-radius: 0.5rem;
  box-shadow: 0 -2px 8px rgba(15, 23, 42, 0.06);
}
.shop_account__module .shop-account-favorites-bulkbar__label {
  font-weight: 600;
  margin-right: auto;
}
.shop_account__module .shop-account-favorites-bulkbar select {
  min-width: 14rem;
}
.shop_account__module .shop-account-panel--bonuses .shop-account-bonus-balance {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.15rem;
}
.shop_account__module .shop-account-bonus-balance__label {
  font-size: 0.8rem;
  color: var(--account-muted, #6b7582);
}
.shop_account__module .shop-account-bonus-balance__value {
  font-size: 1.35rem;
  font-weight: 700;
}
.shop_account__module .shop-account-bonuses-table-wrap {
  overflow-x: auto;
}
.shop_account__module .shop-account-bonuses-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0.25rem;
}
.shop_account__module .shop-account-bonuses-table th,
.shop_account__module .shop-account-bonuses-table td {
  text-align: left;
  padding: 0.6rem 0.75rem;
  border-bottom: 1px solid var(--account-border, #e3e7ed);
  font-size: 0.95rem;
}
.shop_account__module .shop-account-bonuses-table thead th {
  font-weight: 600;
  color: var(--account-muted, #6b7582);
  background: #f7f9fc;
}
.shop_account__module .shop-account-bonus-cell--amount {
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.shop_account__module .shop-account-bonus-row--credit .shop-account-bonus-cell--amount {
  color: #198754;
}
.shop_account__module .shop-account-bonus-row--debit .shop-account-bonus-cell--amount {
  color: #b02a37;
}
.shop_account__module .shop-account-notifications-wrap {
  overflow-x: auto;
  margin-top: 0.5rem;
}
.shop_account__module .shop-account-notifications-table {
  width: 100%;
  border-collapse: collapse;
}
.shop_account__module .shop-account-notifications-table th,
.shop_account__module .shop-account-notifications-table td {
  padding: 0.75rem 0.9rem;
  border-bottom: 1px solid var(--account-border, #e3e7ed);
  vertical-align: middle;
}
.shop_account__module .shop-account-notifications-table thead th {
  background: #f7f9fc;
  color: var(--account-muted, #6b7582);
  font-weight: 600;
  text-align: center;
  font-size: 0.9rem;
}
.shop_account__module .shop-account-notifications-table thead th:first-child {
  text-align: left;
}
.shop_account__module .shop-account-notifications__col--disabled {
  opacity: 0.5;
}
.shop_account__module .shop-account-notifications__topic {
  text-align: left;
  font-weight: 500;
  max-width: 28rem;
}
.shop_account__module .shop-account-notifications__hint {
  font-size: 0.82rem;
  color: var(--account-muted, #6b7582);
  margin-top: 0.15rem;
  font-weight: 400;
}
.shop_account__module .shop-account-notifications__cell {
  text-align: center;
  width: 7rem;
}
.shop_account__module .shop-account-notifications__status {
  margin-top: 0.5rem;
  font-size: 0.85rem;
  color: var(--account-muted, #6b7582);
}
.shop_account__module .shop-account-checkbox {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
.shop_account__module .shop-account-checkbox input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.shop_account__module .shop-account-checkbox__mark {
  display: inline-block;
  width: 1.15rem;
  height: 1.15rem;
  border: 2px solid var(--account-border, #c7ced8);
  border-radius: 0.3rem;
  background: #fff;
  position: relative;
  transition: all 0.15s ease;
}
.shop_account__module .shop-account-checkbox input:checked + .shop-account-checkbox__mark {
  background: var(--account-accent, #1e5aa7);
  border-color: var(--account-accent, #1e5aa7);
}
.shop_account__module .shop-account-checkbox input:checked + .shop-account-checkbox__mark::after {
  content: "";
  position: absolute;
  left: 3px;
  top: -1px;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.shop_account__module .shop-account-checkbox input:disabled + .shop-account-checkbox__mark {
  opacity: 0.4;
  cursor: not-allowed;
}
.shop_account__module .shop-account-coupons {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 0.5rem;
}
.shop_account__module .shop-account-coupon {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--account-border, #d7dde5);
  border-radius: 0.6rem;
  background: #fff;
}
.shop_account__module .shop-account-coupon--expired,
.shop_account__module .shop-account-coupon--limit_reached {
  opacity: 0.55;
  background: #f7f9fc;
}
.shop_account__module .shop-account-coupon__discount {
  font-size: 1.6rem;
  font-weight: 700;
  padding: 0.5rem 0.9rem;
  background: var(--account-accent, #1e5aa7);
  color: #fff;
  border-radius: 0.4rem;
  white-space: nowrap;
  flex-shrink: 0;
}
.shop_account__module .shop-account-coupon--expired .shop-account-coupon__discount,
.shop_account__module .shop-account-coupon--limit_reached .shop-account-coupon__discount {
  background: #9aa5b3;
}
.shop_account__module .shop-account-coupon__body {
  flex: 1 1 auto;
  min-width: 0;
}
.shop_account__module .shop-account-coupon__code {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}
.shop_account__module .shop-account-coupon__code code {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 1rem;
  padding: 0.25rem 0.5rem;
  background: #eef2f7;
  border-radius: 0.3rem;
  font-weight: 600;
}
.shop_account__module .shop-account-coupon__status {
  font-size: 0.8rem;
  color: var(--account-muted, #6b7582);
}
.shop_account__module .shop-account-coupon--expired .shop-account-coupon__status,
.shop_account__module .shop-account-coupon--limit_reached .shop-account-coupon__status {
  color: #b02a37;
}
.shop_account__module .shop-account-coupon__meta {
  margin-top: 0.3rem;
  font-size: 0.85rem;
  color: var(--account-muted, #6b7582);
}
.shop_account__module .shop-account-coupon__actions {
  flex-shrink: 0;
}
.shop_account__module .shop-account-button--small {
  padding: 0.35rem 0.7rem;
  font-size: 0.85rem;
}
@media (max-width: 600px) {
  .shop_account__module .shop-account-coupon {
    flex-wrap: wrap;
  }
  .shop_account__module .shop-account-coupon__actions {
    flex: 1 1 100%;
  }
}
.shop_account__module .shop-account-messengers-list {
  list-style: none;
  padding: 0;
  margin: 0.5rem 0 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.shop_account__module .shop-account-messenger-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--account-border, #d7dde5);
  border-radius: 0.5rem;
  background: #fff;
}
.shop_account__module .shop-account-messenger-row__body {
  flex: 1 1 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.75rem;
  align-items: center;
  min-width: 0;
}
.shop_account__module .shop-account-messenger-row__external {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  background: #eef2f7;
  padding: 0.15rem 0.5rem;
  border-radius: 0.3rem;
  font-size: 0.9rem;
}
.shop_account__module .shop-account-messenger-row__meta {
  font-size: 0.85rem;
  color: var(--account-muted, #6b7582);
}
.shop_account__module .shop-account-messenger-actions {
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.25rem;
}
.shop_account__module .shop-account-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.shop_account__module .shop-account-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.55);
}
.shop_account__module .shop-account-modal__panel {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 0.75rem;
  box-shadow: 0 20px 50px rgba(15, 23, 42, 0.25);
  padding: 1.5rem;
  max-width: 420px;
  width: 100%;
  text-align: center;
}
.shop_account__module .shop-account-modal__close {
  position: absolute;
  top: 0.5rem;
  right: 0.75rem;
  background: transparent;
  border: 0;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  color: var(--account-muted, #6b7582);
}
.shop_account__module .shop-account-modal__title {
  margin: 0 0 0.5rem 0;
  font-size: 1.15rem;
}
.shop_account__module .shop-account-modal__hint {
  color: var(--account-muted, #6b7582);
  font-size: 0.9rem;
  margin: 0 0 1rem 0;
}
.shop_account__module .shop-account-modal__qr {
  margin: 0 auto 1rem auto;
  width: 240px;
  height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--account-border, #d7dde5);
  border-radius: 0.5rem;
  padding: 0.5rem;
}
.shop_account__module .shop-account-modal__qr svg {
  width: 100%;
  height: 100%;
  display: block;
}
.shop_account__module .shop-account-modal__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.shop_account__module .shop-account-modal__status {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  color: var(--account-muted, #6b7582);
  font-size: 0.9rem;
}
.shop_account__module .shop-account-modal__spinner {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid var(--account-border, #d7dde5);
  border-top-color: var(--account-primary, #2563eb);
  animation: shop-account-spin 0.9s linear infinite;
}
.shop_account__module {
  /* === Reviews tab === */
}
.shop_account__module .shop-account-subpanel {
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid var(--account-border, #e5e9ef);
}
.shop_account__module .shop-account-subpanel:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}
.shop_account__module .shop-account-subpanel__title {
  margin: 0 0 12px;
  font-size: 16px;
  font-weight: 600;
  color: var(--account-text, #1f2937);
}
.shop_account__module .shop-account-empty {
  color: var(--account-muted, #6b7280);
  font-size: 14px;
}
.shop_account__module .shop-account-review-list {
  display: grid;
  gap: 16px;
}
.shop_account__module .shop-account-review-card {
  padding: 16px;
  border: 1px solid var(--account-border, #e5e9ef);
  border-radius: 12px;
  background: #fff;
}
.shop_account__module .shop-account-review-card__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
  gap: 12px;
}
.shop_account__module .shop-account-review-card__title {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
}
.shop_account__module .shop-account-review-card__badge {
  padding: 2px 8px;
  border-radius: 999px;
  background: var(--account-success-bg, #d1fae5);
  color: var(--account-success, #047857);
  font-size: 11px;
  font-weight: 500;
  white-space: nowrap;
}
.shop_account__module .shop-account-review-card__rating {
  margin-bottom: 8px;
}
.shop_account__module .shop-account-review-card__comment,
.shop_account__module .shop-account-review-card__merits,
.shop_account__module .shop-account-review-card__demerits {
  margin: 6px 0;
  color: var(--account-text, #1f2937);
  font-size: 14px;
  line-height: 1.5;
}
.shop_account__module .shop-account-review-card__media {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.shop_account__module .shop-account-review-card__media-item {
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--account-border, #e5e9ef);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 24px;
  background: var(--account-surface, #f8fafc);
}
.shop_account__module .shop-account-review-card__actions {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.shop_account__module .shop-account-review-eligibles {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
}
.shop_account__module .shop-account-review-eligible {
  padding: 12px;
  border: 1px solid var(--account-border, #e5e9ef);
  border-radius: 10px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.shop_account__module .shop-account-review-eligible__name {
  font-weight: 600;
  font-size: 14px;
}
.shop_account__module .shop-account-review-eligible__date {
  font-size: 12px;
  color: var(--account-muted, #6b7280);
}
.shop_account__module .shop-account-stars-input {
  display: inline-flex;
  gap: 2px;
}
.shop_account__module .shop-account-star {
  background: none;
  border: 0;
  padding: 2px 4px;
  font-size: 24px;
  line-height: 1;
  color: #cbd5e1;
  cursor: pointer;
}
.shop_account__module .shop-account-star.is-filled {
  color: #f59e0b;
}
.shop_account__module .shop-account-form__row--media {
  margin-top: 16px;
}
.shop_account__module .shop-account-form__media-picker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border: 1px dashed var(--account-border, #cbd5e1);
  border-radius: 10px;
  background: var(--account-surface, #f8fafc);
  color: var(--account-text, #1f2937);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s;
}
.shop_account__module .shop-account-form__media-picker:hover {
  background: #eef2f7;
  border-color: var(--account-primary, #2563eb);
}
.shop_account__module .shop-account-form__media-picker input[type=file] {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
}
.shop_account__module .shop-account-form__media-picker-icon {
  font-size: 18px;
}
.shop_account__module .shop-account-form__media-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 10px;
  margin-top: 12px;
}
.shop_account__module .shop-account-form__media-item {
  position: relative;
  border: 1px solid var(--account-border, #e5e9ef);
  border-radius: 10px;
  overflow: hidden;
  background: var(--account-surface, #f8fafc);
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.shop_account__module .shop-account-form__media-item--pending {
  border-style: dashed;
  border-color: var(--account-primary, #2563eb);
}
.shop_account__module .shop-account-form__media-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.shop_account__module .shop-account-form__media-video {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--account-muted, #6b7280);
  background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
}
.shop_account__module .shop-account-form__media-remove {
  position: absolute;
  top: 4px;
  right: 4px;
  width: 24px;
  height: 24px;
  border: 0;
  border-radius: 50%;
  background: rgba(15, 23, 42, 0.75);
  color: #fff;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.shop_account__module .shop-account-form__media-remove:hover {
  background: rgba(220, 38, 38, 0.9);
}
.shop_account__module .shop-account-form__media-pending-tag {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2px 6px;
  background: var(--account-primary, #2563eb);
  color: #fff;
  font-size: 10px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.shop_account__module .shop-account-form__hint {
  margin: 6px 0 0;
  color: var(--account-muted, #6b7280);
  font-size: 12px;
}
.shop_account__module .shop-account-form__row textarea,
.shop_account__module .shop-account-form__row input[type=text] {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--account-border, #d7dde5);
  border-radius: 8px;
  font-size: 14px;
  background: #fff;
  color: var(--account-text, #1f2937);
  box-sizing: border-box;
  font-family: inherit;
}
.shop_account__module .shop-account-form__row textarea {
  resize: vertical;
  min-height: 80px;
}
.shop_account__module .shop-account-form__row textarea:focus,
.shop_account__module .shop-account-form__row input[type=text]:focus {
  outline: none;
  border-color: var(--account-primary, #2563eb);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}
.shop_account__module .shop-account-form__header {
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--account-border, #e5e9ef);
}
.shop_account__module .shop-account-form__title {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
}
.shop_account__module .shop-account-form__actions {
  display: flex;
  gap: 8px;
  margin-top: 16px;
  flex-wrap: wrap;
}

/* /skin/global.c00dd1ed.css */
@font-face{font-display:swap;font-family:Lato;font-style:normal;font-weight:900;src:url(/skin/fonts/lato/Lato-Black.2de884bd.woff2) format("woff2"),url(/skin/fonts/lato/Lato-Black.5c2c6ab1.woff) format("woff")}@font-face{font-display:swap;font-family:Lato;font-style:normal;font-weight:700;src:url(/skin/fonts/lato/Lato-Bold.9118d20c.woff2) format("woff2"),url(/skin/fonts/lato/Lato-Bold.50786d2e.woff) format("woff")}@font-face{font-display:swap;font-family:Lato;font-style:italic;font-weight:900;src:url(/skin/fonts/lato/Lato-BlackItalic.cdc2988e.woff2) format("woff2"),url(/skin/fonts/lato/Lato-BlackItalic.e35946ec.woff) format("woff")}@font-face{font-display:swap;font-family:Lato;font-style:italic;font-weight:700;src:url(/skin/fonts/lato/Lato-BoldItalic.def1bf79.woff2) format("woff2"),url(/skin/fonts/lato/Lato-BoldItalic.8c80015e.woff) format("woff")}@font-face{font-display:swap;font-family:Lato;font-style:normal;font-weight:700;src:url(/skin/fonts/lato/Lato-ExtraBold.eca0dde1.woff2) format("woff2"),url(/skin/fonts/lato/Lato-ExtraBold.609dd614.woff) format("woff")}@font-face{font-display:swap;font-family:Lato;font-style:italic;font-weight:700;src:url(/skin/fonts/lato/Lato-ExtraBoldItalic.1bf3e89c.woff2) format("woff2"),url(/skin/fonts/lato/Lato-ExtraBoldItalic.47c1ac60.woff) format("woff")}@font-face{font-display:swap;font-family:Lato;font-style:normal;font-weight:200;src:url(/skin/fonts/lato/Lato-ExtraLight.75cc8b71.woff2) format("woff2"),url(/skin/fonts/lato/Lato-ExtraLight.65f2d052.woff) format("woff")}@font-face{font-display:swap;font-family:Lato;font-style:italic;font-weight:200;src:url(/skin/fonts/lato/Lato-ExtraLightItalic.d15f8c4f.woff2) format("woff2"),url(/skin/fonts/lato/Lato-ExtraLightItalic.aa72b30b.woff) format("woff")}@font-face{font-display:swap;font-family:Lato;font-style:italic;font-weight:400;src:url(/skin/fonts/lato/Lato-Italic.c9589bd6.woff2) format("woff2"),url(/skin/fonts/lato/Lato-Italic.15cc0612.woff) format("woff")}@font-face{font-display:swap;font-family:Lato;font-style:normal;font-weight:300;src:url(/skin/fonts/lato/Lato-Light.8b9897bb.woff2) format("woff2"),url(/skin/fonts/lato/Lato-Light.4e527ae9.woff) format("woff")}@font-face{font-display:swap;font-family:Lato;font-style:italic;font-weight:300;src:url(/skin/fonts/lato/Lato-LightItalic.5eb8473f.woff2) format("woff2"),url(/skin/fonts/lato/Lato-LightItalic.5f9b2a85.woff) format("woff")}@font-face{font-display:swap;font-family:Lato;font-style:normal;font-weight:500;src:url(/skin/fonts/lato/Lato-Medium.2108ab59.woff2) format("woff2"),url(/skin/fonts/lato/Lato-Medium.76f1a010.woff) format("woff")}@font-face{font-display:swap;font-family:Lato;font-style:italic;font-weight:500;src:url(/skin/fonts/lato/Lato-MediumItalic.363cb762.woff2) format("woff2"),url(/skin/fonts/lato/Lato-MediumItalic.1be102c5.woff) format("woff")}@font-face{font-display:swap;font-family:Lato;font-style:normal;font-weight:400;src:url(/skin/fonts/lato/Lato-Regular.dc3e5b6c.woff2) format("woff2"),url(/skin/fonts/lato/Lato-Regular.c59a1688.woff) format("woff")}@font-face{font-display:swap;font-family:Lato;font-style:normal;font-weight:600;src:url(/skin/fonts/lato/Lato-SemiBold.6e516ee1.woff2) format("woff2"),url(/skin/fonts/lato/Lato-SemiBold.03f7a682.woff) format("woff")}@font-face{font-display:swap;font-family:Lato;font-style:italic;font-weight:600;src:url(/skin/fonts/lato/Lato-SemiBoldItalic.ae7cbd07.woff2) format("woff2"),url(/skin/fonts/lato/Lato-SemiBoldItalic.cdcf1710.woff) format("woff")}@font-face{font-display:swap;font-family:Lato;font-style:normal;font-weight:100;src:url(/skin/fonts/lato/Lato-Thin.58379296.woff2) format("woff2"),url(/skin/fonts/lato/Lato-Thin.b9e143f9.woff) format("woff")}@font-face{font-display:swap;font-family:Lato;font-style:italic;font-weight:100;src:url(/skin/fonts/lato/Lato-ThinItalic.d5c0cb7e.woff2) format("woff2"),url(/skin/fonts/lato/Lato-ThinItalic.7c41114b.woff) format("woff")}*,:after,:before{box-sizing:border-box}:where(ul,ol):where([class]){padding-left:0}:where(ul,ol):where(:not([class]))>li:not(:last-child){margin-bottom:.333em}:where(blockquote,figure):where([class]),body{margin:0}:where(h1,h2,h3,h4,h5,h6,p,ul,ol,dl):where([class]){margin-block:0}:where(dd[class]){margin-left:0}:where(fieldset[class]){border:none;margin-left:0;padding:0}:where(ul[class]){list-style:none}:where(address[class]){font-style:normal}p{--paragraphMarginBottom:1.1em;margin-block:0}p:where(:not([class]):not(:last-child)){margin-bottom:var(--paragraphMarginBottom)}img,svg,video{display:block;height:auto;max-width:100%}button,input,select,textarea{font:inherit}html{height:100%;scrollbar-gutter:stable}:has(:target),html{scroll-behavior:smooth}body{line-height:1.5;min-height:100%}a:where([class]){display:inline-flex}button,label{cursor:pointer}svg *{transition-property:fill,stroke}@media (prefers-reduced-motion:reduce){*,:after,:before{animation-duration:.01ms!important;animation-iteration-count:1!important;scroll-behavior:auto!important;transition-duration:.01ms!important}}:root{--bg-dark:#4b4b5e;--bg-white:#fff;--bg-light:#f3f3f6;--bg-vlight:#f9f9f9;--color-white:#fff;--color-main:#191e32;--color-link:#e53350;--font-family-base:"Lato";--container-width:1320px;--container-padding-x:20px;--container-negative-padding-x:-20px;--section-padding-y:70px;--transition-duration:0.3s;--100vw:calc(100vw - var(--scrollbar-width));--height-form-elements:55px;--color-light-red:#ff755e}@media (width > 68.81125rem){:root{--section-padding-y:90px;--container-padding-x:30px;--container-negative-padding-x:-30px}}.container,.container-enlarged{margin-inline:auto;max-width:82.5rem;padding-inline:var(--container-padding-x)}@media (width > 68.81125rem){.container,.container-enlarged{max-width:83.75rem}}.container-enlarged{max-width:111.25rem}@media (width > 68.81125rem){.container-enlarged{max-width:112.5rem}}.visually-hidden{border:0!important;clip-path:inset(100%)!important;height:1px!important;margin:-1px!important;padding:0!important;position:absolute!important;white-space:nowrap!important;width:1px!important;clip:rect(0 0 0 0)!important;overflow:hidden!important}@media (width <= 37.56125rem){.hidden-mobile{display:none!important}}@media (width > 37.56125rem){.visible-mobile{display:none!important}}@media (width > 68.81125rem){.hidden-pc{display:none!important}}@media (width <= 68.81125rem){.visible-pc{display:none!important}}.icon-close{position:relative}.icon-close:after,.icon-close:before{background-color:var(--color-main);border-radius:3px;bottom:0;content:"";height:1px;left:0;margin:auto;position:absolute;right:0;top:0;transform:rotate(45deg);width:1.125rem}.icon-close:before{transform:rotate(-45deg)}.bg-light{background-color:var(--bg-light)}.bg-vlight{background-color:var(--bg-vlight)}.pt0{padding-top:0!important}.pt30{padding-top:1.875rem!important}.next-page-block{align-items:center;display:flex;justify-content:center}.corner{position:relative}.corner:before{border:.0625rem solid var(--bg-dark);border-right:none;border-top:none;bottom:0;content:"";height:2.5rem;left:0;position:absolute;transition-duration:var(--transition-duration);width:1rem}a.corner:hover:before{border-color:#ff755e;height:0;width:100%}.link-arrow{color:#191e32;display:block;font-size:1rem;position:relative;width:100%}.link-arrow:hover{text-decoration:none}.link-arrow:after,.link-arrow:before{bottom:0;content:"";display:block;margin:auto;position:absolute;right:0;text-decoration:underline;top:0}.link-arrow:after{background-color:currentColor;height:.0625rem;width:1.375rem}.link-arrow:before{border:.0625rem solid;border-bottom:none;border-left:none;height:.875rem;right:.125rem;rotate:45deg;width:.875rem}.corusel-title{align-items:center;display:flex;flex-wrap:wrap}.corusel-title .section__title{margin-right:auto}.corusel-title__navigate{align-items:center;display:flex;justify-content:space-between;margin-top:1.8125rem;width:100%}@media (width > 48.06125rem){.corusel-title__navigate{margin-top:0;width:auto}}.corusel-title__link{font-size:1rem}@media (width > 48.06125rem){.corusel-title__link{margin-right:3.8125rem}}.corusel-title__btns-blok{display:flex;gap:1.25rem}@media (width > 48.06125rem){.corusel-title{flex-wrap:nowrap}}.swiper-slide{height:auto!important}.date-publication{font-size:.8125rem}.link-all{color:inherit;font-weight:500}.button-next,.button-prev{background-image:url(/skin/img/slider-arrow.f81a5be6.svg);background-position:50%;background-repeat:no-repeat;background-size:contain;cursor:pointer;height:2.375rem;transition-duration:var(--transition-duration);width:2.375rem}.button-next.swiper-button-disabled,.button-prev.swiper-button-disabled{cursor:default;opacity:.5}.button-next{rotate:180deg}html.is-lock{overflow:hidden}body{color:var(--color-main);font-family:var(--font-family-base);font-size:1rem;font-weight:300;line-height:1.22}@media (width > 61.93625rem){body{font-size:1.125rem}}.h1,.h2,.h3,.h4,.h5,.h6,h1,h2,h3,h4,h5,h6{font-weight:400;line-height:1.2}.h1{font-size:2rem;font-weight:300}@media (width > 48.06125rem){.h1{font-size:2.1875rem}}@media (width > 68.81125rem){.h1{font-size:3.4375rem}}.h2{font-size:1.875rem;font-weight:300;letter-spacing:.0125rem}@media (width > 48.06125rem){.h2{font-size:2.1875rem}}@media (width > 61.93625rem){.h2{font-size:2.5rem}}@media (width > 68.81125rem){.h2{font-size:2.8125rem}}.h3{font-size:2.1875rem;font-weight:300}@media (width > 61.93625rem){.h3{font-size:2.5rem}}@media (width > 68.81125rem){.h3{font-size:2.8125rem}}.h4{font-size:1.125rem;font-weight:500}.h5{font-size:1rem;font-weight:400}.button,a,button,input,label,select,svg *,textarea{transition-duration:var(--transition-duration)}.button,button{background-color:transparent;border:none;border-radius:0;text-decoration:none}.button:disabled,button:disabled{opacity:.8}a{color:var(--color-link);text-decoration:underline}@media (any-hover:hover){a:hover{text-decoration:none}}@media (any-hover:none){a:active{text-decoration:none}}:focus-visible{outline:.0625rem solid currentColor;transition-duration:0s!important}:where(ul,ol):where(:not([class])){margin-block:1em}:where(ul,ol):where(:not([class])) li:not(:last-child){margin-bottom:.375rem}:where(ul,ol):where(:not([class])):first-child{margin-top:0}:where(ul,ol):where(:not([class])):last-child{margin-bottom:0}:where(ul,ol):where(:not([class])){list-style:none;padding-left:1.375rem}:where(ul,ol):where(:not([class])) li{position:relative}:where(ul,ol):where(:not([class])) li:before{background-color:currentColor;bottom:0;content:"";height:.0625rem;left:-1.25rem;margin:auto;position:absolute;top:0;width:.625rem}strong{font-weight:600}::backdrop{background-color:rgba(0,0,0,.5)}table:where(:not([class])){border:none;border-spacing:0;color:#000;font-size:1rem;line-height:1.3;margin-block:1em;text-align:left;width:100%}table:where(:not([class])) td{padding-block:.5625rem;padding-inline:.1875rem}table:where(:not([class])) th{font-weight:400;padding-bottom:1.1875rem;padding-top:0}table:where(:not([class])) tbody tr td{border-bottom:.0625rem solid rgba(176,182,196,.4)}table:where(:not([class])) strong{font-weight:500}.section{padding-block:var(--section-padding-y)}.section .section{padding-block:0}.section__title-wrapper{margin-bottom:1.875rem}@media (width > 48.06125rem){.section__title-wrapper{margin-bottom:2.5rem}}.section__title{text-align:left}.to_up,[data-js-modal-content-button]{cursor:pointer}.to_up{background-color:#1d9dbd;border-radius:50%;bottom:5rem;box-shadow:.0625rem .125rem 1.25rem rgba(0,0,0,.2);color:transparent;display:none;height:2.625rem;position:fixed;right:.9375rem;width:2.625rem;z-index:41}.to_up:hover{background-color:var(--color-promo)}@media (width > 28.81125rem){.to_up{height:3.125rem;width:3.125rem}}@media (width > 61.93625rem){.to_up{bottom:1.875rem;left:1.875rem;right:auto}}.to_up:after{border:.1875rem solid #fff;border-bottom:none;border-right:none;bottom:-.3125rem;content:"";height:.625rem;left:0;margin:auto;position:absolute;right:0;top:0;transform:rotate(45deg);width:.625rem}.fix .to_up{display:block}.blokinfo{bottom:0;display:none;left:0;padding:.625rem;position:fixed;right:0;z-index:80}@media (width > 37.56125rem){.blokinfo{left:10%;padding:1.25rem;width:18.125rem}}.blokinfo__container{background-color:#fff;box-shadow:0 4px 25px rgba(0,0,0,.2);max-width:15.625rem;padding:.625rem;text-align:center;width:100%}@media (width > 37.56125rem){.blokinfo__container{padding:1.25rem}}.blokinfo__text{color:#6b6a69;padding:0;text-align:center}.blokinfo__text a{color:#c35c46}.blokinfo__btn-wrapper{margin-top:.625rem;margin-inline:auto;width:9.0625rem}.blokinfo__btn{height:2.25rem!important}.blokinfo.is-active{display:block}.button,.dark-button{align-items:center;cursor:pointer;display:inline-flex;font-size:.9375rem;font-size:1rem;font-weight:400;height:var(--height-form-elements);justify-content:center;line-height:1.1;padding-inline:1.875rem}.button{background-color:var(--color-light-red);color:var(--color-white)}.button:hover{background-color:#f45e45}.dark-button{background-color:var(--bg-dark);color:var(--color-white)}.dark-button:hover{background-color:#5c5c76}.button-link{color:var(--color-link);padding:0;text-decoration:underline}.button-border,.button-link:hover{text-decoration:none}.button-border{align-items:center;background-color:transparent;border:1px solid;border-radius:10px;color:var(--color-white);display:inline-flex;font-size:.9375rem;height:var(--height-form-elements);justify-content:center;padding-inline:clamp(1.5625rem,1.0588842975rem + 2.0661157025vw,3.125rem)}.button-border:hover{background-color:var(--color-promo);border-color:var(--color-promo);color:var(--color-dark)}.input,.select,.textarea{background-color:var(--color-white);border:none;border-bottom:.0625rem solid #191e32;border-radius:0;display:block;font-family:inherit;font-size:1rem;font-weight:400;height:var(--height-form-elements);padding-inline:1.25rem;width:100%}.input:focus,.select:focus,.textarea:focus{outline:none}.textarea{height:12.5rem;resize:none}input::-moz-placeholder,textarea::-moz-placeholder{color:rgba(25,30,50,.5)}input::placeholder,textarea::placeholder{color:rgba(25,30,50,.5)}.field{position:relative}.field__text{display:none}.is-required .field__text:after{color:#e53350;content:"*";margin-left:.1875rem}.soglasie{align-items:baseline;display:flex;font-size:.9375rem;gap:1rem;line-height:1.2;text-align:left}.custom-checkbox{cursor:pointer;display:flex}.custom-checkbox__checkbox{align-items:center;background-color:#fff;border:1px solid #2d3553;display:flex;flex-shrink:0;height:.875rem;justify-content:center;width:.875rem}.custom-checkbox__checkbox:before{border:.125rem solid #2d3553;border-left:none;border-top:none;bottom:0;content:"";display:block;height:.5rem;left:0;margin:auto;opacity:0;position:relative;transform:translateY(-1px) rotate(45deg);transition:opacity .3s;width:.25rem}.custom-checkbox__old-checkbox:checked~.custom-checkbox__checkbox:before{opacity:1}.otpravka{background-color:rgba(0,0,0,.5);bottom:0;display:flex;left:0;position:fixed;right:0;top:0;z-index:111111111}.otpravka__massage{background:#fff;border-radius:8px;color:#272727;font-size:1rem;margin:auto;max-width:95%;padding:1.5625rem 1.625rem;position:relative;text-align:center}@media (width > 37.56125rem){.otpravka__massage{max-width:26.0625rem;padding:1.9375rem 1.625rem;width:100%}}@media (width > 68.81125rem){.otpravka__massage{font-size:1.125rem;max-width:39.375rem;padding:2rem 1.625rem}}body{padding-top:5.1875rem}@media (width > 48.06125rem){body{padding-top:9.625rem}}@media (width > 68.81125rem){body{padding-top:11.5625rem}}.header{background-color:#fff;border-bottom:.0625rem solid rgba(176,182,196,.5);left:0;position:fixed;top:0;width:100%;z-index:1000}@media (width > 68.81125rem){.header{position:absolute}}.header__logo{margin-right:0;width:11.0625rem}.header__logo .logo__text1{fill:#131c2f}.header__logo .logo__text2{fill:#4e5880}@media (width > 48.06125rem){.header__logo{order:0;width:15.4375rem}.header__burger{margin-left:1.875rem;margin-right:auto;order:1}}@media (width > 61.93625rem){.header__burger{margin-left:3.125rem}}.catalog-btn{background-color:#4b4b5e;color:#fff;gap:1.25rem;margin-left:3.125rem;padding-inline:1.875rem}@media (width <= 68.81125rem){.catalog-btn{display:none}}.catalog-btn.is-active,.catalog-btn:hover{background-color:#5c5c76}.catalog-btn.is-active .catalog-btn__icon-line:last-child,.catalog-btn:hover .catalog-btn__icon-line:last-child{width:.8125rem}.catalog-btn__icon{display:flex;flex-direction:column;gap:.4375rem}.catalog-btn__icon-line{background-color:currentColor;height:.0625rem;transition-duration:var(--transition-duration);width:1.5rem}.live-search{flex-grow:1;margin-inline:2.5rem;position:relative}.live-search__btn-search{align-items:center;bottom:0;color:#7d8294;display:flex;justify-content:center;margin:auto;position:absolute;right:0;top:0;width:3.4375rem}.live-search__btn-search:hover{color:#2d3553}.live-search__btn-search-text,.shop_panel{display:none}@media (width > 48.06125rem){.shop_panel{align-items:center;-moz-column-gap:1.25rem;column-gap:1.25rem;display:flex;order:3}}.shop_panel__button{align-items:center;color:#7d8294;display:flex;height:3.4375rem;justify-content:center;position:relative;width:3.4375rem}.shop_panel__button:hover{color:#2d3553}.shop_panel__button-counter{align-items:center;background-color:#ff755e;border-radius:100%;color:#fff;display:flex;font-size:.75rem;font-weight:500;height:1.5rem;justify-content:center;position:absolute;right:0;top:0;width:1.5rem}.header-top{display:none}@media (width > 48.06125rem){.header-top__container{align-items:center;display:flex;height:3.0625rem;justify-content:end}}@media (width > 68.81125rem){.header-top__container{height:5rem}}@media (width > 48.06125rem){.header-top{background-color:var(--bg-light);display:block}.header-top .contacts-line{justify-content:end}.header-top .contacts-line .phone-link{font-size:1rem;margin-right:2.0625rem}.header-top .contacts-line .phone-link:hover{color:#ff755e}.header-top .contacts-line .link-max,.header-top .contacts-line .link-tg{color:#1b1f32;font-size:.9375rem;text-decoration:none;width:auto}.header-top .contacts-line .link-max svg,.header-top .contacts-line .link-tg svg{color:#7d8294;margin-right:.5625rem}.header-top .contacts-line .link-max{margin-left:1.375rem}.header-contacts{width:21.5625rem}}.burger{align-items:center;background-color:#ebebf5;display:flex;flex-direction:column;height:3.3125rem;justify-content:center;row-gap:.4375rem;width:3.3125rem}.burger__line{background-color:#191e32;height:.0625rem;width:1.5rem}.header-bottom__container{align-items:center;display:flex;height:5.1875rem;justify-content:space-between}@media (width > 48.06125rem){.header-bottom__container{height:auto;padding-block:1.5625rem}}.nav{display:none}@media (width > 68.81125rem){.nav{display:block;margin-left:0;margin-right:auto}.nav__list{align-items:center;display:flex;gap:1.875rem;justify-content:center;list-style:none;width:100%}.nav__item{position:relative}.nav__item>ul{background-color:#fff;border:.0625rem solid rgba(176,182,196,.4);left:50%;list-style:none;max-width:20.625rem;min-width:100%;opacity:0;padding:2.1875rem;position:absolute;top:100%;transform:translateX(-50%);transition:all .1s ease;visibility:hidden;width:auto;z-index:50}.nav__item:hover>.nav__sublist{opacity:1;visibility:visible}.nav__sublist-link.sublist-link0{color:#222;font-size:1.125rem;margin:0 0 .5rem;padding:0 1.25rem;text-transform:uppercase}.nav__sublist-link.sublist-link0:hover{color:#fff;opacity:.6}.nav__link{color:#191e32;display:block;font-size:1rem;font-weight:300;overflow:hidden;padding-block:1.8125rem;position:relative;text-decoration:none;transition:all .4s ease}.nav__link.is-active,.nav__link:hover{color:#ff755e}.nav__link-parent{padding-right:1.6875rem}.nav__link-parent:after{border-bottom:1px solid #2d3553;border-right:1px solid #2d3553;bottom:.1875rem;content:"";height:.5rem;margin:auto;position:absolute;right:.25rem;top:0;transform:rotate(45deg);width:.5rem}.nav__sublist-item:not(:last-child){margin-bottom:.9375rem}.nav__sublist-link{color:#717782;font-size:1rem;font-weight:400;text-decoration:none;white-space:nowrap}.nav__sublist-link.is-active,.nav__sublist-link:hover{color:#ff644b}}.footer{background-color:var(--bg-dark);color:var(--color-white);font-size:.875rem;padding-bottom:4.375rem;padding-top:var(--section-padding-y)}@media (width > 61.93625rem){.footer__container{display:flex}.footer__left{flex-shrink:0;margin-right:3.75rem}}@media (width > 68.81125rem){.footer__left{margin-right:5.625rem}}@media (width > 61.93625rem){.footer__right{padding-top:.125rem}}.footer__logo{margin-bottom:3.75rem}.footer .link-max__text,.footer .link-tg__text{display:none}@media (width > 68.81125rem){.footer__copirait{flex-grow:1;width:50%}}.footer__oferta{line-height:1;margin-top:1rem}@media (width > 68.81125rem){.footer__oferta{flex-grow:1;margin-top:0;width:50%}}.footer-body__title{display:block;font-size:1.125rem;font-weight:500;margin-bottom:1rem}@media (width > 61.93625rem){.footer-body__title{font-size:1.3125rem;margin-bottom:1.625rem}}@media (width > 68.81125rem){.footer-body__title{font-size:1.375rem}.footer-body{display:flex;gap:2.5rem}}.footer-body__center,.footer-body__left{flex-grow:1}.footer-body__right{flex-grow:1;max-width:15.375rem}.contacts-line{align-items:center;display:flex;flex-wrap:nowrap}.contacts-line .phone-link{color:inherit;font-size:1.125rem;font-weight:600;margin-right:1.25rem;text-decoration:none}.contacts-line .phone-link:hover{opacity:.7}.contacts-line .link-max,.contacts-line .link-tg{align-items:center;color:inherit;display:flex;height:2.375rem;justify-content:center;margin-right:0;width:2.375rem}.contacts-line .link-max:hover,.contacts-line .link-tg:hover{opacity:.7}.footer-extra{border-top:1px solid hsla(0,0%,100%,.3);color:hsla(0,0%,100%,.5);margin-top:1.5rem;padding-top:1.6875rem}@media (width > 68.81125rem){.footer-extra{display:flex;gap:6.875rem;margin-top:3.625rem;padding-top:3.5rem}}.footer-navlist__item:not(:last-child){margin-bottom:.9375rem}.footer-navlist__link{color:rgba(243,243,246,.6);font-size:1rem;text-decoration:none}.footer-navlist__link:hover{color:#f3f3f6}.cockie{display:none}
/* /skin/default.10593d25.css */
.page--default .page__main{padding-block:3rem}.page--default .page__title{color:var(--color-ink-deep);font-family:var(--font-base);font-size:var(--fs-h1);font-weight:var(--fw-light);line-height:var(--lh-tight);margin:0 0 1.5rem}.page--default .page__title:empty{display:none}@media (max-width:991px){.page--default .page__title{font-size:2rem}}@media (max-width:767px){.page--default .page__title{font-size:1.625rem}}.page--default .page__content{max-width:47.5rem}.page--default .page__content p{margin-block:1em}
