:root {
  --bg: #120807;
  --bg-soft: #1b0d0b;
  --card: rgba(34, 17, 14, 0.88);
  --red: #e9362e;
  --red-dark: #9f1713;
  --gold: #f6bd4b;
  --gold-soft: #ffe0a0;
  --cream: #fff7ea;
  --muted: #b9a9a0;
  --line: rgba(255, 255, 255, 0.1);
  --shadow: 0 22px 55px rgba(0, 0, 0, 0.45);
  --radius: 26px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: radial-gradient(circle at top left, rgba(233, 54, 46, 0.18), transparent 34rem), radial-gradient(circle at top right, rgba(246, 189, 75, 0.12), transparent 26rem), var(--bg);
  color: var(--cream);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  min-height: 100vh;
  padding-bottom: 6rem;
}

a { color: inherit; text-decoration: none; }
button, input { font: inherit; }

.hero, main {
  width: min(1120px, 100%);
  margin: 0 auto;
  padding: 1rem;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.35rem 0 1rem;
}

.brand { display: flex; align-items: center; gap: 0.85rem; }

.brand-mark {
  display: grid;
  place-items: center;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 1.1rem;
  background: linear-gradient(135deg, var(--red), var(--gold));
  color: #160604;
  font-weight: 950;
  box-shadow: 0 14px 35px rgba(233, 54, 46, 0.32);
}

.eyebrow {
  margin: 0 0 0.25rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 800;
}

h1, h2, p { margin-top: 0; }
h1 { margin-bottom: 0; font-size: 1.18rem; }

.call-link, .primary-link, .secondary-link, .submit-order {
  border: 0;
  cursor: pointer;
  border-radius: 999px;
  font-weight: 900;
}

.call-link {
  padding: 0.75rem 1rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--line);
}

.hero-card {
  min-height: 23rem;
  display: flex;
  align-items: flex-end;
  border-radius: 2rem;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(18, 8, 7, 0.15), rgba(18, 8, 7, 0.94)), url("https://images.unsplash.com/photo-1513104890138-7c749659a591?auto=format&fit=crop&w=1200&q=80") center/cover;
  box-shadow: var(--shadow);
}

.hero-content { padding: 1.25rem; }

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.45rem 0.7rem;
  border: 1px solid rgba(246, 189, 75, 0.28);
  border-radius: 999px;
  background: rgba(18, 8, 7, 0.72);
  color: var(--gold-soft);
  font-size: 0.82rem;
  font-weight: 800;
}

.status-pill span {
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: #2cff89;
  animation: pulse 1.8s infinite;
}

.hero h2 {
  max-width: 42rem;
  margin-bottom: 0.65rem;
  font-size: clamp(2.2rem, 12vw, 5.5rem);
  line-height: 0.88;
  letter-spacing: -0.08em;
}

.hero p:not(.eyebrow, .status-pill) {
  max-width: 34rem;
  color: var(--muted);
  line-height: 1.55;
}

.hero-actions { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.primary-link, .secondary-link { padding: 0.9rem 1.1rem; }
.primary-link { color: #190705; background: linear-gradient(135deg, var(--gold), #fff0b9); }
.secondary-link { background: rgba(255, 255, 255, 0.08); border: 1px solid var(--line); }

.quick-panel {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  margin: 0.25rem 0 1.4rem;
}

.quick-panel article {
  padding: 0.95rem 0.75rem;
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.045);
}

.quick-panel strong, .quick-panel span { display: block; }
.quick-panel span { margin-top: 0.25rem; color: var(--muted); font-size: 0.78rem; }

.section-heading { margin: 2rem 0 1rem; }
.section-heading h2 { margin-bottom: 0; font-size: 1.85rem; letter-spacing: -0.04em; }

.category-tabs {
  display: flex;
  gap: 0.55rem;
  overflow-x: auto;
  padding: 0.2rem 0 1rem;
  scrollbar-width: none;
  position: sticky;
  top: 0;
  z-index: 5;
  background: linear-gradient(180deg, var(--bg), rgba(18, 8, 7, 0.9));
}

.category-tabs::-webkit-scrollbar { display: none; }

.category-tab {
  white-space: nowrap;
  padding: 0.7rem 0.9rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--cream);
  background: rgba(255, 255, 255, 0.055);
}

