:root {
  --sidebar-width: 280px;
  --topbar-height: 72px;
  --page-padding: 28px;
  --radius: 8px;
  --red: #ed0012;
  --red-dark: #b9000e;
  --ink: #101322;
  --muted: #60677d;
  --line: #e7eaf2;
  --soft: #f6f7fb;
  --card: #ffffff;
}

* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  min-height: 100%;
  margin: 0;
}

body {
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  letter-spacing: 0;
}

button,
a,
input,
textarea {
  font: inherit;
}

button,
a {
  touch-action: manipulation;
}

/* Welcome page */
.welcome-body {
  min-width: 1100px;
  min-height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
  background: #ffffff;
}

.main-site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: #050607;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.main-site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1440px;
  height: 72px;
  margin: 0 auto;
  padding: 0 38px;
}

.main-site-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.main-site-login,
.main-site-signup {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 42px;
  padding: 0 24px;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 900;
}

.main-site-login {
  color: #ffffff;
  background: #08090b;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.main-site-signup {
  color: #ffffff;
  background: var(--red);
  border: 1px solid var(--red);
  box-shadow: 0 12px 26px rgba(237, 0, 18, 0.25);
}

.main-site-login:hover,
.main-site-login:focus-visible,
.main-site-signup:hover,
.main-site-signup:focus-visible {
  outline: 0;
  transform: translateY(-1px);
}

.main-site-shell {
  display: grid;
  gap: 14px;
  width: 100%;
  max-width: 1440px;
  min-height: calc(100vh - 72px);
  margin: 0 auto;
  padding: 0 104px 0;
  color: var(--ink);
}

.welcome-logo,
.platform-logo {
  display: inline-flex;
  align-items: center;
  color: #ffffff;
  text-decoration: none;
}

.official-logo {
  display: block;
  width: 230px;
  height: 62px;
  object-fit: contain;
  object-position: left center;
  user-select: none;
  -webkit-user-drag: none;
}

.main-hero {
  display: grid;
  grid-template-columns: minmax(420px, 0.82fr) minmax(520px, 1.18fr);
  gap: 18px;
  align-items: center;
  min-height: 414px;
}

.main-hero-copy {
  display: grid;
  align-content: center;
}

.main-hero-copy h1 {
  max-width: 560px;
  margin: 0 0 4px;
  color: #050607;
  font-size: 64px;
  line-height: 1.02;
  letter-spacing: 0;
}

.main-hero-copy h1 strong {
  color: var(--red);
}

.main-title-mark {
  display: block;
  width: 64px;
  height: 4px;
  margin: 18px 0 14px;
  background: var(--red);
  border-radius: 999px;
}

.main-hero-copy p {
  max-width: 640px;
  margin: 0 0 12px;
  color: #3f4658;
  font-size: 16px;
  line-height: 1.55;
}

.main-hero-copy .main-lead {
  color: #101322;
  font-size: 18px;
  font-weight: 900;
}

.main-hero-art {
  display: grid;
  align-items: end;
  min-height: 414px;
  pointer-events: none;
}

.main-hero-art img {
  display: block;
  width: 100%;
  height: 414px;
  object-fit: contain;
  object-position: right bottom;
}

.main-service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.main-service-card {
  display: grid;
  grid-template-columns: 128px 1fr;
  gap: 18px;
  height: 142px;
  min-height: 0;
  padding: 14px 22px;
  overflow: hidden;
  color: var(--ink);
  text-decoration: none;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 24px rgba(16, 19, 34, 0.08);
}

.main-service-card:hover,
.main-service-card:focus-visible {
  border-color: var(--line);
  outline: 0;
}

.main-card-image {
  align-self: center;
  justify-self: center;
  width: 98px;
  height: 98px;
  min-height: 0;
  border-radius: 50%;
}

.main-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.main-card-content {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) 30px;
  gap: 4px;
  align-content: stretch;
  min-width: 0;
  height: 100%;
}

.main-card-content strong {
  font-size: 20px;
  line-height: 1.05;
}

.main-card-content small {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.32;
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.main-card-content em {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 112px;
  height: 30px;
  margin-top: 0;
  color: var(--red);
  background: #ffffff;
  border: 1px solid var(--red);
  border-radius: var(--radius);
  font-style: normal;
  font-weight: 900;
  font-size: 13px;
}

.main-card-content em:hover,
.main-card-content em:focus-visible,
.main-service-card:focus-visible .main-card-content em {
  color: #ffffff;
  background: var(--red);
  outline: 0;
}

.main-stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-self: end;
  margin-top: auto;
  margin-left: -104px;
  margin-right: -104px;
  width: auto;
  height: 116px;
  min-height: 0;
  align-items: center;
  padding: 0 110px;
  color: #ffffff;
  background: #030405;
  border-radius: var(--radius);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.18);
}

.main-stats-strip article {
  display: grid;
  grid-template-columns: 66px 1fr;
  gap: 4px 18px;
  align-items: center;
  min-width: 0;
  height: 82px;
  padding: 0 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.main-stats-strip article:last-child {
  border-right: 0;
}

.main-stats-strip img {
  grid-row: span 2;
  display: block;
  width: 62px;
  height: 62px;
  object-fit: contain;
}

.main-stats-strip strong {
  font-size: 19px;
  line-height: 1.1;
}

.main-stats-strip small {
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  line-height: 1.28;
}

@media (min-width: 1441px) {
  .welcome-body {
    --home-pad: clamp(96px, 8vw, 180px);
  }

  .main-site-header-inner,
  .main-site-shell {
    max-width: none;
    padding-right: var(--home-pad);
    padding-left: var(--home-pad);
  }

  .main-hero {
    grid-template-columns: minmax(520px, 0.75fr) minmax(720px, 1.25fr);
  }

  .main-hero-art img {
    height: min(440px, 28vw);
  }

  .main-service-card {
    height: 150px;
  }

  .main-stats-strip {
    margin-left: calc(var(--home-pad) * -1);
    margin-right: calc(var(--home-pad) * -1);
    padding-right: var(--home-pad);
    padding-left: var(--home-pad);
  }
}

@media (max-width: 1100px) {
  .welcome-body {
    min-width: 0;
    overflow-x: hidden;
  }

  .main-site-header {
    position: relative;
  }

  .main-site-header-inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    height: auto;
    min-height: 72px;
    padding: 10px 16px 14px;
  }

  .welcome-logo {
    justify-content: center;
  }

  .welcome-logo .official-logo {
    width: 214px;
    height: 52px;
    object-position: center;
  }

  .main-site-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .main-site-actions .language-select {
    grid-column: 1 / -1;
    width: 100%;
    height: 40px;
  }

  .main-site-login,
  .main-site-signup {
    width: 100%;
    height: 40px;
    padding: 0 10px;
    font-size: 13px;
  }

  .main-site-shell {
    gap: 18px;
    min-height: auto;
    padding: 24px 16px 0;
  }

  .main-hero {
    grid-template-columns: 1fr;
    gap: 16px;
    min-height: 0;
  }

  .main-hero-copy h1 {
    max-width: none;
    font-size: 48px;
    line-height: 1.02;
  }

  .main-hero-copy p {
    max-width: none;
    font-size: 15px;
  }

  .main-hero-copy .main-lead {
    font-size: 17px;
  }

  .main-hero-art {
    min-height: 0;
  }

  .main-hero-art img {
    width: 100%;
    height: auto;
    max-height: 260px;
    object-fit: contain;
    object-position: center bottom;
  }

  .main-service-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .main-service-card {
    grid-template-columns: 106px 1fr;
    gap: 14px;
    height: 132px;
    padding: 14px;
  }

  .main-card-image {
    width: 90px;
    height: 90px;
  }

  .main-card-content strong {
    font-size: 18px;
  }

  .main-card-content small {
    font-size: 12px;
    -webkit-line-clamp: 2;
  }

  .main-card-content em {
    width: 106px;
    height: 30px;
  }

  .main-stats-strip {
    grid-template-columns: 1fr;
    gap: 0;
    width: 100%;
    height: auto;
    margin-left: 0;
    padding: 10px 14px;
    border-radius: var(--radius);
  }

  .main-stats-strip article {
    grid-template-columns: 54px 1fr;
    height: auto;
    min-height: 76px;
    padding: 10px 4px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .main-stats-strip article:last-child {
    border-bottom: 0;
  }

  .main-stats-strip img {
    width: 48px;
    height: 48px;
  }

  .main-stats-strip strong {
    font-size: 17px;
  }
}

/* Service sign-in pages */
.service-auth-shell {
  min-width: 1100px;
  min-height: 100vh;
  overflow: auto;
  background: #ffffff;
}

.service-auth-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 96px;
  padding: 0 48px;
  color: #ffffff;
  background: #050607;
}

.service-auth-logo {
  display: inline-flex;
  align-items: center;
  color: #ffffff;
  text-decoration: none;
}

.service-auth-logo .official-logo {
  width: 266px;
  height: 78px;
}

.service-auth-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

.service-auth-language {
  min-width: 170px;
  height: 48px;
  color: #ffffff;
  background: #050607;
  border-color: rgba(255, 255, 255, 0.22);
}

.service-auth-mode {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: #ffffff;
  background: #050607;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--radius);
  cursor: pointer;
  font-size: 24px;
}

.service-auth-create {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  min-width: 170px;
  padding: 0 28px;
  color: #ffffff;
  background: var(--red);
  border: 1px solid var(--red);
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 12px 26px rgba(237, 0, 18, 0.25);
}

.service-auth-main {
  display: grid;
  grid-template-columns: 560px minmax(0, 1fr);
  gap: 54px;
  align-items: center;
  max-width: 1440px;
  min-height: auto;
  margin: 0 auto;
  padding: 24px 48px 18px;
}

.service-auth-card {
  display: grid;
  align-content: center;
  min-height: 0;
  padding: 26px 34px;
  background: #ffffff;
  border: 1px solid #dfe3ec;
  border-radius: 18px;
  box-shadow: 0 18px 48px rgba(16, 19, 34, 0.08);
}

.service-auth-card .panel-heading {
  margin-bottom: 22px;
}

.service-auth-card .round-icon {
  width: 52px;
  height: 52px;
  color: var(--red);
  background: rgba(237, 0, 18, 0.1);
  font-size: 30px;
}

.panel-kicker {
  margin-top: 12px;
  color: var(--red);
  font-size: 15px;
  font-weight: 900;
}

.service-auth-card .panel-heading h2 {
  margin: 6px 0 6px;
  font-size: 36px;
  line-height: 1;
}

.service-auth-card .panel-heading p {
  max-width: 360px;
  line-height: 1.6;
}

.service-auth-card .auth-form {
  gap: 7px;
}

.service-auth-card .field-label {
  margin-top: 6px;
}

.service-auth-card .input-shell {
  height: 50px;
}

.service-auth-card .primary-button {
  height: 54px;
  margin-top: 6px;
  font-size: 17px;
}

.service-auth-card .divider {
  margin: 15px 0 12px;
}

.service-auth-card .social-button {
  height: 48px;
  font-size: 17px;
}

.service-auth-visual-panel {
  position: relative;
  min-height: 590px;
  overflow: hidden;
}

.service-hero-copy {
  position: relative;
  z-index: 1;
  max-width: 430px;
  padding-top: 26px;
}

.service-hero-copy h1 {
  margin: 0 0 12px;
  color: #101322;
  font-size: 34px;
  line-height: 1.18;
  letter-spacing: 0;
}

.service-hero-copy h1 strong {
  color: var(--red);
}

.service-hero-copy p {
  margin: 0;
  color: #4f566b;
  font-size: 17px;
  line-height: 1.45;
}

.service-hero-image {
  position: absolute;
  inset: 0;
  display: grid;
  align-items: end;
  justify-items: end;
  pointer-events: none;
}

.service-hero-image img {
  display: block;
  width: 100%;
  max-height: 560px;
  object-fit: contain;
  object-position: right bottom;
}

.service-hero-image[data-service='customer'] img {
  clip-path: inset(3px 0 0 0);
}

.service-hero-image:not([data-service='customer']) img {
  width: 72%;
  max-height: 520px;
  margin-bottom: 36px;
  filter: drop-shadow(0 22px 36px rgba(16, 19, 34, 0.12));
}

.service-auth-banner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  max-width: 1360px;
  height: 92px;
  margin: 0 auto 18px;
  padding: 0 42px;
  color: #ffffff;
  background: #030405;
  border-radius: 14px;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.18);
}

.service-auth-banner article {
  display: grid;
  grid-template-columns: 50px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-width: 0;
  height: 58px;
  padding: 0 24px;
  border-right: 1px solid rgba(255, 255, 255, 0.28);
}

.service-auth-banner article:last-child {
  border-right: 0;
}

.service-auth-banner img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}

.service-auth-banner strong,
.service-auth-banner small {
  display: block;
}

.service-auth-banner strong {
  font-size: 18px;
  line-height: 1.1;
}

.service-auth-banner small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.2;
}

/* Shared platform layout */
.platform-body {
  min-width: 1100px;
  min-height: 100vh;
  overflow-x: hidden;
  overflow-y: auto;
  background: var(--soft);
}

.platform-shell {
  position: relative;
  display: grid;
  grid-template-columns: var(--sidebar-width) minmax(0, 1fr);
  min-height: 100vh;
  background: var(--soft);
}

.platform-sidebar {
  position: sticky;
  top: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
  width: var(--sidebar-width);
  height: 100vh;
  padding: 24px 18px;
  overflow-y: auto;
  color: #ffffff;
  background: #050607;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.platform-logo {
  min-height: 58px;
}

.platform-logo .official-logo {
  width: 218px;
  height: 66px;
}

.space-id-card,
.sidebar-promo {
  display: grid;
  gap: 10px;
  padding: 18px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
}

.space-id-card {
  grid-template-columns: 44px 1fr;
  align-items: center;
  height: 120px;
  overflow: hidden;
}

.space-id-icon,
.promo-icon,
.round-icon,
.topbar-icon {
  display: grid;
  place-items: center;
  color: var(--red);
  background: rgba(237, 0, 18, 0.1);
  border-radius: var(--radius);
}

.space-id-icon {
  width: 44px;
  height: 44px;
  font-size: 24px;
}

.space-id-card strong,
.sidebar-promo strong {
  display: block;
  font-size: 17px;
}

.space-id-card small,
.sidebar-promo p {
  display: block;
  margin: 5px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 13px;
  line-height: 1.45;
}

.side-menu {
  display: grid;
  gap: 8px;
}

.side-link,
.logout-link,
.promo-button {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  min-height: 52px;
  padding: 0 16px;
  color: #ffffff;
  text-decoration: none;
  border-radius: var(--radius);
  border: 1px solid transparent;
  background: transparent;
  font-weight: 800;
}

.side-link:hover,
.side-link:focus-visible,
.logout-link:hover,
.logout-link:focus-visible {
  border-color: rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.07);
  outline: 0;
}

.side-link.is-active {
  background: var(--red);
  box-shadow: 0 10px 24px rgba(237, 0, 18, 0.28);
}

.side-icon {
  display: grid;
  width: 24px;
  place-items: center;
  font-size: 18px;
}

.sidebar-promo {
  margin-top: auto;
}

.promo-icon {
  width: 60px;
  height: 60px;
  color: #ffffff;
  background: var(--red);
  font-size: 30px;
}

.promo-button {
  justify-content: center;
  margin-top: 4px;
  background: var(--red);
}

.logout-link {
  min-height: 44px;
  color: rgba(255, 255, 255, 0.78);
}

.platform-main {
  min-width: 0;
}

.platform-topbar {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--topbar-height);
  padding: 0 var(--page-padding);
  background: rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.topbar-title,
.topbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.topbar-icon,
.round-icon {
  width: 42px;
  height: 42px;
  font-size: 22px;
}

.topbar-title strong {
  font-size: 18px;
}

.icon-button,
.language-select,
.theme-toggle,
.profile-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  padding: 0 12px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
}

.language-select {
  min-width: 126px;
  appearance: auto;
  font-weight: 800;
}

.icon-button,
.theme-toggle,
.profile-button {
  width: 40px;
  padding: 0;
}

.topbar-search {
  display: flex;
  align-items: center;
  gap: 9px;
  width: 280px;
  height: 42px;
  padding: 0 14px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.topbar-search span {
  color: var(--muted);
}

.topbar-search input {
  flex: 1;
  min-width: 0;
  height: 100%;
  color: var(--ink);
  background: transparent;
  border: 0;
  outline: 0;
}

.topbar-search:focus-within {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(237, 0, 18, 0.1);
}

.profile-button span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: #ffffff;
  background: var(--red);
  border-radius: 50%;
  font-weight: 900;
}

.platform-content {
  padding: var(--page-padding);
}

.auth-grid {
  display: grid;
  grid-template-columns: minmax(310px, 1fr) minmax(390px, 520px) minmax(300px, 420px);
  gap: 24px;
  align-items: start;
  min-height: calc(100vh - var(--topbar-height) - 88px);
}

.auth-panel,
.feature-panel {
  margin-top: 46px;
}

.auth-copy h1,
.welcome-card h1 {
  margin: 8px 0 12px;
  font-size: 42px;
  line-height: 1.08;
  letter-spacing: 0;
}

