:root {
  --white: #ffffff;
  --paper: #f6f7f9;
  --soft: #eef0f4;
  --line: #e1e4e9;
  --text: #20222a;
  --muted: #70737d;
  --pink: #e35f8a;
  --pink-dark: #bd3f68;
  --pink-soft: #fff0f5;
  --blue: #159de1;
  --yellow: #ffd428;
  --green: #17875c;
  --red: #c8455d;
  --shadow: 0 18px 45px rgba(32, 34, 42, 0.09);
  --header-height: 82px;
  --nav-height: 74px;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

[hidden] {
  display: none !important;
}

.app-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  min-height: var(--header-height);
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 8px clamp(16px, 4vw, 56px);
  border-bottom: 1px solid rgba(225, 228, 233, 0.9);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
}

.brand-button {
  width: 112px;
  height: 64px;
  padding: 0;
  border: 0;
  background: transparent;
}

.brand-button img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.header-actions,
.language-switch {
  display: flex;
  align-items: center;
}

.header-actions {
  gap: 12px;
}

.warehouse-control {
  display: grid;
  gap: 3px;
}

.warehouse-control span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.warehouse-control select {
  width: min(250px, 34vw);
  min-height: 38px;
  padding: 0 34px 0 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--text);
  font-size: 13px;
  font-weight: 750;
}

.language-switch {
  padding: 3px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--soft);
}

.language-switch button {
  min-width: 48px;
  min-height: 34px;
  padding: 0 10px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

.language-switch button.active {
  background: var(--white);
  color: var(--pink-dark);
  box-shadow: 0 4px 12px rgba(32, 34, 42, 0.08);
}

.support-link {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 16px;
  border-radius: 999px;
  background: var(--text);
  color: var(--white);
  font-weight: 800;
}

.support-link[hidden] {
  display: none;
}

.app-main {
  width: min(100%, 1240px);
  min-height: calc(100vh - var(--header-height) - var(--nav-height));
  margin: 0 auto;
  padding: 26px clamp(16px, 4vw, 52px) calc(var(--nav-height) + 48px);
}

.customer-view {
  animation: view-in 180ms ease;
}

@keyframes view-in {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.eyebrow {
  margin: 0 0 9px;
  color: var(--pink-dark);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-brand-name {
  display: block;
  margin-bottom: 8px;
  color: var(--text);
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 0;
}

.home-hero {
  display: grid;
  min-height: min(650px, calc(100vh - 210px));
  grid-template-columns: minmax(0, 1.02fr) minmax(380px, 0.98fr);
  align-items: center;
  gap: clamp(30px, 6vw, 78px);
}

.home-copy h1 {
  max-width: 700px;
  margin: 0;
  font-size: clamp(42px, 5.5vw, 76px);
  line-height: 1.01;
  letter-spacing: 0;
}

.home-copy > p:not(.eyebrow) {
  max-width: 650px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.home-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.primary-command,
.secondary-command,
.home-offer button,
.submit-order,
.profile-save,
.tracking-form button,
.success-actions button {
  min-height: 48px;
  padding: 0 20px;
  border-radius: 8px;
  font-weight: 850;
}

.primary-command,
.home-offer button,
.submit-order,
.profile-save {
  border: 1px solid var(--pink);
  background: var(--pink);
  color: var(--white);
}

.secondary-command {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--text);
}

.home-product {
  position: relative;
  min-height: 500px;
}

.home-product::before {
  position: absolute;
  inset: 8% 2% 2% 10%;
  border: 1px solid #efb2c6;
  border-radius: 8px;
  background: var(--pink-soft);
  content: "";
}

.home-product img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 22px 28px rgba(32, 34, 42, 0.13));
}

.home-price {
  position: absolute;
  right: 0;
  bottom: 12%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.home-price span {
  color: var(--pink-dark);
  font-weight: 900;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin: 12px 0 30px;
  border: 1px solid var(--line);
  background: var(--white);
}

.service-grid article {
  display: grid;
  min-width: 0;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 4px 12px;
  padding: 18px;
  border-right: 1px solid var(--line);
}

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

.service-grid span {
  grid-row: 1 / 3;
  color: var(--pink);
  font-size: 20px;
  font-weight: 900;
}

.service-grid strong,
.service-grid small {
  overflow-wrap: anywhere;
}

.service-grid small {
  color: var(--muted);
}

.home-offer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 0;
  border-top: 1px solid var(--line);
}

.home-offer h2 {
  margin: 0;
  font-size: clamp(24px, 3vw, 38px);
}

.view-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 24px;
}

