/* CYBERSHOP — Профиль (3 колонки, один экран) */

.catalog-main.profile-page {
  overflow: hidden;
  align-items: stretch;
}

.profile-main {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
  min-height: 0;
  max-width: none;
  margin: 0;
  padding: 72px 22px 18px;
  box-sizing: border-box;
}

.profile-board {
  position: relative;
  flex: 1;
  min-height: calc(100vh - 92px);
  width: 100%;
  box-sizing: border-box;

  /* Независимое позиционирование каждого окна — правьте только нужную переменную */
  --profile-head-top: 40px;
  --profile-head-left: 160px;
  --profile-head-width: calc(60% - 167px);

  --profile-account-top: 130px;
  --profile-account-left: 160px;
  --profile-account-width: calc(60% - 167px);

  --profile-cart-top: 130px;
  --profile-cart-left: calc(60% + 7px);
  --profile-cart-width: calc(40% - 187px);
  --profile-cart-height: auto;

  --profile-bottom-gap: 14px;
  --profile-bottom-top: calc(var(--profile-account-top) + 432px + var(--profile-bottom-gap));

  --profile-ui-top: var(--profile-bottom-top);
  --profile-ui-width: calc(30% + 20px - 110px);
  --profile-ui-left: calc(var(--profile-account-left) + var(--profile-account-width) - var(--profile-ui-width));

  --profile-data-top: var(--profile-bottom-top);
  --profile-data-width: calc(var(--profile-ui-width) - 20px);
  --profile-data-left: 160px;

  --profile-support-top: var(--profile-bottom-top);
  --profile-support-left: calc(60% + 7px);
  --profile-support-width: calc(40% - 187px);

  --profile-bottom-card-h: auto;
}

.profile-board__bottom-left {
  display: contents;
}

.profile-board__head {
  position: absolute;
  top: var(--profile-head-top);
  left: var(--profile-head-left);
  width: var(--profile-head-width);
  max-width: var(--profile-head-width);
  margin: 0;
  z-index: 2;
}

.profile-col--left {
  position: absolute;
  top: var(--profile-account-top);
  left: var(--profile-account-left);
  width: var(--profile-account-width);
  max-width: var(--profile-account-width);
  --profile-auth-gap: 16px;
  --profile-auth-input-h: 46px;
  --profile-auth-btn-h: 46px;
  --profile-auth-avatar: 58px;
  --profile-auth-tab-gap: 10px;
  --profile-auth-tab-col-w: calc((100% - var(--profile-auth-tab-gap)) / 2);
  display: flex;
  flex-direction: column;
  gap: var(--profile-auth-gap);
  min-height: 0;
  margin: 0;
  z-index: 1;
}

.profile-col--middle.profile-col--cart {
  position: absolute;
  top: var(--profile-cart-top);
  left: var(--profile-cart-left);
  width: var(--profile-cart-width);
  max-width: var(--profile-cart-width);
  height: var(--profile-cart-height, auto);
  display: flex;
  flex-direction: column;
  min-height: 0;
  margin: 0;
  z-index: 1;
}

.profile-board .profile-section--ui {
  position: absolute;
  top: var(--profile-ui-top);
  left: var(--profile-ui-left);
  width: var(--profile-ui-width);
  max-width: var(--profile-ui-width);
  margin: 0;
  z-index: 1;
}

.profile-board .profile-section--data {
  position: absolute;
  top: var(--profile-data-top);
  left: var(--profile-data-left);
  width: var(--profile-data-width);
  max-width: var(--profile-data-width);
  margin: 0;
  z-index: 1;
}

.profile-board__bottom-right {
  position: absolute;
  top: var(--profile-support-top);
  left: var(--profile-support-left);
  width: var(--profile-support-width);
  max-width: var(--profile-support-width);
  margin: 0;
  z-index: 1;
}

.profile-col--middle .profile-section__title {
  margin-bottom: 10px;
  font-size: 11px;
}

.profile-col--middle .profile-section--cart {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
  width: 100%;
}

.profile-row--split {
  display: contents;
}

.profile-board .profile-section--data,
.profile-board .profile-section--ui,
.profile-board__bottom-right {
  display: flex;
  flex-direction: column;
}

