:root {
  --accent: #c9572a;
  --accent-dark: #8f351f;
  --accent-soft: #f7e8dc;
  --olive: #6f7b3d;
  --olive-soft: #eef1e3;
  --ink: #241b16;
  --muted: #8a7b6e;
  --paper: #faf4ea;
  --surface: #ffffff;
  --line: #e8d9c8;
  --green: #6f7b3d;
  --nav-h: 70px;
  --shadow: 0 20px 48px rgba(57, 34, 20, 0.12);
  --shadow-soft: 0 12px 30px rgba(57, 34, 20, 0.08);
  color-scheme: light;
  font-family: Manrope, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  min-width: 320px;
  min-height: 100%;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 12%, rgba(201, 87, 42, 0.15), transparent 32rem),
    radial-gradient(circle at 88% 4%, rgba(111, 123, 61, 0.18), transparent 24rem),
    #f3eadf;
  color: var(--ink);
}

button,
input,
textarea {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

svg path,
svg circle {
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(201, 87, 42, 0.26);
  outline-offset: 3px;
}

#app,
.shell {
  min-height: 100svh;
}

.shell {
  display: grid;
  place-items: center;
  padding: 18px;
}

.phone {
  position: relative;
  width: min(100%, 414px);
  height: min(896px, calc(100svh - 36px));
  min-height: 640px;
  overflow: hidden;
  border: 1px solid rgba(75, 47, 31, 0.08);
  border-radius: 34px;
  background: var(--paper);
  box-shadow: 0 28px 90px rgba(53, 31, 20, 0.22);
}

.screen {
  height: 100%;
  overflow-y: auto;
  padding: 24px 20px calc(var(--nav-h) + 92px);
  scrollbar-width: none;
}

.screen::-webkit-scrollbar {
  display: none;
}

.welcome-screen {
  position: relative;
  isolation: isolate;
  height: 100%;
  display: grid;
  grid-template-rows: auto auto minmax(0, 1fr) auto;
  gap: 18px;
  padding: 28px 26px 26px;
  overflow: hidden;
  background:
    radial-gradient(circle at 82% 18%, rgba(111, 123, 61, 0.28), transparent 30%),
    linear-gradient(180deg, rgba(217, 162, 91, 0.18), transparent 28%),
    linear-gradient(154deg, #c9572a 0%, #9e4329 55%, #6f3326 100%);
  color: #ffffff;
}

.welcome-head {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
}

.brand-dot {
  width: 50px;
  height: 50px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  background: #ffffff;
  color: var(--accent);
  font-weight: 800;
  box-shadow: 0 12px 28px rgba(75, 35, 22, 0.22);
}

.welcome-brand {
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0;
}

.welcome-copy-block {
  position: relative;
  z-index: 2;
  max-width: 330px;
}

.welcome-title {
  margin: 0 0 10px;
  font-size: 36px;
  line-height: 0.98;
  letter-spacing: 0;
}

.welcome-copy {
  max-width: 300px;
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 15px;
  line-height: 1.45;
}

.welcome-figure {
  position: absolute;
  left: -42px;
  right: -42px;
  top: 338px;
  bottom: -128px;
  z-index: 1;
  display: grid;
  place-items: start center;
  overflow: visible;
  pointer-events: none;
}

.hero-art {
  width: min(98%, 420px);
  height: auto;
  min-height: 0;
  max-height: 94%;
  object-fit: contain;
  object-position: center bottom;
  transform: translateY(2px);
  filter: drop-shadow(0 24px 34px rgba(55, 27, 18, 0.34));
}

.hero-art-pie {
  width: min(128%, 560px);
  max-height: none;
  transform: none;
  filter: drop-shadow(0 28px 42px rgba(55, 27, 18, 0.34));
}

.welcome-actions {
  grid-row: 4;
  position: relative;
  z-index: 3;
}

.topbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.brand {
  color: var(--accent);
  font-size: 14px;
  font-weight: 800;
}

.address-chip {
  margin-top: 7px;
  padding: 0;
  background: transparent;
  color: var(--muted);
  font-size: 13px;
  text-align: left;
}

.icon-btn {
  width: 46px;
  height: 46px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 18px;
  background: var(--surface);
  color: var(--ink);
  box-shadow: var(--shadow-soft);
}

.icon-btn svg {
  width: 21px;
  height: 21px;
}

.cart-top {
  position: relative;
}

.cart-top.has-items {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 14px 28px rgba(201, 87, 42, 0.24);
}

.cart-top span {
  position: absolute;
  top: -5px;
  right: -5px;
  min-width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  padding: 0 5px;
  border: 2px solid var(--paper);
  border-radius: 999px;
  background: var(--ink);
  color: #ffffff;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
}

.title {
  margin: 0 0 14px;
  color: var(--ink);
  font-size: 32px;
  line-height: 1.05;
  letter-spacing: 0;
}

.title.center,
.subtitle.center,
.price.center {
  text-align: center;
}

.subtitle {
  margin: -6px 0 18px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.48;
}

.section-title {
  margin: 20px 0 12px;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.15;
}

.home-hero {
  position: relative;
  min-height: 172px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 108px;
  gap: 12px;
  overflow: hidden;
  margin: 18px 0 14px;
  padding: 20px;
  border: 1px solid rgba(238, 227, 216, 0.72);
  border-radius: 28px;
  background:
    radial-gradient(circle at 88% 18%, rgba(201, 87, 42, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 243, 232, 0.82));
  box-shadow: var(--shadow-soft);
}

.home-hero > div:first-child > span {
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}

.home-hero h1 {
  max-width: 250px;
  margin: 10px 0 0;
  font-size: 31px;
  line-height: 1.02;
}

.home-hero p {
  max-width: 230px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.38;
}

.home-hero-art {
  position: relative;
  align-self: end;
  height: 118px;
}

.home-hero-art::before {
  content: "";
  position: absolute;
  right: -16px;
  bottom: -22px;
  width: 118px;
  height: 118px;
  border-radius: 36px;
  background: rgba(111, 123, 61, 0.13);
  transform: rotate(-10deg);
}

.home-hero-art span,
.home-hero-art b {
  position: absolute;
  display: block;
  border-radius: 50%;
}

.home-hero-art span {
  right: 6px;
  bottom: 8px;
  width: 94px;
  height: 66px;
  background: #d9a25b;
  box-shadow:
    inset 0 -9px 0 #8f351f,
    inset 0 10px 0 rgba(255, 246, 211, 0.72),
    0 18px 28px rgba(121, 55, 20, 0.14);
}

.home-hero-art span::before,
.home-hero-art span::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  background: rgba(255, 249, 220, 0.84);
}

.home-hero-art span::before {
  left: 18px;
  top: 22px;
  width: 60px;
  height: 6px;
  transform: rotate(10deg);
}

.home-hero-art span::after {
  left: 28px;
  top: 36px;
  width: 48px;
  height: 5px;
  transform: rotate(-8deg);
}

.home-hero-art b {
  right: 52px;
  bottom: 68px;
  width: 46px;
  height: 46px;
  background: #c9572a;
  box-shadow: 44px 10px 0 var(--olive);
}

.search {
  min-height: 52px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.search svg {
  width: 19px;
  height: 19px;
  color: var(--muted);
}

.search input,
.input {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--ink);
  outline: 0;
}

.input {
  min-height: 54px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
}

.category-toolbar {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 14px -20px 14px;
  padding: 0 20px 2px;
}

.search-toggle {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  flex: 0 0 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  box-shadow: var(--shadow-soft);
}

.search-toggle.active {
  background: var(--ink);
  color: #ffffff;
}

.search-toggle svg {
  width: 22px;
  height: 22px;
}

.search-panel {
  min-height: 50px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: -2px 0 14px;
  padding: 0 16px;
  border: 1px solid rgba(201, 87, 42, 0.24);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-soft);
}

