.account-page {
  padding: 148px 24px 80px;
}

.account-shell {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 288px minmax(0, 1fr);
  gap: 36px;
  align-items: start;
}

.account-sidebar {
  display: grid;
  gap: 28px;
  position: sticky;
  top: 120px;
}

.account-profile-card {
  padding: 0 0 22px;
  display: grid;
  gap: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.account-profile-card__top {
  display: grid;
  grid-template-columns: 62px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.account-profile-card__avatar {
  width: 62px;
  height: 62px;
  display: inline-grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  font-size: 24px;
  font-weight: 800;
  color: #fff;
}

.account-profile-card__meta {
  display: grid;
  gap: 6px;
}

.account-profile-card__eyebrow {
  margin: 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.account-profile-card__name {
  margin: 0;
  font-size: 22px;
  line-height: 1.1;
  color: #fff;
}

.account-profile-card__email {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
  overflow-wrap: anywhere;
}

.account-balance-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 14px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.account-balance-box__label {
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.account-balance-box__value {
  color: #fff;
  font-size: 16px;
  font-weight: 800;
}

.account-nav {
  display: grid;
  gap: 4px;
}

.account-nav__label {
  margin: 0 0 6px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.account-nav__item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 56px;
  padding: 0 14px;
  color: rgba(255, 255, 255, 0.68);
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.015);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease,
    transform 0.2s ease;
}

.account-nav__item:hover {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
}

.account-nav__item.is-active {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.045);
  box-shadow: inset 3px 0 0 rgba(255, 255, 255, 0.72);
}

.account-nav__item-icon {
  width: 18px;
  display: inline-grid;
  place-items: center;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.56);
  transition: color 0.2s ease;
}

.account-nav__item-text {
  font-size: 14px;
  font-weight: 600;
}

.account-nav__item:hover .account-nav__item-icon,
.account-nav__item.is-active .account-nav__item-icon {
  color: rgba(255, 255, 255, 0.9);
}

.account-nav__item--danger {
  color: rgba(255, 255, 255, 0.48);
}

.account-nav__item--danger:hover {
  color: #fff;
}

.account-panel {
  overflow: visible;
}

.account-panel__header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  padding: 0 0 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.account-panel__heading {
  display: grid;
  gap: 6px;
}

.account-panel__eyebrow {
  margin: 0;
  color: rgba(255, 255, 255, 0.45);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
}

.account-panel__title {
  margin: 0;
  color: #fff;
  font-size: 34px;
  line-height: 1.08;
}

.account-panel__copy {
  margin: 0;
  max-width: 520px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  line-height: 1.6;
}

.account-panel__body {
  padding: 22px 0 0;
}

.account-orders {
  display: grid;
  gap: 0;
}

.account-order {
  position: relative;
  padding: 16px 0;
  display: grid;
  gap: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  cursor: pointer;
  transition: background 0.18s ease, border-color 0.18s ease;
}

.account-order:first-child {
  padding-top: 0;
}

.account-order:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.account-order:hover {
  background: transparent;
}

.account-order:focus-visible {
  outline: none;
  background: transparent;
}

.account-order__top {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
}

.account-order__main {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr);
  gap: 14px;
  min-width: 0;
}

.account-order__media {
  width: 56px;
  height: 56px;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.018);
  border: 1px solid rgba(255, 255, 255, 0.06);
  display: grid;
  place-items: center;
}

.account-order__media-icon {
  position: relative;
  z-index: 1;
  font-size: 21px;
  color: rgba(255, 255, 255, 0.46);
}

.account-order--pending .account-order__media::before {
  content: none;
}

.account-order--pending .account-order__media::after {
  content: none;
}

.account-order--pending .account-order__media-icon {
  animation: none;
}

.account-order__content {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.account-order__title {
  margin: 0;
  color: #fff;
  font-size: 16px;
  line-height: 1.3;
  font-weight: 700;
}

.account-order__meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
}

.account-order__meta {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.42);
}