.category-tab.active { color: #180705; background: var(--gold); border-color: var(--gold); }
.category-block { margin-bottom: 1.25rem; }

.category-title {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin: 1rem 0 0.8rem;
}

.category-title h3 { margin: 0; font-size: 1.28rem; }
.category-title span { color: var(--muted); font-size: 0.82rem; }
.items-grid { display: grid; gap: 0.82rem; }

.item-card {
  display: grid;
  grid-template-columns: 6.2rem 1fr;
  gap: 0.9rem;
  padding: 0.72rem;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.025));
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.2);
  transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
}

.item-card.selected {
  border-color: rgba(246, 189, 75, 0.72);
  background: linear-gradient(145deg, rgba(246, 189, 75, 0.16), rgba(233, 54, 46, 0.12));
  transform: translateY(-2px);
}

.item-image {
  width: 100%;
  height: 6.2rem;
  object-fit: cover;
  border-radius: 1.25rem;
  background: #27120f;
}

.item-info { min-width: 0; }
.item-head { display: flex; justify-content: space-between; align-items: start; gap: 0.75rem; }
.item-name { margin: 0; font-weight: 950; line-height: 1.2; }
.item-price { color: var(--gold); font-weight: 950; white-space: nowrap; }
.option-group { margin-top: 0.7rem; }
.option-title { margin-bottom: 0.42rem; color: var(--muted); font-size: 0.78rem; font-weight: 850; }
.chips { display: flex; flex-wrap: wrap; gap: 0.42rem; }

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0.48rem 0.62rem;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.045);
  font-size: 0.78rem;
  font-weight: 800;
  cursor: pointer;
  user-select: none;
}

.chip input { position: absolute; opacity: 0; pointer-events: none; }
.chip.active { color: #160604; background: var(--gold); border-color: var(--gold); }
.item-actions, .qty-control { display: flex; align-items: center; }
.item-actions { justify-content: space-between; gap: 0.8rem; margin-top: 0.82rem; }

.add-btn {
  border: 0;
  border-radius: 999px;
  padding: 0.72rem 1rem;
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  font-weight: 950;
  cursor: pointer;
  box-shadow: 0 12px 26px rgba(233, 54, 46, 0.25);
}

.qty-control { gap: 0.5rem; }

.qty-btn {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--cream);
  background: rgba(255, 255, 255, 0.07);
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 950;
}

.qty-value { min-width: 1.3rem; text-align: center; font-weight: 950; }

.summary-card, .checkout-form {
  border: 1px solid var(--line);
  border-radius: 1.7rem;
  background: var(--card);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.summary-card { padding: 0.9rem; }
.empty-cart { padding: 1.2rem; color: var(--muted); text-align: center; }
.cart-line { padding: 0.9rem 0.35rem; border-bottom: 1px solid var(--line); }
.cart-main { display: flex; justify-content: space-between; gap: 1rem; font-weight: 950; }
.cart-meta { margin-top: 0.35rem; color: var(--muted); font-size: 0.82rem; line-height: 1.45; }
.cart-controls { display: flex; justify-content: space-between; align-items: center; margin-top: 0.65rem; }
.remove-btn { border: 0; color: #ff9b95; background: transparent; cursor: pointer; font-weight: 900; }

.total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.1rem 0.35rem 0.2rem;
  font-size: 1.08rem;
}

.total-row strong { color: var(--gold); font-size: 2rem; transition: transform 0.2s ease; }
.total-row strong.bump { transform: scale(1.08); }
.checkout-form { display: grid; gap: 0.9rem; padding: 1rem; }
.checkout-form label span { display: block; margin-bottom: 0.45rem; color: var(--gold-soft); font-size: 0.86rem; font-weight: 850; }

.checkout-form input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 1rem;
  padding: 0.95rem 1rem;
  color: var(--cream);
  background: rgba(255, 255, 255, 0.06);
  outline: none;
}