.search-panel svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  color: var(--muted);
}

.search-panel input {
  width: 100%;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  outline: 0;
}

.tabs {
  display: flex;
  gap: 10px;
  min-width: 0;
  margin: 0;
  padding: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.tabs::-webkit-scrollbar {
  display: none;
}

.tab {
  min-height: 40px;
  flex: 0 0 auto;
  padding: 0 16px;
  border-radius: 999px;
  background: #ffffff;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.tab.active {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 10px 22px rgba(201, 87, 42, 0.2);
}

.empty-products {
  grid-column: 1 / -1;
  display: grid;
  gap: 8px;
  padding: 24px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--muted);
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.empty-products strong {
  color: var(--ink);
  font-size: 20px;
  line-height: 1.1;
}

.empty-products span {
  font-size: 14px;
  line-height: 1.35;
}

.promo-banner {
  width: 100%;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 15px 18px;
  border-radius: 22px;
  background:
    radial-gradient(circle at 80% 20%, rgba(201, 87, 42, 0.16), transparent 30%),
    linear-gradient(135deg, #ffffff, var(--accent-soft));
  color: var(--ink);
  text-align: left;
  box-shadow: var(--shadow-soft);
}

.promo-banner strong {
  display: block;
  font-size: 20px;
  line-height: 1.05;
}

.promo-banner small {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.promo-banner-badge {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  padding: 0 12px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-size: 12px;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(201, 87, 42, 0.2);
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 18px 0 12px;
}

.section-head h2 {
  margin: 0;
  font-size: 20px;
  line-height: 1.15;
}

.section-head.compact {
  margin: 0 0 14px;
}

.section-head.compact h2 {
  font-size: 18px;
}

.section-head.compact span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.link-btn {
  padding: 0;
  background: transparent;
  color: var(--accent);
  font-size: 14px;
  font-weight: 700;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.product-card {
  position: relative;
  min-width: 0;
  min-height: 202px;
  display: flex;
  flex-direction: column;
  padding: 12px;
  border: 1px solid rgba(238, 227, 216, 0.74);
  border-radius: 22px;
  background: var(--surface);
  text-align: left;
  box-shadow: var(--shadow-soft);
}

.product-card h3 {
  min-height: 37px;
  margin: 10px 0 12px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.22;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.product-meta {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.price {
  color: var(--accent);
  font-size: 16px;
  font-weight: 800;
}

.add-btn {
  width: 38px;
  height: 38px;
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 14px;
  background: var(--accent);
  color: #ffffff;
  font-size: 22px;
  line-height: 1;
  box-shadow: 0 10px 22px rgba(201, 87, 42, 0.28);
}

.pie-photo {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 1.12;
  border-radius: 18px;
  overflow: hidden;
  object-fit: cover;
  background:
    radial-gradient(circle at 44% 38%, #ffd987 0 18%, transparent 19%),
    radial-gradient(circle at 58% 40%, #f3aa45 0 24%, transparent 25%),
    radial-gradient(circle at 50% 52%, #c66d23 0 50%, #8a3f18 51% 70%, transparent 71%),
    #fff0cf;
}

img.pie-photo {
  background: #fff0cf;
}

.product-card .pie-photo {
  height: 92px;
  aspect-ratio: auto;
}

.product-card > .tag {
  position: absolute;
  top: 18px;
  left: 18px;
  min-height: 26px;
  margin: 0;
  background: rgba(255, 255, 255, 0.9);
}

.pie-photo::after {
  content: "";
  position: absolute;
  inset: 22% 16%;
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 47%, rgba(114, 53, 20, 0.32) 48% 52%, transparent 53%),
    linear-gradient(0deg, transparent 47%, rgba(114, 53, 20, 0.28) 48% 52%, transparent 53%);
  opacity: 0.55;
}

.product-hero {
  margin: 8px auto 22px;
  width: min(78%, 270px);
  aspect-ratio: 1;
  border-radius: 34px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.product-hero .pie-photo {
  width: 100%;
  height: 100%;
  aspect-ratio: auto;
  border-radius: inherit;
}

.size-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: 22px 0;
}

.choice {
  width: calc((100% - 20px) / 3);
  max-width: 146px;
  flex: 0 1 calc((100% - 20px) / 3);
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  color: var(--muted);
  font-weight: 800;
  display: grid;
  place-items: center;
  gap: 2px;
  padding: 8px 6px;
}

.choice strong {
  color: var(--ink);
  font-size: 13px;
}

.choice.active {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent-dark);
}

.choice.active strong {
  color: var(--accent-dark);
}

.stack {
  display: grid;
  gap: 14px;
}

.panel,
.info-block,
.checkout-card,
.summary,
.order-card,
.address-card,
.profile-card,
.login-card,
.cart-item {
  border: 1px solid rgba(238, 227, 216, 0.82);
  border-radius: 22px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.info-block,
.order-card,
.address-card,
.profile-card,
.login-card {
  padding: 18px;
}

.info-block h3,
.order-card h3,
.address-card h3,
.profile-card h3,
.login-card h3,
.panel h3,
.pay-card h3,
.promo-card h3 {
  margin: 0 0 8px;
  font-size: 17px;
}

.info-block p,
.order-card p,
.address-card p,
.profile-card p,
.panel p,
.pay-card p,
.promo-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.address-card small {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.address-card > span {
  float: right;
  min-height: 26px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(247, 232, 220, 0.92);
  color: var(--accent-dark);
  font-size: 11px;
  font-weight: 800;
}

.address-card.active {
  border-color: rgba(201, 87, 42, 0.46);
  background:
    radial-gradient(circle at 88% 12%, rgba(201, 87, 42, 0.13), transparent 34%),
    var(--surface);
}

.address-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.address-actions button {
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(247, 232, 220, 0.82);
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 800;
}

.address-card.active .address-actions button:first-child {
  background: var(--accent);
  color: #ffffff;
}

.cart-list {
  display: grid;
  gap: 12px;
}

.cart-delivery {
  display: grid;
  gap: 12px;
  margin-bottom: 16px;
  padding: 16px;
  border: 1px solid rgba(238, 227, 216, 0.82);
  border-radius: 24px;
  background:
    radial-gradient(circle at 88% 0%, rgba(201, 87, 42, 0.13), transparent 34%),
    #ffffff;
  box-shadow: var(--shadow-soft);
}

.cart-delivery div:first-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.cart-delivery span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.cart-delivery strong {
  max-width: 210px;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.24;
  text-align: right;
}

.delivery-progress {
  height: 8px;
  overflow: hidden;
  border-radius: 999px;
  background: var(--accent-soft);
}

.delivery-progress span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: var(--accent);
}

.cart-item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 10px;
}

.cart-item .pie-photo {
  width: 72px;
  aspect-ratio: 1;
  border-radius: 18px;
}

.cart-item h3 {
  margin: 0 0 6px;
  font-size: 15px;
  line-height: 1.24;
}

.cart-item p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.qty {
  display: grid;
  grid-template-columns: 30px 26px 30px;
  align-items: center;
  border-radius: 14px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-weight: 800;
}

.qty button {
  width: 30px;
  height: 34px;
  background: transparent;
  color: inherit;
  font-size: 18px;
}

.qty span {
  text-align: center;
}

.promo-input-card {
  display: grid;
  gap: 14px;
  margin-top: 16px;
  padding: 16px;
  border: 1px dashed rgba(201, 87, 42, 0.34);
  border-radius: 22px;
  background: rgba(255, 240, 233, 0.56);
}

.promo-input-card form {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 12px;
}

.promo-input-card strong,
.promo-input-card span {
  display: block;
}

.promo-input-card strong {
  color: var(--ink);
  font-size: 15px;
}

.promo-input-card span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.promo-input-card input {
  width: 100%;
  min-height: 42px;
  margin-top: 8px;
  padding: 0 12px;
  border: 1px solid rgba(218, 202, 187, 0.9);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--ink);
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
}

.promo-input-card button {
  min-height: 38px;
  padding: 0 14px;
  border-radius: 14px;
  background: var(--accent);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
}

.promo-input-card .promo-clear {
  justify-self: start;
  min-height: 30px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--accent);
  box-shadow: none;
}

.promo-message {
  color: var(--accent-dark);
  font-weight: 700;
}

.promo-message.success {
  color: var(--olive);
}

.cart-summary {
  margin-top: 14px;
}

.cart-checkout-action {
  margin-top: 14px;
  padding-bottom: 8px;
}

.empty-cart {
  min-height: 430px;
  display: grid;
  justify-items: center;
  align-content: center;
  text-align: center;
}

.cart-illustration {
  position: relative;
  width: 120px;
  height: 112px;
  margin-bottom: 18px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 38%, rgba(201, 87, 42, 0.16), transparent 40%),
    var(--accent-soft);
}

.cart-illustration span {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  height: 42px;
  border-radius: 18px 18px 22px 22px;
  background: #d9a25b;
  box-shadow: inset 0 -8px 0 #8f351f;
}

.cart-illustration span::before {
  content: "";
  position: absolute;
  left: 13px;
  right: 13px;
  top: 14px;
  height: 5px;
  border-radius: 999px;
  background: rgba(255, 248, 222, 0.88);
}

.cart-illustration b {
  position: absolute;
  left: 45px;
  top: 26px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--accent);
}

.empty-cart h2 {
  margin: 0;
  font-size: 28px;
  line-height: 1.08;
}

.empty-cart p {
  max-width: 310px;
  margin: 12px 0 22px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.42;
}

.empty-cart .cta {
  max-width: 300px;
}

.empty-scenarios {
  display: flex;
  gap: 8px;
  margin-top: 14px;
}

.empty-scenarios button {
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: #ffffff;
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 700;
  box-shadow: var(--shadow-soft);
}

.cart-recommendations {
  margin-top: -18px;
}

.mini-product-list {
  display: grid;
  gap: 10px;
}

.mini-product {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) 34px;
  align-items: center;
  gap: 10px;
  padding: 10px;
  border-radius: 20px;
  background: #ffffff;
  color: var(--ink);
  text-align: left;
  box-shadow: var(--shadow-soft);
}

.mini-product .pie-photo {
  height: 54px;
  aspect-ratio: auto;
  border-radius: 15px;
}

.mini-product strong,
.mini-product small {
  display: block;
}

.mini-product strong {
  overflow: hidden;
  font-size: 14px;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mini-product small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.mini-product b {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  background: var(--accent);
  color: #ffffff;
  font-size: 20px;
  line-height: 1;
}

.summary {
  display: grid;
  gap: 12px;
  margin-top: 16px;
  padding: 18px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  color: var(--muted);
  font-size: 14px;
}

.summary-row.total {
  padding-top: 10px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 18px;
  font-weight: 800;
}

.delivery-warning {
  display: grid;
  gap: 8px;
  margin-top: 14px;
  padding: 16px;
  border: 1px solid rgba(201, 87, 42, 0.32);
  border-radius: 20px;
  background:
    radial-gradient(circle at 92% 0, rgba(201, 87, 42, 0.12), transparent 34%),
    rgba(255, 246, 238, 0.9);
}

.delivery-warning strong {
  color: var(--accent-dark);
  font-size: 15px;
}

.delivery-warning p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.cta {
  width: 100%;
  min-height: 56px;
  padding: 0 18px;
  border-radius: 18px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 800;
  box-shadow: 0 16px 32px rgba(201, 87, 42, 0.26);
}

.cta.secondary {
  background: #ffffff;
  color: var(--accent-dark);
  box-shadow: 0 14px 34px rgba(74, 18, 3, 0.18);
}

.cta.telegram {
  background: #26a5e4;
  box-shadow: 0 16px 32px rgba(38, 165, 228, 0.24);
}

.auth-divider {
  position: relative;
  width: 100%;
  min-height: 28px;
  display: grid;
  place-items: center;
  margin: 4px 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.auth-divider::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  border-top: 1px dashed rgba(138, 123, 110, 0.42);
}

.auth-divider span {
  position: relative;
  z-index: 1;
  padding: 0 12px;
  background: var(--surface);
}

.auth-methods {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-items: start;
}

.auth-method {
  height: 54px;
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  font-weight: 700;
  box-shadow: var(--shadow-soft);
}

.auth-method svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
}

.auth-method > span {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 14px;
  font-weight: 800;
}

.auth-method.phone {
  color: var(--accent-dark);
}

.auth-method.yandex > span {
  background: #ffefea;
  color: #c9572a;
}

.auth-method.max > span {
  background: #eef4d9;
  color: #73813e;
}

.product-action {
  margin: 18px 0 22px;
}

.sticky-action {
  position: sticky;
  bottom: -1px;
  z-index: 4;
  margin: 22px -20px 0;
  padding: 14px 20px calc(18px + env(safe-area-inset-bottom));
  background: linear-gradient(180deg, rgba(255, 250, 245, 0), var(--paper) 28%);
}

.profile-action {
  margin-top: 16px;
  padding-bottom: 8px;
}

.checkout-action {
  margin-top: 16px;
  padding-bottom: 10px;
}

.checkout-card {
  overflow: hidden;
}

.checkout-section {
  margin: 14px 0;
  padding: 18px;
}

.checkout-section > strong {
  display: block;
  margin-top: 10px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.15;
}

.checkout-section > p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}

.checkout-section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.checkout-section-head button {
  padding: 0;
  background: transparent;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
}

.checkout-mode {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0 14px;
}

.checkout-mode button {
  min-height: 82px;
  display: grid;
  align-content: center;
  gap: 5px;
  padding: 14px;
  border: 1px solid rgba(238, 227, 216, 0.82);
  border-radius: 22px;
  background: var(--surface);
  color: var(--ink);
  text-align: left;
  box-shadow: var(--shadow-soft);
}

.checkout-mode button.active {
  border-color: rgba(201, 87, 42, 0.46);
  background:
    radial-gradient(circle at 88% 12%, rgba(201, 87, 42, 0.16), transparent 36%),
    var(--accent-soft);
}

.checkout-mode strong {
  font-size: 16px;
  line-height: 1.12;
}

.checkout-mode span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
}