.account-order__meta span {
  color: rgba(255, 255, 255, 0.34);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.account-order__meta strong {
  color: rgba(255, 255, 255, 0.68);
  font-weight: 500;
}

.account-order__side {
  display: grid;
  gap: 8px;
  justify-items: end;
  text-align: right;
}

.account-order__price {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}

.account-order__view-hint {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.34);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.account-order__view-hint iconify-icon {
  font-size: 12px;
}

.account-order__payload {
  display: none;
}

.account-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 28px;
  padding: 0 9px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  background: transparent;
}

.account-status__icon {
  font-size: 11px;
  opacity: 0.74;
}

.account-status__text {
  line-height: 1;
}

.account-status--approved {
  color: rgba(255, 255, 255, 0.7);
  border-color: rgba(255, 255, 255, 0.08);
  background: transparent;
}

.account-status--pending {
  color: rgba(255, 255, 255, 0.56);
  border-color: rgba(255, 255, 255, 0.06);
  background: transparent;
}

.account-status--pending .account-status__icon {
  animation: none;
}

.account-key-box {
  padding: 16px 0 0;
  display: grid;
  gap: 12px;
  background: transparent;
}

.account-key-box__label {
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.account-key-list {
  display: grid;
  gap: 10px;
}

.account-key-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
}

.account-key-item code {
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

.account-key-copy {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.account-key-copy:hover {
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

.account-note {
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 14px;
}

.account-note--pending {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: fit-content;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.62);
}

.account-note__icon {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.78);
  animation: none;
}

html.account-offcanvas-open,
body.account-offcanvas-open {
  overflow: hidden !important;
}

html.account-offcanvas-open {
  scrollbar-gutter: stable;
}

body.account-offcanvas-open {
  padding-right: var(--account-scrollbar-compensation, 0px);
}

.account-order-drawer-shell {
  position: fixed;
  inset: 0;
  z-index: 320;
  display: flex;
  justify-content: flex-end;
  pointer-events: none;
}

.account-order-drawer-shell.is-active {
  pointer-events: auto;
}

.account-order-drawer-shell__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(5, 6, 8, 0.7);
  backdrop-filter: blur(14px);
  opacity: 0;
  transition: none;
  cursor: pointer;
}

.account-order-drawer-shell.is-active .account-order-drawer-shell__backdrop {
  opacity: 1;
}

.account-order-drawer {
  position: relative;
  width: min(560px, 100%);
  height: 100%;
  margin-left: auto;
  background: #0f1118;
  border-left: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: -16px 0 48px rgba(0, 0, 0, 0.32);
  transform: translateX(100%);
  transition: none;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
}

.account-order-drawer-shell.is-active .account-order-drawer {
  transform: translateX(0);
}

.account-order-drawer[data-status="pending"] .account-order-drawer__hero-icon::after,
.account-order-drawer[data-status="preparing"] .account-order-drawer__hero-icon::after {
  content: none;
}

.account-order-drawer[data-status="pending"] .account-order-drawer__hero-icon iconify-icon,
.account-order-drawer[data-status="preparing"] .account-order-drawer__hero-icon iconify-icon {
  animation: none;
}

.account-order-drawer[data-status="complete"] .account-order-drawer__hero-icon {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.12);
}