.view-heading h2,
.checkout-heading h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 48px);
  letter-spacing: 0;
}

.view-heading > p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

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

.package-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  transition: transform 150ms ease, box-shadow 150ms ease, border-color 150ms ease;
}

.package-card.in-cart {
  border-color: var(--pink);
  box-shadow: 0 13px 34px rgba(227, 95, 138, 0.13);
}

.package-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}

.quantity-stepper button:disabled {
  cursor: not-allowed;
  opacity: 0.35;
}

.checkout-fees {
  display: grid;
  gap: 8px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.checkout-fees span {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.checkout-fees strong {
  color: var(--text);
}

.package-image {
  position: relative;
  aspect-ratio: 1;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

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

.package-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  max-width: calc(100% - 24px);
  padding: 7px 9px;
  border-radius: 6px;
  background: var(--text);
  color: var(--white);
  font-size: 11px;
  font-weight: 850;
}

.package-content {
  display: flex;
  min-height: 285px;
  flex: 1;
  flex-direction: column;
  padding: 17px;
}

.package-content h3 {
  margin: 0;
  font-size: 23px;
}

.package-subtitle {
  min-height: 45px;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.package-price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
}

.package-price-row strong {
  font-size: 27px;
}

.package-price-row small {
  color: var(--green);
  font-weight: 800;
}

.package-promise {
  margin-top: 13px;
  padding-top: 13px;
  border-top: 1px solid var(--line);
  color: #494b54;
  font-size: 13px;
  line-height: 1.5;
}

.quantity-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 18px;
}

.quantity-row > span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
}

.quantity-stepper {
  display: grid;
  width: 126px;
  height: 42px;
  grid-template-columns: 42px 42px 42px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.quantity-stepper button {
  border: 0;
  background: var(--soft);
  color: var(--text);
  font-size: 22px;
  font-weight: 800;
}

.quantity-stepper button:last-child {
  background: var(--pink);
  color: var(--white);
}

.quantity-stepper strong {
  display: grid;
  place-items: center;
  background: var(--white);
  font-size: 17px;
}

.cart-dock {
  position: fixed;
  z-index: 45;
  right: 18px;
  bottom: calc(var(--nav-height) + 12px);
  width: min(440px, calc(100% - 36px));
}

.cart-summary-button {
  display: grid;
  width: 100%;
  min-height: 62px;
  grid-template-columns: minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 14px;
  padding: 8px 10px 8px 14px;
  border: 0;
  border-radius: 8px;
  background: var(--text);
  color: var(--white);
  box-shadow: 0 16px 38px rgba(32, 34, 42, 0.28);
  text-align: left;
}

.cart-summary-button span {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 9px;
}

.cart-summary-button b {
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: var(--pink);
}

.cart-summary-button small {
  color: #cfd1d8;
  font-weight: 700;
}

.cart-summary-button > strong {
  white-space: nowrap;
}

.cart-summary-button em {
  padding: 12px 14px;
  border-radius: 6px;
  background: var(--pink);
  font-style: normal;
  font-weight: 850;
  white-space: nowrap;
}

.bottom-navigation {
  position: fixed;
  z-index: 40;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  height: var(--nav-height);
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
}

.bottom-navigation button {
  display: grid;
  min-width: 0;
  place-content: center;
  gap: 3px;
  border: 0;
  background: transparent;
  color: var(--muted);
}

.bottom-navigation button span {
  height: 25px;
  font-size: 23px;
  line-height: 1;
}

.bottom-navigation button strong {
  overflow: hidden;
  font-size: 11px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bottom-navigation button.active {
  color: var(--pink-dark);
}

.checkout-heading {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 23px;
}

.back-command {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--white);
  font-size: 22px;
}

.checkout-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  align-items: start;
  gap: 20px;
}