.auth-copy p,
.welcome-card p {
  max-width: 560px;
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.section-kicker {
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.mini-dashboard {
  display: grid;
  grid-template-columns: 1fr 0.7fr;
  gap: 14px;
  max-width: 440px;
  margin-top: 38px;
}

.mini-card {
  min-height: 130px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 45px rgba(16, 19, 34, 0.08);
}

.mini-card.small {
  min-height: 90px;
}

.mini-card.red {
  grid-column: span 2;
  min-height: 76px;
  background: linear-gradient(135deg, var(--red), #710006);
}

.auth-panel,
.feature-panel,
.welcome-card,
.stat-card,
.data-card,
.benefit-row,
.platform-footer {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 45px rgba(16, 19, 34, 0.08);
}

.auth-panel {
  min-height: 668px;
  padding: 34px;
}

.panel-heading {
  display: grid;
  justify-items: center;
  margin-bottom: 24px;
  text-align: center;
}

.panel-heading h2 {
  margin: 14px 0 6px;
  font-size: 30px;
}

.panel-heading p {
  margin: 0;
  color: var(--muted);
}

.auth-form {
  display: grid;
  gap: 10px;
}

.field-label {
  margin-top: 8px;
  font-size: 14px;
  font-weight: 900;
}

.input-shell {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 52px;
  padding: 0 14px;
  background: #ffffff;
  border: 1px solid #d8deeb;
  border-radius: var(--radius);
}

.input-shell:focus-within {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(237, 0, 18, 0.1);
}

.input-shell span {
  color: #4b5270;
}

.input-shell input {
  flex: 1;
  min-width: 0;
  height: 100%;
  color: var(--ink);
  background: transparent;
  border: 0;
  outline: 0;
}

.input-icon-button {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #4b5270;
  background: transparent;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
}

.input-icon-button:hover,
.input-icon-button:focus-visible {
  background: #f0f2f7;
  outline: 0;
}

.form-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 42px;
}

.check-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 14px;
}

.check-label input {
  width: 18px;
  height: 18px;
  accent-color: var(--red);
}

.link-button {
  color: var(--red);
  background: transparent;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 900;
}

.link-button:hover,
.link-button:focus-visible {
  color: var(--red-dark);
  outline: 0;
  text-decoration: underline;
}

.primary-button,
.social-button,
.quick-actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  height: 54px;
  padding: 0 18px;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 900;
}

.primary-button {
  color: #ffffff;
  background: var(--red);
  border: 1px solid var(--red);
  box-shadow: 0 10px 24px rgba(237, 0, 18, 0.22);
}

.primary-button:hover,
.primary-button:focus-visible {
  background: var(--red-dark);
  border-color: var(--red-dark);
  outline: 0;
}

.primary-button.compact {
  width: auto;
  min-width: 180px;
}

.divider {
  display: grid;
  align-items: center;
  margin: 20px 0 14px;
  color: var(--muted);
  text-align: center;
  font-size: 14px;
}

.social-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.social-button {
  color: var(--ink);
  background: #ffffff;
  border: 1px solid #d8deeb;
  box-shadow: none;
}

.social-button:hover,
.social-button:focus-visible {
  border-color: var(--red);
  outline: 0;
}

.panel-switch {
  margin: 22px 0 0;
  color: var(--muted);
  text-align: center;
}

.panel-switch a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-weight: 900;
  text-decoration: none;
}

.panel-switch a:hover,
.panel-switch a:focus-visible {
  text-decoration: underline;
}

.textarea-field {
  width: 100%;
  padding: 14px;
  color: var(--ink);
  border: 1px solid #d8deeb;
  border-radius: var(--radius);
  resize: vertical;
  outline: 0;
}

.textarea-field:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(237, 0, 18, 0.1);
}

.contact-strip {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  color: var(--muted);
  font-weight: 800;
}

.feature-panel {
  padding: 28px;
  height: 668px;
  overflow: hidden;
}

.feature-visual {
  position: relative;
  display: grid;
  min-height: 150px;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(145deg, #fff, #f5f6fb);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  pointer-events: none;
}

.visual-orbit {
  width: 160px;
  height: 94px;
  border: 2px dashed rgba(237, 0, 18, 0.3);
  border-radius: 999px;
}

.visual-box {
  position: absolute;
  display: grid;
  width: 86px;
  height: 86px;
  place-items: center;
  color: #ffffff;
  background: var(--red);
  border-radius: var(--radius);
  font-size: 42px;
  box-shadow: 0 18px 34px rgba(237, 0, 18, 0.24);
}

.feature-panel h2 {
  margin: 22px 0 16px;
  font-size: 23px;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 12px;
}

.feature-list li span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--red);
  background: rgba(237, 0, 18, 0.08);
  border-radius: var(--radius);
}

.feature-list strong,
.feature-list small {
  display: block;
}

.feature-list small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.platform-footer {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.1fr;
  gap: 18px;
  margin: 0 var(--page-padding) var(--page-padding);
  padding: 18px 22px;
  color: var(--muted);
  font-weight: 800;
}

.dashboard-content {
  display: grid;
  gap: 20px;
}

.welcome-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 28px 32px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.stat-card {
  display: grid;
  gap: 8px;
  padding: 22px;
}

.stat-card small,
.stat-card span {
  color: var(--muted);
}

.stat-card strong {
  font-size: 28px;
}

.stat-card span {
  color: #108944;
  font-weight: 900;
}

.work-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(300px, 0.7fr);
  gap: 16px;
}

.data-card {
  padding: 22px;
}

.card-title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.card-title-row h2,
.data-card h2 {
  margin: 0;
  font-size: 20px;
}

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

.table-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 110px;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 14px;
  background: #f9fafc;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.table-row span,
.table-row em {
  color: var(--muted);
  font-style: normal;
}

.quick-actions {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.quick-actions button {
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: none;
}

.quick-actions button:first-child {
  color: #ffffff;
  background: var(--red);
  border-color: var(--red);
}

.benefit-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 18px;
}

.benefit-row article {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 12px;
  padding: 10px 18px;
  border-right: 1px solid var(--line);
}

.benefit-row article:last-child {
  border-right: 0;
}

.benefit-row span {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  color: var(--red);
  background: rgba(237, 0, 18, 0.08);
  border-radius: var(--radius);
  font-size: 24px;
}

.benefit-row small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
}

.customer-dashboard {
  display: grid;
  gap: 18px;
}

.customer-hero-card,
.customer-tracking-card,
.customer-offers-card,
.customer-orders-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 45px rgba(16, 19, 34, 0.08);
}

.customer-hero-card {
  display: grid;
  grid-template-columns: minmax(360px, 0.9fr) minmax(460px, 1.1fr);
  gap: 20px;
  min-height: 276px;
  padding: 26px 30px;
  overflow: hidden;
}

.customer-hero-copy {
  display: grid;
  align-content: center;
  min-width: 0;
}

.customer-hero-copy h1 {
  margin: 8px 0 10px;
  color: #050607;
  font-size: 42px;
  line-height: 1.05;
}

.customer-hero-copy p {
  max-width: 470px;
  margin: 0;
  color: #3f4658;
  font-size: 19px;
  line-height: 1.45;
}

.customer-hero-actions,
.tracking-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.ghost-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  height: 46px;
  padding: 0 18px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 900;
  text-decoration: none;
}

.ghost-button:hover,
.ghost-button:focus-visible {
  color: var(--red);
  border-color: var(--red);
  outline: 0;
}

.customer-hero-visual {
  display: grid;
  align-items: end;
  justify-items: end;
  pointer-events: none;
}

.customer-hero-visual img {
  display: block;
  width: 100%;
  max-height: 250px;
  object-fit: contain;
  object-position: right bottom;
}

.customer-service-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

.customer-service-card {
  display: grid;
  grid-template-rows: 46px auto 1fr;
  gap: 8px;
  min-height: 154px;
  padding: 16px;
  color: var(--ink);
  text-decoration: none;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 32px rgba(16, 19, 34, 0.07);
}

.customer-service-card:hover,
.customer-service-card:focus-visible {
  border-color: var(--red);
  outline: 0;
  transform: translateY(-1px);
}

.customer-service-card span {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  color: var(--red);
  background: rgba(237, 0, 18, 0.08);
  border-radius: var(--radius);
  font-size: 24px;
  font-weight: 900;
}

.customer-service-card strong {
  font-size: 16px;
  line-height: 1.15;
}

.customer-service-card small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.customer-work-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(380px, 0.95fr);
  gap: 16px;
  align-items: start;
}

.customer-tracking-card,
.customer-offers-card,
.customer-orders-card {
  padding: 22px;
}

.customer-tracking-card .card-title-row small {
  display: block;
  margin-top: 5px;
  color: var(--muted);
}

.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  padding: 0 12px;
  color: #108944;
  background: rgba(16, 137, 68, 0.1);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.tracking-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 20px;
}

.tracking-steps span {
  position: relative;
  display: grid;
  gap: 8px;
  min-height: 86px;
  padding: 14px 10px;
  background: #f9fafc;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.tracking-steps span.is-done {
  background: rgba(237, 0, 18, 0.06);
  border-color: rgba(237, 0, 18, 0.22);
}

.tracking-steps i {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: #ffffff;
  background: #aeb5c7;
  border-radius: 50%;
  font-style: normal;
  font-weight: 900;
}

.tracking-steps .is-done i {
  background: var(--red);
}

.tracking-steps b {
  font-size: 13px;
  line-height: 1.25;
}

.offer-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.offer-card {
  display: grid;
  gap: 6px;
  min-height: 134px;
  padding: 14px;
  color: var(--ink);
  text-decoration: none;
  background: #f9fafc;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.offer-card:hover,
.offer-card:focus-visible {
  border-color: var(--red);
  outline: 0;
}

.offer-card span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  min-width: 48px;
  height: 28px;
  padding: 0 10px;
  color: #ffffff;
  background: var(--red);
  border-radius: 999px;
  font-weight: 900;
}

.offer-card small,
.offer-card em {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.offer-card em {
  color: var(--red);
  font-style: normal;
  font-weight: 900;
}

.customer-order-list {
  display: grid;
  gap: 10px;
}

.customer-order-row {
  display: grid;
  grid-template-columns: minmax(150px, 1.2fr) 150px 90px 150px 110px;
  gap: 12px;
  align-items: center;
  min-height: 54px;
  padding: 0 14px;
  background: #f9fafc;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.customer-order-row span,
.customer-order-row em {
  color: var(--muted);
  font-style: normal;
}

.customer-order-row small {
  justify-self: start;
  padding: 6px 10px;
  color: #108944;
  background: rgba(16, 137, 68, 0.1);
  border-radius: 999px;
  font-weight: 900;
}

.customer-info-banner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: 96px;
  align-items: center;
  padding: 0 34px;
  color: #ffffff;
  background: #030405;
  border-radius: var(--radius);
  box-shadow: 0 18px 45px rgba(16, 19, 34, 0.16);
}

.customer-info-banner article {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: center;
  min-width: 0;
  height: 60px;
  padding: 0 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.22);
}

.customer-info-banner article:last-child {
  border-right: 0;
}

.customer-info-banner img {
  display: block;
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.customer-info-banner strong,
.customer-info-banner small {
  display: block;
}

.customer-info-banner strong {
  font-size: 17px;
  line-height: 1.1;
}

.customer-info-banner small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  line-height: 1.2;
}

body.customer-dashboard-mode .platform-sidebar {
  gap: 14px;
  padding: 22px 20px;
  background:
    radial-gradient(circle at 20% 0%, rgba(237, 0, 18, 0.18), transparent 28%),
    #050607;
}

body.customer-dashboard-mode .space-id-card {
  display: block;
  height: auto;
  padding: 8px 0 6px 46px;
  background: transparent;
  border: 0;
  border-radius: 0;
}

body.customer-dashboard-mode .space-id-card .space-id-icon,
body.customer-dashboard-mode .space-id-card small {
  display: none;
}

body.customer-dashboard-mode .space-id-card strong {
  position: relative;
  color: #ffffff;
  font-size: 14px;
  text-transform: uppercase;
}

body.customer-dashboard-mode .space-id-card strong::before {
  content: "";
  position: absolute;
  left: -7px;
  top: 2px;
  width: 4px;
  height: 14px;
  background: var(--red);
  border-radius: 999px;
}

body.customer-dashboard-mode .side-menu {
  gap: 5px;
}

body.customer-dashboard-mode .side-link {
  min-height: 48px;
  padding: 0 14px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 800;
}

body.customer-dashboard-mode .side-link.is-active {
  color: #ffffff;
  background: linear-gradient(90deg, rgba(237, 0, 18, 0.92), rgba(237, 0, 18, 0.2));
  border-color: rgba(237, 0, 18, 0.55);
  box-shadow: none;
}

body.customer-dashboard-mode .sidebar-promo {
  margin-top: auto;
  min-height: 142px;
  padding: 18px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035)),
    #090a0d;
  border-color: rgba(255, 255, 255, 0.11);
  border-radius: 12px;
}

body.customer-dashboard-mode .sidebar-promo .promo-icon {
  display: none;
}

body.customer-dashboard-mode .promo-button {
  width: 112px;
  min-height: 42px;
  margin-top: 4px;
  box-shadow: 0 12px 24px rgba(237, 0, 18, 0.24);
}

body.customer-dashboard-mode .logout-link {
  min-height: 52px;
  padding: 0 18px;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
  border-color: rgba(255, 255, 255, 0.11);
  border-radius: 12px;
}

.customer-topbar {
  gap: 16px;
  justify-content: start;
  background: rgba(255, 255, 255, 0.98);
}

.customer-topbar-search {
  flex: 1 1 auto;
  width: auto;
  min-width: 280px;
  max-width: none;
  height: 48px;
  border-radius: 12px;
}

.location-button,
.customer-profile-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 48px;
  padding: 0 16px;
  gap: 10px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
  font-weight: 900;
}

.location-button {
  min-width: 150px;
}

.customer-topbar .language-select,
.customer-topbar .icon-button {
  height: 48px;
  border-radius: 12px;
}

.customer-topbar .icon-button {
  position: relative;
  width: 48px;
}

.has-badge span {
  position: absolute;
  top: 6px;
  right: 7px;
  display: grid;
  min-width: 16px;
  height: 16px;
  place-items: center;
  padding: 0 4px;
  color: #ffffff;
  background: var(--red);
  border-radius: 999px;
  font-size: 10px;
  line-height: 1;
  font-weight: 900;
}

.customer-profile-button {
  min-width: 170px;
  justify-content: flex-start;
  text-align: left;
}

.profile-avatar {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #ffffff;
  background: linear-gradient(145deg, #ed0012, #15171d);
  border-radius: 50%;
  font-weight: 900;
}

.customer-profile-button strong,
.driver-row strong {
  display: grid;
  gap: 2px;
  line-height: 1;
}

.customer-profile-button small,
.driver-row small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.customer-profile-button em {
  margin-left: auto;
  color: var(--muted);
  font-style: normal;
}

body.customer-dashboard-mode .customer-dashboard {
  gap: 18px;
  padding: 20px var(--page-padding) 24px;
}

.customer-main-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 370px;
  gap: 18px;
  align-items: stretch;
}

.customer-left-column {
  display: grid;
  gap: 18px;
  min-width: 0;
}

