:root {
  --order-card: rgba(255, 255, 255, 0.78);
  --order-card-strong: rgba(255, 255, 255, 0.88);
  --order-border: rgba(255, 255, 255, 0.72);
  --order-text: #261a1a;
  --order-text-soft: #5d4d4d;

  --order-coral: #ff6f6f;
  --order-coral-hover: #ff6262;
  --order-pink: #ff92c8;
  --order-blue: #abd8ff;
  --order-lavender: #b7b0ff;

  --order-shadow: 0 22px 48px rgba(74, 43, 43, 0.08);
}

/* =========================
   PAGE BASE
========================= */

body.page-order {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--order-text);
  overflow-x: hidden;
}

.page-order .top-offset {
  height: calc(var(--announcement-height) + var(--header-height));
}

.page-order .order-btn,
.page-order .mobile-order-btn {
  display: none !important;
}

/* =========================
   DELIVERY PLATFORMS
========================= */

.order-platforms {
  position: relative;
  padding: clamp(3.5rem, 6vw, 5.5rem) 1rem;
  background: transparent !important;
}

.order-platforms__inner,
.order-help__inner {
  width: min(1240px, 100%);
  margin: 0 auto;
}

.order-platforms__intro {
  max-width: 720px;
  margin: 0 auto 2rem;
  text-align: center;
}

.order-platforms__eyebrow,
.order-help__eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  margin: 0;
  padding: 0.56rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 111, 111, 0.14);
  box-shadow: 0 10px 24px rgba(83, 47, 47, 0.06);
  color: #b25063;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.order-platforms__intro .order-platforms__eyebrow {
  margin-left: auto;
  margin-right: auto;
}

.order-platforms__intro h2 {
  margin: 1rem 0 0;
  font-family: "Fraunces", serif;
  font-size: clamp(2.3rem, 4.8vw, 4.2rem);
  line-height: 0.96;
  letter-spacing: -0.04em;
  color: #241616;
}

.order-platforms__text {
  max-width: 620px;
  margin: 1rem auto 0;
  color: #625050;
  line-height: 1.72;
  font-weight: 600;
}

.order-platforms__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.3rem;
  align-items: stretch;
}

/* =========================
   ORDER CARDS
========================= */

.order-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 470px;
  padding: 1.7rem;
  border-radius: 32px;

  background:
    radial-gradient(circle at 18% 16%, rgba(255, 255, 255, 0.58), transparent 28%),
    radial-gradient(circle at 88% 18%, rgba(255, 146, 200, 0.10), transparent 26%),
    rgba(255, 255, 255, 0.78);

  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  border: 1px solid rgba(255, 255, 255, 0.78);

  box-shadow:
    0 18px 40px rgba(74, 43, 43, 0.08),
    0 6px 18px rgba(74, 43, 43, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.62);

  overflow: hidden;
}

.order-card::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  height: 6px;
  background: linear-gradient(
    90deg,
    var(--order-coral) 0%,
    var(--order-pink) 48%,
    var(--order-blue) 100%
  );
}

.order-card__badge {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 1.3rem;
  padding: 0.46rem 0.78rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 111, 111, 0.12);
  color: #b25063;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.order-card__logo-wrap {
  display: flex;
  align-items: center;
  height: 72px;
  margin-bottom: 1.25rem;
}

.order-card__logo {
  display: block;
  width: auto;
  max-width: 220px;
  object-fit: contain;
}

.order-card__logo--doordash {
  height: 28px;
}

.order-card__logo--grubhub {
  height: 32px;
}

.order-card__logo--uber {
  height: 38px;
}

.order-card p {
  margin: 0.95rem 0 0;
  color: #5a4b4b;
  line-height: 1.72;
  font-weight: 600;
  max-width: 28ch;
}

.order-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  margin-top: auto;
  align-self: flex-start;
  padding: 0 1.45rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  font-size: 1rem;
  letter-spacing: 0.01em;

  color: #ffffff;
  background: var(--order-coral);
  border: 1px solid var(--order-coral);
  box-shadow: 0 16px 32px rgba(255, 111, 111, 0.24);

  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background-color 0.22s ease,
    border-color 0.22s ease;
}

.order-card__button:hover {
  transform: translateY(-2px);
  background: var(--order-coral-hover);
  border-color: var(--order-coral-hover);
  box-shadow: 0 20px 38px rgba(255, 111, 111, 0.30);
}