.checkout-card,
.checkout-form,
.profile-form,
.tracking-form,
.tracking-result,
.local-orders {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.checkout-card {
  position: sticky;
  top: calc(var(--header-height) + 18px);
  padding: 19px;
}

.checkout-card-heading,
.section-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.checkout-card h3,
.section-row h3 {
  margin: 0;
  font-size: 18px;
}

.checkout-card-heading button {
  border: 0;
  background: transparent;
  color: var(--pink-dark);
  font-size: 13px;
  font-weight: 800;
}

.checkout-line {
  display: grid;
  grid-template-columns: 68px minmax(0, 1fr) auto;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.checkout-line img {
  display: block;
  width: 68px;
  height: 68px;
  object-fit: contain;
}

.checkout-line strong,
.checkout-line span,
.checkout-line small {
  display: block;
}

.checkout-line small {
  margin-top: 4px;
  color: var(--muted);
}

.checkout-line > strong {
  white-space: nowrap;
}

.checkout-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 17px;
}

.checkout-total strong {
  font-size: 25px;
}

.checkout-form,
.profile-form {
  padding: clamp(18px, 3vw, 30px);
}

.form-section-heading {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin: 7px 0 17px;
}

.form-section-heading:not(:first-child) {
  margin-top: 30px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.form-section-heading > span {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  place-items: center;
  border-radius: 50%;
  background: var(--pink);
  color: var(--white);
  font-weight: 850;
}

.form-section-heading h3 {
  margin: 1px 0 0;
  font-size: 20px;
}

.form-section-heading p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

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

.form-grid label,
.block-label,
.tracking-form label {
  display: grid;
  min-width: 0;
  gap: 7px;
  color: #4f515b;
  font-size: 13px;
  font-weight: 750;
}

.form-wide {
  grid-column: 1 / -1;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  outline: 0;
  background: var(--white);
  color: var(--text);
}

textarea {
  min-height: 88px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(227, 95, 138, 0.11);
}

.choice-control {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 15px;
}

.choice-control label {
  min-width: 0;
}

.choice-control input {
  position: absolute;
  width: 1px;
  min-height: 1px;
  margin: 0;
  opacity: 0;
  pointer-events: none;
}

.choice-control span {
  display: grid;
  min-height: 46px;
  place-items: center;
  padding: 8px 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.choice-control input:checked + span {
  border-color: var(--pink);
  background: var(--pink-soft);
  color: var(--pink-dark);
}

.block-label {
  margin-top: 15px;
}

.consent-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 16px 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.consent-label input {
  width: 18px;
  min-height: 18px;
  flex: 0 0 18px;
  margin: 1px 0 0;
  accent-color: var(--pink);
}

.submit-order,
.profile-save {
  width: 100%;
}

.order-success-card {
  max-width: 760px;
  margin: 45px auto;
  padding: clamp(28px, 5vw, 50px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  text-align: center;
}

.order-success-mark {
  display: grid;
  width: 58px;
  height: 58px;
  margin: 0 auto 18px;
  place-items: center;
  border-radius: 50%;
  background: #e6f7ef;
  color: var(--green);
  font-size: 27px;
  font-weight: 900;
}

.order-success-card h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 44px);
}

.order-success-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--line);
}

.order-success-summary div {
  padding: 15px;
  background: var(--white);
  text-align: left;
}

.order-success-summary span,
.order-success-summary strong {
  display: block;
}

.order-success-summary span {
  color: var(--muted);
  font-size: 12px;
}

.order-success-summary strong {
  margin-top: 5px;
}

.success-actions {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.success-actions button {
  border: 1px solid var(--line);
  background: var(--white);
}

.success-actions button:first-child {
  border-color: var(--pink);
  background: var(--pink);
  color: var(--white);
}

.orders-layout {
  max-width: 960px;
}

.tracking-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
  align-items: end;
  gap: 12px;
  padding: 18px;
}

.tracking-form button {
  border: 0;
  background: var(--text);
  color: var(--white);
}

.tracking-result {
  margin-top: 16px;
  padding: 22px;
}

.tracking-result-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.tracking-result-head span,
.tracking-result-head strong {
  display: block;
}

.tracking-result-head > div > span {
  color: var(--muted);
  font-size: 12px;
}

.tracking-result-head strong {
  margin-top: 4px;
  font-size: 20px;
}

.tracking-status-badge {
  padding: 8px 10px;
  border-radius: 6px;
  background: var(--pink-soft);
  color: var(--pink-dark);
  font-size: 12px;
  font-weight: 850;
}

.tracking-timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 25px 0 17px;
}

.tracking-timeline div {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 8px;
  color: var(--muted);
  text-align: center;
}

.tracking-timeline div::after {
  position: absolute;
  z-index: 0;
  top: 15px;
  left: 50%;
  width: 100%;
  height: 2px;
  background: var(--line);
  content: "";
}