.checkout-form input:focus { border-color: var(--gold); box-shadow: 0 0 0 4px rgba(246, 189, 75, 0.12); }
.checkout-notice { min-height: 1.2rem; color: var(--muted); font-size: 0.84rem; }
.checkout-notice.error { color: #ff9b95; }
.checkout-notice.success { color: #77f2ab; }

.submit-order {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 1rem 1.15rem;
  color: #160604;
  background: linear-gradient(135deg, var(--gold), #fff0b9);
  font-size: 1rem;
}

.submit-order:disabled { opacity: 0.62; cursor: not-allowed; }

.floating-cart {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 20;
  display: none;
  align-items: center;
  justify-content: space-between;
  max-width: 34rem;
  margin: 0 auto;
  border: 1px solid rgba(246, 189, 75, 0.45);
  border-radius: 999px;
  padding: 0.95rem 1.1rem;
  color: #160604;
  background: linear-gradient(135deg, var(--gold), #fff0b9);
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.42);
  cursor: pointer;
  font-weight: 950;
  animation: slideUp 0.25s ease;
}

.floating-cart.show { display: flex; }

.toast {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 5.4rem;
  z-index: 30;
  display: none;
  max-width: 34rem;
  margin: 0 auto;
  padding: 0.85rem 1rem;
  border-radius: 1rem;
  color: var(--cream);
  background: rgba(18, 8, 7, 0.94);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.toast.show { display: block; animation: slideUp 0.22s ease; }

@keyframes pulse {
  70% { box-shadow: 0 0 0 10px rgba(44, 255, 137, 0); }
  100% { box-shadow: 0 0 0 0 rgba(44, 255, 137, 0); }
}

@keyframes slideUp {
  from { opacity: 0; transform: translateY(1rem); }
  to { opacity: 1; transform: translateY(0); }
}

@media (min-width: 760px) {
  .hero, main { padding: 1.5rem; }
  .hero-card { min-height: 34rem; }
  .hero-content { padding: 2rem; }
  .items-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .summary-section, .checkout-section { max-width: 48rem; margin-left: auto; margin-right: auto; }
}

@media (max-width: 430px) {
  .quick-panel { grid-template-columns: 1fr; }
  .item-card { grid-template-columns: 5.3rem 1fr; }
  .item-image { height: 5.3rem; }
}

body {
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overscroll-behavior-y: contain;
}

.hero-card {
  background: linear-gradient(180deg, rgba(18, 8, 7, 0.08), rgba(18, 8, 7, 0.96)), url("https://images.unsplash.com/photo-1550547660-d9450f859349?auto=format&fit=crop&w=1400&q=85") center/cover;
}

.brand-mark {
  font-size: 1.05rem;
  letter-spacing: -0.05em;
}

.quick-panel {
  display: none;
}

.category-tabs {
  top: env(safe-area-inset-top, 0);
  padding: 0.35rem 0 0.9rem;
  margin-inline: -1rem;
  padding-inline: 1rem;
  backdrop-filter: blur(18px);
}

.category-tab {
  min-height: 2.75rem;
  display: inline-flex;
  align-items: center;
  touch-action: manipulation;
}

.item-card {
  grid-template-columns: 6.6rem 1fr;
  min-height: 8rem;
  touch-action: manipulation;
}

.item-image {
  height: 6.8rem;
}

.add-btn,
.qty-btn,
.submit-order,
.floating-cart,
.global-extra-card {
  -webkit-tap-highlight-color: transparent;
}

.add-btn {
  min-height: 2.8rem;
  padding-inline: 1.15rem;
}

.qty-btn {
  width: 2.65rem;
  height: 2.65rem;
}

.global-extra-card {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.35rem 0.7rem;
  align-items: center;
  min-height: 4.5rem;
  padding: 0.95rem 1rem;
  border: 1px solid var(--line);
  border-radius: 1.25rem;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025));
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.global-extra-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.global-extra-card span {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: transparent;
  background: rgba(255, 255, 255, 0.05);
}

.global-extra-card strong,
.global-extra-card small {
  grid-column: 2;
}

.global-extra-card small {
  color: var(--muted);
  font-size: 0.82rem;
}

.global-extra-card.active {
  border-color: rgba(246, 189, 75, 0.72);
  background: linear-gradient(145deg, rgba(246, 189, 75, 0.16), rgba(233, 54, 46, 0.1));
  transform: translateY(-1px);
}

.global-extra-card.active span {
  color: #160604;
  background: var(--gold);
  border-color: var(--gold);
}

.bilingual-line {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem;
  align-items: start;
}

.summary-fr,
.summary-ar {
  display: grid;
  gap: 0.25rem;
}

.summary-fr span,
.summary-ar span {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.summary-ar {
  text-align: right;
  border-right: 1px solid rgba(246, 189, 75, 0.25);
  padding-right: 0.8rem;
}

.cart-controls {
  gap: 0.75rem;
}

.free-line {
  background: rgba(246, 189, 75, 0.06);
  border-radius: 1rem;
  padding-inline: 0.75rem;
}

.submit-order {
  min-height: 3.85rem;
  direction: rtl;
  font-size: 1.14rem;
  letter-spacing: 0;
  background: linear-gradient(135deg, #ffd36b, #fff0bd 48%, #f6bd4b);
  box-shadow: 0 18px 38px rgba(246, 189, 75, 0.22);
}

.submit-order span {
  direction: ltr;
  font-size: 1rem;
}

.checkout-notice {
  line-height: 1.45;
}

.success-screen {
  margin-top: 2rem;
}

.success-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(246, 189, 75, 0.35);
  border-radius: 2rem;
  padding: 1.4rem;
  text-align: center;
  background: radial-gradient(circle at top, rgba(246, 189, 75, 0.2), transparent 18rem), linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025));
  box-shadow: var(--shadow);
}

.success-icon {
  display: grid;
  place-items: center;
  width: 4.2rem;
  height: 4.2rem;
  margin: 0 auto 1rem;
  border-radius: 50%;
  color: #160604;
  background: linear-gradient(135deg, var(--gold), #fff0b9);
  font-size: 2rem;
  font-weight: 950;
  box-shadow: 0 16px 34px rgba(246, 189, 75, 0.28);
}

.success-card h2 {
  margin-bottom: 0.9rem;
  font-size: 1.55rem;
  line-height: 1.45;
}

.success-card p {
  color: var(--gold-soft);
  line-height: 1.75;
  font-size: 1.02rem;
}

.instagram-line {
  margin: 1rem 0 0;
  padding: 0.9rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1.2rem;
  background: rgba(255, 255, 255, 0.06);
}

.floating-cart {
  bottom: max(1rem, env(safe-area-inset-bottom));
  min-height: 3.75rem;
}

@media (max-width: 560px) {
  body {
    padding-bottom: 6.8rem;
  }

  .hero,
  main {
    padding-inline: 0.85rem;
  }

  .topbar {
    padding-top: 0.15rem;
  }

  .brand-mark {
    width: 3rem;
    height: 3rem;
  }

  .call-link {
    padding: 0.72rem 0.92rem;
  }

  .hero-card {
    min-height: 25rem;
    border-radius: 1.55rem;
  }

  .hero-content {
    padding: 1.05rem;
  }

  .hero h2 {
    font-size: clamp(2.25rem, 13vw, 3.65rem);
    line-height: 0.94;
  }

  .hero-actions a {
    flex: 1;
    text-align: center;
    min-height: 3rem;
  }

  .section-heading {
    margin: 1.55rem 0 0.8rem;
  }

  .section-heading h2 {
    font-size: 1.65rem;
  }

  .category-title {
    align-items: flex-start;
  }

  .category-title span {
    max-width: 9rem;
    text-align: right;
  }

  .item-card {
    grid-template-columns: 5.8rem 1fr;
    gap: 0.75rem;
    padding: 0.68rem;
    border-radius: 1.35rem;
  }

  .item-image {
    height: 5.8rem;
    border-radius: 1rem;
  }

  .item-head {
    gap: 0.45rem;
  }

  .item-name {
    font-size: 0.95rem;
  }

  .item-price {
    font-size: 0.9rem;
  }

  .item-actions {
    margin-top: 0.62rem;
  }

  .add-btn {
    min-height: 2.65rem;
    padding: 0.65rem 0.9rem;
  }

  .qty-btn {
    width: 2.45rem;
    height: 2.45rem;
  }

  .summary-card,
  .checkout-form {
    border-radius: 1.35rem;
  }

  .bilingual-line {
    grid-template-columns: 1fr;
    gap: 0.55rem;
  }

  .summary-ar {
    border-right: 0;
    border-top: 1px solid rgba(246, 189, 75, 0.18);
    padding: 0.55rem 0 0;
  }

  .cart-controls {
    flex-wrap: wrap;
  }

  .cart-controls strong {
    margin-left: auto;
  }

  .checkout-form input {
    min-height: 3.35rem;
  }

  .success-card {
    border-radius: 1.55rem;
    padding: 1.1rem;
  }
}

.brand-mark {
  display: grid;
  place-items: center;
  padding: 0.48rem;
  background: radial-gradient(circle at 30% 20%, #fff2bd, var(--gold) 42%, var(--red) 100%);
}

.brand-mark svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: #170604;
  filter: drop-shadow(0 2px 0 rgba(255, 255, 255, 0.2));
}

.hero-card {
  background:
    linear-gradient(180deg, rgba(18, 8, 7, 0.05), rgba(18, 8, 7, 0.48) 48%, rgba(18, 8, 7, 0.97)),
    url("https://images.unsplash.com/photo-1604382354936-07c5d9983bd3?auto=format&fit=crop&w=1600&q=90") center/cover;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.55), inset 0 0 0 1px rgba(246, 189, 75, 0.14);
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 72% 22%, rgba(246, 189, 75, 0.16), transparent 18rem);
}

.hero-card {
  position: relative;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.bilingual-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  align-items: end;
}

.bilingual-heading > div:last-child {
  text-align: right;
}

.item-price {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: max-content;
  padding: 0.32rem 0.55rem;
  border: 1px solid rgba(246, 189, 75, 0.26);
  border-radius: 999px;
  background: rgba(246, 189, 75, 0.09);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.03);
}