.comment-card {
  display: grid;
  gap: 10px;
  margin-top: 14px;
  padding: 16px;
  border: 1px dashed rgba(201, 87, 42, 0.28);
  border-radius: 22px;
  background: rgba(255, 240, 233, 0.44);
}

.comment-card span {
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.comment-card textarea {
  width: 100%;
  min-height: 76px;
  resize: vertical;
  border: 0;
  border-radius: 16px;
  padding: 12px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  outline: 0;
}

.date-tabs,
.time-grid {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.date-tabs {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.time-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.date-tabs button,
.time-grid button {
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: var(--surface);
  color: var(--ink);
  font-weight: 700;
  box-shadow: var(--shadow-soft);
}

.date-tabs button.active,
.time-grid button.active {
  border-color: var(--accent);
  background: var(--accent-soft);
  color: var(--accent-dark);
}

.confirm-card {
  margin: 14px 0;
  padding: 18px;
}

.field-row,
.menu-row {
  width: 100%;
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 18px;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  text-align: left;
}

.field-row:last-child,
.menu-row:last-child {
  border-bottom: 0;
}

.field-row span,
.menu-row span:last-child {
  color: var(--muted);
  font-size: 14px;
  text-align: right;
}

.payment-grid {
  display: grid;
  gap: 12px;
}

.profile-payment-grid {
  gap: 10px;
}

.pay-card {
  padding: 18px;
  text-align: left;
}

.profile-payment-grid .pay-card {
  padding: 16px 18px;
}

.pay-card.active {
  border-color: rgba(201, 87, 42, 0.58);
  background: var(--accent-soft);
}

.settings-list {
  overflow: hidden;
  display: grid;
  margin-top: 18px;
  border: 1px solid rgba(238, 227, 216, 0.82);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.notification-list {
  display: grid;
  gap: 12px;
  margin: 18px 0;
}

.notification-section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 14px;
  margin: 22px 0 12px;
}

.notification-section-head h2 {
  margin: 0;
  color: var(--ink);
  font-size: 22px;
  line-height: 1.15;
}

.notification-section-head span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.notification-card {
  width: 100%;
  min-height: 92px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 14px;
  padding: 18px;
  border: 1px solid rgba(238, 227, 216, 0.82);
  border-radius: 22px;
  background: var(--surface);
  color: var(--ink);
  text-align: left;
  box-shadow: var(--shadow-soft);
}

.notification-card.unread {
  border-color: rgba(203, 92, 48, 0.28);
  background:
    radial-gradient(circle at 92% 8%, rgba(203, 92, 48, 0.16), transparent 32%),
    var(--surface);
}

.notification-card strong {
  display: block;
  font-size: 18px;
  line-height: 1.15;
}

.notification-card small {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.38;
}

.notification-card b {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.setting-row,
.info-row {
  width: 100%;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 16px 18px;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  text-align: left;
}

.setting-row:last-child,
.info-row:last-child {
  border-bottom: 0;
}

.setting-row strong,
.info-row strong {
  display: block;
  font-size: 16px;
  line-height: 1.18;
}

.setting-row small,
.info-row span {
  display: block;
  max-width: 250px;
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.setting-row i {
  position: relative;
  width: 48px;
  height: 30px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: #eadfd3;
  box-shadow: inset 0 0 0 1px rgba(138, 123, 110, 0.16);
}

.setting-row i::after {
  content: "";
  position: absolute;
  left: 4px;
  top: 4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #ffffff;
  box-shadow: 0 4px 10px rgba(57, 34, 20, 0.14);
  transition: transform 0.18s ease;
}

.setting-row i.active {
  background: var(--green);
}

.setting-row i.active::after {
  transform: translateX(18px);
}

.settings-note {
  margin-top: 16px;
  padding: 18px;
  border: 1px solid rgba(238, 227, 216, 0.78);
  border-radius: 24px;
  background:
    radial-gradient(circle at 88% 10%, rgba(111, 123, 61, 0.14), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 246, 237, 0.84));
  box-shadow: var(--shadow-soft);
}

.settings-note h3 {
  margin: 0 0 8px;
  font-size: 18px;
}

.settings-note p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 18px;
}

.info-card {
  min-height: 122px;
  display: grid;
  align-content: space-between;
  padding: 16px;
  border: 1px solid rgba(238, 227, 216, 0.78);
  border-radius: 22px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.info-card span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.info-card p {
  margin: 8px 0;
  color: var(--ink);
  font-size: 14px;
  line-height: 1.28;
}

.info-card strong {
  color: var(--accent);
  font-size: 22px;
  line-height: 1;
}

.allergen-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 18px 0 0;
}

.allergen-cloud span {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  padding: 0 13px;
  border-radius: 999px;
  background: var(--olive-soft);
  color: var(--olive);
  font-size: 13px;
  font-weight: 700;
}

.admin-shell,
.admin-login-page {
  min-height: 100svh;
  width: 100%;
  color: var(--ink);
  background:
    radial-gradient(circle at 16% 10%, rgba(201, 87, 42, 0.12), transparent 32rem),
    radial-gradient(circle at 92% 8%, rgba(111, 123, 61, 0.16), transparent 28rem),
    var(--paper);
}

.admin-shell {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  height: 100svh;
  overflow: hidden;
}

.admin-sidebar {
  min-height: 100svh;
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 24px;
  padding: 26px;
  border-right: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.admin-brand {
  display: grid;
  gap: 5px;
}

.admin-brand span {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 8px;
  border-radius: 16px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 900;
}

.admin-brand strong {
  font-size: 20px;
}

.admin-brand small {
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-nav {
  display: grid;
  align-content: start;
  gap: 8px;
}

.admin-nav button,
.admin-exit {
  min-height: 44px;
  padding: 0 14px;
  border-radius: 14px;
  background: transparent;
  color: var(--muted);
  font-weight: 900;
  text-align: left;
}

.admin-nav button.active {
  background: var(--ink);
  color: #ffffff;
}

.admin-exit {
  background: var(--accent-soft);
  color: var(--accent-dark);
}

.admin-workspace {
  min-width: 0;
  max-width: 1280px;
  width: 100%;
  height: 100svh;
  overflow-y: auto;
  padding: 34px;
  scrollbar-gutter: stable;
}

.admin-login-page {
  display: grid;
  place-items: center;
  padding: 32px;
}

.admin-login-panel {
  width: min(100%, 980px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 26px;
  align-items: stretch;
}

.admin-login-copy {
  display: grid;
  align-content: end;
  padding: 38px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 78% 16%, rgba(111, 123, 61, 0.2), transparent 34%),
    linear-gradient(145deg, #c9572a, #8f351f);
  color: #ffffff;
  box-shadow: var(--shadow);
}

.admin-login-copy span {
  width: max-content;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  margin-bottom: 18px;
  padding: 0 11px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-login-copy h1 {
  max-width: 520px;
  margin: 0;
  font-size: 54px;
  line-height: 0.98;
}

.admin-login-copy p {
  max-width: 520px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 18px;
  line-height: 1.45;
}

.admin-head {
  padding: 18px;
  border: 1px solid rgba(238, 227, 216, 0.82);
  border-radius: 24px;
  background:
    radial-gradient(circle at 86% 14%, rgba(111, 123, 61, 0.18), transparent 35%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 246, 237, 0.84));
  box-shadow: var(--shadow-soft);
}

.admin-head span {
  color: var(--accent);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-head h1 {
  margin: 8px 0 6px;
  font-size: 44px;
  line-height: 1;
}

.admin-head p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.38;
}

.admin-login {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid rgba(238, 227, 216, 0.82);
  border-radius: 28px;
  background:
    radial-gradient(circle at 84% 14%, rgba(111, 123, 61, 0.16), transparent 34%),
    var(--surface);
  box-shadow: var(--shadow-soft);
}

.admin-login > span {
  width: max-content;
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  padding: 0 11px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 900;
}

.admin-login h1 {
  margin: 0;
  color: var(--ink);
  font-size: 34px;
  line-height: 1;
}

.admin-login p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.admin-section-title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin: 22px 0 14px;
}

.admin-section-title h2 {
  margin: 0;
  font-size: 28px;
  line-height: 1.1;
}

.admin-section-title p {
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.admin-section-title button {
  min-height: 42px;
  padding: 0 16px;
  border-radius: 14px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 900;
}

.admin-tabs {
  display: flex;
  gap: 8px;
  margin: 16px -20px 14px;
  padding: 0 20px 2px;
  overflow-x: auto;
  scrollbar-width: none;
}

.admin-tabs::-webkit-scrollbar {
  display: none;
}

.admin-tabs button {
  min-height: 38px;
  flex: 0 0 auto;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--surface);
  color: var(--muted);
  font-size: 13px;
  font-weight: 900;
  box-shadow: inset 0 0 0 1px rgba(238, 227, 216, 0.82);
}

.admin-tabs button.active {
  background: var(--ink);
  color: #ffffff;
  box-shadow: none;
}

.admin-metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
  margin-bottom: 16px;
}

.admin-metrics article {
  min-height: 78px;
  display: grid;
  align-content: space-between;
  padding: 12px;
  border-radius: 18px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.admin-metrics span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 900;
}

.admin-metrics strong {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.05;
}

.admin-table {
  overflow: hidden;
  border: 1px solid rgba(238, 227, 216, 0.86);
  border-radius: 22px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.admin-empty {
  display: grid;
  gap: 8px;
  padding: 22px;
  border: 1px solid rgba(238, 227, 216, 0.86);
  border-radius: 22px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.admin-empty strong {
  color: var(--ink);
  font-size: 18px;
}

.admin-empty p {
  max-width: 520px;
  color: var(--muted);
  line-height: 1.45;
}

.admin-order-card {
  display: grid;
  gap: 18px;
  margin-bottom: 16px;
  padding: 20px;
  border: 1px solid rgba(238, 227, 216, 0.86);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.admin-order-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.admin-order-card-head span,
.admin-order-card h4 {
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-order-card-head h3 {
  margin: 6px 0 4px;
  color: var(--ink);
  font-size: 28px;
  line-height: 1.05;
}

.admin-order-card-head p,
.admin-order-card small,
.admin-status-history span {
  color: var(--muted);
}

.admin-order-card-head strong {
  color: var(--ink);
  font-size: 26px;
  line-height: 1;
}

.admin-order-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.admin-order-grid section,
.admin-order-columns section {
  padding: 16px;
  border-radius: 18px;
  background: rgba(238, 241, 227, 0.48);
  box-shadow: inset 0 0 0 1px rgba(218, 202, 187, 0.5);
}

.admin-order-card h4 {
  margin: 0 0 10px;
}

.admin-order-card p {
  margin: 0 0 6px;
  color: var(--ink);
  line-height: 1.35;
}

.admin-order-columns {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 12px;
}

.admin-order-items,
.admin-status-history,
.admin-order-total {
  display: grid;
  gap: 10px;
}

.admin-order-items > div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2px 12px;
  align-items: center;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(218, 202, 187, 0.58);
}

.admin-order-items > div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.admin-order-items span,
.admin-status-history b {
  color: var(--ink);
  font-weight: 900;
}

.admin-order-items small {
  grid-column: 1;
}

.admin-order-items strong {
  grid-row: 1 / span 2;
  grid-column: 2;
  color: var(--ink);
}

.admin-order-total {
  grid-template-columns: 1fr auto;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(218, 202, 187, 0.72);
}

.admin-order-total span {
  color: var(--muted);
}

.admin-order-total strong:last-child {
  color: var(--accent-dark);
  font-size: 18px;
}

.admin-status-history > div {
  position: relative;
  display: grid;
  gap: 4px;
  padding-left: 20px;
}

.admin-status-history > div::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--accent);
}

.admin-status-history p {
  color: var(--muted);
  font-size: 13px;
}

.admin-form {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 16px;
  padding: 18px;
  border: 1px solid rgba(203, 92, 48, 0.28);
  border-radius: 22px;
  background:
    radial-gradient(circle at 88% 18%, rgba(203, 92, 48, 0.12), transparent 30%),
    rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow-soft);
}

.admin-form.compact {
  grid-template-columns: repeat(2, minmax(0, 1fr)) auto;
}

.admin-form-head {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.admin-form-head strong {
  font-size: 20px;
  line-height: 1.1;
}

.admin-form-head button {
  min-height: 34px;
  padding: 0 12px;
  border-radius: 12px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 900;
}

.admin-save.secondary {
  background: var(--accent-soft);
  color: var(--accent-dark);
  box-shadow: none;
}

.admin-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
}

.admin-form label.wide {
  grid-column: span 3;
}

.admin-form .admin-variants.wide {
  grid-column: span 3;
}

.admin-variants {
  display: grid;
  gap: 10px;
  padding: 14px;
  border-radius: 18px;
  background: rgba(238, 241, 227, 0.56);
  box-shadow: inset 0 0 0 1px rgba(218, 202, 187, 0.58);
}

.admin-variants > div:first-child {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
}

.admin-variants strong {
  color: var(--ink);
  font-size: 15px;
}

.admin-variants span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.admin-variant-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(120px, 0.45fr);
  gap: 12px;
}

.admin-form input,
.admin-form select,
.admin-form textarea {
  width: 100%;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid rgba(218, 202, 187, 0.9);
  border-radius: 14px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
  font-size: 14px;
  font-weight: 700;
  outline: none;
}

.admin-form textarea {
  min-height: 78px;
  padding-top: 12px;
  resize: vertical;
}

.admin-form input:focus,
.admin-form select:focus,
.admin-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(203, 92, 48, 0.12);
}

.admin-form .admin-check {
  display: flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  color: var(--ink);
}

.admin-form .admin-check input {
  width: 18px;
  min-height: 18px;
  accent-color: var(--accent);
}

.admin-save {
  min-height: 46px;
  align-self: end;
  padding: 0 16px;
  border-radius: 14px;
  background: var(--accent);
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
}

.admin-table-head,
.admin-table-row {
  display: grid;
  grid-template-columns: repeat(var(--cols), minmax(0, 1fr));
  gap: 14px;
  align-items: center;
  padding: 14px 18px;
}

.admin-table-head {
  background: rgba(238, 241, 227, 0.74);
  color: var(--muted);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.admin-table-row {
  min-height: 64px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-size: 14px;
}

.admin-table-row strong {
  font-weight: 900;
}

.admin-table-row b {
  width: max-content;
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 900;
}

.admin-table-row em {
  color: var(--ink);
  font-style: normal;
  font-weight: 900;
}

.admin-product-cell {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
}

.admin-product-cell .pie-photo {
  width: 44px;
  height: 44px;
  aspect-ratio: auto;
  flex: 0 0 auto;
  border-radius: 12px;
}

.admin-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.admin-actions button {
  min-height: 32px;
  padding: 0 10px;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 900;
}

.admin-actions button:last-child {
  background: rgba(143, 53, 31, 0.1);
  color: var(--accent-dark);
}

@media (max-width: 860px) {
  .admin-shell {
    grid-template-columns: 1fr;
  }

  .admin-sidebar {
    min-height: auto;
    grid-template-rows: auto auto;
    padding: 18px;
  }

  .admin-nav {
    display: flex;
    overflow-x: auto;
  }

  .admin-exit {
    display: none;
  }

  .admin-workspace {
    height: auto;
    min-height: 100svh;
    overflow-y: visible;
    padding: 18px;
  }

  .admin-login-panel {
    grid-template-columns: 1fr;
  }

  .admin-login-copy h1 {
    font-size: 38px;
  }

  .admin-table {
    overflow-x: auto;
  }

  .admin-order-card-head,
  .admin-order-grid,
  .admin-order-columns {
    grid-template-columns: 1fr;
  }

  .admin-order-card-head {
    display: grid;
  }

  .admin-table-head,
  .admin-table-row {
    min-width: 980px;
  }

  .admin-form,
  .admin-form.compact {
    grid-template-columns: 1fr;
  }

  .admin-form label.wide {
    grid-column: auto;
  }

  .admin-form .admin-variants.wide {
    grid-column: auto;
  }

  .admin-variant-row {
    grid-template-columns: 1fr;
  }
}

.admin-list {
  overflow: hidden;
  display: grid;
  border: 1px solid rgba(238, 227, 216, 0.82);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.admin-row {
  min-width: 0;
  min-height: 70px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 10px;
  padding: 14px;
  border-bottom: 1px solid var(--line);
}

.admin-row:last-child {
  border-bottom: 0;
}

.admin-row span {
  min-width: 0;
}

.admin-row strong {
  display: block;
  overflow: hidden;
  color: var(--ink);
  font-size: 15px;
  line-height: 1.2;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.admin-row small {
  display: -webkit-box;
  margin-top: 4px;
  overflow: hidden;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.32;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.admin-row b {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 9px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 11px;
  font-weight: 900;
}

.admin-row em {
  color: var(--ink);
  font-size: 13px;
  font-style: normal;
  font-weight: 900;
  white-space: nowrap;
}

.product-admin-row {
  grid-template-columns: 52px minmax(0, 1fr) auto;
}

.product-admin-row .pie-photo {
  width: 52px;
  height: 52px;
  aspect-ratio: auto;
  border-radius: 14px;
}

.admin-add {
  width: 100%;
  min-height: 48px;
  margin-top: 14px;
  border-radius: 16px;
  background: var(--accent);
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
  box-shadow: 0 14px 28px rgba(201, 87, 42, 0.22);
}

.success-mark {
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  margin: 72px auto 22px;
  border-radius: 50%;
  background: var(--green);
  color: #ffffff;
  font-size: 42px;
  font-weight: 800;
  box-shadow: 0 18px 36px rgba(38, 152, 90, 0.22);
}

.order-hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  margin: 0 0 16px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(255, 242, 232, 0.58)),
    rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px) saturate(1.2);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
}

.order-hero::after {
  content: "";
  position: absolute;
  right: -38px;
  top: -62px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: rgba(201, 87, 42, 0.13);
}

.order-label {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 900;
}

.order-hero h1 {
  margin: 0;
  font-size: 34px;
  line-height: 1;
}

.order-hero p {
  max-width: 240px;
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.42;
}

.order-total {
  position: relative;
  z-index: 1;
  align-self: end;
  min-width: 106px;
  padding: 12px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(238, 227, 216, 0.72);
}

.order-total span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.order-total strong {
  display: block;
  margin-top: 4px;
  color: var(--accent);
  font-size: 18px;
}

.timeline {
  display: grid;
  gap: 0;
  margin: 0 0 16px;
  padding: 16px;
  border: 1px solid rgba(238, 227, 216, 0.82);
  border-radius: 26px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.timeline-row {
  position: relative;
  min-height: 62px;
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  gap: 12px;
  color: var(--muted);
}

.timeline-row:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 17px;
  top: 40px;
  bottom: -16px;
  width: 2px;
  background: var(--line);
}

.timeline-dot {
  position: relative;
  z-index: 1;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 14px;
  background: #f3ece5;
  color: var(--muted);
}

.timeline-dot svg {
  width: 18px;
  height: 18px;
}

.timeline-row strong {
  display: block;
  padding-top: 2px;
  color: inherit;
  font-size: 16px;
}

.timeline-row p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.34;
}

.timeline-row.done {
  color: var(--ink);
}

.timeline-row.done .timeline-dot {
  background: rgba(38, 152, 90, 0.13);
  color: var(--green);
}

.timeline-row.done::after {
  background: var(--green);
}

.timeline-row.current .timeline-dot {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(201, 87, 42, 0.24);
}

.order-items {
  display: grid;
  gap: 10px;
  margin-bottom: 14px;
}

.order-line {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
}

.order-line .pie-photo {
  height: 58px;
  aspect-ratio: auto;
  border-radius: 16px;
}

.order-line h3 {
  margin: 0 0 4px;
  font-size: 14px;
  line-height: 1.22;
}

.order-line p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.order-line > strong {
  color: var(--ink);
  font-size: 14px;
}

.history-list {
  display: grid;
  gap: 14px;
  margin-top: 18px;
}

.history-card {
  padding: 16px;
  border: 1px solid rgba(238, 227, 216, 0.82);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.history-head,
.history-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.history-head {
  margin-bottom: 14px;
}

.history-head span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.history-head b {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
  border-radius: 999px;
  background: var(--olive-soft);
  color: var(--olive);
  font-size: 11px;
  font-weight: 700;
}

.history-total {
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.history-total strong {
  color: var(--ink);
  font-size: 18px;
}

.history-total button {
  min-height: 38px;
  padding: 0 14px;
  border-radius: 14px;
  background: var(--accent);
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
}

.quick-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
  margin-top: 14px;
}

.quick-actions button {
  min-height: 44px;
  border-radius: 16px;
  background: #ffffff;
  color: var(--accent-dark);
  font-size: 13px;
  font-weight: 700;
  box-shadow: var(--shadow-soft);
}

.tag,
.code-chip {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  margin-top: 12px;
  padding: 0 11px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent-dark);
  font-size: 12px;
  font-weight: 700;
}

.promo-card {
  --promo-accent: var(--accent);
  position: relative;
  min-height: 184px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 18px 126px;
  gap: 10px;
  overflow: hidden;
  padding: 0;
  border: 1px solid rgba(238, 227, 216, 0.68);
  border-radius: 28px;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(255, 248, 243, 0.9)),
    #ffffff;
  box-shadow: 0 18px 38px rgba(57, 34, 20, 0.1);
}

.promo-card::before {
  content: "";
  position: absolute;
  right: 88px;
  top: -44px;
  z-index: 1;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--promo-accent) 11%, transparent);
  filter: blur(2px);
}

