.store-page {
  --store-error: #a31515;
  --store-success: #167247;
  overflow-x: hidden;
  background: var(--color-background);
}

[data-theme="dark"] .store-page {
  --store-error: #ff9c94;
  --store-success: #72d99a;
}

.store-page main {
  overflow: clip;
}

.store-page .site-navigation > .store-nav-current {
  position: relative;
  color: var(--color-interactive);
  background: color-mix(in srgb, var(--color-interactive) 9%, transparent);
}

.store-page .site-navigation > .store-nav-current::after {
  content: "";
  position: absolute;
  right: 14px;
  bottom: 7px;
  left: 14px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--color-interactive), var(--color-magenta));
}

.store-hero {
  position: relative;
  min-height: 100svh;
  padding: calc(var(--header-height) + 64px) 0 80px;
  display: grid;
  align-items: center;
  isolation: isolate;
}

.store-hero::before {
  content: "";
  position: absolute;
  z-index: -2;
  inset: 0;
  background:
    radial-gradient(circle at 76% 22%, rgb(37 99 235 / 13%), transparent 31%),
    radial-gradient(circle at 18% 74%, rgb(217 70 239 / 7%), transparent 28%),
    var(--color-background);
}

.store-grid {
  position: absolute;
  z-index: -1;
  inset: 0;
  opacity: 0.42;
  background-image:
    linear-gradient(var(--color-border) 1px, transparent 1px),
    linear-gradient(90deg, var(--color-border) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, transparent, #000 20%, #000 72%, transparent);
}

.store-hero__inner,
.store-section-inner,
.build-status__inner,
.store-contact__inner {
  width: min(100% - 32px, var(--container));
  margin-inline: auto;
}

.store-hero__inner {
  display: grid;
  gap: 54px;
}

.store-hero__content {
  position: relative;
  z-index: 2;
}

.store-badge {
  display: inline-flex;
  min-height: 36px;
  padding: 7px 12px;
  align-items: center;
  gap: 9px;
  border: 1px solid color-mix(in srgb, var(--color-interactive) 34%, var(--color-border));
  border-radius: 999px;
  background: color-mix(in srgb, var(--color-surface) 78%, transparent);
  color: var(--color-interactive);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.store-badge > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-magenta);
  box-shadow: 0 0 0 5px color-mix(in srgb, var(--color-magenta) 16%, transparent);
  animation: badge-pulse 2.2s ease-in-out infinite;
}

.store-hero h1 {
  max-width: 780px;
  margin-top: 22px;
  color: var(--color-text);
  font-size: clamp(42px, 6vw, 74px);
  font-weight: 700;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.store-hero__lead {
  max-width: 680px;
  margin-top: 24px;
  color: var(--color-text-muted);
  font-size: clamp(18px, 1.6vw, 21px);
  line-height: 1.6;
}

.store-hero__actions {
  display: flex;
  margin-top: 32px;
  flex-wrap: wrap;
  gap: 12px;
}

.store-hero__note {
  max-width: 600px;
  margin-top: 20px;
  padding-left: 14px;
  border-left: 2px solid var(--color-magenta);
  color: var(--color-text-muted);
  font-size: 14px;
  line-height: 1.55;
}

.commerce-console {
  position: relative;
  min-height: 600px;
  perspective: 1100px;
}

.console-window {
  position: absolute;
  inset: 34px 14px 46px;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 14%);
  border-radius: 24px;
  background: linear-gradient(150deg, #0b1f3a, #102a4c 58%, #0f1e33);
  color: #f5f7fb;
  box-shadow: 0 32px 80px rgb(4 13 28 / 30%);
  transform: rotateY(-2deg) rotateX(1deg);
  animation: console-float 7s ease-in-out infinite;
}

.console-window::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 24%, rgb(79 124 255 / 9%) 48%, transparent 68%);
  transform: translateX(-70%);
  animation: console-sheen 8s ease-in-out infinite;
}