.account-order-drawer__header {
  position: sticky;
  top: 0;
  z-index: 2;
  padding: 24px 24px 22px;
  background: rgba(15, 17, 24, 0.96);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.account-order-drawer__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.account-order-drawer__eyebrow {
  margin: 0;
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.account-order-drawer__close {
  width: 40px;
  height: 40px;
  display: inline-grid;
  place-items: center;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: transparent;
  color: rgba(255, 255, 255, 0.78);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.account-order-drawer__close:hover {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.account-order-drawer__close iconify-icon {
  font-size: 18px;
}

.account-order-drawer__hero {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  margin-top: 18px;
}

.account-order-drawer__hero-icon {
  position: relative;
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: transparent;
}

.account-order-drawer__hero-icon iconify-icon {
  position: relative;
  z-index: 1;
  font-size: 30px;
  color: rgba(255, 255, 255, 0.76);
}

.account-order-drawer__hero-copy {
  display: grid;
  gap: 6px;
}

.account-order-drawer__title {
  margin: 0;
  color: #fff;
  font-size: 26px;
  line-height: 1.14;
}

.account-order-drawer__code {
  margin: 0;
  color: rgba(255, 255, 255, 0.54);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.account-order-drawer__facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.account-order-drawer__fact {
  display: grid;
  gap: 4px;
  padding: 0;
}

.account-order-drawer__fact span {
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.account-order-drawer__fact strong {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.account-order-drawer__body {
  padding: 22px 24px 28px;
  display: grid;
  gap: 0;
}

.account-order-drawer__section {
  display: grid;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.account-order-drawer__section:last-of-type {
  border-bottom: 0;
}

.account-order-drawer__section-head {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 12px;
}

.account-order-drawer__section-eyebrow {
  margin: 0 0 5px;
  color: rgba(255, 255, 255, 0.42);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.account-order-drawer__section-title {
  margin: 0;
  color: #fff;
  font-size: 18px;
}

.account-order-drawer__pill {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: transparent;
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.account-order-timeline {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
}

.account-order-timeline__item {
  position: relative;
  padding: 0 0 24px 42px;
}

.account-order-timeline__item:last-child {
  padding-bottom: 0;
}

.account-order-timeline__item::before {
  content: "";
  position: absolute;
  left: 11px;
  top: 28px;
  bottom: -2px;
  width: 1px;
  background: rgba(255, 255, 255, 0.08);
}

.account-order-timeline__item:last-child::before {
  display: none;
}

.account-order-timeline__marker {
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.78);
}

.account-order-timeline__marker iconify-icon {
  font-size: 12px;
}

.account-order-timeline__item.is-complete .account-order-timeline__marker {
  background: #fff;
  color: #0f1118;
  border-color: #fff;
}

.account-order-timeline__item.is-active .account-order-timeline__marker {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  animation: none;
}

.account-order-timeline__item.is-upcoming .account-order-timeline__marker {
  color: rgba(255, 255, 255, 0.36);
  border-color: rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.015);
}

.account-order-timeline__item.is-complete::before {
  background: rgba(255, 255, 255, 0.18);
}

.account-order-timeline__content {
  display: grid;
  gap: 6px;
}

.account-order-timeline__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.account-order-timeline__title {
  margin: 0;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
}

.account-order-timeline__state {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.6);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.account-order-timeline__item.is-active .account-order-timeline__state {
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.04);
}

.account-order-timeline__item.is-complete .account-order-timeline__state {
  color: rgba(255, 255, 255, 0.76);
}

.account-order-timeline__copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
  line-height: 1.6;
}

.account-order-logs {
  display: grid;
  gap: 12px;
}

.account-order-log {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 0 0 14px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.account-order-log:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.account-order-log__icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.72);
  background: transparent;
}

.account-order-log__icon iconify-icon {
  font-size: 15px;
}

.account-order-log.is-active .account-order-log__icon iconify-icon {
  animation: none;
}

.account-order-log__body {
  display: grid;
  gap: 5px;
}

.account-order-log__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.account-order-log__title {
  margin: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.account-order-log__meta {
  color: rgba(255, 255, 255, 0.4);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.account-order-log__copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
  line-height: 1.55;
}

.account-order__admin-note {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 12px;
  line-height: 1.6;
}

.account-order__admin-note strong {
  color: rgba(255, 255, 255, 0.84);
  font-weight: 700;
}

.account-order-drawer__note {
  margin: 0;
  padding: 18px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.62);
  font-size: 13px;
  line-height: 1.65;
  display: grid;
  gap: 8px;
}

.account-order-drawer__note-label {
  color: rgba(255, 255, 255, 0.84);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.account-order-drawer__note-divider {
  display: block;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.07);
}

.account-empty {
  min-height: 320px;
  padding: 12px 0 0;
  display: grid;
  place-items: center;
  text-align: center;
}

.account-empty__inner {
  display: grid;
  gap: 10px;
  max-width: 320px;
}

.account-empty__icon {
  font-size: 52px;
  color: rgba(255, 255, 255, 0.18);
}

.account-empty__title {
  margin: 0;
  color: #fff;
  font-size: 20px;
}

.account-empty__copy {
  margin: 0;
  color: rgba(255, 255, 255, 0.54);
  line-height: 1.6;
}

.account-empty__link {
  width: fit-content;
  margin: 8px auto 0;
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
}

.account-alert {
  margin-bottom: 18px;
  padding: 14px 16px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 14px;
  line-height: 1.5;
}

.account-alert--success {
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.1);
}

.account-alert--error {
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.1);
}

.account-form-grid {
  display: grid;
  gap: 18px;
}

.account-form-grid--split {
  max-width: 880px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 24px;
}

.account-form-grid--split > :last-child {
  grid-column: 1 / -1;
}

.account-form-grid__field {
  display: grid;
  gap: 8px;
}

.account-form-grid__label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  font-weight: 700;
}

.account-form-grid__field input,
.account-form-grid__field textarea {
  width: 100%;
  min-height: 56px;
  padding: 0 16px;
  color: #fff;
  font: inherit;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 8px;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.account-form-grid__field input:focus,
.account-form-grid__field textarea:focus {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.03);
}

.account-form-grid__field input::placeholder,
.account-form-grid__field textarea::placeholder {
  color: rgba(255, 255, 255, 0.26);
}

.account-submit {
  min-width: 220px;
  min-height: 54px;
  padding: 0 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: #fff;
  color: #0b0e14;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.account-submit:hover {
  background: #f3f5f8;
}

.account-submit:active {
  transform: scale(0.99);
}


@media (max-width: 1024px) {
  .account-shell {
    grid-template-columns: 1fr;
  }

  .account-sidebar {
    position: static;
    gap: 20px;
  }
}

@media (max-width: 720px) {
  .account-page {
    padding: 124px 16px 56px;
  }

  .account-profile-card__top {
    grid-template-columns: 56px minmax(0, 1fr);
    gap: 12px;
  }

  .account-profile-card__avatar {
    width: 56px;
    height: 56px;
  }

  .account-panel__header,
  .account-panel__body {
    padding-left: 0;
    padding-right: 0;
  }

  .account-panel__header {
    align-items: start;
    flex-direction: column;
  }

  .account-panel__title {
    font-size: 24px;
  }

  .account-order__top {
    grid-template-columns: 1fr;
  }

  .account-order__main {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .account-order__media {
    width: 64px;
    height: 64px;
  }

  .account-order__media-icon {
    font-size: 24px;
  }

  .account-order__side {
    justify-items: start;
    text-align: left;
  }

  .account-order-drawer {
    width: 100%;
  }

  .account-order-drawer__header,
  .account-order-drawer__body {
    padding-left: 18px;
    padding-right: 18px;
  }

  .account-order-drawer__hero {
    grid-template-columns: 60px minmax(0, 1fr);
  }

  .account-order-drawer__hero-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
  }

  .account-order-drawer__hero-icon iconify-icon {
    font-size: 26px;
  }

  .account-order-drawer__title {
    font-size: 22px;
  }

  .account-order-drawer__facts,
  .account-order-drawer__section-head,
  .account-order-timeline__top,
  .account-order-log__top {
    grid-template-columns: 1fr;
  }

  .account-order-drawer__section-head,
  .account-order-timeline__top,
  .account-order-log__top {
    display: grid;
  }

  .account-order-drawer__facts {
    grid-template-columns: 1fr;
  }

  .account-submit {
    width: 100%;
  }

  .account-form-grid--split {
    grid-template-columns: 1fr;
  }

  .account-form-grid--split > :last-child {
    grid-column: auto;
  }
}