body.customer-dashboard-mode .customer-hero-card {
  position: relative;
  grid-template-columns: minmax(370px, 0.9fr) minmax(340px, 1.1fr);
  gap: 12px;
  min-height: 340px;
  padding: 34px 36px;
  color: #ffffff;
  background:
    radial-gradient(circle at 78% 55%, rgba(237, 0, 18, 0.34), transparent 28%),
    linear-gradient(105deg, #050607 0%, #0b0d12 52%, #14171e 100%);
  border-color: rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  box-shadow: 0 20px 45px rgba(5, 6, 7, 0.16);
}

body.customer-dashboard-mode .customer-hero-copy h1 {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 30px;
  line-height: 1.18;
}

body.customer-dashboard-mode .customer-hero-copy h1 strong {
  color: var(--red);
}

body.customer-dashboard-mode .customer-hero-copy h1 span {
  font-size: 24px;
}

body.customer-dashboard-mode .customer-hero-copy p {
  color: rgba(255, 255, 255, 0.88);
  font-size: 16px;
}

.hero-chip-row {
  display: grid;
  grid-template-columns: repeat(4, 72px);
  gap: 12px;
  margin-top: 24px;
}

.hero-chip {
  display: grid;
  gap: 7px;
  align-content: center;
  justify-items: center;
  height: 88px;
  color: #ffffff;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 10px;
}

.hero-chip:hover,
.hero-chip:focus-visible {
  border-color: rgba(237, 0, 18, 0.78);
  outline: 0;
}

.hero-chip img {
  display: block;
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.hero-chip span {
  font-size: 10px;
  font-weight: 900;
}

.hero-mini-strip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: max-content;
  max-width: 100%;
  min-height: 38px;
  margin-top: 22px;
  padding: 0 13px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 10px;
  font-size: 12px;
  font-weight: 800;
}

.hero-mini-strip span {
  color: var(--red);
}

.hero-mini-strip b {
  color: rgba(255, 255, 255, 0.5);
}

body.customer-dashboard-mode .customer-hero-visual img {
  max-height: 315px;
  object-position: right bottom;
  filter: drop-shadow(0 24px 32px rgba(0, 0, 0, 0.28));
}

.customer-offer-carousel {
  position: relative;
  min-height: 340px;
  overflow: hidden;
  color: #ffffff;
  background:
    radial-gradient(circle at 78% 55%, rgba(237, 0, 18, 0.34), transparent 28%),
    linear-gradient(105deg, #050607 0%, #0b0d12 52%, #14171e 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  box-shadow: 0 20px 45px rgba(5, 6, 7, 0.16);
}

.customer-offer-track,
.customer-offer-slide {
  min-height: 340px;
}

.customer-offer-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(360px, 0.88fr) minmax(320px, 1.12fr);
  gap: 16px;
  align-items: center;
  padding: 34px 52px 34px 36px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(22px);
  transition: opacity 320ms ease, transform 320ms ease;
}

.customer-offer-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.customer-offer-copy {
  display: grid;
  align-content: center;
  justify-items: start;
  min-width: 0;
}

.customer-offer-copy span {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  padding: 0 12px;
  color: #ffffff;
  background: var(--red);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.customer-offer-copy h1 {
  max-width: 460px;
  margin: 13px 0 8px;
  color: #ffffff;
  font-size: 34px;
  line-height: 1.05;
}

.customer-offer-copy p {
  max-width: 460px;
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
  line-height: 1.45;
}

.customer-offer-copy .primary-button {
  box-shadow: 0 14px 28px rgba(237, 0, 18, 0.28);
}

.customer-offer-slide > img {
  display: block;
  justify-self: end;
  width: 100%;
  max-height: 294px;
  object-fit: contain;
  object-position: right bottom;
  filter: drop-shadow(0 24px 32px rgba(0, 0, 0, 0.28));
}

.offer-carousel-arrow {
  display: none;
}

.offer-carousel-arrow:hover,
.offer-carousel-arrow:focus-visible {
  background: var(--red);
  border-color: var(--red);
  outline: 0;
}

.offer-carousel-arrow.prev {
  left: 14px;
}

.offer-carousel-arrow.next {
  right: 14px;
}

.offer-carousel-dots {
  position: absolute;
  left: 36px;
  bottom: 20px;
  z-index: 2;
  display: flex;
  gap: 7px;
}

.offer-carousel-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  background: rgba(255, 255, 255, 0.56);
  border: 0;
  border-radius: 999px;
  cursor: pointer;
}

.offer-carousel-dots button.is-active {
  width: 24px;
  background: var(--red);
}

body.customer-dashboard-mode .customer-service-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 14px;
}

body.customer-dashboard-mode .customer-service-card {
  display: grid;
  grid-template-rows: 58px auto auto 30px;
  justify-items: center;
  gap: 5px;
  min-height: 168px;
  padding: 18px 12px 14px;
  overflow: hidden;
  color: var(--ink);
  text-align: center;
  text-decoration: none;
  border-radius: 12px;
  box-shadow: 0 12px 26px rgba(16, 19, 34, 0.07);
}

body.customer-dashboard-mode .customer-service-card img {
  display: block;
  width: 66px;
  height: 58px;
  object-fit: contain;
}

body.customer-dashboard-mode .customer-service-card strong {
  font-size: 16px;
  line-height: 1.12;
}

body.customer-dashboard-mode .customer-service-card small {
  color: #545b70;
  font-size: 13px;
  line-height: 1.25;
}

body.customer-dashboard-mode .customer-service-card span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: #ffffff;
  background: var(--red);
  border-radius: 50%;
  font-size: 14px;
}

.active-order-card,
body.customer-dashboard-mode .customer-offers-card,
body.customer-dashboard-mode .customer-orders-card,
.customer-section-hero,
.customer-list-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 16px 38px rgba(16, 19, 34, 0.07);
}

.active-order-card {
  display: grid;
  gap: 17px;
  align-content: start;
  padding: 22px;
}

.active-order-merchant,
.driver-row,
.customer-order-row {
  display: grid;
  align-items: center;
}

.active-order-merchant {
  grid-template-columns: 58px 1fr auto;
  gap: 13px;
}

.active-order-merchant img {
  display: block;
  width: 58px;
  height: 58px;
  object-fit: contain;
  border-radius: 50%;
  background: #f7f8fb;
}

.active-order-merchant strong,
.active-order-merchant small {
  display: block;
}

.active-order-merchant small {
  margin-top: 4px;
  color: var(--muted);
}

.active-order-merchant em,
.customer-order-row small {
  justify-self: start;
  padding: 7px 12px;
  color: #159452;
  background: rgba(21, 148, 82, 0.12);
  border-radius: 999px;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.tracking-line {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}

.tracking-line span {
  display: grid;
  justify-items: center;
  gap: 7px;
  color: #98a0b4;
  text-align: center;
  font-size: 11px;
  font-weight: 800;
}

.tracking-line i {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  color: #ffffff;
  background: #c5cad7;
  border-radius: 50%;
  font-size: 12px;
  font-style: normal;
}

.tracking-line .is-done {
  color: var(--red);
}

.tracking-line .is-done i {
  background: #29a45d;
}

.mini-map {
  position: relative;
  height: 112px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(16, 19, 34, 0.05) 25%, transparent 25%) 0 0 / 24px 24px,
    linear-gradient(225deg, rgba(16, 19, 34, 0.04) 25%, transparent 25%) 0 0 / 24px 24px,
    #f1f3f7;
  border-radius: 12px;
}

.mini-map svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  fill: none;
}

.mini-map path {
  stroke: var(--red);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-dasharray: 10 10;
}

.mini-map .pin {
  position: absolute;
  z-index: 1;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: #ffffff;
  background: #050607;
  border: 3px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 8px 16px rgba(16, 19, 34, 0.18);
}

.mini-map .start {
  left: 26px;
  top: 44px;
}

.mini-map .end {
  right: 30px;
  top: 48px;
}

.driver-row {
  grid-template-columns: 42px 1fr auto 44px;
  gap: 10px;
}

.driver-row em {
  color: #f3a40b;
  font-style: normal;
  font-weight: 900;
}

.call-button {
  color: var(--red);
}

.full-width {
  width: 100%;
}

.customer-lower-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.92fr);
  gap: 18px;
}

body.customer-dashboard-mode .customer-offers-card,
body.customer-dashboard-mode .customer-orders-card {
  padding: 18px 20px;
}

body.customer-dashboard-mode .offer-list {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

body.customer-dashboard-mode .offer-card {
  position: relative;
  min-height: 184px;
  overflow: hidden;
  padding: 18px;
  border-radius: 12px;
  background: linear-gradient(145deg, #fff7f7, #ffffff);
}

body.customer-dashboard-mode .offer-card span {
  justify-content: flex-start;
  width: auto;
  min-width: 0;
  height: auto;
  padding: 0;
  color: var(--red);
  background: transparent;
  border-radius: 0;
  font-size: 22px;
  line-height: 1.08;
}

body.customer-dashboard-mode .offer-card strong {
  color: var(--red);
  font-size: 16px;
}

body.customer-dashboard-mode .offer-card img {
  position: absolute;
  right: 10px;
  bottom: 28px;
  width: 74px;
  height: 62px;
  object-fit: contain;
}

body.customer-dashboard-mode .offer-card em {
  position: absolute;
  left: 16px;
  bottom: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 26px;
  padding: 0 12px;
  color: #111420;
  background: rgba(255, 255, 255, 0.72);
  border-radius: 999px;
}

.green-offer {
  background: linear-gradient(145deg, #f3fff7, #ffffff) !important;
}

.warm-offer {
  background: linear-gradient(145deg, #fff8ef, #ffffff) !important;
}

body.customer-dashboard-mode .customer-order-list {
  gap: 0;
}

body.customer-dashboard-mode .customer-order-row {
  grid-template-columns: 38px minmax(100px, 1fr) 116px 58px minmax(78px, auto) 14px;
  gap: 8px;
  min-height: 58px;
  padding: 0;
  color: var(--ink);
  text-decoration: none;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
}

body.customer-dashboard-mode .customer-order-row:last-child {
  border-bottom: 0;
}

body.customer-dashboard-mode .customer-order-row img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  border-radius: 50%;
}

body.customer-dashboard-mode .customer-order-row strong,
body.customer-dashboard-mode .customer-order-row span,
body.customer-dashboard-mode .customer-order-row b {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

body.customer-dashboard-mode .customer-order-row b {
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

body.customer-dashboard-mode .customer-order-row small {
  color: #159452;
  background: rgba(21, 148, 82, 0.12);
}

body.customer-dashboard-mode .customer-order-row em {
  color: var(--muted);
  font-style: normal;
  font-size: 22px;
}

body.customer-dashboard-mode .customer-info-banner {
  height: 96px;
  border-radius: 12px;
  box-shadow: 0 18px 45px rgba(16, 19, 34, 0.18);
}

.customer-section-page {
  align-content: start;
}

.customer-section-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 24px;
  align-items: center;
  min-height: 230px;
  padding: 30px;
}

.customer-section-hero h1 {
  margin: 8px 0;
  font-size: 42px;
  line-height: 1.05;
}

.customer-section-hero p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.customer-section-hero img {
  display: block;
  width: 100%;
  max-height: 190px;
  object-fit: contain;
}

.customer-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.customer-filter-row button {
  min-height: 38px;
  padding: 0 14px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
}

.customer-filter-row button:hover,
.customer-filter-row button:focus-visible {
  color: #ffffff;
  background: var(--red);
  border-color: var(--red);
  outline: 0;
}

.customer-section-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.customer-list-card {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  align-items: center;
  min-height: 178px;
  padding: 18px;
}

.customer-list-card img {
  width: 104px;
  height: 104px;
  object-fit: contain;
}

.customer-list-card strong,
.customer-list-card span,
.customer-list-card p {
  display: block;
}

.customer-list-card strong {
  font-size: 18px;
}

.customer-list-card span {
  margin-top: 6px;
  color: var(--red);
  font-weight: 900;
}

.customer-list-card p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.customer-list-card .primary-button {
  grid-column: 1 / -1;
  justify-self: start;
}

.admin-banners-dashboard {
  display: grid;
  gap: 18px;
}

.admin-managed-section {
  display: grid;
  gap: 12px;
}

.admin-managed-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  padding: 0 4px;
}

.admin-managed-heading h2 {
  margin: 0 0 4px;
  font-size: 22px;
}

.admin-managed-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.admin-banners-hero,
.admin-banner-editor {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 16px 38px rgba(16, 19, 34, 0.07);
}

.admin-banners-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 160px;
  padding: 28px;
}

.admin-hero-actions {
  display: flex;
  gap: 10px;
  align-items: center;
}

.admin-banners-hero h1 {
  margin: 8px 0;
  font-size: 34px;
  line-height: 1.08;
}

.admin-banners-hero p {
  max-width: 820px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

.admin-banner-editor {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.admin-banner-row {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
  padding: 14px;
  background: #f8f9fc;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.admin-banner-preview {
  position: relative;
  display: grid;
  place-items: center;
  min-height: 180px;
  overflow: hidden;
  background:
    radial-gradient(circle at 75% 55%, rgba(237, 0, 18, 0.28), transparent 28%),
    linear-gradient(125deg, #050607, #151922);
  border-radius: 10px;
}

.admin-banner-preview img {
  display: block;
  width: 88%;
  height: 150px;
  object-fit: contain;
  filter: drop-shadow(0 18px 22px rgba(0, 0, 0, 0.24));
}

.admin-banner-preview span {
  position: absolute;
  top: 12px;
  left: 12px;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: #ffffff;
  background: var(--red);
  border-radius: 50%;
  font-weight: 900;
}

.admin-banner-fields {
  display: grid;
  grid-template-columns: 110px repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-content: start;
}

.admin-banner-fields label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.admin-banner-fields label:first-child {
  align-content: end;
}

.admin-banner-fields input,
.admin-banner-fields select {
  width: 100%;
  min-width: 0;
  height: 42px;
  padding: 0 12px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 10px;
  outline: 0;
}

.admin-banner-fields input[type='checkbox'] {
  width: 22px;
  height: 22px;
  padding: 0;
  accent-color: var(--red);
}

.admin-banner-fields input[type='file'] {
  padding: 9px 10px;
}

.admin-banner-fields label:nth-child(4),
.admin-banner-fields label:nth-child(7),
.admin-banner-fields label:nth-child(8) {
  grid-column: span 2;
}

.admin-banner-actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  padding-top: 4px;
}

.restaurant-dashboard {
  gap: 18px;
}

.restaurant-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 18px;
  align-items: start;
}

.restaurant-main-column,
.restaurant-right-panel {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.restaurant-hero-carousel {
  position: relative;
  min-height: 272px;
  overflow: hidden;
  color: #ffffff;
  background:
    radial-gradient(circle at 76% 54%, rgba(237, 0, 18, 0.32), transparent 30%),
    linear-gradient(105deg, #050607, #12151b);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 45px rgba(5, 6, 7, 0.16);
}

.restaurant-hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: minmax(390px, 0.78fr) minmax(420px, 1.22fr);
  gap: 18px;
  align-items: center;
  min-height: 272px;
  padding: 30px 34px;
  opacity: 0;
  pointer-events: none;
  transform: translateX(24px);
  transition: opacity 320ms ease, transform 320ms ease;
}

.restaurant-hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.restaurant-hero-copy h1 {
  max-width: 560px;
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 30px;
  line-height: 1.12;
}

.restaurant-hero-copy h1::first-line {
  color: #ffffff;
}

.restaurant-hero-copy p {
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 15px;
}

.restaurant-hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: min(520px, 100%);
  min-height: 74px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
}

.restaurant-hero-metrics span {
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 8px;
  align-items: center;
  padding: 0 14px;
  color: var(--red);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.restaurant-hero-metrics span:last-child {
  border-right: 0;
}

.restaurant-hero-metrics strong {
  color: #ffffff;
  font-size: 12px;
  line-height: 1.25;
}

.restaurant-hero-slide > img {
  display: block;
  justify-self: end;
  width: 100%;
  max-height: 238px;
  object-fit: contain;
  object-position: right bottom;
  filter: drop-shadow(0 22px 30px rgba(0, 0, 0, 0.28));
}

.restaurant-dots {
  left: 34px;
  bottom: 14px;
}

.restaurant-filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.restaurant-filter-row button {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 38px;
  padding: 0 18px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  font-weight: 900;
}

.restaurant-filter-row button.is-active,
.restaurant-filter-row button:hover,
.restaurant-filter-row button:focus-visible {
  color: #ffffff;
  background: var(--red);
  border-color: var(--red);
  outline: 0;
}

.restaurant-cuisine-section,
.popular-restaurants-section,
.restaurant-side-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 14px 34px rgba(16, 19, 34, 0.06);
}

.restaurant-cuisine-section,
.popular-restaurants-section {
  padding: 16px;
}

.cuisine-card-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.cuisine-card-grid button {
  display: grid;
  gap: 8px;
  justify-items: center;
  min-height: 104px;
  padding: 12px 8px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
  font-weight: 900;
}

.cuisine-card-grid button:hover,
.cuisine-card-grid button:focus-visible {
  border-color: var(--red);
  outline: 0;
}

.cuisine-card-grid img {
  width: 58px;
  height: 52px;
  object-fit: contain;
}

.cuisine-card-grid span {
  font-size: 12px;
}

.popular-restaurant-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 12px;
}

.restaurant-card {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(16, 19, 34, 0.06);
}

.restaurant-card-image {
  position: relative;
  height: 126px;
  overflow: hidden;
  background: #08090c;
}

.restaurant-card-image img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 12px;
}

.restaurant-card-image span,
.restaurant-card-image button {
  position: absolute;
  top: 10px;
  height: 28px;
  border: 0;
  border-radius: 999px;
}

.restaurant-card-image span {
  left: 10px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.68);
  font-size: 12px;
  font-weight: 900;
}

.restaurant-card-image button {
  right: 10px;
  width: 28px;
  color: #ffffff;
  background: rgba(0, 0, 0, 0.68);
  cursor: pointer;
}

.restaurant-card-body {
  display: grid;
  gap: 7px;
  padding: 12px;
}

.restaurant-card-body strong {
  font-size: 15px;
}

.restaurant-card-body small,
.restaurant-card-body p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.restaurant-card-body p {
  display: flex;
  gap: 12px;
}

.restaurant-card-body .ghost-button {
  width: 100%;
  min-width: 0;
  height: 34px;
  color: var(--red);
  font-size: 12px;
}

.restaurant-side-card {
  display: grid;
  gap: 14px;
  padding: 18px;
}