.tracking-timeline div:last-child::after {
  display: none;
}

.tracking-timeline span {
  position: relative;
  z-index: 1;
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border-radius: 50%;
  background: var(--soft);
  font-weight: 850;
}

.tracking-timeline strong {
  font-size: 11px;
}

.tracking-timeline .complete span,
.tracking-timeline .active span {
  background: var(--pink);
  color: var(--white);
}

.tracking-timeline .complete::after {
  background: var(--pink);
}

.tracking-timeline .active {
  color: var(--pink-dark);
}

.tracking-refresh {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  font-weight: 750;
}

.tracking-error {
  padding: 13px;
  border: 1px solid #f0b5c1;
  border-radius: 6px;
  background: #fff3f5;
  color: var(--red);
}

.local-orders {
  margin-top: 16px;
  padding: 20px;
}

.section-row span {
  display: grid;
  min-width: 30px;
  height: 30px;
  place-items: center;
  border-radius: 50%;
  background: var(--soft);
  font-weight: 850;
}

.local-order-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px 16px;
  padding: 15px 0;
  border-bottom: 1px solid var(--line);
}

.local-order-row:last-child {
  border-bottom: 0;
}

.local-order-row strong,
.local-order-row span,
.local-order-row small {
  display: block;
}

.local-order-row span,
.local-order-row small {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.local-order-row button {
  align-self: center;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  font-weight: 750;
}

.profile-form {
  max-width: 820px;
}

.profile-message {
  margin: 14px 0 0;
  color: var(--green);
  font-weight: 750;
  text-align: center;
}

@media (max-width: 900px) {
  .home-hero,
  .checkout-layout {
    grid-template-columns: 1fr;
  }

  .home-hero {
    min-height: auto;
  }

  .home-product {
    min-height: 420px;
  }

  .service-grid,
  .package-grid {
    grid-template-columns: 1fr;
  }

  .service-grid article {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .service-grid article:last-child {
    border-bottom: 0;
  }

  .package-card {
    display: grid;
    grid-template-columns: minmax(250px, 0.85fr) minmax(0, 1.15fr);
  }

  .package-image {
    height: 100%;
    aspect-ratio: auto;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .checkout-card {
    position: static;
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 68px;
    --nav-height: 68px;
  }

  .app-header {
    padding: 5px 12px;
  }

  .brand-button {
    width: 82px;
    height: 54px;
  }

  .support-link {
    display: none;
  }

  .language-switch button {
    min-width: 42px;
    min-height: 32px;
    padding: 0 7px;
  }

  .app-main {
    padding: 18px 14px calc(var(--nav-height) + 38px);
  }

  .home-hero {
    gap: 14px;
  }

  .home-copy h1 {
    font-size: 39px;
  }

  .home-copy > p:not(.eyebrow) {
    margin-top: 16px;
    font-size: 15px;
  }

  .home-actions,
  .success-actions {
    flex-direction: column;
  }

  .home-actions button,
  .success-actions button,
  .home-offer button {
    width: 100%;
  }

  .home-product {
    min-height: 310px;
  }

  .home-price {
    bottom: 4%;
  }

  .service-grid {
    margin-top: 20px;
  }

  .home-offer,
  .view-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .view-heading {
    gap: 10px;
  }

  .view-heading h2,
  .checkout-heading h2 {
    font-size: 31px;
  }

  .package-card {
    display: flex;
  }

  .package-image {
    aspect-ratio: 1;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .package-content {
    min-height: 275px;
  }

  .cart-dock {
    right: 10px;
    bottom: calc(var(--nav-height) + 8px);
    width: calc(100% - 20px);
  }

  .cart-summary-button {
    gap: 8px;
    padding-left: 10px;
  }

  .cart-summary-button small {
    display: none;
  }

  .cart-summary-button em {
    padding: 11px 9px;
    font-size: 12px;
  }

  .bottom-navigation button strong {
    font-size: 10px;
  }

  .form-grid,
  .choice-control,
  .order-success-summary {
    grid-template-columns: 1fr;
  }

  .form-wide {
    grid-column: auto;
  }

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

  .tracking-timeline {
    margin-right: -8px;
    margin-left: -8px;
  }

  .tracking-timeline strong {
    font-size: 9px;
  }

  .local-order-row {
    grid-template-columns: 1fr;
  }

  .local-order-row button {
    width: 100%;
  }
}