.console-window__bar {
  display: flex;
  min-height: 54px;
  padding: 0 18px;
  align-items: center;
  gap: 7px;
  border-bottom: 1px solid rgb(255 255 255 / 10%);
  background: rgb(7 17 31 / 58%);
}

.console-window__bar > span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #4f7cff;
}

.console-window__bar > span:nth-child(2) { background: #d946ef; }
.console-window__bar > span:nth-child(3) { background: #aab5c5; }

.console-window__bar p {
  margin-left: auto;
  color: #aab5c5;
  font-size: 11px;
  letter-spacing: 0.05em;
}

.console-window__body {
  position: relative;
  display: grid;
  padding: 18px;
  gap: 14px;
}

.catalog-panel,
.order-panel {
  padding: 16px;
  border: 1px solid rgb(255 255 255 / 10%);
  border-radius: 16px;
  background: rgb(20 36 59 / 74%);
  box-shadow: inset 0 1px rgb(255 255 255 / 5%);
}

.console-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 13px;
  font-weight: 700;
}

.console-chip,
.status-dot {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #aab5c5;
  font-size: 10px;
  font-weight: 600;
}

.status-dot::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d946ef;
}

.console-chip {
  padding: 4px 8px;
  border: 1px solid rgb(79 124 255 / 36%);
  border-radius: 999px;
}

.abstract-products {
  display: grid;
  margin-top: 14px;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}

.abstract-product {
  min-width: 0;
  padding: 10px;
  border: 1px solid rgb(255 255 255 / 8%);
  border-radius: 12px;
  background: rgb(255 255 255 / 4%);
}

.abstract-product__shape {
  display: block;
  height: 58px;
  border-radius: 9px;
  background: linear-gradient(145deg, rgb(79 124 255 / 65%), rgb(79 124 255 / 12%));
}

.abstract-product--pink .abstract-product__shape {
  background: linear-gradient(145deg, rgb(217 70 239 / 62%), rgb(217 70 239 / 10%));
}

.abstract-product--navy .abstract-product__shape {
  background: linear-gradient(145deg, rgb(170 181 197 / 48%), rgb(170 181 197 / 8%));
}

.abstract-product i {
  display: block;
  width: 80%;
  height: 5px;
  margin-top: 8px;
  border-radius: 5px;
  background: rgb(255 255 255 / 18%);
}

.abstract-product i:last-child { width: 52%; }

.catalog-chips {
  display: flex;
  margin-top: 12px;
  flex-wrap: wrap;
  gap: 6px;
}

.catalog-chips span {
  padding: 4px 8px;
  border-radius: 7px;
  background: rgb(79 124 255 / 10%);
  color: #aab5c5;
  font-size: 9px;
  letter-spacing: 0.04em;
}

.order-steps {
  position: relative;
  display: grid;
  margin-top: 17px;
  grid-template-columns: repeat(3, 1fr);
}

.order-steps::before {
  content: "";
  position: absolute;
  top: 12px;
  right: 16%;
  left: 16%;
  height: 1px;
  background: rgb(255 255 255 / 15%);
}

.order-steps li {
  position: relative;
  z-index: 1;
  display: grid;
  justify-items: center;
  gap: 6px;
  color: #7f8da2;
  font-size: 9px;
}

.order-steps li > span {
  display: grid;
  width: 25px;
  height: 25px;
  place-items: center;
  border: 1px solid rgb(255 255 255 / 18%);
  border-radius: 50%;
  background: #14243b;
}