.promo-card::after {
  content: "";
  position: absolute;
  right: -22px;
  bottom: -34px;
  z-index: 1;
  width: 112px;
  height: 112px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--promo-accent) 13%, transparent);
}

.promo-card.orange,
.promo-card.breakfast {
  --promo-accent: var(--accent);
}

.promo-card.honey,
.promo-card.family {
  --promo-accent: var(--accent);
}

.promo-card.green,
.promo-card.pickup {
  --promo-accent: var(--accent);
}

.promo-copy,
.promo-media {
  position: relative;
  z-index: 2;
}

.promo-half {
  min-width: 0;
  display: grid;
  min-height: 184px;
}

.promo-copy {
  align-content: start;
  padding: 22px 0 18px 20px;
}

.promo-eyebrow {
  width: auto;
  max-width: 190px;
  margin-bottom: 14px;
  color: #88837f;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}

.promo-card h3 {
  max-width: 190px;
  color: var(--ink);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.12;
}

.promo-card p {
  max-width: 190px;
  margin-top: 10px;
  color: color-mix(in srgb, var(--promo-accent) 68%, #7c3120);
  font-size: 16px;
  line-height: 1.2;
}

.code-chip {
  position: absolute;
  right: 14px;
  top: 14px;
  z-index: 2;
  min-height: 28px;
  margin: 0;
  padding: 0 10px;
  background: var(--promo-accent);
  color: #ffffff;
  font-size: 11px;
  box-shadow: 0 10px 22px color-mix(in srgb, var(--promo-accent) 26%, transparent);
}

.promo-apply {
  align-self: end;
  justify-self: start;
  min-height: 48px;
  margin-top: 22px;
  padding: 0 22px;
  border-radius: 18px;
  background: var(--promo-accent);
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 12px 24px color-mix(in srgb, var(--promo-accent) 25%, transparent);
}

.promo-info {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 4;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
  color: var(--muted);
  font-size: 19px;
  font-style: italic;
  font-weight: 700;
  line-height: 1;
  box-shadow: inset 0 0 0 1px rgba(238, 227, 216, 0.7);
}

.promo-divider {
  position: relative;
  z-index: 2;
  min-height: 184px;
  background: transparent;
}

.promo-divider::before {
  content: "";
  position: absolute;
  left: calc(50% - 1px);
  top: 24px;
  width: 2px;
  height: calc(100% - 48px);
  border-radius: 999px;
  background: repeating-linear-gradient(
    180deg,
    rgba(172, 166, 160, 0.34) 0 8px,
    transparent 8px 15px
  );
}

.promo-media {
  overflow: hidden;
  place-items: center;
  padding: 42px 12px 14px 0;
  background:
    radial-gradient(circle at 66% 46%, color-mix(in srgb, var(--promo-accent) 12%, transparent), transparent 52%);
}

.promo-illustration {
  width: 124px;
  height: 124px;
  align-self: center;
  justify-self: center;
  margin: 0;
  filter: drop-shadow(0 16px 18px rgba(121, 55, 20, 0.13));
}

.promo-illustration text {
  font-family: Manrope, Inter, ui-sans-serif, system-ui, sans-serif;
}

.profile-card {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 243, 223, 0.92)),
    var(--surface);
}