.profile-board .profile-section--ui .profile-section__title,
.profile-board .profile-section--data .profile-section__title,
.profile-board__bottom-right .profile-section__title {
  flex-shrink: 0;
  margin-bottom: 10px;
  font-size: 11px;
}

.profile-board .profile-card--data,
.profile-board .profile-card--ui,
.profile-board__bottom-right .profile-card--support {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  overflow: hidden;
  padding: 14px 16px;
  height: var(--profile-bottom-card-h, auto);
  min-height: var(--profile-bottom-card-h, auto);
}

.profile-col--left .profile-section--ui,
.profile-col--left .profile-section--data {
  flex-shrink: 0;
}

.profile-col--middle .profile-card--cart {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  padding: 0;
  overflow: hidden;
  justify-content: flex-start;
}

.profile-cart-items {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  padding: 12px 14px 8px;
  scrollbar-width: thin;
}

.profile-cart-items__empty {
  margin: 0;
  padding: 8px 4px;
  font-size: 12px;
  line-height: 1.45;
  color: #64748b;
  text-align: center;
}

.profile-cart-item {
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
}

.profile-cart-item + .profile-cart-item {
  margin-top: 6px;
}

html.catalog-theme-biz .profile-cart-item {
  background: #f8fafc;
  border-color: rgba(15, 23, 42, 0.06);
}

.profile-cart-item__title {
  margin: 0 0 4px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.35;
  color: #e2e8f0;
}

html.catalog-theme-biz .profile-cart-item__title {
  color: #0f172a;
}

.profile-cart-item__meta {
  margin: 0;
  font-size: 11px;
  color: #64748b;
}

.profile-cart-footer {
  flex-shrink: 0;
  margin-top: auto;
  padding: 10px 14px 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  gap: 4px;
}

html.catalog-theme-biz .profile-cart-footer {
  border-top-color: rgba(15, 23, 42, 0.08);
}

.profile-head {
  flex-shrink: 0;
}

.profile-head h1 {
  margin: 0 0 6px;
  font-size: clamp(1.5rem, 2vw, 1.875rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.profile-head__hint {
  margin: 0;
  max-width: 420px;
  color: #64748b;
  font-size: 13px;
  line-height: 1.45;
}

.profile-section {
  display: flex;
  flex-direction: column;
  min-height: 0;
  margin: 0;
}

.profile-col--left .profile-section--grow {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
}

.profile-col--left .profile-card--fill {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow-y: auto;
  padding: 20px 22px;
}

.profile-col--left .profile-head h1 {
  font-size: clamp(1.65rem, 2.2vw, 2rem);
  margin-bottom: 8px;
}

.profile-col--left .profile-head__hint {
  font-size: 14px;
  line-height: 1.5;
}

.profile-col--left .profile-section__title {
  margin-bottom: 10px;
  font-size: 11px;
}

.profile-col--left .profile-account-hero {
  gap: 14px;
  margin-bottom: 20px;
}

.profile-col--left .profile-account-hero__avatar {
  width: var(--profile-auth-avatar);
  height: var(--profile-auth-avatar);
  border-radius: 14px;
  font-size: 1.05rem;
}

.profile-col--left .profile-account-hero__name {
  font-size: 1.125rem;
}

.profile-col--left .profile-account-hero__meta {
  font-size: 13px;
}

.profile-col--left .profile-badge {
  margin-top: 8px;
  padding: 3px 10px;
  font-size: 10px;
}

.profile-col--left .profile-tabs {
  gap: var(--profile-auth-tab-gap);
  margin-bottom: 18px;
}

.profile-col--left .profile-tab {
  min-height: var(--profile-auth-btn-h);
  font-size: 13px;
  border-radius: 10px;
}

.profile-col--left #profile-guest-panel,
.profile-col--left .profile-account-form {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.profile-col--left .profile-auth-panel:not([hidden]),
.profile-col--left .profile-account-form:not([hidden]) {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: clamp(14px, 2.8vh, 32px);
  min-height: calc(
    2 * (18px + var(--profile-auth-input-h)) + var(--profile-auth-btn-h) + 2 * clamp(14px, 2.8vh, 32px)
  );
}

.profile-col--left .profile-auth-row--compact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--profile-auth-tab-gap);
  align-items: end;
  width: 100%;
}

.profile-col--left #profile-login-panel .profile-field input {
  width: var(--profile-auth-tab-col-w);
  max-width: 100%;
}