.order-steps .is-ready,
.order-steps .is-active { color: #f5f7fb; }
.order-steps .is-ready > span { border-color: #4f7cff; background: #2563eb; }
.order-steps .is-active > span { border-color: #d946ef; box-shadow: 0 0 0 4px rgb(217 70 239 / 12%); }

.checkout-concept {
  display: flex;
  margin-top: 15px;
  padding: 11px;
  align-items: center;
  justify-content: space-between;
  border-radius: 10px;
  background: rgb(7 17 31 / 46%);
}

.checkout-concept div { display: grid; gap: 2px; }
.checkout-concept strong { font-size: 11px; }
.checkout-concept div span { color: #aab5c5; font-size: 9px; }

.checkout-lock {
  padding: 4px 7px;
  border: 1px solid rgb(217 70 239 / 28%);
  border-radius: 7px;
  color: #e879f9;
  font-size: 9px;
}

.storefront-illustration { position: relative; min-height: 142px; overflow: hidden; border: 1px solid rgb(255 255 255 / 9%); border-radius: 16px; background: radial-gradient(circle at 72% 22%, rgb(79 124 255 / 18%), transparent 30%), linear-gradient(180deg, #142b49 0 71%, #0b192d 71%); }
.storefront-illustration::after { content: ""; position: absolute; right: 0; bottom: 24px; left: 0; height: 1px; background: rgb(255 255 255 / 10%); }
.storefront-illustration__cloud { position: absolute; width: 34px; height: 8px; border-radius: 999px; background: rgb(255 255 255 / 9%); }
.storefront-illustration__cloud::before, .storefront-illustration__cloud::after { content: ""; position: absolute; bottom: 0; border-radius: 50% 50% 0 0; background: inherit; }
.storefront-illustration__cloud::before { left: 7px; width: 13px; height: 13px; }
.storefront-illustration__cloud::after { left: 17px; width: 10px; height: 10px; }
.storefront-illustration__cloud--one { top: 26px; left: 8%; }
.storefront-illustration__cloud--two { top: 18px; right: 9%; transform: scale(0.72); }
.storefront { position: absolute; z-index: 2; bottom: 24px; left: 50%; width: min(68%, 260px); transform: translateX(-50%); }
.storefront__sign { width: 62%; margin: 0 auto 5px; padding: 4px 8px; border: 1px solid rgb(79 124 255 / 48%); border-radius: 5px 5px 2px 2px; background: #10213a; color: #d9e4ff; font-size: 7px; font-weight: 800; letter-spacing: 0.18em; text-align: center; box-shadow: 0 0 18px rgb(79 124 255 / 18%); }
.storefront__awning { display: grid; height: 22px; grid-template-columns: repeat(6, 1fr); overflow: hidden; border-radius: 7px 7px 4px 4px; box-shadow: 0 6px 12px rgb(3 10 22 / 24%); }
.storefront__awning span { background: #4f7cff; }
.storefront__awning span:nth-child(even) { background: #d946ef; }
.storefront__awning span:nth-child(odd) { border-radius: 0 0 5px 5px; }
.storefront__front { display: grid; height: 68px; padding: 8px 10px 0; grid-template-columns: 1fr 42px; gap: 8px; border: 1px solid rgb(255 255 255 / 13%); border-top: 0; border-radius: 0 0 4px 4px; background: #183252; }
.storefront__window, .storefront__door { position: relative; border: 2px solid #7890ad; border-bottom: 0; background: linear-gradient(145deg, rgb(117 167 255 / 26%), rgb(8 22 40 / 48%)); }
.storefront__window { display: flex; padding: 9px 9px 0; align-items: end; justify-content: space-around; gap: 7px; }
.storefront__window::after { content: ""; position: absolute; right: 0; bottom: 11px; left: 0; height: 2px; background: #7890ad; }
.storefront__product { position: relative; z-index: 1; width: 19px; height: 27px; border-radius: 4px 4px 1px 1px; background: linear-gradient(145deg, #7195ff, #315ccd); box-shadow: 0 3px 8px rgb(4 13 28 / 28%); }
.storefront__product--two { height: 34px; background: linear-gradient(145deg, #ee80f6, #b72cca); }
.storefront__product--three { height: 22px; background: linear-gradient(145deg, #b5c2d5, #66768d); }
.storefront__door span { position: absolute; top: 52%; right: 5px; width: 4px; height: 4px; border-radius: 50%; background: #e879f9; }
.storefront-boxes { position: absolute; z-index: 3; right: 8%; bottom: 25px; display: flex; align-items: end; gap: 3px; }
.storefront-boxes span { width: 23px; height: 20px; border: 1px solid rgb(255 255 255 / 17%); border-radius: 3px; background: #8057ad; box-shadow: inset 0 5px rgb(255 255 255 / 7%); }
.storefront-boxes span:last-child { width: 19px; height: 14px; background: #315ccd; }

/* ORDER-PICKER START: remove this section to undo the moving worker */
.order-picker { position: absolute; z-index: 4; right: 12%; bottom: 25px; left: 8%; height: 66px; pointer-events: none; animation: picker-route 7s ease-in-out infinite; }
.order-picker__person { position: absolute; bottom: 0; left: 0; width: 42px; height: 64px; animation: picker-step 0.48s ease-in-out infinite alternate; }
.order-picker__head { position: absolute; top: 0; left: 14px; width: 15px; height: 16px; border: 2px solid #24334a; border-radius: 50% 50% 45% 45%; background: #e7b58f; box-shadow: inset 0 5px #24334a; }
.order-picker__body { position: absolute; top: 17px; left: 11px; width: 22px; height: 27px; border-radius: 7px 7px 4px 4px; background: linear-gradient(145deg, #7195ff, #315ccd); }
.order-picker__arm { position: absolute; z-index: 2; top: 22px; left: 27px; width: 18px; height: 6px; border-radius: 999px; background: #e7b58f; transform: rotate(12deg); transform-origin: left center; }
.order-picker__leg { position: absolute; top: 42px; left: 13px; width: 7px; height: 20px; border-radius: 0 0 5px 5px; background: #172b48; transform-origin: top center; }
.order-picker__leg--left { animation: picker-leg-left 0.48s ease-in-out infinite alternate; }
.order-picker__leg--right { left: 24px; animation: picker-leg-right 0.48s ease-in-out infinite alternate; }
.order-picker__parcel { position: absolute; z-index: 3; top: 18px; left: 37px; width: 25px; height: 22px; border: 1px solid rgb(255 255 255 / 24%); border-radius: 3px; background: linear-gradient(145deg, #a575c9, #75509d); box-shadow: inset 0 6px rgb(255 255 255 / 8%), 0 5px 9px rgb(4 13 28 / 24%); animation: picker-parcel 7s linear infinite; }
.order-picker__parcel::before { content: ""; position: absolute; top: -1px; bottom: -1px; left: 10px; width: 4px; background: rgb(255 255 255 / 13%); }
/* ORDER-PICKER END */
.storefront-illustration__ground { position: absolute; right: 6%; bottom: 16px; left: 6%; height: 8px; border-radius: 50%; background: rgb(4 13 28 / 36%); filter: blur(4px); }
.floating-status {
  position: absolute;
  z-index: 3;
  display: flex;
  min-height: 38px;
  padding: 8px 12px;
  align-items: center;
  gap: 8px;
  border: 1px solid rgb(255 255 255 / 14%);
  border-radius: 11px;
  background: rgb(15 30 51 / 90%);
  color: #f5f7fb;
  box-shadow: 0 14px 34px rgb(4 13 28 / 30%);
  font-size: 10px;
  font-weight: 650;
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}

.floating-status span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #4f7cff;
}

.floating-status--catalog { top: 14px; right: 5px; animation: status-drift 5.6s ease-in-out infinite; }
.floating-status--orders { bottom: 18px; left: 2px; animation: status-drift 6.2s ease-in-out -2s infinite; }
.floating-status--orders span { background: #d946ef; }

.console-glow {
  position: absolute;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  filter: blur(64px);
  opacity: 0.26;
}

.console-glow--one { top: 0; right: 0; background: #2563eb; }
.console-glow--two { bottom: 0; left: 0; background: #d946ef; }

.store-preparing,
.store-contact {
  padding: 96px 0;
}

.store-preparing {
  border-block: 1px solid var(--color-border);
  background: color-mix(in srgb, var(--color-surface) 46%, var(--color-background));
}

.store-section-header {
  max-width: 730px;
}

.store-section-header h2,
.build-status h2,
.store-contact h2 {
  margin-top: 12px;
  color: var(--color-text);
  font-size: clamp(34px, 4.6vw, 58px);
  line-height: 1.08;
}

.store-section-header > p:last-child,
.build-status__copy > p:last-child,
.store-contact__content > p {
  margin-top: 18px;
  color: var(--color-text-muted);
  font-size: 17px;
  line-height: 1.65;
}

.future-grid {
  display: grid;
  margin-top: 44px;
  gap: 16px;
}

.future-card {
  position: relative;
  min-height: 280px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  background: var(--color-surface);
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.future-card::after {
  content: "";
  position: absolute;
  right: -54px;
  bottom: -64px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--color-interactive) 7%, transparent);
}

.future-card__number {
  color: var(--color-magenta);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.12em;
}

.future-card h3 {
  margin-top: 24px;
  color: var(--color-text);
  font-size: 21px;
}

.future-card p {
  margin-top: 10px;
  color: var(--color-text-muted);
  line-height: 1.62;
}

.future-card__icon {
  position: relative;
  display: flex;
  width: 96px;
  height: 58px;
  margin-top: 24px;
  align-items: end;
  gap: 6px;
}

.future-card__icon span {
  flex: 1;
  height: 60%;
  border: 1px solid color-mix(in srgb, var(--color-interactive) 45%, var(--color-border));
  border-radius: 7px;
  background: color-mix(in srgb, var(--color-interactive) 10%, var(--color-surface));
}

.future-card__icon span:nth-child(2) { height: 82%; }
.future-card__icon span:nth-child(3) { height: 100%; background: color-mix(in srgb, var(--color-magenta) 10%, var(--color-surface)); }

.future-card__icon--path { align-items: center; }
.future-card__icon--path span { height: 22px; border-radius: 50%; }
.future-card__icon--path::before {
  content: "";
  position: absolute;
  right: 10px;
  left: 10px;
  height: 2px;
  background: var(--color-interactive);
}

.future-card__icon--nodes { align-items: center; justify-content: space-between; }
.future-card__icon--nodes span { flex: 0 0 25px; height: 25px; border-radius: 8px; }

.future-card__icon--cycle { display: grid; place-items: center; }
.future-card__icon--cycle span {
  width: 52px;
  height: 52px;
  border-width: 3px;
  border-right-color: var(--color-magenta);
  border-radius: 50%;
}

.build-status {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  border-block: 1px solid var(--color-border);
  background:
    radial-gradient(circle at 82% 18%, color-mix(in srgb, var(--color-interactive) 11%, transparent), transparent 28%),
    linear-gradient(145deg, color-mix(in srgb, var(--color-surface) 82%, var(--color-background)), var(--color-background));
  color: var(--color-text);
}

.build-status::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.24;
  pointer-events: none;
  background-image:
    linear-gradient(var(--color-border) 1px, transparent 1px),
    linear-gradient(90deg, var(--color-border) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(90deg, transparent, #000 48%, transparent);
}

.build-status__inner {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 48px;
}

.build-status h2 { color: var(--color-text); }
.build-status__copy > p:last-child { color: var(--color-text-muted); }
.build-status .section-label { color: var(--color-interactive); }

.build-timeline {
  position: relative;
  display: grid;
  gap: 14px;
}

.build-timeline::before {
  content: "";
  position: absolute;
  top: 30px;
  bottom: 30px;
  left: 25px;
  width: 1px;
  background: var(--color-border);
}

.build-timeline li {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 74px;
  padding: 12px;
  grid-template-columns: 50px 1fr;
  align-items: center;
  gap: 14px;
  border: 1px solid var(--color-border);
  border-radius: 14px;
  background: color-mix(in srgb, var(--color-surface) 90%, transparent);
  box-shadow: 0 12px 28px rgb(11 31 58 / 6%);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.build-timeline li > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--color-border);
  border-radius: 50%;
  background: var(--color-card);
  color: var(--color-text-muted);
  font-size: 11px;
  font-weight: 700;
}

.build-timeline li div { display: grid; gap: 4px; }
.build-timeline strong { font-size: 15px; }
.build-timeline small { color: var(--color-text-muted); font-size: 11px; text-transform: uppercase; letter-spacing: 0.08em; }
.build-timeline .is-active > span { border-color: #4f7cff; background: #2563eb; color: #fff; }
.build-timeline .is-active small { color: #7fa2ff; }
.build-timeline .is-progress > span { border-color: #d946ef; box-shadow: 0 0 0 5px rgb(217 70 239 / 9%); }
.build-timeline .is-progress small { color: #e879f9; }

.store-contact {
  position: relative;
  background:
    radial-gradient(circle at 14% 12%, color-mix(in srgb, var(--color-magenta) 9%, transparent), transparent 27%),
    radial-gradient(circle at 86% 72%, color-mix(in srgb, var(--color-interactive) 8%, transparent), transparent 30%),
    var(--color-background);
  scroll-margin-top: calc(var(--header-height) + 24px);
}

.store-contact__inner {
  position: relative;
  display: grid;
  padding: clamp(24px, 4vw, 54px);
  gap: clamp(38px, 5vw, 70px);
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--color-interactive) 22%, var(--color-border));
  border-radius: 26px;
  background:
    linear-gradient(135deg, color-mix(in srgb, var(--color-surface) 96%, transparent), color-mix(in srgb, var(--color-interactive) 4%, var(--color-surface)));
  box-shadow: 0 28px 70px rgb(11 31 58 / 11%);
}

.store-contact__inner::before {
  content: "";
  position: absolute;
  top: -120px;
  left: -90px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: color-mix(in srgb, var(--color-magenta) 9%, transparent);
  filter: blur(20px);
  pointer-events: none;
}

.store-contact__content,
.quick-form {
  position: relative;
  z-index: 1;
}

.store-email {
  display: inline-flex;
  margin-top: 24px;
  color: var(--color-interactive);
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: color-mix(in srgb, var(--color-interactive) 35%, transparent);
  text-underline-offset: 5px;
}

.store-email::after {
  content: "↗";
  margin-left: 9px;
  font-size: 0.8em;
  text-decoration: none;
}

.store-contact__promise {
  display: flex;
  max-width: 440px;
  margin-top: 30px;
  padding-top: 20px;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--color-border);
  color: var(--color-text-muted);
  font-size: 14px;
}

.store-contact__promise span {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 10px;
  background: color-mix(in srgb, var(--color-interactive) 10%, var(--color-surface));
  color: var(--color-interactive);
  font-weight: 700;
}

.quick-form {
  padding: 22px;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  background: var(--color-surface);
  box-shadow: 0 20px 46px rgb(11 31 58 / 12%);
}

[data-theme="dark"] .store-contact__inner,
[data-theme="dark"] .quick-form {
  box-shadow: 0 24px 56px rgb(0 0 0 / 26%);
}

.quick-form__field + .quick-form__field { margin-top: 18px; }

.quick-form label {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--color-text);
  font-size: 14px;
  font-weight: 650;
}

.quick-form input:not([type="checkbox"]),
.quick-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid var(--color-border);
  border-radius: 11px;
  background: var(--color-background);
  color: var(--color-text);
  font: inherit;
  transition: border-color var(--transition), box-shadow var(--transition), background-color var(--transition);
}

.quick-form textarea {
  min-height: 150px;
  resize: vertical;
}

.quick-form input:focus-visible,
.quick-form textarea:focus-visible {
  border-color: var(--color-magenta);
  outline: 2px solid color-mix(in srgb, var(--color-magenta) 45%, transparent);
  outline-offset: 2px;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--color-magenta) 10%, transparent);
}

.quick-form input[aria-invalid="true"],
.quick-form textarea[aria-invalid="true"] {
  border-color: #c2415d;
  box-shadow: 0 0 0 3px rgb(194 65 93 / 10%);
}

.quick-form__privacy {
  display: grid;
  margin-top: 22px;
  grid-template-columns: 24px 1fr;
  align-items: start;
  gap: 10px;
}

.quick-form__privacy input {
  width: 22px;
  height: 22px;
  margin: 1px 0 0;
  accent-color: var(--color-interactive);
}

.quick-form__privacy label { margin: 0; line-height: 1.5; }
.quick-form__help { margin-top: 7px; color: var(--color-text-muted); font-size: 12px; line-height: 1.5; }
.quick-form__error { min-height: 19px; margin-top: 5px; color: var(--store-error); font-size: 12px; font-weight: 600; }
.quick-form__submit { width: 100%; margin-top: 10px; }
.quick-form__submit:disabled { cursor: wait; opacity: 0.7; transform: none; }
.quick-form__status { min-height: 24px; margin-top: 12px; color: var(--store-error); font-size: 13px; font-weight: 650; line-height: 1.5; }
.quick-form__status.is-success { color: var(--store-success); }
.quick-form__status.is-progress { color: var(--color-interactive); }

@keyframes badge-pulse {
  50% { transform: scale(1.24); opacity: 0.68; }
}

@keyframes console-float {
  50% { transform: translateY(-8px) rotateY(-1deg) rotateX(1deg); }
}

@keyframes console-sheen {
  45%, 100% { transform: translateX(90%); }
}

@keyframes status-drift {
  50% { transform: translateY(-7px); }
}


@keyframes picker-route {
  0% { opacity: 0; transform: translateX(-64px); }
  5% { opacity: 1; }
  12% { transform: translateX(0); }
  44%, 50% { opacity: 1; transform: translateX(calc(100% - 62px)); }
  50.01%, 58% { transform: translateX(calc(100% - 62px)) scaleX(-1); }
  88% { opacity: 1; transform: translateX(0) scaleX(-1); }
  97%, 100% { opacity: 0; transform: translateX(-64px) scaleX(-1); }
}

@keyframes picker-parcel {
  0%, 49% { opacity: 1; visibility: visible; }
  50%, 100% { opacity: 0; visibility: hidden; }
}

@keyframes picker-step { to { transform: translateY(-2px); } }
@keyframes picker-leg-left { to { transform: rotate(20deg); } }
@keyframes picker-leg-right { to { transform: rotate(-20deg); } }

@media (min-width: 560px) {
  .commerce-console { min-height: 510px; }
  .console-window { inset: 28px 30px 42px; }
  .console-window__body { grid-template-columns: 1.1fr 0.9fr; }
  .storefront-illustration { grid-column: 1 / -1; }
  .floating-status--catalog { right: 4px; }
  .future-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (min-width: 760px) {
  .store-hero__actions .button { min-width: 210px; }
  .build-status__inner { grid-template-columns: minmax(0, 0.8fr) minmax(420px, 1.2fr); align-items: center; }
  .store-contact__inner { grid-template-columns: minmax(0, 0.82fr) minmax(430px, 1.18fr); align-items: center; }
  .quick-form { padding: 30px; }
}

@media (min-width: 980px) {
  .store-hero { padding: calc(var(--header-height) + 46px) 0 74px; }
  .store-hero__inner { grid-template-columns: minmax(0, 0.95fr) minmax(500px, 1.05fr); align-items: center; gap: clamp(38px, 5vw, 76px); }
  .commerce-console { min-height: 550px; }
  .future-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .future-card { min-height: 318px; }
}

@media (min-width: 1280px) {
  .store-hero__inner,
  .store-section-inner,
  .build-status__inner,
  .store-contact__inner {
    width: min(100% - 96px, var(--container));
  }
}

@media (hover: hover) and (pointer: fine) {
  .future-card:hover {
    border-color: var(--color-interactive);
    box-shadow: 0 18px 40px rgb(4 19 38 / 12%);
    transform: translateY(-5px);
  }
}

@media (min-width: 900px) {
  .store-page .site-navigation > .store-nav-current {
    background: transparent;
  }
}

@media (prefers-reduced-motion: reduce) {
  .store-badge > span,
  .console-window,
  .console-window::before,
  .order-picker,
  .order-picker__person,
  .order-picker__parcel,
  .order-picker__leg,
  .floating-status {
    animation: none;
  }
}