.profile-hero {
  padding: 4px 0 20px;
  border-bottom: 1px solid rgba(238, 227, 216, 0.9);
}

.profile-hero h1 {
  margin: 0;
  color: var(--ink);
  font-size: 46px;
  font-weight: 800;
  line-height: 0.98;
}

.profile-hero p {
  max-width: 350px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.25;
}

.profile-login-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
}

.profile-login {
  min-height: 48px;
  padding: 0 22px;
  border-radius: 18px;
  background: var(--accent);
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 14px 28px rgba(201, 87, 42, 0.24);
}

.profile-login-row span {
  color: var(--muted);
  font-size: 14px;
}

.profile-tiles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 20px -2px 18px;
}

.profile-tile {
  min-height: 154px;
  display: grid;
  align-content: space-between;
  justify-items: start;
  gap: 10px;
  padding: 18px;
  border-radius: 24px;
  background: #ffffff;
  color: var(--ink);
  text-align: left;
  box-shadow: var(--shadow-soft);
}

.profile-tile.accent {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 18px 34px rgba(201, 87, 42, 0.24);
}

.profile-tile:not(.accent) {
  background:
    radial-gradient(circle at 82% 18%, rgba(111, 123, 61, 0.14), transparent 34%),
    #ffffff;
}

.profile-tile span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: rgba(201, 87, 42, 0.1);
  color: var(--accent);
}