.profile-col--left #profile-login-panel .profile-actions .profile-btn {
  width: var(--profile-auth-tab-col-w);
  max-width: 100%;
  box-sizing: border-box;
}

.profile-col--left #profile-register-panel .profile-field:not(.profile-field--compact) input {
  width: var(--profile-auth-tab-col-w);
  max-width: 100%;
}

.profile-col--left #profile-login-panel > .profile-field + .profile-field,
.profile-col--left #profile-register-panel > .profile-field {
  margin-top: -10px;
}

.profile-col--left #profile-register-panel .profile-field--compact {
  gap: 6px;
  min-width: 0;
}

.profile-col--left #profile-register-panel .profile-field--compact label {
  font-size: 12px;
  line-height: 1.3;
}

.profile-col--left #profile-register-panel .profile-field--compact input {
  width: 100%;
  max-width: 100%;
  min-height: var(--profile-auth-input-h);
  padding: 0 14px;
  font-size: 14px;
  border-radius: 10px;
  box-sizing: border-box;
}

.profile-col--left .profile-field--compact label {
  font-size: 10px;
  line-height: 1.2;
}

.profile-col--left .profile-field--compact input {
  width: 100%;
  max-width: 100%;
  min-height: calc(var(--profile-auth-input-h) / 2);
  padding: 0 10px;
  font-size: 12px;
  border-radius: 8px;
  box-sizing: border-box;
}

.profile-col--left .profile-field {
  gap: 6px;
  margin-bottom: 0;
}

.profile-col--left .profile-field label {
  font-size: 12px;
}

.profile-col--left .profile-field input {
  width: 50%;
  max-width: 100%;
  box-sizing: border-box;
  min-height: var(--profile-auth-input-h);
  padding: 0 14px;
  font-size: 14px;
  border-radius: 10px;
}

.profile-col--left .profile-actions {
  margin-top: 0;
  gap: 10px;
}

.profile-col--left .profile-btn {
  min-height: var(--profile-auth-btn-h);
  padding: 0 20px;
  font-size: 13px;
  border-radius: 10px;
}

.profile-section--grow {
  flex: 1;
  min-height: 0;
}

.profile-section__title {
  flex-shrink: 0;
  margin: 0 0 8px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #64748b;
}

.profile-card {
  padding: 14px 16px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.02);
  box-sizing: border-box;
}

.profile-card--fill {
  flex: 1;
  min-height: 0;
  overflow: auto;
  scrollbar-width: thin;
}

html.catalog-theme-biz .profile-card {
  background: #fff;
  border-color: rgba(15, 23, 42, 0.08);
}

.profile-account-hero {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.profile-account-hero__avatar {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  border: 1px solid rgba(0, 210, 255, 0.35);
  background: rgba(0, 210, 255, 0.08);
  color: #00d2ff;
  font-family: Montserrat, Inter, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
}

.profile-account-hero__name {
  margin: 0 0 2px;
  font-size: 1rem;
  font-weight: 700;
  color: #f1f5f9;
}

html.catalog-theme-biz .profile-account-hero__name {
  color: #0f172a;
}

.profile-account-hero__meta {
  margin: 0;
  font-size: 12px;
  color: #64748b;
  word-break: break-word;
}

.profile-badge {
  display: inline-flex;
  margin-top: 6px;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.profile-badge--guest {
  color: #94a3b8;
  background: rgba(255, 255, 255, 0.06);
}

.profile-badge--ok {
  color: #67e8f9;
  background: rgba(0, 210, 255, 0.12);
}

.profile-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}

.profile-tab {
  flex: 1;
  min-height: 36px;
  padding: 0 10px;
  border-radius: 9px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: transparent;
  color: #94a3b8;
  font: inherit;
  font-size: 12px;
  font-weight: 600;
  cursor: pointer;
}

.profile-tab.is-active {
  border-color: rgba(0, 210, 255, 0.35);
  background: rgba(0, 210, 255, 0.08);
  color: #00d2ff;
}

.profile-auth-panel[hidden],
.profile-account-form[hidden] {
  display: none;
}

.profile-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 10px;
}

.profile-field label {
  font-size: 11px;
  font-weight: 600;
  color: #94a3b8;
}