.item-card {
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, box-shadow 0.18s ease;
}

.item-card:active,
.add-btn:active,
.qty-btn:active,
.global-extra-card:active {
  transform: scale(0.985);
}

.add-btn {
  transition: transform 0.16s ease, filter 0.16s ease, box-shadow 0.16s ease;
}

.add-btn:hover {
  filter: brightness(1.08);
  box-shadow: 0 16px 32px rgba(233, 54, 46, 0.34);
}

.submit-order {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  justify-items: center;
  text-align: center;
  direction: rtl;
  gap: 0.75rem;
  min-height: 4.1rem;
  padding: 1rem 1.1rem;
  background: linear-gradient(135deg, #f2a91f, #fff0bd 48%, #f6bd4b);
  box-shadow: 0 20px 46px rgba(246, 189, 75, 0.28), inset 0 1px 0 rgba(255, 255, 255, 0.45);
}

.submit-order strong {
  grid-column: 2;
  font-size: 1.18rem;
  line-height: 1;
}

.submit-order span {
  grid-column: 3;
  justify-self: end;
  direction: ltr;
  font-size: 0.96rem;
  padding-inline-start: 0.4rem;
}

.payment-trust {
  margin: -0.2rem 0 0;
  text-align: center;
  color: var(--gold-soft);
  font-weight: 850;
  font-size: 0.92rem;
}

.payment-trust::before {
  content: "✓ ";
  color: #77f2ab;
}

.checkout-form {
  position: sticky;
  bottom: 5.4rem;
  z-index: 6;
}

.global-extra-card {
  grid-template-columns: auto 1fr;
}

.global-extra-card strong {
  grid-column: 2;
}

@media (min-width: 760px) {
  .hero-card {
    background-position: center 42%;
  }
}

@media (max-width: 560px) {
  .brand-mark svg {
    width: 1.95rem;
    height: 1.95rem;
  }

  .hero-card {
    background-position: center;
  }

  .bilingual-heading {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .bilingual-heading > div:last-child {
    padding-top: 0.35rem;
    border-top: 1px solid rgba(246, 189, 75, 0.18);
  }

  .submit-order {
    grid-template-columns: 1fr;
    gap: 0.35rem;
  }

  .submit-order strong,
  .submit-order span {
    grid-column: 1;
    justify-self: center;
  }

  .checkout-form {
    bottom: 5.05rem;
  }
}