.profile-tile:not(.accent) span {
  background: var(--olive-soft);
  color: var(--olive);
}

.profile-tile.accent span {
  background: rgba(255, 255, 255, 0.18);
  color: #ffffff;
}

.profile-tile svg {
  width: 22px;
  height: 22px;
}

.profile-tile strong {
  max-width: 130px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.08;
}

.profile-tile small {
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
}

.profile-tile.accent small {
  color: rgba(255, 255, 255, 0.82);
}

.profile-menu {
  display: grid;
  border-top: 1px solid var(--line);
}

.profile-row {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  text-align: left;
}

.profile-row strong {
  display: block;
  font-size: 19px;
  font-weight: 500;
}

.profile-row small {
  display: block;
  margin-top: 4px;
  color: var(--muted);
  font-size: 13px;
}

.profile-row b {
  color: var(--ink);
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
}

.profile-badge {
  min-width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  padding: 0 8px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-size: 12px;
  font-style: normal;
  font-weight: 900;
}

.support-form {
  display: grid;
  gap: 12px;
  margin: 18px 0;
  padding: 18px;
  border: 1px solid rgba(238, 227, 216, 0.82);
  border-radius: 24px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.support-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.support-form input,
.support-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--ink);
  font: inherit;
  font-weight: 500;
  outline: 0;
}