.profile-field input {
  width: 100%;
  min-height: 38px;
  padding: 0 12px;
  border-radius: 9px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.25);
  color: #f1f5f9;
  font: inherit;
  font-size: 13px;
  box-sizing: border-box;
}

html.catalog-theme-biz .profile-field input {
  background: #f8fafc;
  border-color: rgba(15, 23, 42, 0.12);
  color: #0f172a;
}

.profile-field input:focus {
  outline: none;
  border-color: rgba(0, 210, 255, 0.45);
  box-shadow: 0 0 0 3px rgba(0, 210, 255, 0.12);
}

.profile-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.profile-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 9px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.04);
  color: #e2e8f0;
  font: inherit;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}

html.catalog-theme-biz .profile-btn {
  background: #f8fafc;
  border-color: rgba(15, 23, 42, 0.1);
  color: #0f172a;
}

.profile-btn--primary {
  border: none;
  background: linear-gradient(180deg, #00c8ef 0%, #0096b1 100%);
  color: #fff;
  box-shadow: 0 6px 20px rgba(0, 150, 177, 0.28);
}

.profile-btn--danger {
  color: #fca5a5;
  border-color: rgba(248, 113, 113, 0.25);
}

.profile-btn--block {
  width: 100%;
}

.profile-card--cart {
  display: flex;
  flex-direction: column;
  gap: 0;
  justify-content: flex-start;
}

.profile-col--middle .profile-section--cart .profile-card--fill {
  overflow: hidden;
}

.profile-col--middle .profile-cart-summary__count {
  font-size: 13px;
}

.profile-col--middle .profile-cart-summary__total {
  font-size: 12px;
}

.profile-col--middle .profile-card--cart .profile-btn--block {
  margin-top: 8px;
  min-height: 36px;
  font-size: 11px;
}

.profile-cart-summary__count {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  color: #f1f5f9;
}

html.catalog-theme-biz .profile-cart-summary__count {
  color: #0f172a;
}

.profile-cart-summary__total {
  margin: 0;
  font-size: 13px;
  color: #64748b;
}

.profile-cart-summary__total strong {
  color: #00d2ff;
  font-weight: 700;
}

.profile-data-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: 100%;
  justify-content: center;
}

.profile-data-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 9px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
  text-decoration: none;
  color: inherit;
}

html.catalog-theme-biz .profile-data-row {
  background: #f8fafc;
  border-color: rgba(15, 23, 42, 0.06);
}

.profile-data-row:hover {
  border-color: rgba(0, 210, 255, 0.25);
}

.profile-data-row__value {
  min-width: 28px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #00d2ff;
  font-variant-numeric: tabular-nums;
}

.profile-data-row__label {
  font-size: 12px;
  font-weight: 600;
  color: #94a3b8;
}

.profile-row__label {
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 600;
  color: #f1f5f9;
}

html.catalog-theme-biz .profile-row__label {
  color: #0f172a;
}

.profile-row__desc {
  margin: 0 0 12px;
  font-size: 12px;
  line-height: 1.4;
  color: #64748b;
}

.profile-board .profile-card--ui {
  position: relative;
  align-items: center;
  justify-content: center;
  padding: 18px 14px 16px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% -20%, rgba(0, 210, 255, 0.12), transparent 58%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035) 0%, rgba(255, 255, 255, 0.015) 100%);
}