.order-card__button--disabled {
  background: rgba(216, 209, 203, 0.86);
  border-color: rgba(216, 209, 203, 0.86);
  color: #6a625d;
  box-shadow: none;
  cursor: default;
}

.order-card__button--disabled:hover {
  transform: none;
  background: rgba(216, 209, 203, 0.86);
  border-color: rgba(216, 209, 203, 0.86);
  box-shadow: none;
}

.order-card--doordash {
  background:
    radial-gradient(circle at top right, rgba(255, 111, 111, 0.12), transparent 30%),
    rgba(255, 255, 255, 0.80);
}

.order-card--grubhub {
  background:
    radial-gradient(circle at top right, rgba(255, 146, 200, 0.13), transparent 30%),
    rgba(255, 255, 255, 0.80);
}

.order-card--uber {
  background:
    radial-gradient(circle at top right, rgba(171, 216, 255, 0.16), transparent 30%),
    rgba(255, 255, 255, 0.80);
}

.order-card.is-coming-soon {
  opacity: 0.94;
}

/* =========================
   HELP SECTION
========================= */

.order-help {
  padding: clamp(3.5rem, 6vw, 5rem) 1rem clamp(4.2rem, 6vw, 5.6rem);
  background: transparent !important;
}

.order-help__content {
  max-width: 860px;
  padding: 2rem;
  border-radius: 32px;

  background:
    radial-gradient(circle at 12% 12%, rgba(255, 146, 200, 0.12), transparent 24%),
    radial-gradient(circle at 88% 88%, rgba(171, 216, 255, 0.10), transparent 24%),
    rgba(255, 255, 255, 0.78);

  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  border: 1px solid rgba(255, 255, 255, 0.78);

  box-shadow:
    var(--order-shadow),
    inset 0 1px 0 rgba(255, 255, 255, 0.62);
}

.order-help__content h2 {
  margin: 1rem 0 0;
  font-family: "Fraunces", serif;
  font-size: clamp(2rem, 4vw, 3.3rem);
  line-height: 0.98;
  letter-spacing: -0.04em;
  color: #241616;
}

.order-help__content p:last-of-type {
  margin: 1rem 0 0;
  color: #5a4b4b;
  line-height: 1.72;
  font-weight: 600;
}

.order-help__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.4rem;
}

.order-help__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.01em;
  transition:
    transform 0.22s ease,
    box-shadow 0.22s ease,
    background-color 0.22s ease,
    border-color 0.22s ease;
}

.order-help__button--primary {
  color: #ffffff;
  background: var(--order-coral);
  border: 1px solid var(--order-coral);
  box-shadow: 0 16px 32px rgba(255, 111, 111, 0.24);
}

.order-help__button--primary:hover {
  background: var(--order-coral-hover);
  border-color: var(--order-coral-hover);
  box-shadow: 0 20px 38px rgba(255, 111, 111, 0.30);
}

.order-help__button--secondary {
  color: #261a1a;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 111, 111, 0.16);
  box-shadow: 0 12px 26px rgba(78, 53, 53, 0.07);
}

.order-help__button--secondary:hover {
  background: #ffffff;
  box-shadow: 0 16px 30px rgba(78, 53, 53, 0.10);
}

.order-help__button:hover {
  transform: translateY(-2px);
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1024px) {
  .order-platforms__grid {
    grid-template-columns: 1fr;
  }

  .order-card {
    min-height: unset;
  }
}

@media (max-width: 768px) {
  .page-order .top-offset {
    height: calc(var(--announcement-height) + var(--header-height));
  }

  .order-platforms {
    padding: 3rem 1rem;
  }

  .order-help__content {
    padding: 1.4rem;
    border-radius: 24px;
  }

  .order-help__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .order-help__button,
  .order-card__button {
    width: 100%;
  }

  .order-card {
    padding: 1.3rem;
    border-radius: 26px;
  }

  .order-card__logo-wrap {
    height: 60px;
  }

  .order-card__logo--doordash {
    height: 24px;
  }

  .order-card__logo--grubhub {
    height: 28px;
  }

  .order-card__logo--uber {
    height: 34px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .order-card__button,
  .order-help__button {
    transition: none;
  }
}