.support-form textarea {
  min-height: 122px;
  padding-top: 13px;
  resize: vertical;
}

.support-form input:focus,
.support-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(201, 87, 42, 0.12);
}

.menu-list {
  overflow: hidden;
  border: 1px solid rgba(238, 227, 216, 0.82);
  border-radius: 22px;
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.empty-state {
  min-height: 420px;
  display: grid;
  place-items: center;
  text-align: center;
}

.empty-icon {
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  margin: 0 auto 18px;
  border-radius: 28px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 42px;
}

.bottom-nav {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 12px;
  z-index: 10;
  height: var(--nav-h);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 4px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(255, 244, 236, 0.58)),
    rgba(255, 255, 255, 0.54);
  box-shadow:
    0 20px 50px rgba(45, 27, 17, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    inset 0 -1px 0 rgba(166, 97, 58, 0.08);
  backdrop-filter: blur(22px) saturate(1.35);
  -webkit-backdrop-filter: blur(22px) saturate(1.35);
}

.bottom-nav::before {
  content: "";
  position: absolute;
  inset: 1px;
  pointer-events: none;
  border-radius: 23px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.64), transparent 46%),
    radial-gradient(circle at 18% 0%, rgba(255, 255, 255, 0.9), transparent 28%);
  opacity: 0.76;
}