html.catalog-theme-biz .profile-board .profile-card--ui {
  background:
    radial-gradient(circle at 50% -20%, rgba(8, 145, 178, 0.08), transparent 58%),
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.profile-board .profile-card--ui::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.profile-ui-theme {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  width: 100%;
}

.profile-ui-theme__caption {
  margin: 0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  color: #64748b;
}

.profile-ui-theme__picker {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 10px;
  width: 100%;
}

.profile-ui-theme__option {
  flex: 1;
  max-width: 92px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 0;
  border: none;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
  transition: transform 0.18s ease;
}

.profile-ui-theme__option:hover {
  transform: translateY(-1px);
}

.profile-ui-theme__option:active {
  transform: translateY(0);
}

.profile-ui-theme__preview {
  position: relative;
  width: 100%;
  aspect-ratio: 1.15;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.profile-ui-theme__preview--light {
  background: linear-gradient(180deg, #ffffff 0%, #eef2f7 100%);
}

.profile-ui-theme__preview--dark {
  background:
    linear-gradient(rgba(0, 210, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 210, 255, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, #101827 0%, #0b1220 100%);
  background-size: 10px 10px, 10px 10px, auto;
}

.profile-ui-theme__preview-glow {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(0, 210, 255, 0.95) 0%, rgba(0, 210, 255, 0.15) 70%, transparent 100%);
  box-shadow: 0 0 12px rgba(0, 210, 255, 0.55);
}

.profile-ui-theme__preview-bar {
  display: block;
  height: 7px;
  background: linear-gradient(90deg, rgba(0, 210, 255, 0.85), rgba(56, 189, 248, 0.45));
}

.profile-ui-theme__preview--light .profile-ui-theme__preview-bar {
  background: linear-gradient(90deg, #0891b2, #67e8f9);
}

.profile-ui-theme__preview-pane {
  display: block;
  height: 7px;
  margin: 7px 8px 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.profile-ui-theme__preview--light .profile-ui-theme__preview-pane {
  background: rgba(15, 23, 42, 0.08);
}

.profile-ui-theme__preview-pane--muted {
  width: 62%;
  opacity: 0.75;
}

.profile-ui-theme__meta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.profile-ui-theme__icon {
  display: inline-flex;
  width: 16px;
  height: 16px;
  color: #64748b;
}

.profile-ui-theme__icon svg {
  width: 100%;
  height: 100%;
}

.profile-ui-theme__name {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #94a3b8;
  transition: color 0.2s ease;
}

.profile-ui-theme__option.is-active .profile-ui-theme__preview {
  border-color: rgba(0, 210, 255, 0.55);
  box-shadow:
    0 0 0 1px rgba(0, 210, 255, 0.25),
    0 10px 22px rgba(0, 210, 255, 0.18);
}

.profile-ui-theme__option.is-active .profile-ui-theme__name {
  color: #e2e8f0;
}

.profile-ui-theme__option.is-active .profile-ui-theme__icon {
  color: #00d2ff;
}

html.catalog-theme-biz .profile-ui-theme__option.is-active .profile-ui-theme__name {
  color: #0f172a;
}

html.catalog-theme-biz .profile-ui-theme__option.is-active .profile-ui-theme__icon {
  color: #0891b2;
}

html.catalog-theme-biz .profile-ui-theme__option.is-active .profile-ui-theme__preview {
  border-color: rgba(8, 145, 178, 0.45);
  box-shadow:
    0 0 0 1px rgba(8, 145, 178, 0.18),
    0 10px 18px rgba(8, 145, 178, 0.12);
}

.profile-links {
  display: flex;
  flex-direction: column;
  gap: 6px;
  height: 100%;
  justify-content: center;
}

.profile-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 9px 10px;
  border-radius: 9px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
  color: #e2e8f0;
  font-size: 12px;
  font-weight: 500;
  text-decoration: none;
}

html.catalog-theme-biz .profile-link {
  background: #f8fafc;
  border-color: rgba(15, 23, 42, 0.06);
  color: #0f172a;
}

.profile-link:hover {
  border-color: rgba(0, 210, 255, 0.25);
  background: rgba(0, 210, 255, 0.05);
}

.profile-link__chevron {
  flex-shrink: 0;
  color: #64748b;
}

@media (max-width: 1024px) {
  .catalog-main.profile-page {
    overflow-y: auto;
  }

  .profile-main {
    height: auto;
    padding-bottom: 24px;
  }

  .profile-board {
    position: static;
    min-height: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .profile-board__bottom-left,
  .profile-row--split {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .profile-board__head,
  .profile-col--left,
  .profile-col--middle.profile-col--cart,
  .profile-board .profile-section--ui,
  .profile-board .profile-section--data,
  .profile-board__bottom-right {
    position: static;
    top: auto;
    left: auto;
    width: 100%;
    max-width: none;
    height: auto;
    min-height: 0;
  }

  .profile-col--left {
    max-height: none;
    min-height: 0;
    margin-top: 0;
  }

  .profile-board .profile-section--data,
  .profile-board .profile-section--ui {
    width: 100%;
    max-width: none;
  }

  .profile-section--grow,
  .profile-card--fill {
    flex: none;
    min-height: 140px;
  }
}

@media (max-width: 640px) {
  .profile-main {
    padding: 64px 12px 20px;
  }
}