.restaurant-mini-offers {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.restaurant-mini-offer {
  position: relative;
  display: grid;
  gap: 6px;
  min-height: 152px;
  padding: 12px;
  overflow: hidden;
  color: var(--ink);
  text-decoration: none;
  background: linear-gradient(145deg, #fff7f7, #ffffff);
  border: 1px solid var(--line);
  border-radius: 10px;
}

.restaurant-mini-offer strong {
  color: var(--red);
  font-size: 15px;
  line-height: 1.1;
}

.restaurant-mini-offer small {
  color: var(--muted);
  font-size: 11px;
  line-height: 1.25;
}

.restaurant-mini-offer img {
  width: 58px;
  height: 46px;
  object-fit: contain;
}

.restaurant-mini-offer em {
  color: var(--red);
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
}

.featured-restaurant-list {
  display: grid;
  gap: 10px;
}

.featured-restaurant-list a {
  display: grid;
  grid-template-columns: 44px 1fr auto auto;
  gap: 10px;
  align-items: center;
  color: var(--ink);
  text-decoration: none;
}

.featured-restaurant-list img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 10px;
  background: #f7f8fb;
}

.featured-restaurant-list span {
  color: #f3a40b;
  font-size: 12px;
  font-weight: 900;
}

.featured-restaurant-list small {
  color: var(--muted);
  font-size: 12px;
}

.courses-hero-carousel {
  background:
    radial-gradient(circle at 76% 54%, rgba(237, 0, 18, 0.28), transparent 30%),
    linear-gradient(105deg, #050607, #11161a);
}

.courses-filter-row {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 10px;
}

.courses-filter-row button {
  justify-content: center;
  border-radius: 10px;
}

.courses-filter-row img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.supermarket-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.supermarket-card .restaurant-card-image {
  height: 142px;
  background: linear-gradient(135deg, #e9edf4, #ffffff);
}

.courses-rayons-section {
  padding-bottom: 14px;
}

.courses-rayon-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}

.courses-rayon-grid button {
  position: relative;
  display: grid;
  align-items: end;
  min-height: 118px;
  overflow: hidden;
  padding: 0;
  color: #ffffff;
  background: #050607;
  border: 0;
  border-radius: 12px;
  cursor: pointer;
}

.courses-rayon-grid img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 14px 14px 28px;
  opacity: 0.92;
}

.courses-rayon-grid span {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  min-height: 30px;
  padding: 8px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.82));
  font-size: 12px;
  font-weight: 900;
}

.courses-help-list a {
  grid-template-columns: 42px 1fr 20px;
  min-height: 58px;
}

.courses-help-list .help-icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--red);
  background: rgba(237, 0, 18, 0.08);
  border-radius: 10px;
  font-size: 12px;
  font-weight: 900;
}

.courses-help-list em {
  color: var(--muted);
  font-style: normal;
  font-size: 22px;
}

.colis-dashboard {
  gap: 18px;
}

.colis-hero-carousel {
  min-height: 272px;
  background:
    radial-gradient(circle at 79% 56%, rgba(237, 0, 18, 0.36), transparent 28%),
    linear-gradient(105deg, #050607 0%, #090b10 58%, #141922 100%);
}

.colis-hero-slide {
  grid-template-columns: minmax(500px, 0.65fr) minmax(320px, 0.35fr);
  padding: 28px 34px 28px 36px;
}

.colis-hero-copy h1 {
  max-width: 480px;
  font-size: 32px;
}

.colis-hero-copy h1 strong {
  color: var(--red);
}

.colis-hero-copy p {
  font-size: 15px;
  font-weight: 700;
}

.colis-hero-metrics {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: min(620px, 100%);
  min-height: 74px;
}

.colis-hero-metrics span {
  grid-template-columns: 30px 1fr;
  align-content: center;
}

.colis-hero-metrics small {
  grid-column: 2;
  color: rgba(255, 255, 255, 0.76);
  font-size: 10px;
  font-weight: 700;
}

.colis-hero-slide > img {
  max-height: 252px;
  object-fit: cover;
  object-position: center right;
  border-radius: 10px;
  filter: saturate(1.04) drop-shadow(0 22px 30px rgba(0, 0, 0, 0.34));
}

.colis-quick-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.colis-quick-card {
  position: relative;
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 86px;
  padding: 16px;
  color: var(--ink);
  text-decoration: none;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 12px 26px rgba(16, 19, 34, 0.05);
}

.colis-quick-card span {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  color: var(--red);
  background: rgba(237, 0, 18, 0.12);
  border-radius: 50%;
  font-size: 22px;
  font-weight: 900;
}

.colis-quick-card.blue span {
  color: #256fce;
  background: rgba(37, 111, 206, 0.13);
}

.colis-quick-card.green span {
  color: #159452;
  background: rgba(21, 148, 82, 0.13);
}

.colis-quick-card.orange span {
  color: #ef8c16;
  background: rgba(239, 140, 22, 0.14);
}

.colis-quick-card strong,
.colis-quick-card small {
  display: block;
  min-width: 0;
  grid-column: 2;
}

.colis-quick-card strong {
  font-size: 14px;
}

.colis-quick-card small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.28;
}

.colis-quick-card em {
  position: absolute;
  right: 14px;
  top: 50%;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-style: normal;
  font-size: 22px;
  transform: translateY(-50%);
}

.colis-quick-card:hover,
.colis-quick-card:focus-visible {
  border-color: rgba(237, 0, 18, 0.45);
  outline: 0;
}

.colis-work-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
  gap: 14px;
}

.colis-solutions-card,
.colis-calculator-card {
  display: grid;
  gap: 14px;
}

.colis-solution-list {
  display: grid;
  gap: 10px;
}

.colis-solution-list button {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 118px 34px;
  gap: 12px;
  align-items: center;
  min-height: 64px;
  padding: 10px 12px;
  color: var(--ink);
  text-align: left;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
}

.colis-solution-list button.is-active,
.colis-solution-list button:hover,
.colis-solution-list button:focus-visible {
  border-color: var(--red);
  outline: 0;
}

.colis-solution-list span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  background: #fff3f3;
  border-radius: 50%;
  font-size: 22px;
}

.colis-solution-list strong,
.colis-solution-list small {
  display: block;
}

.colis-solution-list strong {
  font-size: 15px;
}

.colis-solution-list small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.colis-solution-list em {
  color: var(--muted);
  font-style: normal;
  font-size: 12px;
  text-align: right;
}

.colis-solution-list em b {
  display: block;
  color: var(--red);
  font-size: 16px;
}

.colis-solution-list i {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-style: normal;
  font-size: 22px;
}

.colis-note {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.colis-note strong,
.colis-note b {
  color: var(--ink);
}

.colis-calculator-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 16px;
}

.colis-calculator-fields label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.colis-calculator-fields select,
.colis-calculator-fields input {
  width: 100%;
  height: 42px;
  min-width: 0;
  padding: 0 12px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 10px;
  outline: 0;
}

.colis-calculator-fields label span {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 48px;
  align-items: center;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.colis-calculator-fields label span input {
  border: 0;
}

.colis-calculator-fields label span b {
  color: var(--ink);
  font-size: 12px;
  text-align: center;
}

.colis-calculator-result {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  min-height: 70px;
  background: #f8f9fc;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.colis-calculator-result span {
  display: grid;
  align-content: center;
  justify-items: center;
  color: var(--muted);
  border-right: 1px solid var(--line);
  font-size: 12px;
  font-weight: 900;
}

.colis-calculator-result span:last-child {
  border-right: 0;
}

.colis-calculator-result strong {
  margin-top: 4px;
  color: #11924d;
  font-size: 22px;
}

.colis-calculator-result span:last-child strong {
  color: var(--ink);
}

.colis-help-list {
  gap: 12px;
}

.colis-help-list button {
  position: relative;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 58px;
  padding: 0;
  color: var(--ink);
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.colis-help-list strong,
.colis-help-list small {
  min-width: 0;
  grid-column: 2;
}

.colis-help-list strong {
  font-size: 13px;
}

.colis-help-list small {
  color: var(--muted);
  font-size: 11px;
}

.colis-help-list em {
  position: absolute;
  right: 0;
  top: 50%;
  color: var(--muted);
  font-style: normal;
  font-size: 22px;
  transform: translateY(-50%);
}

.colis-why-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 12px;
}

.colis-why-grid article {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 8px;
  align-items: center;
}

.colis-why-grid span {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  color: var(--red);
  background: rgba(237, 0, 18, 0.08);
  border-radius: 10px;
  font-weight: 900;
}

.colis-why-grid strong,
.colis-why-grid small {
  display: block;
}

.colis-why-grid strong {
  font-size: 12px;
}

.colis-why-grid small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
}

.colis-bottom-banner {
  background: #050607;
}

.orders-dashboard {
  gap: 18px;
}

.orders-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 370px;
  gap: 18px;
  align-items: start;
}

.orders-main-column,
.orders-right-panel {
  display: grid;
  gap: 14px;
  min-width: 0;
}

.orders-heading {
  padding: 4px 4px 2px;
}

.orders-heading h1 {
  margin: 0 0 8px;
  font-size: 30px;
  line-height: 1.08;
}

.orders-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.orders-tabs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.orders-tabs button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  color: var(--ink);
  background: #ffffff;
  border: 0;
  border-right: 1px solid var(--line);
  cursor: pointer;
  font-weight: 900;
}

.orders-tabs button:last-child {
  border-right: 0;
}

.orders-tabs button span {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  color: var(--red);
  font-size: 18px;
}

.orders-tabs button.is-active {
  color: #ffffff;
  background: var(--red);
}

.orders-tabs button.is-active span {
  color: #ffffff;
}

.orders-filter-row {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) 240px 220px 132px;
  gap: 12px;
}

.orders-search,
.orders-date-filter {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  height: 42px;
  color: var(--muted);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.orders-search input,
.orders-date-filter input,
.orders-filter-row select {
  width: 100%;
  height: 42px;
  min-width: 0;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 10px;
  outline: 0;
}

.orders-search input,
.orders-date-filter input {
  border: 0;
}

.orders-search span,
.orders-date-filter span {
  text-align: center;
}

.orders-filter-row select {
  padding: 0 14px;
}

.orders-filter-row > button {
  height: 42px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
  font-weight: 900;
}

.orders-list {
  display: grid;
  gap: 8px;
}

.orders-row {
  display: grid;
  grid-template-columns: 104px 70px minmax(230px, 1fr) 190px 184px 34px;
  gap: 14px;
  align-items: center;
  min-height: 104px;
  padding: 10px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(16, 19, 34, 0.04);
}

.orders-row[hidden] {
  display: none;
}

.orders-row-image {
  width: 94px;
  height: 88px;
  object-fit: cover;
  border-radius: 8px;
}

.orders-logo {
  display: grid;
  width: 56px;
  height: 56px;
  place-items: center;
  align-content: center;
  justify-self: center;
  color: #ffffff;
  text-align: center;
  background: #050607;
  border: 4px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(16, 19, 34, 0.12);
}

.orders-logo strong,
.orders-logo small {
  display: block;
  max-width: 46px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.orders-logo strong {
  color: inherit;
  font-size: 10px;
  line-height: 1;
  text-transform: uppercase;
}

.orders-logo small {
  margin-top: 2px;
  font-size: 8px;
  font-weight: 900;
  text-transform: uppercase;
}

.orders-logo.market {
  background: #1d63c7;
}

.orders-logo.pharmacy {
  color: #159452;
  background: #ffffff;
  border-color: #eef7f1;
}

.orders-logo.parcel {
  background: #ffffff;
  color: var(--red);
  border-color: #f4f4f5;
}

.orders-logo.pizza {
  background: #ffffff;
  color: var(--red);
  border-color: #fff1f1;
}

.orders-row-main,
.orders-row-status {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.orders-row-main strong {
  font-size: 15px;
}

.orders-row-main span,
.orders-row-main small,
.orders-row-main p,
.orders-row-status small {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.orders-row-main p {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.orders-row-main em {
  font-style: normal;
}

.orders-row-status {
  min-height: 72px;
  padding-left: 18px;
  border-left: 1px solid var(--line);
}

.orders-row-status strong {
  font-size: 13px;
}

.orders-row-status b {
  font-size: 13px;
}

.status-delivery,
.status-done {
  color: #0a9b51;
}

.status-progress {
  color: #ed8c00;
}

.status-cancelled {
  color: #5e6474;
}

.orders-row-action {
  min-height: 38px;
  padding: 0 16px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 10px;
  cursor: pointer;
  font-weight: 900;
}

.orders-row-action.primary {
  color: #ffffff;
  background: var(--red);
  border-color: var(--red);
}

.orders-more-button {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: var(--muted);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
}

.orders-frequent-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.orders-frequent-grid button {
  display: grid;
  gap: 7px;
  justify-items: center;
  min-width: 0;
  padding: 0;
  color: var(--ink);
  background: transparent;
  border: 0;
  cursor: pointer;
  font-weight: 900;
}

.orders-frequent-grid img {
  width: 50px;
  height: 50px;
  object-fit: cover;
  border-radius: 50%;
  box-shadow: 0 8px 16px rgba(16, 19, 34, 0.12);
}

.orders-frequent-grid strong {
  max-width: 62px;
  font-size: 10px;
  line-height: 1.1;
}

.orders-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  padding: 2px 0 0;
}

.orders-pagination button {
  min-width: 36px;
  height: 36px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  font-weight: 900;
}

.orders-pagination button.is-active {
  color: #ffffff;
  background: var(--red);
  border-color: var(--red);
}

.orders-bottom-banner {
  background: #050607;
}

.favorites-dashboard {
  gap: 16px;
}

.favorites-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 424px;
  gap: 18px;
  align-items: start;
}

.favorites-main-column,
.favorites-right-panel {
  display: grid;
  gap: 16px;
  min-width: 0;
}

.favorites-heading {
  display: grid;
  gap: 8px;
  min-height: 72px;
  align-content: end;
}

.favorites-heading h1 {
  margin: 0;
  color: #050607;
  font-size: 30px;
  line-height: 1;
}

.favorites-heading p {
  margin: 0;
  color: #1e2432;
  font-size: 15px;
  line-height: 1.35;
}

.favorites-tabs {
  display: grid;
  grid-template-columns: 118px repeat(4, minmax(138px, 1fr));
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.favorites-tabs button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 46px;
  color: #202635;
  background: #ffffff;
  border: 0;
  border-right: 1px solid var(--line);
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
}

.favorites-tabs button:last-child {
  border-right: 0;
}

.favorites-tabs button span {
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  color: inherit;
  font-size: 17px;
}

.favorites-tabs button.is-active,
.favorites-tabs button:hover,
.favorites-tabs button:focus-visible {
  color: #ffffff;
  background: var(--red);
  outline: 0;
}

.favorites-card-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.favorite-card {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(16, 19, 34, 0.06);
}

.favorite-card.is-wide {
  grid-column: span 2;
}

.favorite-card-image {
  position: relative;
  height: 134px;
  overflow: hidden;
  background: #f4f5f8;
}

.favorite-card-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.favorite-card-image button {
  position: absolute;
  top: 10px;
  right: 10px;
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: var(--red);
  background: rgba(255, 255, 255, 0.95);
  border: 0;
  border-radius: 9px;
  cursor: pointer;
  font-size: 17px;
  box-shadow: 0 8px 18px rgba(16, 19, 34, 0.12);
}

.favorite-card-body {
  position: relative;
  display: grid;
  gap: 6px;
  padding: 28px 14px 12px;
}

.favorite-logo {
  position: absolute;
  left: 14px;
  top: -30px;
  display: grid;
  width: 60px;
  height: 60px;
  place-items: center;
  color: #ffffff;
  text-align: center;
  background: #050607;
  border: 4px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 8px 18px rgba(16, 19, 34, 0.16);
}

.favorite-logo strong,
.favorite-logo small {
  display: block;
  max-width: 46px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 1;
}

.favorite-logo strong {
  font-size: 10px;
  text-transform: uppercase;
}

.favorite-logo small {
  margin-top: -8px;
  font-size: 8px;
  font-weight: 900;
  text-transform: uppercase;
}

.favorite-logo.pizza,
.favorite-logo.parcel {
  color: var(--red);
  background: #ffffff;
}

.favorite-logo.market {
  background: #1c61c8;
}

.favorite-logo.carrefour {
  background: #2a6dd8;
}

.favorite-logo.pharmacy {
  color: #16a153;
  background: #ffffff;
}

.favorite-card-body > strong {
  color: #111420;
  font-size: 16px;
  line-height: 1.1;
}

.favorite-card-body > small {
  color: var(--muted);
  font-size: 12px;
}

.favorite-card-body p {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  min-height: 16px;
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.favorite-card-body p span:first-child {
  color: #3f4658;
}

.favorite-card-body p span:first-child::first-letter {
  color: #f5a400;
}

.favorite-card-body .primary-button {
  width: 100%;
  height: 34px;
  min-width: 0;
  margin-top: 2px;
  border-radius: 8px;
  font-size: 12px;
}

.favorites-quick-section {
  display: grid;
  gap: 10px;
}

.favorites-quick-section h2 {
  margin: 0;
  color: #111420;
  font-size: 15px;
  line-height: 1;
}

.favorites-quick-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
}

.favorites-quick-row button {
  position: relative;
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) 24px;
  gap: 8px;
  align-items: center;
  min-height: 68px;
  padding: 10px 12px;
  color: var(--ink);
  text-align: left;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(16, 19, 34, 0.04);
}

.favorites-quick-row button > .favorite-logo {
  position: static;
  grid-row: 1 / span 2;
  width: 46px;
  height: 46px;
  border-width: 2px;
  box-shadow: none;
}

.favorites-quick-row button > img {
  display: none;
}

.favorites-quick-row strong,
.favorites-quick-row small {
  min-width: 0;
  grid-column: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

.favorites-quick-row strong {
  align-self: end;
  white-space: nowrap;
  font-size: 13px;
}

.favorites-quick-row small {
  align-self: start;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.25;
}

.favorites-quick-row em {
  grid-column: 3;
  grid-row: 1 / span 2;
  display: grid;
  width: 26px;
  height: 26px;
  place-items: center;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-style: normal;
  font-size: 20px;
}

.favorites-right-panel .restaurant-side-card {
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(16, 19, 34, 0.06);
}

.favorites-right-panel .card-title-row {
  margin-bottom: 0;
}

.favorites-right-panel .card-title-row h2 {
  font-size: 16px;
}

.favorites-active-order {
  gap: 7px;
  padding: 12px;
}

.favorites-active-order .active-order-merchant img {
  width: 50px;
  height: 50px;
  object-fit: cover;
}

.favorites-active-order .active-order-merchant {
  grid-template-columns: 50px 1fr auto;
}

.favorites-active-order .primary-button,
.favorites-active-order .ghost-button {
  height: 36px;
}

.favorites-tracking-line {
  margin-top: 2px;
}

.favorites-tracking-line span:nth-child(3) {
  color: var(--red);
}

.favorites-tracking-line span:nth-child(3) i {
  background: var(--red);
}

.favorites-mini-map {
  height: 64px;
}

.favorites-recommended-card {
  gap: 8px;
  padding: 12px;
}

.favorites-recommended-list {
  display: grid;
  gap: 4px;
}

.favorites-recommended-list a {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) 48px 74px;
  gap: 10px;
  align-items: center;
  min-height: 38px;
  color: var(--ink);
  text-decoration: none;
}

.favorites-recommended-list img {
  width: 40px;
  height: 36px;
  object-fit: cover;
  border-radius: 8px;
  background: #f7f8fb;
}

.favorites-recommended-list strong {
  display: grid;
  gap: 3px;
  min-width: 0;
  font-size: 14px;
}

.favorites-recommended-list small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
}

.favorites-recommended-list span {
  color: #f5a400;
  font-size: 12px;
  font-weight: 900;
}

.favorites-recommended-list em {
  color: var(--muted);
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
  text-align: right;
}

.favorites-help-card {
  gap: 6px;
  padding: 10px 12px;
}

.favorites-help-card .colis-help-list {
  gap: 0;
}

.favorites-help-card .colis-help-list button {
  min-height: 36px;
}

.favorites-help-card .courses-help-list .help-icon {
  width: 28px;
  height: 28px;
  border-radius: 8px;
}

.favorites-help-card .colis-help-list strong {
  font-size: 12px;
}

.favorites-help-card .colis-help-list small {
  font-size: 10px;
}

.favorites-bottom-banner {
  background: #030405;
}

.promotions-dashboard {
  gap: 14px;
}

.promotions-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  gap: 18px;
  align-items: start;
}