.nav-item {
  position: relative;
  z-index: 1;
  min-width: 0;
  display: grid;
  place-items: center;
  gap: 2px;
  border-radius: 18px;
  background: transparent;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
}

.nav-item svg {
  width: 20px;
  height: 20px;
}

.nav-item.active {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.7), rgba(255, 231, 220, 0.84)),
    rgba(255, 240, 233, 0.78);
  color: var(--accent-dark);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    0 10px 24px rgba(201, 87, 42, 0.12);
}

@supports not ((backdrop-filter: blur(1px)) or (-webkit-backdrop-filter: blur(1px))) {
  .bottom-nav {
    background: rgba(255, 255, 255, 0.94);
  }
}

.cart-floating {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: calc(var(--nav-h) + 18px);
  z-index: 9;
  height: 48px;
  max-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 16px;
  border-radius: 16px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 800;
  box-shadow: 0 16px 32px rgba(201, 87, 42, 0.28);
}

.cart-floating svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.cart-floating span {
  display: block;
  min-width: 0;
  font-size: 14px;
  line-height: 1;
}

@media (max-width: 560px) {
  .shell {
    padding: 0;
  }

  .phone {
    width: 100vw;
    height: 100svh;
    min-height: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .screen,
  .welcome-screen {
    height: 100svh;
  }
}

@media (max-height: 720px) {
  .welcome-screen {
    gap: 12px;
    padding-top: 22px;
    padding-bottom: 20px;
  }

  .welcome-title {
    font-size: 31px;
  }

  .hero-art {
    max-height: 100%;
  }

  .cta {
    min-height: 52px;
  }
}
