/* Standalone Ni Hao / KIBO catering order pages */
.catering-standalone {
  background: #0a0e14 !important;
  color: #f1f5f9;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.55;
}

.catering-standalone .hero {
  padding: 88px 20px 48px;
  background: linear-gradient(180deg, #0a0e14 0%, #121820 100%);
}

.catering-standalone .hero-title {
  font-size: clamp(1.85rem, 6vw, 2.75rem);
  letter-spacing: -0.02em;
}

.catering-standalone .hero-subtitle {
  font-size: clamp(1rem, 3vw, 1.2rem);
  color: #cbd5e1;
  max-width: 36rem;
  margin-left: auto;
  margin-right: auto;
}

.catering-welcome {
  max-width: 42rem;
  margin: 0 auto 1.5rem;
  text-align: center;
  color: #94a3b8;
  font-size: 1.05rem;
}

.catering-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 42rem;
  margin: 0 auto 2rem;
}

@media (max-width: 640px) {
  .catering-steps {
    grid-template-columns: 1fr;
  }
}

.catering-step {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(179, 38, 30, 0.25);
  border-radius: 12px;
  padding: 14px 16px;
  text-align: center;
}

.catering-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(179, 38, 30, 0.2);
  color: #b3261e;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 6px;
}

.catering-step p {
  margin: 0;
  font-size: 0.9rem;
  color: #e2e8f0;
  font-weight: 600;
}

.catering-step span {
  display: block;
  font-size: 0.75rem;
  color: #94a3b8;
  margin-top: 4px;
  font-weight: 400;
}

.catering-cat-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.catering-cat-nav button {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #e2e8f0;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.catering-theme-chinese .catering-cat-nav button:hover,
.catering-theme-chinese .catering-cat-nav button:focus {
  border-color: #f87171;
  background: rgba(248, 113, 113, 0.12);
}

.catering-theme-sushi .catering-cat-nav button:hover,
.catering-theme-sushi .catering-cat-nav button:focus {
  border-color: #60a5fa;
  background: rgba(96, 165, 250, 0.12);
}

.catering-policy-card {
  background: rgba(179, 38, 30, 0.08);
  border: 1px solid rgba(179, 38, 30, 0.35);
  border-radius: 16px;
  padding: 1.25rem 1.5rem;
  margin-bottom: 2rem;
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}

.catering-policy-card h3 {
  color: #b3261e;
  font-size: 1.1rem;
  font-weight: 700;
  text-align: center;
  margin: 0 0 0.75rem;
}

.catering-policy-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
  color: #cbd5e1;
  font-size: 0.9rem;
}

.catering-policy-card li {
  padding: 0.35rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.catering-policy-card li:last-child {
  border-bottom: none;
}

.catering-standalone details.catering-cat {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 14px;
  margin-bottom: 10px;
}

.catering-standalone details.catering-cat summary {
  padding: 1rem 1.25rem;
  font-size: 1.05rem;
  user-select: none;
}

.catering-standalone select option {
  background: #1e293b;
  color: #fff;
}

.catering-standalone #floatingCartBtn {
  font-size: 1rem;
  padding: 14px 20px;
  border-radius: 999px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.45);
  z-index: 900;
}

/* Cart / checkout sit above fixed navbar (z-index 1000) */
.catering-standalone .modal {
  z-index: 1100;
}

.catering-standalone .modal.active {
  align-items: flex-start;
  justify-content: center;
  padding: 5.5rem 1rem 1.5rem;
  box-sizing: border-box;
  overflow-y: auto;
  backdrop-filter: blur(4px);
}

.catering-standalone .modal.active > div {
  max-height: calc(100vh - 7rem);
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 480px) {
  .catering-standalone .modal.active {
    padding-top: 5rem;
  }

  .catering-standalone .modal.active > div {
    max-height: calc(100vh - 6.5rem);
  }
}

.catering-crosslink {
  text-align: center;
  margin-top: 2rem;
  padding: 1rem;
  font-size: 0.9rem;
  color: #94a3b8;
}

.catering-crosslink a {
  color: #b3261e;
  text-decoration: underline;
}