.promotions-main-column,
.promotions-right-panel {
  display: grid;
  gap: 12px;
  min-width: 0;
}

.promotions-heading {
  display: grid;
  gap: 4px;
}

.promotions-heading h1 {
  margin: 0;
  color: #050607;
  font-size: 32px;
  line-height: 1;
}

.promotions-heading p {
  margin: 0;
  color: #101322;
  font-size: 14px;
}

.promotions-hero-carousel {
  position: relative;
  height: 230px;
  overflow: hidden;
  color: #ffffff;
  background: #050607;
  border-radius: 10px;
  box-shadow: 0 16px 36px rgba(16, 19, 34, 0.12);
}

.promotions-hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 320ms ease;
}

.promotions-hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.promotions-hero-slide > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

.promotions-hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.7) 33%, rgba(0, 0, 0, 0.1) 62%, rgba(0, 0, 0, 0.1) 100%);
}

.promotions-hero-copy {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  width: 48%;
  height: 100%;
  padding: 26px 48px;
}

.promotions-hero-copy h2 {
  max-width: 500px;
  margin: 0 0 12px;
  color: #ffffff;
  font-size: 34px;
  line-height: 1.06;
}

.promotions-hero-copy p {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 16px;
}

.promotions-hero-metrics {
  display: flex;
  gap: 26px;
}

.promotions-hero-metrics span {
  display: inline-grid;
  grid-template-columns: 36px auto;
  gap: 9px;
  align-items: center;
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
}

.promotions-hero-metrics i {
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--red);
  border: 1px solid var(--red);
  border-radius: 50%;
  font-style: normal;
}

.promotions-dots {
  right: 20px;
  bottom: 12px;
  left: auto;
}

.promotions-tabs {
  display: grid;
  grid-template-columns: 92px repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.promotions-tabs button {
  height: 34px;
  color: #111420;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 8px 18px rgba(16, 19, 34, 0.04);
}

.promotions-tabs button.is-active,
.promotions-tabs button:hover,
.promotions-tabs button:focus-visible {
  color: #ffffff;
  background: var(--red);
  border-color: var(--red);
  outline: 0;
}

.promotions-card-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.promotion-card {
  position: relative;
  display: grid;
  grid-template-columns: 42% 1fr;
  grid-template-rows: minmax(116px, 1fr) 28px;
  min-height: 166px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 10px 24px rgba(16, 19, 34, 0.05);
}

.promotion-card img {
  grid-row: 1 / span 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promotion-card-copy {
  display: grid;
  align-content: center;
  gap: 3px;
  min-width: 0;
  padding: 16px 14px 4px;
}

.promotion-card-copy strong {
  color: var(--red);
  font-size: 29px;
  line-height: 0.98;
}

.promotion-card-copy h3 {
  margin: 0;
  color: #050607;
  font-size: 18px;
  line-height: 1.08;
}

.promotion-card-copy p {
  margin: 4px 0 0;
  color: #111420;
  font-size: 13px;
  font-weight: 800;
}

.promotion-card-copy b {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 7px;
  color: var(--red);
  border: 1px solid rgba(237, 0, 18, 0.28);
  border-radius: 6px;
}

.promotion-card small {
  align-self: center;
  margin-left: 12px;
  color: var(--muted);
  font-size: 11px;
}

.promotion-card .primary-button {
  position: absolute;
  right: 10px;
  bottom: 9px;
  min-width: 82px;
  height: 30px;
  border-radius: 7px;
  font-size: 12px;
}

.promotions-recommended-section {
  display: grid;
  gap: 8px;
}

.promotions-recommended-section .card-title-row {
  margin-bottom: 0;
}

.promotions-recommended-section h2 {
  font-size: 17px;
}

.promotions-recommended-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.promotions-recommended-row article {
  display: grid;
  grid-template-columns: 58px 1fr;
  grid-template-rows: 46px auto auto 28px;
  gap: 4px 10px;
  min-height: 112px;
  padding: 8px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 10px;
  box-shadow: 0 10px 24px rgba(16, 19, 34, 0.04);
}

.promotions-recommended-row img {
  grid-column: 1 / span 2;
  width: 100%;
  height: 42px;
  object-fit: cover;
  border-radius: 8px;
}

.promotions-recommended-row strong,
.promotions-recommended-row small,
.promotions-recommended-row p {
  grid-column: 1 / span 2;
  margin: 0;
}

.promotions-recommended-row strong {
  color: #111420;
  font-size: 13px;
}

.promotions-recommended-row small {
  color: var(--red);
  font-size: 11px;
}

.promotions-recommended-row p {
  display: flex;
  justify-content: space-between;
  color: var(--muted);
  font-size: 11px;
}

.promotions-recommended-row span {
  color: #f5a400;
  font-weight: 900;
}

.promotions-recommended-row button {
  grid-column: 2;
  justify-self: end;
  min-width: 74px;
  height: 26px;
  color: var(--red);
  background: #ffffff;
  border: 1px solid rgba(237, 0, 18, 0.38);
  border-radius: 7px;
  cursor: pointer;
  font-size: 11px;
  font-weight: 900;
}

.promotions-right-panel .restaurant-side-card {
  border-radius: 10px;
  box-shadow: 0 10px 24px rgba(16, 19, 34, 0.05);
}

.promotions-active-order {
  gap: 7px;
  padding: 12px;
}

.promotions-active-order .active-order-merchant {
  grid-template-columns: 48px 1fr;
}

.promotions-active-order .active-order-merchant img {
  width: 48px;
  height: 48px;
  object-fit: cover;
}

.promotions-active-order .primary-button,
.promotions-active-order .ghost-button {
  height: 34px;
}

.promotions-active-order .driver-row {
  grid-template-columns: 42px minmax(0, 1fr) auto 34px 34px;
  gap: 8px;
}

.promotions-active-order .driver-row .icon-button {
  width: 34px;
  height: 34px;
}

.promotions-tracking-line {
  margin-top: 2px;
}

.promotions-mini-map {
  height: 70px;
}

.promotions-flash-card {
  gap: 6px;
  padding: 12px;
}

.promotions-flash-card .card-title-row {
  margin-bottom: 0;
}

.promotions-flash-card .card-title-row strong {
  color: var(--red);
  font-size: 12px;
}

.promotions-flash-list {
  display: grid;
  gap: 6px;
}

.promotions-flash-list button {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr) 38px 14px;
  gap: 8px;
  align-items: center;
  min-height: 44px;
  padding: 0;
  color: var(--ink);
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.promotions-flash-list img {
  width: 46px;
  height: 38px;
  object-fit: cover;
  border-radius: 8px;
}

.promotions-flash-list span {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.promotions-flash-list strong {
  font-size: 13px;
}

.promotions-flash-list small {
  color: var(--red);
  font-size: 11px;
  font-weight: 900;
}

.promotions-flash-list b {
  justify-self: end;
  display: grid;
  min-width: 36px;
  height: 28px;
  place-items: center;
  color: #ffffff;
  background: var(--red);
  border-radius: 7px;
  font-size: 11px;
}

.promotions-flash-list em {
  color: var(--muted);
  font-style: normal;
  font-size: 20px;
}

.promotions-help-card {
  gap: 4px;
  padding: 12px;
}

.promotions-help-card .colis-help-list {
  gap: 0;
}

.promotions-help-card .colis-help-list button {
  grid-template-columns: 34px minmax(0, 1fr) 16px;
  min-height: 34px;
}

.promotions-help-card .colis-help-list strong {
  font-size: 13px;
}

.promotions-help-card .courses-help-list .help-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
}

.promotions-bottom-banner {
  background: #030405;
}

body[data-current-screen='addresses'] .sidebar-promo {
  background-image:
    linear-gradient(180deg, rgba(5, 6, 7, 0), rgba(5, 6, 7, 0.2) 34%, rgba(5, 6, 7, 0.84) 72%, rgba(5, 6, 7, 0.98)),
    url('./assets/generated/addresses/delivery-promo.png');
  background-size: 118% auto;
  background-position: center 54%;
}

.addresses-dashboard {
  gap: 14px;
}

.addresses-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 438px;
  gap: 18px;
  align-items: start;
}

.addresses-main-column,
.addresses-right-panel {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.addresses-heading {
  display: grid;
  gap: 10px;
  min-height: 72px;
  align-content: end;
}

.addresses-heading h1 {
  margin: 0;
  color: #050607;
  font-size: 30px;
  line-height: 1;
}

.addresses-heading p {
  margin: 0;
  color: #1e2432;
  font-size: 15px;
}

.addresses-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.addresses-tabs {
  display: inline-grid;
  grid-template-columns: 230px 250px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.addresses-tabs button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 48px;
  color: #202635;
  background: #ffffff;
  border: 0;
  border-right: 1px solid var(--line);
  cursor: pointer;
  font-size: 14px;
  font-weight: 900;
}

.addresses-tabs button:last-child {
  border-right: 0;
}

.addresses-tabs button.is-active,
.addresses-tabs button:hover,
.addresses-tabs button:focus-visible {
  color: #ffffff;
  background: var(--red);
  outline: 0;
}

.addresses-add-button {
  min-width: 222px;
  height: 48px;
  border-radius: 9px;
  box-shadow: 0 12px 24px rgba(237, 0, 18, 0.18);
}

.addresses-list {
  display: grid;
  gap: 16px;
}

.address-card {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr) 160px 190px;
  gap: 22px;
  align-items: center;
  min-height: 132px;
  padding: 20px 26px 20px 22px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(16, 19, 34, 0.04);
}

.address-card-icon {
  width: 84px;
  height: 84px;
  object-fit: cover;
  border-radius: 14px;
}

.address-card-main {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.address-primary-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  min-height: 22px;
  padding: 0 10px;
  color: var(--red);
  background: rgba(237, 0, 18, 0.08);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
}

.address-card-main strong {
  color: #111420;
  font-size: 18px;
  line-height: 1.1;
}

.address-card-main p,
.address-card-main small {
  margin: 0;
  color: #3f4658;
  font-size: 14px;
  line-height: 1.35;
}

.address-card-default {
  display: grid;
  justify-items: center;
  align-content: center;
  min-height: 70px;
}

.address-card-default b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 0 12px;
  color: #158a45;
  background: rgba(21, 148, 82, 0.12);
  border-radius: 8px;
  font-size: 12px;
}

.address-card-default button,
.address-card-actions button {
  display: grid;
  justify-items: center;
  gap: 6px;
  color: #3f4658;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-weight: 800;
}

.address-card-default button {
  color: #3f4658;
}

.address-card-default button:first-line,
.address-card-actions button:first-line {
  font-size: 20px;
}

.address-card-actions {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  min-height: 70px;
  align-items: center;
  border-left: 1px solid var(--line);
}

.address-card-actions button {
  min-height: 64px;
  border-right: 1px solid var(--line);
}

.address-card-actions button:last-child {
  color: var(--red);
  border-right: 0;
}

.address-card-actions span,
.address-card-default span {
  font-size: 13px;
}

.addresses-info-box {
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 0 18px;
  color: #5f6677;
  background: #fff7f7;
  border: 1px solid rgba(237, 0, 18, 0.16);
  border-radius: 10px;
  font-size: 14px;
}

.addresses-right-panel .restaurant-side-card {
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(16, 19, 34, 0.05);
}

.addresses-active-order {
  gap: 8px;
  padding: 14px;
}

.addresses-active-order .active-order-merchant img {
  object-fit: cover;
}

.addresses-active-order .primary-button,
.addresses-active-order .ghost-button {
  height: 34px;
}

.addresses-map {
  height: 64px;
  overflow: hidden;
  border-radius: 10px;
  background: #f3f5f8;
}

.addresses-map img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.addresses-recent-card,
.addresses-help-card {
  gap: 8px;
  padding: 12px 14px;
}

.addresses-recent-card .card-title-row,
.addresses-help-card .card-title-row {
  margin-bottom: 0;
}

.addresses-recent-card h2,
.addresses-help-card h2 {
  font-size: 16px;
}

.addresses-recent-list {
  display: grid;
  gap: 5px;
}

.addresses-recent-list button {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 10px;
  align-items: center;
  min-height: 38px;
  padding: 0;
  color: var(--ink);
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.addresses-recent-list img {
  width: 30px;
  height: 30px;
  object-fit: cover;
  border-radius: 8px;
}

.addresses-recent-list strong {
  display: grid;
  gap: 3px;
  font-size: 13px;
}

.addresses-recent-list small {
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
}

.addresses-help-card .colis-help-list {
  gap: 2px;
}

.addresses-help-card .colis-help-list button {
  grid-template-columns: 34px minmax(0, 1fr) 18px;
  min-height: 38px;
}

.addresses-help-card .courses-help-list .help-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
}

.addresses-help-card .colis-help-list strong {
  font-size: 13px;
}

.addresses-help-card .colis-help-list small {
  font-size: 11px;
}

.addresses-bottom-banner {
  background: #030405;
}

body[data-current-screen='payments'] .sidebar-promo {
  background-image:
    linear-gradient(180deg, rgba(5, 6, 7, 0), rgba(5, 6, 7, 0.18) 34%, rgba(5, 6, 7, 0.84) 72%, rgba(5, 6, 7, 0.98)),
    url('./assets/generated/payments/delivery-promo.png');
  background-size: 120% auto;
  background-position: center 54%;
}

.payments-dashboard {
  gap: 14px;
}

.payments-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 438px;
  gap: 18px;
  align-items: start;
}

.payments-main-column,
.payments-right-panel {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.payments-heading {
  display: grid;
  gap: 10px;
  min-height: 72px;
  align-content: end;
}

.payments-heading h1 {
  margin: 0;
  color: #050607;
  font-size: 30px;
  line-height: 1;
}

.payments-heading p {
  margin: 0;
  color: #1e2432;
  font-size: 15px;
}

.payments-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.payments-tabs {
  display: inline-grid;
  grid-template-columns: 162px 250px 176px;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.payments-tabs button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  height: 48px;
  color: #202635;
  background: #ffffff;
  border: 0;
  border-right: 1px solid var(--line);
  cursor: pointer;
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
}

.payments-tabs button:last-child {
  border-right: 0;
}

.payments-tabs button.is-active,
.payments-tabs button:hover,
.payments-tabs button:focus-visible {
  color: #ffffff;
  background: var(--red);
  outline: 0;
}

.payments-add-button {
  min-width: 222px;
  height: 48px;
  border-radius: 9px;
  box-shadow: 0 12px 24px rgba(237, 0, 18, 0.18);
}

.payments-card-section {
  display: grid;
  gap: 14px;
}

.payments-card-section h2 {
  margin: 0;
  color: #111420;
  font-size: 18px;
}

.payment-method-list {
  display: grid;
  gap: 14px;
}

.payment-method-row {
  display: grid;
  grid-template-columns: 110px 210px 1px minmax(0, 1fr) 52px 24px;
  gap: 20px;
  align-items: center;
  min-height: 112px;
  padding: 18px 22px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(16, 19, 34, 0.04);
}

.payment-card-art {
  width: 104px;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 10px 20px rgba(7, 10, 18, 0.08);
}

.payment-card-number {
  color: #111420;
  font-size: 16px;
  letter-spacing: 0;
  white-space: nowrap;
}

.payment-divider {
  width: 1px;
  height: 58px;
  background: var(--line);
}

.payment-method-details {
  display: grid;
  gap: 4px;
  min-width: 0;
  align-content: center;
}

.payment-method-details b {
  color: #111420;
  font-size: 16px;
}

.payment-method-details small {
  color: #3f4658;
  font-size: 13px;
}

.payment-method-details em {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  min-height: 22px;
  padding: 0 10px;
  color: #158a45;
  background: rgba(21, 148, 82, 0.14);
  border-radius: 8px;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.payment-toggle {
  position: relative;
  width: 42px;
  height: 24px;
  padding: 0;
  background: #d7d8dc;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
}

.payment-toggle::after {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(16, 19, 34, 0.18);
  content: '';
}

.payment-toggle.is-active {
  background: var(--red);
}

.payment-toggle.is-active::after {
  left: 21px;
}

.payment-more-button {
  width: 24px;
  height: 32px;
  padding: 0;
  color: #111420;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
}

.payments-security-box {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) 96px;
  gap: 18px;
  align-items: center;
  min-height: 118px;
  padding: 16px 24px;
  background: #ffffff;
  border: 1px dashed #cfd3dc;
  border-radius: 12px;
}

.payments-security-box > img:first-child {
  width: 52px;
  height: 52px;
  object-fit: cover;
  border-radius: 10px;
}

.payments-security-box span {
  display: grid;
  gap: 6px;
}

.payments-security-box strong {
  color: #111420;
  font-size: 18px;
}

.payments-security-box small {
  color: #3f4658;
  font-size: 14px;
}

.payments-lock-art {
  justify-self: end;
  width: 84px;
  height: 84px;
  object-fit: cover;
  border-radius: 50%;
}

.payments-right-panel .restaurant-side-card {
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(16, 19, 34, 0.05);
}

.payments-active-order {
  gap: 8px;
  padding: 14px;
}

.payments-active-order .active-order-merchant img {
  object-fit: cover;
}

.payments-active-order .primary-button,
.payments-active-order .ghost-button {
  height: 34px;
}

.payments-recent-card,
.payments-help-card {
  gap: 8px;
  padding: 12px 14px;
}

.payments-recent-card .card-title-row,
.payments-help-card .card-title-row {
  margin-bottom: 0;
}

.payments-recent-card h2,
.payments-help-card h2 {
  font-size: 16px;
}

.payments-recent-list {
  display: grid;
  gap: 7px;
}

.payments-recent-list button {
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) auto 26px;
  gap: 10px;
  align-items: center;
  min-height: 48px;
  padding: 0;
  color: var(--ink);
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.payments-recent-list img {
  width: 34px;
  height: 34px;
  object-fit: cover;
  border-radius: 9px;
}

.payments-recent-list strong {
  display: grid;
  gap: 3px;
  min-width: 0;
  font-size: 13px;
}

.payments-recent-list small {
  overflow: hidden;
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.payments-recent-list b {
  color: #111420;
  font-size: 12px;
  white-space: nowrap;
}

.payments-recent-list em {
  display: inline-grid;
  place-items: center;
  width: 26px;
  height: 26px;
  color: #111420;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 18px;
  font-style: normal;
}

.payments-help-card .colis-help-list {
  gap: 2px;
}

.payments-help-card .colis-help-list button {
  grid-template-columns: 34px minmax(0, 1fr) 18px;
  min-height: 38px;
}

.payments-help-card .courses-help-list .help-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
}

.payments-help-card .colis-help-list strong {
  font-size: 13px;
}

.payments-help-card .colis-help-list small {
  font-size: 11px;
}

.payments-bottom-banner {
  background: #030405;
}

body[data-current-screen='support'] .sidebar-promo {
  background-image:
    linear-gradient(180deg, rgba(5, 6, 7, 0), rgba(5, 6, 7, 0.18) 34%, rgba(5, 6, 7, 0.84) 72%, rgba(5, 6, 7, 0.98)),
    url('./assets/generated/support-customer/delivery-promo.png');
  background-size: 120% auto;
  background-position: center 54%;
}

.support-dashboard {
  gap: 14px;
}

.support-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 438px;
  gap: 18px;
  align-items: start;
}

.support-main-column,
.support-right-panel {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.support-heading {
  display: grid;
  gap: 10px;
  min-height: 72px;
  align-content: end;
}

.support-heading h1 {
  margin: 0;
  color: #050607;
  font-size: 30px;
  line-height: 1;
}

.support-heading p {
  margin: 0;
  color: #1e2432;
  font-size: 15px;
}

.support-action-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.support-action-card {
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 12px;
  min-height: 248px;
  padding: 22px 20px;
  text-align: center;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(16, 19, 34, 0.04);
}

.support-action-card img {
  width: 66px;
  height: 66px;
  object-fit: cover;
  border-radius: 50%;
}

.support-action-card strong {
  color: #111420;
  font-size: 18px;
  line-height: 1.15;
}

.support-action-card p {
  min-height: 38px;
  margin: 0;
  color: #3f4658;
  font-size: 14px;
  line-height: 1.35;
}

.support-action-card .primary-button,
.support-action-card .ghost-button {
  width: 190px;
  height: 42px;
  border-radius: 8px;
}

.support-tickets-card {
  display: grid;
  gap: 12px;
}

.support-tickets-card .card-title-row {
  margin-bottom: 0;
}

.support-ticket-list {
  display: grid;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(16, 19, 34, 0.04);
}

.support-ticket-row {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 116px 24px;
  gap: 18px;
  align-items: center;
  min-height: 102px;
  padding: 16px 28px 16px 18px;
  color: var(--ink);
  text-align: left;
  background: #ffffff;
  border: 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
}

.support-ticket-row:last-child {
  border-bottom: 0;
}

.support-ticket-row:hover,
.support-ticket-row:focus-visible {
  background: #fff8f8;
  outline: 0;
}

.support-ticket-row img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 50%;
}

.support-ticket-row span {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.support-ticket-row strong {
  overflow: hidden;
  color: #111420;
  font-size: 16px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.support-ticket-row small,
.support-ticket-row em {
  color: #3f4658;
  font-size: 13px;
  font-style: normal;
}

.support-ticket-row b,
.support-detail-meta b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: end;
  min-height: 24px;
  padding: 0 12px;
  border-radius: 7px;
  font-size: 12px;
  font-weight: 900;
}

.support-ticket-row b.is-waiting,
.support-detail-meta b.is-waiting {
  color: #ed0012;
  background: rgba(237, 0, 18, 0.1);
}

.support-ticket-row b.is-progress,
.support-detail-meta b.is-progress {
  color: #c26b00;
  background: rgba(245, 173, 50, 0.18);
}

.support-ticket-row b.is-resolved,
.support-detail-meta b.is-resolved {
  color: #168447;
  background: rgba(22, 132, 71, 0.14);
}

.support-ticket-row b.is-late,
.support-detail-meta b.is-late {
  color: #b60212;
  background: rgba(237, 0, 18, 0.16);
}

.support-ticket-row i {
  color: #111420;
  font-size: 30px;
  font-style: normal;
}

.support-right-panel .restaurant-side-card {
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(16, 19, 34, 0.05);
}

.support-active-order {
  gap: 8px;
  padding: 14px;
}

.support-active-order .active-order-merchant img {
  object-fit: cover;
}

.support-active-order .primary-button,
.support-active-order .ghost-button {
  height: 34px;
}

.support-help-card,
.support-contact-card {
  gap: 8px;
  padding: 12px 14px;
}

.support-help-card .card-title-row,
.support-contact-card .card-title-row {
  margin-bottom: 0;
}

.support-help-card h2,
.support-contact-card h2 {
  font-size: 16px;
}

.support-help-card .colis-help-list,
.support-contact-card .colis-help-list {
  gap: 2px;
}

.support-help-card .colis-help-list button,
.support-contact-card .colis-help-list button {
  grid-template-columns: 34px minmax(0, 1fr) 18px;
  min-height: 42px;
}

.support-help-card .courses-help-list .help-icon,
.support-contact-card .courses-help-list .help-icon {
  width: 30px;
  height: 30px;
  border-radius: 8px;
}

.support-help-card .colis-help-list strong,
.support-contact-card .colis-help-list strong {
  font-size: 13px;
}

.support-help-card .colis-help-list small,
.support-contact-card .colis-help-list small {
  font-size: 11px;
}

.support-bottom-banner {
  background: #030405;
}

.support-overlay {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(5, 6, 7, 0.42);
  backdrop-filter: blur(5px);
}

.support-ticket-form,
.support-ticket-detail {
  width: min(760px, 100%);
  max-height: min(86vh, 820px);
  overflow: auto;
  padding: 22px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: 0 30px 90px rgba(5, 6, 7, 0.24);
}

.support-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 16px 0;
}

.support-form-grid label,
.support-upload-label {
  display: grid;
  gap: 7px;
  color: #111420;
  font-size: 13px;
  font-weight: 900;
}

.support-form-grid input,
.support-form-grid select,
.support-form-grid textarea,
.support-filter-row select,
.support-monitor-row select {
  width: 100%;
  min-height: 42px;
  padding: 0 12px;
  color: #111420;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 9px;
  font: inherit;
}

.support-form-grid textarea {
  min-height: 120px;
  padding: 12px;
  resize: vertical;
}

.support-form-wide {
  grid-column: 1 / -1;
}

.support-upload-label input {
  display: none;
}

.support-upload-label span {
  display: flex;
  align-items: center;
  min-height: 42px;
  padding: 0 12px;
  color: #5f6677;
  border: 1px dashed #cfd3dc;
  border-radius: 9px;
}

.support-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 12px 0;
}

.support-detail-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  color: #3f4658;
  background: #f5f6f8;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 900;
}

.support-conversation {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.support-conversation div {
  display: grid;
  gap: 6px;
  padding: 12px;
  background: #f7f8fa;
  border-radius: 10px;
}

.support-conversation div.is-support {
  background: #fff2f2;
}

.support-conversation strong {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.support-conversation small {
  color: var(--muted);
  font-weight: 600;
}

.support-control-dashboard,
.support-service-dashboard {
  display: grid;
  gap: 18px;
}

.support-control-hero {
  margin-bottom: 0;
}

.support-metrics-grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 12px;
}

.support-metrics-grid article {
  display: grid;
  gap: 8px;
  min-height: 92px;
  padding: 16px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.support-metrics-grid small {
  color: var(--muted);
  font-weight: 800;
}

.support-metrics-grid strong {
  color: #111420;
  font-size: 24px;
}

.support-control-card {
  display: grid;
  gap: 14px;
  padding: 18px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
}

.support-filter-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.support-monitor-list {
  display: grid;
  gap: 10px;
}

.support-monitor-row {
  display: grid;
  grid-template-columns: 1.1fr 1.2fr 1fr 150px 150px 1fr 92px;
  gap: 10px;
  align-items: center;
  min-height: 84px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 10px;
}

.support-monitor-row div,
.support-monitor-row span {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.support-monitor-row strong,
.support-monitor-row b {
  overflow: hidden;
  color: #111420;
  font-size: 13px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.support-monitor-row small {
  overflow: hidden;
  color: var(--muted);
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.support-monitor-row button {
  min-height: 36px;
  color: #ffffff;
  background: var(--red);
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font-weight: 900;
}

.support-service-hero {
  grid-template-columns: minmax(0, 1fr) auto;
}

body[data-current-screen='settings'] .sidebar-promo {
  background-image:
    linear-gradient(180deg, rgba(5, 6, 7, 0), rgba(5, 6, 7, 0.18) 34%, rgba(5, 6, 7, 0.84) 72%, rgba(5, 6, 7, 0.98)),
    url('./assets/generated/support-customer/delivery-promo.png');
  background-size: 120% auto;
  background-position: center 54%;
}

.settings-dashboard {
  gap: 14px;
}

.settings-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 438px;
  gap: 18px;
  align-items: start;
}

.settings-main-column {
  display: grid;
  gap: 18px;
  min-width: 0;
}

.settings-heading {
  display: grid;
  gap: 10px;
  min-height: 72px;
  align-content: end;
}

.settings-heading h1 {
  margin: 0;
  color: #050607;
  font-size: 30px;
  line-height: 1;
}

.settings-heading p {
  margin: 0;
  color: #1e2432;
  font-size: 15px;
}

.settings-content-grid {
  display: grid;
  grid-template-columns: 236px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.settings-side-card {
  display: grid;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(16, 19, 34, 0.04);
}

.settings-side-card button {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  min-height: 64px;
  padding: 0 18px;
  color: #202635;
  text-align: left;
  background: #ffffff;
  border: 0;
  border-bottom: 1px solid var(--line);
  cursor: pointer;
  font-size: 15px;
  font-weight: 900;
}

.settings-side-card button:last-child {
  border-bottom: 0;
}

.settings-side-card button::before {
  width: 3px;
  height: 64px;
  margin-left: -18px;
  background: transparent;
  content: '';
  grid-column: 1;
  grid-row: 1;
}

.settings-side-card button img {
  grid-column: 1;
  grid-row: 1;
  width: 24px;
  height: 24px;
  object-fit: cover;
  border-radius: 50%;
}

.settings-side-card button span {
  grid-column: 2;
  grid-row: 1;
}

.settings-side-card button.is-active {
  color: var(--red);
  background: linear-gradient(90deg, rgba(237, 0, 18, 0.12), rgba(237, 0, 18, 0.04));
}

.settings-side-card button.is-active::before {
  background: var(--red);
}

.settings-content-column {
  display: grid;
  gap: 18px;
}

.settings-security-card,
.settings-delete-card,
.settings-about-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 12px 30px rgba(16, 19, 34, 0.04);
}

.settings-security-card {
  overflow: hidden;
}

.settings-security-row,
.settings-delete-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  min-height: 84px;
  padding: 18px 26px;
  border-bottom: 1px solid var(--line);
}

.settings-security-row:last-child {
  border-bottom: 0;
}

.settings-security-row span,
.settings-delete-card span {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.settings-security-row strong,
.settings-delete-card strong {
  color: #111420;
  font-size: 16px;
}

.settings-security-row small,
.settings-delete-card small {
  color: #3f4658;
  font-size: 13px;
}

.settings-edit-button {
  width: 96px;
  height: 38px;
  border-radius: 8px;
}

.settings-toggle {
  position: relative;
  width: 42px;
  height: 24px;
  padding: 0;
  background: #d7d8dc;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
}

.settings-toggle::after {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 18px;
  height: 18px;
  background: #ffffff;
  border-radius: 50%;
  box-shadow: 0 2px 8px rgba(16, 19, 34, 0.18);
  content: '';
}

.settings-toggle.is-active {
  background: var(--red);
}

.settings-toggle.is-active::after {
  left: 21px;
}

.settings-chevron {
  width: 32px;
  height: 32px;
  color: #111420;
  background: transparent;
  border: 0;
  cursor: pointer;
  font-size: 30px;
}

.settings-delete-card {
  min-height: 82px;
  border-bottom: 0;
}

.settings-delete-button {
  min-width: 98px;
  height: 38px;
  color: var(--red);
  background: #ffffff;
  border: 1px solid rgba(237, 0, 18, 0.28);
  border-radius: 8px;
  cursor: pointer;
  font-weight: 900;
}

.settings-about-card {
  display: grid;
  gap: 12px;
  padding: 20px 22px;
}

.settings-about-card h2 {
  margin: 0;
  color: #111420;
  font-size: 18px;
}

.settings-about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px 60px;
}

.settings-about-grid button {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 24px;
  gap: 12px;
  align-items: center;
  min-height: 58px;
  padding: 0;
  color: var(--ink);
  text-align: left;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.settings-about-grid img {
  width: 36px;
  height: 36px;
  object-fit: cover;
  border-radius: 10px;
}

.settings-about-grid span {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.settings-about-grid strong {
  color: #111420;
  font-size: 13px;
}

.settings-about-grid small {
  color: #3f4658;
  font-size: 12px;
}

.settings-about-grid em {
  justify-self: end;
  color: #111420;
  font-size: 26px;
  font-style: normal;
}

.settings-bottom-banner {
  background: #030405;
}

@media (max-width: 1460px) {
  .payments-page-grid {
    grid-template-columns: minmax(0, 1fr) 360px;
  }

  .support-page-grid {
    grid-template-columns: minmax(0, 1fr) 360px;
  }

  .settings-page-grid {
    grid-template-columns: minmax(0, 1fr) 360px;
  }

  .settings-content-grid {
    grid-template-columns: 220px minmax(0, 1fr);
    gap: 18px;
  }

  .settings-about-grid {
    gap: 6px 24px;
  }

  .support-action-grid {
    gap: 12px;
  }

  .support-action-card {
    min-height: 224px;
    padding: 18px 14px;
  }

  .support-action-card .primary-button,
  .support-action-card .ghost-button {
    width: 160px;
  }

  .support-monitor-row {
    grid-template-columns: 1fr 1fr 0.9fr 130px 130px 0.9fr 80px;
  }

  .payments-tabs {
    grid-template-columns: 150px 220px 160px;
  }

  .payment-method-row {
    grid-template-columns: 100px 176px 1px minmax(0, 1fr) 48px 20px;
    gap: 14px;
    padding: 16px 18px;
  }

  .payment-card-art {
    width: 94px;
    height: 58px;
  }
}

@media (max-width: 1100px) {
  .payments-page-grid {
    grid-template-columns: 1fr;
  }

  .support-page-grid,
  .settings-page-grid,
  .support-action-grid,
  .support-metrics-grid,
  .support-filter-row,
  .support-form-grid,
  .support-service-hero {
    grid-template-columns: 1fr;
  }

  .settings-content-grid,
  .settings-about-grid {
    grid-template-columns: 1fr;
  }

  .support-ticket-row {
    grid-template-columns: 58px minmax(0, 1fr) 24px;
  }

  .support-ticket-row b {
    grid-column: 2;
    justify-self: start;
  }

  .support-ticket-row i {
    grid-column: 3;
    grid-row: 1 / 3;
  }

  .support-monitor-row {
    grid-template-columns: 1fr;
  }

  .payments-toolbar {
    display: grid;
  }

  .payments-tabs {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .payments-tabs button {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .payments-tabs button:last-child {
    border-bottom: 0;
  }

  .payment-method-row {
    grid-template-columns: 90px minmax(0, 1fr) 52px 24px;
  }

  .payment-divider {
    display: none;
  }

  .payment-card-number,
  .payment-method-details {
    grid-column: 2;
  }

  .payment-card-number {
    grid-row: 1;
  }

  .payment-method-details {
    grid-row: 2;
  }

  .payment-toggle {
    grid-column: 3;
    grid-row: 1 / 3;
  }

  .payment-more-button {
    grid-column: 4;
    grid-row: 1 / 3;
  }
}

@media (max-width: 1460px) {
  .orders-page-grid {
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 14px;
  }

  .orders-filter-row {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  }

  .orders-row {
    position: relative;
    grid-template-columns: 78px 52px minmax(0, 1fr) 164px;
    gap: 12px;
    min-height: 102px;
    padding-right: 48px;
  }

  .orders-row-image {
    width: 72px;
    height: 78px;
  }

  .orders-logo {
    width: 46px;
    height: 46px;
  }

  .orders-row-action {
    grid-column: 4;
    grid-row: 2;
    justify-self: end;
    min-width: 150px;
  }

  .orders-more-button {
    position: absolute;
    top: 12px;
    right: 12px;
  }

  .orders-row-status {
    grid-column: 4;
    grid-row: 1;
    min-height: 0;
    padding-left: 0;
    border-left: 0;
  }

  .orders-row-main p {
    flex-wrap: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .orders-row-main p em {
    flex: 0 0 auto;
  }
}

@media (max-width: 1320px) {
  .colis-page-grid {
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 14px;
  }

  .colis-hero-slide {
    grid-template-columns: minmax(0, 1fr) 240px;
    padding: 26px 30px;
  }

  .colis-hero-copy h1 {
    font-size: 28px;
  }

  .colis-hero-metrics {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(430px, 100%);
  }

  .colis-hero-metrics span:nth-child(2) {
    border-right: 0;
  }

  .colis-hero-metrics span:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .colis-hero-slide > img {
    height: 210px;
    max-height: 210px;
  }

  .colis-quick-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .colis-work-grid {
    grid-template-columns: 1fr;
  }

  .colis-right-panel .restaurant-side-card {
    padding: 16px;
  }
}

.pharmacy-hero-carousel {
  background:
    radial-gradient(circle at 76% 54%, rgba(237, 0, 18, 0.28), transparent 28%),
    radial-gradient(circle at 58% 42%, rgba(60, 128, 255, 0.18), transparent 25%),
    linear-gradient(105deg, #050607, #101825);
}

.pharmacy-products-grid,
.pharmacy-partner-grid {
  display: grid;
  gap: 14px;
  margin-top: 12px;
}

.pharmacy-products-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.pharmacy-partner-grid {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.pharmacy-product-card {
  position: relative;
  display: grid;
  grid-template-rows: 22px 96px auto auto auto auto;
  gap: 6px;
  min-height: 234px;
  padding: 14px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 10px 24px rgba(16, 19, 34, 0.05);
}

.pharmacy-product-badge {
  display: inline-flex;
  align-items: center;
  justify-self: start;
  min-height: 22px;
  padding: 0 8px;
  color: var(--red);
  background: rgba(237, 0, 18, 0.08);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
}

.pharmacy-product-card img {
  width: 100%;
  height: 96px;
  object-fit: contain;
  padding: 10px;
  background: linear-gradient(145deg, #f6f8fb, #ffffff);
  border: 1px solid #eef1f6;
  border-radius: 10px;
}

.pharmacy-product-card strong {
  min-height: 32px;
  font-size: 14px;
  line-height: 1.15;
}

.pharmacy-product-card small {
  color: var(--muted);
  font-size: 11px;
}

.pharmacy-product-card em {
  color: #8a3140;
  overflow: hidden;
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pharmacy-product-card p {
  margin: 2px 42px 0 0;
  font-size: 14px;
  font-weight: 900;
}

.pharmacy-product-card button {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 30px;
  height: 30px;
  color: var(--red);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  font-size: 20px;
  font-weight: 900;
}

.pharmacy-product-card button:hover,
.pharmacy-product-card button:focus-visible {
  color: #ffffff;
  background: var(--red);
  border-color: var(--red);
  outline: 0;
}

.pharmacy-card .restaurant-card-image {
  height: 112px;
  background: linear-gradient(135deg, #eef4f7, #ffffff);
}

.pharmacy-filter-row button:hover,
.pharmacy-filter-row button:focus-visible {
  color: #ffffff;
}

.pharmacy-filter-row button.is-active {
  color: #ffffff;
  background: var(--red);
  border-color: var(--red);
}

.pharmacy-care-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(172px, 0.48fr);
  gap: 14px;
}

.pharmacy-prescription-card,
.pharmacy-care-card,
.pharmacy-cart-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: 0 14px 34px rgba(16, 19, 34, 0.06);
}

.pharmacy-prescription-card {
  display: grid;
  grid-row: span 2;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  align-items: stretch;
  padding: 16px;
}

.pharmacy-prescription-card h2 {
  margin: 5px 0 6px;
  font-size: 22px;
  line-height: 1.1;
}

.pharmacy-prescription-card p {
  max-width: 420px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.prescription-upload {
  display: grid;
  gap: 5px;
  justify-items: center;
  min-height: 96px;
  padding: 12px;
  color: var(--ink);
  text-align: center;
  background: #f8f9fc;
  border: 1px dashed #cfd5e2;
  border-radius: 12px;
  cursor: pointer;
}

.prescription-upload input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.prescription-upload span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  color: #ffffff;
  background: var(--red);
  border-radius: 10px;
  font-weight: 900;
}

.prescription-upload strong {
  max-width: 142px;
  overflow: hidden;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.prescription-upload small {
  color: var(--muted);
  font-size: 11px;
}

.pharmacy-care-card {
  display: grid;
  gap: 8px;
  align-content: start;
  min-height: 148px;
  padding: 16px;
}

.pharmacy-care-card span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: var(--red);
  background: rgba(237, 0, 18, 0.08);
  border-radius: 12px;
  font-size: 20px;
  font-weight: 900;
}

.pharmacy-care-card strong {
  font-size: 15px;
}

.pharmacy-care-card small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.pharmacy-care-card button {
  justify-self: start;
  min-height: 30px;
  padding: 0 12px;
  color: var(--red);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
}

.pharmacy-care-card button:hover,
.pharmacy-care-card button:focus-visible {
  color: #ffffff;
  background: var(--red);
  border-color: var(--red);
  outline: 0;
}

.pharmacy-cart-lines {
  display: grid;
  gap: 10px;
}

.pharmacy-cart-lines span {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
  min-height: 38px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.pharmacy-cart-lines span:last-child {
  border-bottom: 0;
}

.pharmacy-cart-lines strong,
.pharmacy-cart-lines small {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pharmacy-cart-lines strong {
  font-size: 13px;
}

.pharmacy-cart-lines small {
  color: var(--muted);
  font-size: 12px;
}

.pharmacy-cart-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  padding: 0 12px;
  background: #fff7f7;
  border-radius: 10px;
}

.pharmacy-cart-total span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.pharmacy-cart-total strong {
  color: var(--red);
}

.as-link {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  text-decoration: none;
}

.platform-toast {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 20;
  max-width: 420px;
  margin: 0;
  padding: 14px 18px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 45px rgba(16, 19, 34, 0.18);
  font-weight: 900;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.platform-toast[data-visible='true'] {
  opacity: 1;
  transform: translateY(0);
}

.platform-toast[data-tone='success'] {
  color: #108944;
}

.platform-toast[data-tone='error'] {
  color: var(--red);
}

.dark-mode {
  --soft: #11131a;
  --card: #171a23;
  --ink: #ffffff;
  --muted: #aeb5c7;
  --line: #292f3d;
}

body.is-rtl {
  direction: ltr;
}

.is-rtl .main-site-header-inner {
  flex-direction: row-reverse;
}

.is-rtl .main-hero,
.is-rtl .main-service-grid,
.is-rtl .main-stats-strip {
  direction: rtl;
}

.is-rtl .main-service-card {
  direction: rtl;
}

.is-rtl .welcome-copy,
.is-rtl .welcome-card-body,
.is-rtl .welcome-benefits article,
.is-rtl .main-hero-copy,
.is-rtl .main-card-content,
.is-rtl .main-stats-strip article,
.is-rtl .space-id-card,
.is-rtl .sidebar-promo,
.is-rtl .side-link,
.is-rtl .topbar-title,
.is-rtl .auth-copy,
.is-rtl .auth-panel,
.is-rtl .feature-panel,
.is-rtl .welcome-card,
.is-rtl .stat-card,
.is-rtl .data-card,
.is-rtl .benefit-row,
.is-rtl .platform-footer {
  direction: rtl;
  text-align: right;
}

.is-rtl .main-title-mark {
  justify-self: auto;
  margin-right: 0;
  margin-left: auto;
}

.is-rtl input,
.is-rtl textarea {
  direction: rtl;
  text-align: right;
}

.is-rtl .topbar-actions,
.is-rtl .main-site-actions,
.is-rtl .service-auth-actions,
.is-rtl .language-select {
  direction: ltr;
}

.is-rtl .service-auth-card,
.is-rtl .service-hero-copy,
.is-rtl .service-auth-banner article {
  direction: rtl;
  text-align: right;
}

.is-rtl .service-auth-card .panel-heading {
  text-align: center;
}

.is-rtl .service-auth-banner article {
  border-right: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.28);
}

.is-rtl .service-auth-banner article:last-child {
  border-left: 0;
}

/* Generated visuals. Layout dimensions remain unchanged. */
body[data-space='customer'] .mini-card {
  background-image: url('./assets/generated/customer-mini-visual.png');
  background-repeat: no-repeat;
  background-size: 190%;
  background-position: 14% 62%;
}

body[data-space='customer'] .mini-card.small {
  background-size: 230%;
  background-position: 82% 56%;
}

body[data-space='customer'] .mini-card.red {
  background-image:
    linear-gradient(90deg, rgba(237, 0, 18, 0.82), rgba(16, 19, 34, 0.42)),
    url('./assets/generated/customer-mini-visual.png');
  background-size: cover;
  background-position: center 58%;
}

body[data-space='customer'] .sidebar-promo {
  background-image:
    linear-gradient(180deg, rgba(5, 6, 7, 0), rgba(5, 6, 7, 0.18) 40%, rgba(5, 6, 7, 0.82) 76%, rgba(5, 6, 7, 0.98)),
    url('./assets/generated/customer-sidebar-promo.png');
  background-repeat: no-repeat;
  background-size: 112% auto;
  background-position: center 58%;
}

body[data-space='customer'] .sidebar-promo .promo-icon {
  background: rgba(237, 0, 18, 0.88);
  box-shadow: 0 12px 28px rgba(237, 0, 18, 0.24);
}

body[data-space='customer'] .feature-visual {
  background-image: url('./assets/generated/customer-feature-hero.png');
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

body[data-space='customer'] .platform-sidebar {
  gap: 12px;
  padding: 18px;
}

body[data-space='customer'] .platform-logo {
  min-height: 54px;
}

body[data-space='customer'] .platform-logo .official-logo {
  width: 220px;
  height: 58px;
}

body[data-space='customer'] .space-id-card {
  height: 48px;
  grid-template-columns: 1fr;
  justify-items: center;
  padding: 0 14px;
  text-align: center;
}

body[data-space='customer'] .space-id-card .space-id-icon,
body[data-space='customer'] .space-id-card small {
  display: none;
}

body[data-space='customer'] .side-menu {
  gap: 5px;
}

body[data-space='customer'] .side-link {
  min-height: 43px;
  padding: 0 18px;
}

body[data-space='customer'] .feature-visual .visual-orbit,
body[data-space='customer'] .feature-visual .visual-box {
  opacity: 0;
}

body[data-space='merchant'] .mini-card { background-image: url('./assets/generated/merchant-platform-visual.png'); }
body[data-space='parcel'] .mini-card { background-image: url('./assets/generated/parcel-platform-visual.png'); }
body[data-space='driver'] .mini-card { background-image: url('./assets/generated/driver-platform-visual.png'); }
body[data-space='support'] .mini-card { background-image: url('./assets/generated/support-platform-visual.png'); }
body[data-space='admin'] .mini-card { background-image: url('./assets/generated/admin-platform-visual.png'); }

body[data-space='merchant'] .mini-card,
body[data-space='parcel'] .mini-card,
body[data-space='driver'] .mini-card,
body[data-space='support'] .mini-card,
body[data-space='admin'] .mini-card {
  background-repeat: no-repeat;
  background-size: 190%;
  background-position: center 58%;
}

body[data-space='merchant'] .mini-card.small,
body[data-space='parcel'] .mini-card.small,
body[data-space='driver'] .mini-card.small,
body[data-space='support'] .mini-card.small,
body[data-space='admin'] .mini-card.small {
  background-size: 225%;
  background-position: 72% 54%;
}

body[data-space='merchant'] .mini-card.red,
body[data-space='parcel'] .mini-card.red,
body[data-space='driver'] .mini-card.red,
body[data-space='support'] .mini-card.red,
body[data-space='admin'] .mini-card.red {
  background-size: cover;
  background-position: center 58%;
}

body[data-space='merchant'] .mini-card.red {
  background-image: linear-gradient(90deg, rgba(237, 0, 18, 0.82), rgba(16, 19, 34, 0.42)), url('./assets/generated/merchant-platform-visual.png');
}

body[data-space='parcel'] .mini-card.red {
  background-image: linear-gradient(90deg, rgba(237, 0, 18, 0.82), rgba(16, 19, 34, 0.42)), url('./assets/generated/parcel-platform-visual.png');
}

body[data-space='driver'] .mini-card.red {
  background-image: linear-gradient(90deg, rgba(237, 0, 18, 0.82), rgba(16, 19, 34, 0.42)), url('./assets/generated/driver-platform-visual.png');
}

body[data-space='support'] .mini-card.red {
  background-image: linear-gradient(90deg, rgba(237, 0, 18, 0.82), rgba(16, 19, 34, 0.42)), url('./assets/generated/support-platform-visual.png');
}

body[data-space='admin'] .mini-card.red {
  background-image: linear-gradient(90deg, rgba(237, 0, 18, 0.82), rgba(16, 19, 34, 0.42)), url('./assets/generated/admin-platform-visual.png');
}

body[data-space='merchant'] .sidebar-promo { background-image: linear-gradient(180deg, rgba(5, 6, 7, 0), rgba(5, 6, 7, 0.18) 40%, rgba(5, 6, 7, 0.82) 76%, rgba(5, 6, 7, 0.98)), url('./assets/generated/merchant-platform-visual.png'); }
body[data-space='parcel'] .sidebar-promo { background-image: linear-gradient(180deg, rgba(5, 6, 7, 0), rgba(5, 6, 7, 0.18) 40%, rgba(5, 6, 7, 0.82) 76%, rgba(5, 6, 7, 0.98)), url('./assets/generated/parcel-platform-visual.png'); }
body[data-space='driver'] .sidebar-promo { background-image: linear-gradient(180deg, rgba(5, 6, 7, 0), rgba(5, 6, 7, 0.18) 40%, rgba(5, 6, 7, 0.82) 76%, rgba(5, 6, 7, 0.98)), url('./assets/generated/driver-platform-visual.png'); }
body[data-space='support'] .sidebar-promo { background-image: linear-gradient(180deg, rgba(5, 6, 7, 0), rgba(5, 6, 7, 0.18) 40%, rgba(5, 6, 7, 0.82) 76%, rgba(5, 6, 7, 0.98)), url('./assets/generated/support-platform-visual.png'); }
body[data-space='admin'] .sidebar-promo { background-image: linear-gradient(180deg, rgba(5, 6, 7, 0), rgba(5, 6, 7, 0.18) 40%, rgba(5, 6, 7, 0.82) 76%, rgba(5, 6, 7, 0.98)), url('./assets/generated/admin-platform-visual.png'); }

body[data-space='merchant'] .sidebar-promo,
body[data-space='parcel'] .sidebar-promo,
body[data-space='driver'] .sidebar-promo,
body[data-space='support'] .sidebar-promo,
body[data-space='admin'] .sidebar-promo {
  background-repeat: no-repeat;
  background-size: 118% auto;
  background-position: center 50%;
}

body[data-space='merchant'] .feature-visual { background-image: url('./assets/generated/merchant-platform-visual.png'); }
body[data-space='parcel'] .feature-visual { background-image: url('./assets/generated/parcel-platform-visual.png'); }
body[data-space='driver'] .feature-visual { background-image: url('./assets/generated/driver-platform-visual.png'); }
body[data-space='support'] .feature-visual { background-image: url('./assets/generated/support-platform-visual.png'); }
body[data-space='admin'] .feature-visual { background-image: url('./assets/generated/admin-platform-visual.png'); }

body[data-space='merchant'] .feature-visual,
body[data-space='parcel'] .feature-visual,
body[data-space='driver'] .feature-visual,
body[data-space='support'] .feature-visual,
body[data-space='admin'] .feature-visual {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

body[data-space='merchant'] .feature-visual .visual-orbit,
body[data-space='merchant'] .feature-visual .visual-box,
body[data-space='parcel'] .feature-visual .visual-orbit,
body[data-space='parcel'] .feature-visual .visual-box,
body[data-space='driver'] .feature-visual .visual-orbit,
body[data-space='driver'] .feature-visual .visual-box,
body[data-space='support'] .feature-visual .visual-orbit,
body[data-space='support'] .feature-visual .visual-box,
body[data-space='admin'] .feature-visual .visual-orbit,
body[data-space='admin'] .feature-visual .visual-box {
  opacity: 0;
}

@media (max-width: 1500px) {
  .customer-main-grid {
    grid-template-columns: minmax(0, 1fr) 350px;
  }

  body.customer-dashboard-mode .customer-hero-card {
    grid-template-columns: minmax(330px, 0.92fr) minmax(280px, 1.08fr);
    padding: 28px;
  }

  body.customer-dashboard-mode .customer-hero-copy h1 {
    font-size: 26px;
  }

  .customer-offer-slide {
    grid-template-columns: minmax(310px, 0.92fr) minmax(260px, 1.08fr);
    padding: 28px 48px 28px 32px;
  }

  .customer-offer-copy h1 {
    font-size: 30px;
  }

  .customer-offer-slide > img {
    max-height: 250px;
  }

  .hero-chip-row {
    grid-template-columns: repeat(4, 66px);
  }

  .hero-chip {
    height: 78px;
  }

  body.customer-dashboard-mode .customer-service-grid {
    gap: 10px;
  }

  body.customer-dashboard-mode .customer-service-card {
    padding: 15px 8px 12px;
  }

  body.customer-dashboard-mode .customer-service-card img {
    width: 58px;
  }

  body.customer-dashboard-mode .offer-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1260px) {
  :root {
    --sidebar-width: 250px;
    --page-padding: 20px;
  }

  .customer-topbar {
    gap: 10px;
  }

  .customer-profile-button {
    min-width: 132px;
  }

  .customer-profile-button strong {
    display: none;
  }

  .customer-main-grid,
  .customer-lower-grid {
    grid-template-columns: 1fr;
  }

  body.customer-dashboard-mode .customer-service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  body.customer-dashboard-mode .offer-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .customer-section-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-banner-row {
    grid-template-columns: 220px minmax(0, 1fr);
  }

  .admin-banner-fields {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .admin-banner-fields label:first-child,
  .admin-banner-fields label:nth-child(4),
  .admin-banner-fields label:nth-child(7),
  .admin-banner-fields label:nth-child(8) {
    grid-column: auto;
  }

  .restaurant-page-grid {
    grid-template-columns: minmax(0, 1fr) 340px;
  }

  .restaurant-hero-slide {
    grid-template-columns: minmax(330px, 0.82fr) minmax(290px, 1.18fr);
    padding: 26px 30px;
  }

  .restaurant-hero-copy h1 {
    font-size: 26px;
  }

  .cuisine-card-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .popular-restaurant-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .restaurant-mini-offers {
    grid-template-columns: 1fr;
  }

  .courses-filter-row,
  .courses-rayon-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .supermarket-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pharmacy-products-grid,
  .pharmacy-partner-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 1100px) {
  .service-auth-shell,
  .platform-body {
    min-width: 0;
    overflow-x: hidden;
  }

  .service-auth-header {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    height: auto;
    min-height: 72px;
    padding: 10px 16px 14px;
  }

  .service-auth-logo {
    justify-content: center;
  }

  .service-auth-logo .official-logo {
    width: 214px;
    height: 52px;
    object-position: center;
  }

  .service-auth-actions {
    display: grid;
    grid-template-columns: 1fr 48px;
    gap: 8px;
  }

  .service-auth-language {
    width: 100%;
    min-width: 0;
    height: 42px;
  }

  .service-auth-mode {
    width: 48px;
    height: 42px;
    font-size: 20px;
  }

  .service-auth-create {
    grid-column: 1 / -1;
    width: 100%;
    min-width: 0;
    height: 44px;
  }

  .service-auth-main {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 18px 16px;
  }

  .service-auth-card {
    padding: 22px 18px;
    border-radius: var(--radius);
  }

  .service-auth-card .panel-heading {
    margin-bottom: 18px;
  }

  .service-auth-card .panel-heading h2 {
    font-size: 30px;
  }

  .service-auth-card .panel-heading p {
    max-width: none;
  }

  .service-auth-card .form-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

  .service-auth-card .input-shell {
    gap: 8px;
    padding: 0 10px;
  }

  .service-auth-card .input-shell input {
    font-size: 14px;
  }

  .service-auth-visual-panel {
    display: grid;
    gap: 14px;
    min-height: 0;
    overflow: visible;
  }

  .service-hero-copy {
    max-width: none;
    padding-top: 0;
  }

  .service-hero-copy h1 {
    font-size: 30px;
  }

  .service-hero-copy p {
    font-size: 15px;
  }

  .service-hero-image {
    position: static;
  }

  .service-hero-image img,
  .service-hero-image:not([data-service='customer']) img {
    width: 100%;
    max-height: 260px;
    margin-bottom: 0;
    object-position: center bottom;
  }

  .service-auth-banner {
    grid-template-columns: 1fr;
    height: auto;
    margin: 0 16px 18px;
    padding: 10px 14px;
    border-radius: var(--radius);
  }

  .service-auth-banner article {
    grid-template-columns: 52px 1fr;
    height: auto;
    min-height: 74px;
    padding: 10px 2px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .service-auth-banner article:last-child {
    border-bottom: 0;
  }

  .service-auth-banner img {
    width: 48px;
    height: 48px;
  }

  .platform-shell {
    display: grid;
    grid-template-columns: 1fr;
  }

  .platform-sidebar,
  body[data-space='customer'] .platform-sidebar {
    position: relative;
    width: 100%;
    height: auto;
    min-height: 0;
    gap: 12px;
    padding: 14px 16px;
    overflow: visible;
    border-right: 0;
  }

  .platform-logo,
  body[data-space='customer'] .platform-logo {
    justify-content: center;
    min-height: 50px;
  }

  .platform-logo .official-logo,
  body[data-space='customer'] .platform-logo .official-logo {
    width: 210px;
    height: 52px;
    object-position: center;
  }

  .space-id-card,
  body[data-space='customer'] .space-id-card {
    grid-template-columns: 1fr;
    justify-items: center;
    height: auto;
    min-height: 44px;
    padding: 10px 14px;
    text-align: center;
  }

  .space-id-card .space-id-icon,
  .space-id-card small,
  body[data-space='customer'] .space-id-card .space-id-icon,
  body[data-space='customer'] .space-id-card small {
    display: none;
  }

  .side-menu,
  body[data-space='customer'] .side-menu {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .side-link,
  body[data-space='customer'] .side-link {
    min-height: 42px;
    padding: 0 12px;
    font-size: 13px;
  }

  .side-icon {
    width: 20px;
    font-size: 15px;
  }

  .sidebar-promo {
    display: none;
  }

  .platform-topbar {
    position: relative;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    height: auto;
    padding: 12px 16px;
  }

  .topbar-title {
    min-width: 0;
  }

  .topbar-title strong {
    font-size: 16px;
  }

  .topbar-actions {
    display: grid;
    grid-template-columns: 1fr 44px 44px 44px 44px;
    gap: 8px;
    width: 100%;
  }

  .topbar-search {
    grid-column: 1 / -1;
    width: 100%;
  }

  .topbar-actions .language-select {
    grid-column: 1 / 2;
    width: 100%;
    min-width: 0;
  }

  .platform-content {
    padding: 16px;
  }

  .auth-grid,
  .work-grid,
  .customer-work-grid {
    grid-template-columns: 1fr;
  }

  .auth-panel,
  .feature-panel {
    margin-top: 0;
  }

  .auth-copy h1,
  .welcome-card h1 {
    font-size: 34px;
  }

  .mini-dashboard {
    grid-template-columns: 1fr 1fr;
    max-width: none;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .welcome-card {
    display: grid;
    padding: 22px 18px;
  }

  .table-row {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 12px;
  }

  .benefit-row,
  .platform-footer {
    grid-template-columns: 1fr;
  }

  .benefit-row article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .benefit-row article:last-child {
    border-bottom: 0;
  }

  .customer-dashboard {
    gap: 14px;
  }

  .customer-hero-card {
    grid-template-columns: 1fr;
    gap: 16px;
    min-height: 0;
    padding: 22px 18px;
  }

  .customer-hero-copy h1 {
    font-size: 36px;
  }

  .customer-hero-copy p {
    font-size: 16px;
  }

  .customer-hero-actions,
  .tracking-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .primary-button.compact,
  .ghost-button {
    width: 100%;
  }

  .customer-hero-visual {
    justify-items: center;
  }

  .customer-hero-visual img {
    max-height: 220px;
    object-position: center bottom;
  }

  .customer-service-grid {
    grid-template-columns: 1fr;
  }

  .customer-service-card {
    min-height: 120px;
  }

  .tracking-steps {
    grid-template-columns: 1fr 1fr;
  }

  .offer-list {
    grid-template-columns: 1fr;
  }

  .customer-order-row {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 12px;
  }

  .customer-info-banner {
    grid-template-columns: 1fr;
    height: auto;
    padding: 10px 14px;
  }

  .customer-info-banner article {
    grid-template-columns: 52px 1fr;
    height: auto;
    min-height: 74px;
    padding: 10px 2px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .customer-info-banner article:last-child {
    border-bottom: 0;
  }
}

@media (max-width: 1100px) {
  body.customer-dashboard-mode .platform-sidebar {
    padding: 14px 16px;
  }

  body.customer-dashboard-mode .space-id-card {
    padding: 8px 0;
    text-align: center;
  }

  body.customer-dashboard-mode .space-id-card strong::before {
    display: none;
  }

  body.customer-dashboard-mode .sidebar-promo,
  body.customer-dashboard-mode .logout-link {
    display: none;
  }

  .customer-topbar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    height: auto;
  }

  .customer-topbar-search {
    grid-column: 1 / -1;
    min-width: 0;
    width: 100%;
  }

  .location-button,
  .customer-topbar .language-select,
  .customer-profile-button {
    width: 100%;
    min-width: 0;
  }

  .customer-topbar .icon-button {
    width: 100%;
  }

  .customer-profile-button {
    justify-content: center;
  }

  body.customer-dashboard-mode .customer-dashboard {
    padding: 16px;
  }

  .customer-main-grid,
  .customer-lower-grid,
  .customer-section-grid {
    grid-template-columns: 1fr;
  }

  body.customer-dashboard-mode .customer-hero-card {
    grid-template-columns: 1fr;
    padding: 22px 18px;
  }

  .customer-offer-carousel,
  .customer-offer-track,
  .customer-offer-slide {
    min-height: 430px;
  }

  .customer-offer-slide {
    grid-template-columns: 1fr;
    align-content: start;
    gap: 12px;
    padding: 22px 44px 46px;
  }

  .customer-offer-copy h1 {
    font-size: 27px;
  }

  .customer-offer-copy p {
    margin-bottom: 16px;
    font-size: 14px;
  }

  .customer-offer-slide > img {
    justify-self: center;
    max-height: 170px;
    object-position: center bottom;
  }

  .offer-carousel-dots {
    left: 50%;
    transform: translateX(-50%);
  }

  body.customer-dashboard-mode .customer-hero-copy h1 {
    font-size: 27px;
  }

  .hero-chip-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-chip {
    width: 100%;
  }

  .hero-mini-strip {
    width: 100%;
    align-items: flex-start;
    height: auto;
    padding: 10px 12px;
    line-height: 1.4;
  }

  body.customer-dashboard-mode .customer-service-grid,
  body.customer-dashboard-mode .offer-list {
    grid-template-columns: 1fr;
  }

  body.customer-dashboard-mode .customer-service-card {
    min-height: 120px;
  }

  body.customer-dashboard-mode .customer-order-row {
    grid-template-columns: 40px 1fr auto;
    gap: 8px;
    min-height: 72px;
    padding: 10px 0;
  }

  body.customer-dashboard-mode .customer-order-row span,
  body.customer-dashboard-mode .customer-order-row b {
    grid-column: 2 / 3;
  }

  body.customer-dashboard-mode .customer-order-row small {
    grid-column: 3 / 4;
    grid-row: 1 / 3;
  }

  body.customer-dashboard-mode .customer-order-row em {
    display: none;
  }

  .active-order-merchant {
    grid-template-columns: 54px 1fr;
  }

  .active-order-merchant em {
    grid-column: 2;
  }

  .tracking-line {
    grid-template-columns: repeat(2, 1fr);
  }

  .driver-row {
    grid-template-columns: 42px 1fr auto;
  }

  .driver-row .call-button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .customer-section-hero {
    grid-template-columns: 1fr;
    padding: 22px 18px;
  }

  .customer-section-hero h1 {
    font-size: 32px;
  }

  .customer-list-card {
    grid-template-columns: 82px 1fr;
    min-height: 0;
  }

  .customer-list-card img {
    width: 78px;
    height: 78px;
  }

  .admin-banners-hero,
  .admin-banner-actions {
    display: grid;
    justify-content: stretch;
  }

  .admin-banner-row,
  .admin-banner-fields {
    grid-template-columns: 1fr;
  }

  .admin-banner-preview {
    min-height: 150px;
  }

  .restaurant-page-grid,
  .restaurant-hero-slide {
    grid-template-columns: 1fr;
  }

  .restaurant-hero-carousel,
  .restaurant-hero-slide {
    min-height: 470px;
  }

  .restaurant-hero-slide {
    align-content: start;
    padding: 22px 18px 46px;
    transform: none;
  }

  .restaurant-hero-slide.is-active {
    transform: none;
  }

  .restaurant-hero-copy h1 {
    font-size: 25px;
  }

  .restaurant-hero-metrics {
    grid-template-columns: 1fr;
    height: auto;
  }

  .restaurant-hero-metrics span {
    min-height: 48px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .restaurant-hero-metrics span:last-child {
    border-bottom: 0;
  }

  .restaurant-hero-slide > img {
    justify-self: center;
    max-height: 150px;
    object-position: center bottom;
  }

  .restaurant-dots {
    left: 50%;
    transform: translateX(-50%);
  }

  .restaurant-filter-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .restaurant-filter-row button,
  .cuisine-card-grid,
  .popular-restaurant-grid {
    width: 100%;
  }

  .cuisine-card-grid,
  .popular-restaurant-grid,
  .restaurant-mini-offers {
    grid-template-columns: 1fr;
  }

  .featured-restaurant-list a {
    grid-template-columns: 44px 1fr;
  }

  .featured-restaurant-list span,
  .featured-restaurant-list small {
    grid-column: 2;
  }

  .courses-filter-row,
  .courses-rayon-grid,
  .supermarket-grid,
  .orders-page-grid,
  .orders-tabs,
  .orders-filter-row,
  .colis-quick-grid,
  .colis-work-grid,
  .colis-calculator-fields,
  .colis-calculator-result,
  .pharmacy-care-grid,
  .pharmacy-products-grid,
  .pharmacy-partner-grid {
    grid-template-columns: 1fr;
  }

  .orders-row {
    grid-template-columns: 78px minmax(0, 1fr) 34px;
  }

  .orders-row-image {
    width: 70px;
    height: 70px;
  }

  .orders-logo {
    display: none;
  }

  .orders-row-main,
  .orders-row-status,
  .orders-row-action {
    grid-column: 2 / 3;
  }

  .orders-row-status {
    min-height: 0;
    padding-left: 0;
    border-left: 0;
  }

  .orders-more-button {
    grid-column: 3;
    grid-row: 1;
  }

  .orders-frequent-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .colis-hero-metrics {
    grid-template-columns: 1fr;
  }

  .colis-quick-card,
  .colis-solution-list button {
    grid-template-columns: 44px minmax(0, 1fr) 28px;
  }

  .colis-solution-list em {
    grid-column: 2 / 3;
    text-align: left;
  }

  .colis-calculator-result span {
    min-height: 64px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .colis-calculator-result span:last-child {
    border-bottom: 0;
  }

  .pharmacy-prescription-card {
    grid-row: auto;
  }

  .courses-filter-row button {
    justify-content: flex-start;
  }

  .courses-rayon-grid button {
    min-height: 96px;
  }

  .courses-help-list a {
    grid-template-columns: 42px minmax(0, 1fr) 20px;
  }

  .courses-help-list .help-icon {
    grid-column: auto;
  }

  .courses-help-list strong,
  .courses-help-list small {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
