/* ══════════════════════════════════════════════════════════
   FORMS.CSS — Shared styles for Kemah Trunk or Treat and Eats subpages
   ══════════════════════════════════════════════════════════ */

/* ── Simplified Navbar for Subpages ── */
.legal-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-nav, 1000);
  background: rgba(var(--navy-deep-rgb), 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(var(--orange-primary-rgb), 0.1);
  padding: 0.85rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.legal-nav .nav-logo-img {
  height: 44px;
  width: auto;
}
.legal-nav .nav-home-link {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--orange-primary);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 1rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(var(--orange-primary-rgb), 0.25);
  transition: all var(--transition-base);
}
.legal-nav .nav-home-link:hover {
  background: rgba(var(--orange-primary-rgb), 0.12);
  border-color: var(--orange-primary);
}
.legal-nav .nav-home-link svg {
  width: 16px;
  height: 16px;
}

/* ── Page Hero ── */
.page-hero {
  position: relative;
  padding: 10rem 2rem 4rem;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(165deg, var(--navy-deep) 0%, var(--navy) 40%, var(--navy-light) 100%);
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -20%;
  width: 60%;
  height: 120%;
  background: radial-gradient(ellipse, rgba(var(--orange-primary-rgb), 0.08) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -15%;
  width: 50%;
  height: 100%;
  background: radial-gradient(ellipse, rgba(var(--halloween-purple-rgb), 0.06) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero .section-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--orange-primary);
  background: rgba(var(--orange-primary-rgb), 0.1);
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(var(--orange-primary-rgb), 0.2);
  margin-bottom: 1.5rem;
}
.page-hero h1 {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 800;
  color: var(--white);
  margin: 0 0 1rem;
  line-height: 1.15;
}
.page-hero h1 .highlight {
  color: var(--orange-primary);
}
.page-hero .hero-subtitle {
  font-family: var(--font-body);
  font-size: 1.1rem;
  color: var(--gray-light);
  margin: 0;
  max-width: 620px;
  margin-inline: auto;
  line-height: 1.6;
}

/* ── Page Content ── */
.page-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 2rem 6rem;
}
.page-content.wide {
  max-width: 1100px;
}

/* ── Glass Form Card ── */
.form-card {
  background: rgba(26, 45, 71, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(232, 146, 42, 0.15);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin-bottom: 2rem;
  transition: border-color var(--transition-base);
}
.form-card:hover {
  border-color: rgba(232, 146, 42, 0.3);
}
.form-card h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 0.5rem;
}
.form-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--orange-primary);
  margin: 1.5rem 0 0.75rem;
}
.form-card p {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--gray-light);
  margin: 0 0 1.5rem;
}

/* ── Form Elements ── */
.form-group {
  margin-bottom: 1.25rem;
}
.form-group label {
  display: block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gray-light);
  margin-bottom: 0.45rem;
  letter-spacing: 0.02em;
}
.form-group label .required {
  color: var(--orange-primary);
  margin-left: 2px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--white);
  background: rgba(10, 22, 40, 0.8);
  border: 1px solid rgba(232, 146, 42, 0.15);
  border-radius: var(--radius-md);
  outline: none;
  transition: border-color var(--transition-base), box-shadow var(--transition-base);
  box-sizing: border-box;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--orange-primary);
  box-shadow: 0 0 0 3px rgba(232, 146, 42, 0.15);
}
.form-group select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23e8922a' viewBox='0 0 16 16'%3E%3Cpath d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
  cursor: pointer;
}
.form-group select option {
  background: #0a1628;
  color: var(--white);
}
.form-group textarea {
  resize: vertical;
  min-height: 120px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

/* ── Checkbox / Radio Groups ── */
.checkbox-group {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.35rem;
}
.checkbox-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
}
.checkbox-item input[type="checkbox"],
.checkbox-item input[type="radio"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  accent-color: var(--orange-primary);
  cursor: pointer;
}
.checkbox-item span {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--gray-light);
}

/* ── Submit Button ── */
.btn-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 2.5rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  background: linear-gradient(135deg, #e8922a, #f0a944);
  border: none;
  border-radius: var(--radius-full);
  cursor: pointer;
  transition: all var(--transition-base);
  box-shadow: 0 4px 20px rgba(232, 146, 42, 0.3);
  margin-top: 1rem;
  letter-spacing: 0.02em;
}
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(232, 146, 42, 0.45);
  background: linear-gradient(135deg, #f0a944, #e8922a);
}
.btn-submit:active {
  transform: translateY(0);
}

/* ── Info Cards (non-form content) ── */
.info-card {
  background: rgba(26, 45, 71, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(232, 146, 42, 0.15);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  margin-bottom: 2rem;
  transition: border-color var(--transition-base);
}
.info-card:hover {
  border-color: rgba(232, 146, 42, 0.3);
}
.info-card h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 1rem;
}
.info-card h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--orange-primary);
  margin: 1.5rem 0 0.5rem;
}
.info-card p,
.info-card li {
  font-family: var(--font-body);
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--gray-light);
}
.info-card p {
  margin: 0 0 1rem;
}
.info-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
}
.info-card li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
}
.info-card li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6em;
  width: 6px;
  height: 6px;
  background: var(--orange-primary);
  border-radius: 50%;
}

/* ── Sponsor Tier Cards ── */
.tier-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}
.tier-card {
  background: rgba(26, 45, 71, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(232, 146, 42, 0.15);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: all var(--transition-base);
  position: relative;
  overflow: hidden;
}
.tier-card:hover {
  border-color: rgba(232, 146, 42, 0.4);
  transform: translateY(-4px);
}
.tier-card.featured {
  border-color: rgba(232, 146, 42, 0.35);
  box-shadow: 0 0 40px rgba(232, 146, 42, 0.1);
}
.tier-card.featured::before {
  content: 'Most Popular';
  position: absolute;
  top: 14px;
  right: -32px;
  background: linear-gradient(135deg, #e8922a, #f0a944);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 0.3rem 2.5rem;
  transform: rotate(45deg);
}
.tier-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.tier-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin: 0 0 0.5rem;
}
.tier-price {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--orange-primary);
  margin: 0.5rem 0;
}
.tier-price span {
  font-size: 1rem;
  color: var(--gray-muted);
  font-weight: 400;
}
.tier-card ul {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 0;
  text-align: left;
}
.tier-card li {
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--gray-light);
  padding: 0.45rem 0;
  padding-left: 1.6rem;
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.tier-card li:last-child {
  border-bottom: none;
}
.tier-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #22c55e;
  font-weight: 700;
}

/* ── Contact Info Sidebar ── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 2rem;
  align-items: start;
}
.contact-sidebar .info-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.5rem;
}
.contact-sidebar .info-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(232, 146, 42, 0.1);
  border: 1px solid rgba(232, 146, 42, 0.2);
  border-radius: var(--radius-md);
  color: var(--orange-primary);
}
.contact-sidebar .info-icon svg {
  width: 20px;
  height: 20px;
}
.contact-sidebar .info-label {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--orange-primary);
  margin: 0 0 0.25rem;
}
.contact-sidebar .info-value {
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--gray-light);
  margin: 0;
  line-height: 1.5;
}
.contact-sidebar .info-value a {
  color: var(--orange-primary);
  text-decoration: none;
  transition: color var(--transition-base);
}
.contact-sidebar .info-value a:hover {
  color: var(--orange-glow);
}

/* ── Page Footer ── */
.page-footer {
  border-top: 1px solid rgba(var(--orange-primary-rgb), 0.1);
  padding: 2rem;
  text-align: center;
}
.page-footer p {
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--gray-muted);
  margin: 0.25rem 0;
}
.page-footer a {
  color: var(--orange-primary);
  text-decoration: none;
  transition: color var(--transition-base);
}
.page-footer a:hover {
  color: var(--orange-glow);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .page-hero {
    padding: 8rem 1.25rem 3rem;
  }
  .page-content {
    padding: 2.5rem 1.25rem 4rem;
  }
  .form-card,
  .info-card {
    padding: 1.75rem;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .contact-layout {
    grid-template-columns: 1fr;
  }
  .tier-grid {
    grid-template-columns: 1fr;
  }
}

/* ── Form Submission Feedback & Success States ── */
.btn-submit:disabled,
.btn-submit.btn-loading {
  opacity: 0.75;
  cursor: not-allowed;
  pointer-events: none;
  background: linear-gradient(135deg, #71717a, #52525b) !important;
  box-shadow: none !important;
}

.spinner-icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  border: 2.5px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  border-top-color: #ffffff;
  animation: spin 0.8s linear infinite;
  vertical-align: middle;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

.form-success-box {
  display: none;
  text-align: center;
  padding: 3rem 2rem;
  background: rgba(4, 18, 36, 0.95);
  border: 2px solid #22c55e;
  border-radius: var(--radius-lg, 16px);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.8), 0 0 30px rgba(34, 197, 94, 0.25);
  animation: fadeInSuccess 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes fadeInSuccess {
  from { opacity: 0; transform: translateY(12px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.success-icon-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.15);
  border: 2px solid #22c55e;
  color: #22c55e;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 2.2rem;
  box-shadow: 0 0 25px rgba(34, 197, 94, 0.4);
}

.form-success-box h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 800;
  color: #ffffff;
  margin: 0 0 0.8rem;
}

.form-success-box p {
  color: #cbd5e1;
  font-size: 1.05rem;
  line-height: 1.65;
  max-width: 580px;
  margin: 0 auto 1.8rem;
}

.form-success-box .success-details-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  padding: 0.6rem 1.4rem;
  border-radius: 30px;
  color: #4ade80;
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 2rem;
}

.success-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.form-error-banner {
  display: none;
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid rgba(239, 68, 68, 0.5);
  color: #fca5a5;
  padding: 1rem 1.25rem;
  border-radius: var(--radius-md, 10px);
  margin-bottom: 1.5rem;
  font-size: 0.92rem;
  line-height: 1.5;
}

.form-error-banner a {
  color: #fbbf24;
  text-decoration: underline;
  font-weight: 700;
}

/* ══════════════════════════════════════════════════════════
   VENDOR REGISTRATION & INTAKE HUBS (v127.0)
   ══════════════════════════════════════════════════════════ */

/* Approval Warning Banner */
.approval-alert-banner {
  background: rgba(245, 158, 11, 0.12);
  border: 2px solid #f59e0b;
  border-radius: var(--radius-lg, 16px);
  padding: 1.75rem 2rem;
  margin-bottom: 2.5rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4), 0 0 25px rgba(245, 158, 11, 0.2);
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
}
.approval-alert-banner .alert-icon {
  font-size: 2.2rem;
  line-height: 1;
  flex-shrink: 0;
  margin-top: 2px;
}
.approval-alert-banner .alert-content h2,
.approval-alert-banner .alert-content h3 {
  font-family: var(--font-heading);
  color: #fbbf24;
  margin: 0 0 0.5rem;
  font-size: 1.35rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.approval-alert-banner .alert-status-pill {
  background: #f59e0b;
  color: #000;
  font-size: 0.75rem;
  font-weight: 800;
  padding: 0.2rem 0.65rem;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.approval-alert-banner p {
  color: #e2e8f0;
  font-size: 0.96rem;
  line-height: 1.65;
  margin: 0 0 0.75rem;
}
.approval-alert-banner p:last-child {
  margin-bottom: 0;
}
.approval-alert-banner .highlight-notice {
  font-weight: 700;
  color: #ffffff;
}

/* Registration Steps / How it Works */
.registration-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.25rem;
  margin: 2rem 0 3rem;
}
.step-card {
  background: rgba(10, 22, 40, 0.7);
  border: 1px solid rgba(232, 146, 42, 0.2);
  border-radius: var(--radius-md, 12px);
  padding: 1.25rem;
  position: relative;
}
.step-number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--orange-primary, #e8922a);
  color: #fff;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
}
.step-card h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: #fff;
  margin: 0 0 0.35rem;
}
.step-card p {
  font-size: 0.88rem;
  color: var(--gray-light, #94a3b8);
  margin: 0;
  line-height: 1.5;
}

/* Pricing Grid & Cards */
.vendor-pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.75rem;
  margin-bottom: 3rem;
}
.vendor-card {
  background: rgba(26, 45, 71, 0.65);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1.5px solid rgba(232, 146, 42, 0.25);
  border-radius: var(--radius-lg, 16px);
  padding: 2.25rem 1.75rem;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.vendor-card:hover {
  transform: translateY(-6px);
  border-color: rgba(232, 146, 42, 0.6);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(232, 146, 42, 0.2);
}
.vendor-card.featured-card {
  border-color: #fbbf24;
  background: linear-gradient(180deg, rgba(30, 58, 95, 0.75) 0%, rgba(18, 34, 58, 0.85) 100%);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.5), 0 0 35px rgba(251, 191, 36, 0.25);
}
.vendor-card.restaurant-card {
  border-color: rgba(45, 212, 191, 0.4);
}
.vendor-card.restaurant-card:hover {
  border-color: #2dd4bf;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5), 0 0 30px rgba(45, 212, 191, 0.2);
}
.card-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 0.35rem 0.85rem;
  border-radius: 20px;
  margin-bottom: 1rem;
  width: fit-content;
}
.badge-early {
  background: rgba(239, 68, 68, 0.18);
  border: 1px solid rgba(239, 68, 68, 0.4);
  color: #f87171;
}
.badge-regular {
  background: rgba(232, 146, 42, 0.18);
  border: 1px solid rgba(232, 146, 42, 0.4);
  color: #fbbf24;
}
.badge-premium {
  background: rgba(251, 191, 36, 0.2);
  border: 1px solid #fbbf24;
  color: #fbbf24;
}
.badge-restaurant {
  background: rgba(45, 212, 191, 0.18);
  border: 1px solid rgba(45, 212, 191, 0.4);
  color: #2dd4bf;
}
.vendor-card h3 {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  color: #ffffff;
  margin: 0 0 0.5rem;
  line-height: 1.25;
}
.vendor-card .card-subtitle {
  font-size: 0.9rem;
  color: #94a3b8;
  margin-bottom: 1.25rem;
  min-height: 2.7rem;
}
.card-price-wrap {
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.card-price {
  font-family: var(--font-heading);
  font-size: 2.75rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1;
  display: flex;
  align-items: baseline;
  gap: 8px;
}
.price-currency {
  font-size: 1.6rem;
  color: #fbbf24;
}
.price-strikethrough {
  font-size: 1.25rem;
  color: #64748b;
  text-decoration: line-through;
  font-weight: 600;
}
.price-period {
  font-size: 0.85rem;
  color: #94a3b8;
  font-weight: 500;
  margin-top: 4px;
}
.card-specs {
  list-style: none;
  padding: 0;
  margin: 0 0 1.75rem;
  flex-grow: 1;
}
.card-specs li {
  padding: 0.45rem 0 0.45rem 1.7rem;
  position: relative;
  font-size: 0.9rem;
  line-height: 1.55;
  color: #cbd5e1;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
}
.card-specs li:last-child {
  border-bottom: none;
}
.card-specs li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0.45rem;
  color: #22c55e;
  font-weight: 800;
}
.card-specs li.spec-no-elec::before {
  content: '⚡';
  color: #f87171;
}
.card-specs li.spec-elec::before {
  content: '⚡';
  color: #38bdf8;
}
.card-specs strong {
  color: #ffffff;
}
.card-action-wrap {
  margin-top: auto;
}
.btn-card-checkout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 0.9rem 1.25rem;
  border-radius: var(--radius-full, 9999px);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: all 0.25s ease;
  box-sizing: border-box;
}
.btn-card-standard {
  background: linear-gradient(135deg, #e8922a, #f59e0b);
  color: #fff;
  box-shadow: 0 4px 18px rgba(232, 146, 42, 0.35);
}
.btn-card-standard:hover {
  background: linear-gradient(135deg, #f59e0b, #e8922a);
  box-shadow: 0 8px 25px rgba(232, 146, 42, 0.5);
  transform: translateY(-2px);
}
.btn-card-premium {
  background: linear-gradient(135deg, #f59e0b, #fbbf24);
  color: #000;
  font-weight: 800;
  box-shadow: 0 4px 20px rgba(251, 191, 36, 0.4);
}
.btn-card-premium:hover {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  box-shadow: 0 8px 30px rgba(251, 191, 36, 0.6);
  transform: translateY(-2px);
}
.btn-card-restaurant {
  background: linear-gradient(135deg, #0d9488, #2dd4bf);
  color: #fff;
  box-shadow: 0 4px 18px rgba(45, 212, 191, 0.35);
}
.btn-card-restaurant:hover {
  background: linear-gradient(135deg, #2dd4bf, #0d9488);
  box-shadow: 0 8px 25px rgba(45, 212, 191, 0.5);
  transform: translateY(-2px);
}
.card-approval-note {
  font-size: 0.76rem;
  color: #94a3b8;
  text-align: center;
  margin-top: 0.65rem;
  display: block;
}

/* Special Callouts: Advertisers & Sponsors */
.special-callouts-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.75rem;
  margin-bottom: 3rem;
}
.callout-card {
  background: rgba(26, 45, 71, 0.6);
  border: 1.5px solid rgba(232, 146, 42, 0.2);
  border-radius: var(--radius-lg, 16px);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.callout-card.advertiser-callout {
  border-color: rgba(147, 51, 234, 0.4);
  background: linear-gradient(180deg, rgba(88, 28, 135, 0.25) 0%, rgba(26, 45, 71, 0.6) 100%);
}
.callout-card.sponsor-callout {
  border-color: rgba(56, 189, 248, 0.4);
  background: linear-gradient(180deg, rgba(3, 105, 161, 0.25) 0%, rgba(26, 45, 71, 0.6) 100%);
}
.callout-card h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: #fff;
  margin: 0 0 0.65rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.callout-card p {
  color: #cbd5e1;
  font-size: 0.92rem;
  line-height: 1.6;
  margin: 0 0 1.25rem;
}
.callout-card .btn-callout {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-full, 9999px);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
  width: fit-content;
}
.btn-advertiser-claim {
  background: linear-gradient(135deg, #9333ea, #a855f7);
  color: #fff;
  box-shadow: 0 4px 15px rgba(168, 85, 247, 0.35);
}
.btn-advertiser-claim:hover {
  background: linear-gradient(135deg, #a855f7, #9333ea);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(168, 85, 247, 0.5);
}
.btn-sponsor-inquire {
  background: linear-gradient(135deg, #0284c7, #38bdf8);
  color: #fff;
  box-shadow: 0 4px 15px rgba(56, 189, 248, 0.35);
}
.btn-sponsor-inquire:hover {
  background: linear-gradient(135deg, #38bdf8, #0284c7);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(56, 189, 248, 0.5);
}

/* Marketing Strategy Box */
.marketing-strategy-container {
  background: linear-gradient(145deg, rgba(30, 58, 95, 0.7), rgba(15, 23, 42, 0.85));
  border: 2px solid rgba(251, 191, 36, 0.4);
  border-radius: var(--radius-lg, 16px);
  padding: 2.25rem;
  margin-bottom: 3rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}
.strategy-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 1.25rem;
}
.strategy-header .strategy-icon {
  font-size: 2.2rem;
}
.strategy-header h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: #fbbf24;
  margin: 0;
}
.strategy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
  margin-top: 1.25rem;
}
.strategy-item {
  background: rgba(10, 22, 40, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md, 12px);
  padding: 1.25rem;
}
.strategy-item h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: #fff;
  margin: 0 0 0.5rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.strategy-item p {
  color: #94a3b8;
  font-size: 0.88rem;
  line-height: 1.55;
  margin: 0;
}

/* Rules Accordion / Cards */
.rules-section-container {
  background: rgba(26, 45, 71, 0.6);
  border: 1px solid rgba(232, 146, 42, 0.15);
  border-radius: var(--radius-lg, 16px);
  padding: 2.25rem;
  margin-bottom: 3rem;
}
.rules-section-container h2 {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  color: #fff;
  margin: 0 0 0.5rem;
}
.rules-intro {
  color: #94a3b8;
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.rules-list-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.rule-item-card {
  background: rgba(10, 22, 40, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-left: 3px solid #fbbf24;
  border-radius: var(--radius-md, 10px);
  padding: 1rem 1.25rem;
}
.rule-item-card h4 {
  font-family: var(--font-heading);
  font-size: 0.98rem;
  color: #ffffff;
  margin: 0 0 0.35rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.rule-num {
  font-size: 0.75rem;
  font-weight: 800;
  background: rgba(251, 191, 36, 0.2);
  color: #fbbf24;
  padding: 2px 6px;
  border-radius: 4px;
}
.rule-item-card p {
  font-size: 0.86rem;
  color: #94a3b8;
  line-height: 1.5;
  margin: 0;
}

/* Intake Form Conditional Section */
#restaurant-details-section {
  background: rgba(13, 148, 136, 0.08);
  border: 1.5px solid rgba(45, 212, 191, 0.3);
  border-radius: var(--radius-md, 12px);
  padding: 1.5rem;
  margin: 1.5rem 0;
  transition: all 0.3s ease;
}
#restaurant-details-section h3 {
  color: #2dd4bf;
  margin-top: 0;
}
.acknowledgment-group {
  margin: 2rem 0;
  padding: 1.5rem;
  background: rgba(10, 22, 40, 0.75);
  border: 1.5px solid rgba(251, 191, 36, 0.25);
  border-radius: var(--radius-md, 12px);
}
.acknowledgment-group h3 {
  color: #fbbf24;
  margin-top: 0;
  margin-bottom: 1rem;
}
.acknowledgment-group .checkbox-item {
  align-items: flex-start;
  margin-bottom: 1rem;
}
.acknowledgment-group .checkbox-item:last-child {
  margin-bottom: 0;
}
.acknowledgment-group .checkbox-item input[type="checkbox"] {
  margin-top: 3px;
}
.acknowledgment-group .checkbox-item span {
  font-size: 0.88rem;
  line-height: 1.5;
  color: #e2e8f0;
}

/* Global overflow protection */
html, body {
  overflow-x: hidden;
  max-width: 100vw;
}

/* Responsive adjustments */
.subpage-partner-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: rgba(4, 12, 24, 0.92);
  border: 1.5px solid #fbbf24;
  border-radius: 30px;
  padding: 6px 16px;
  margin-bottom: 1.25rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.5);
  max-width: 100%;
  box-sizing: border-box;
}
.subpage-partner-pill span {
  color: #f1f5f9;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 900px) {
  .special-callouts-grid {
    grid-template-columns: 1fr;
  }
  .rules-list-grid {
    grid-template-columns: 1fr;
  }
  .vendor-pricing-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .page-hero {
    padding: 5.5rem 1rem 2.25rem !important;
  }
  .page-hero h1 {
    font-size: 1.65rem !important;
    line-height: 1.2 !important;
    word-break: break-word;
  }
  .page-hero .hero-subtitle {
    font-size: 0.92rem !important;
    line-height: 1.55 !important;
  }
  .page-content {
    padding: 1.5rem 1rem 3.5rem !important;
  }
  .subpage-partner-pill {
    padding: 6px 10px;
    gap: 6px;
    border-radius: 20px;
    max-width: 100%;
  }
  .subpage-partner-pill span {
    font-size: 0.68rem;
    letter-spacing: 0.2px;
    line-height: 1.2;
    text-align: center;
    white-space: normal;
  }
  .subpage-partner-pill img {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
  }
  .approval-alert-banner {
    flex-direction: column;
    padding: 1.25rem 1rem;
    gap: 0.75rem;
  }
  .approval-alert-banner .alert-icon {
    font-size: 1.75rem;
  }
  .approval-alert-banner .alert-content h2,
  .approval-alert-banner .alert-content h3 {
    font-size: 1.15rem;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
  .approval-alert-banner .alert-status-pill {
    font-size: 0.68rem;
    padding: 0.25rem 0.55rem;
    white-space: normal;
  }
  .registration-steps {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }
  .vendor-card {
    padding: 1.5rem 1.15rem;
  }
  .card-badge {
    font-size: 0.72rem;
    white-space: normal;
    text-align: left;
    line-height: 1.3;
  }
  .card-price {
    font-size: 2.25rem;
  }
  .form-card {
    padding: 1.5rem 1.15rem;
  }
  .marketing-strategy-container {
    padding: 1.5rem 1.15rem;
  }
  .rules-section-container {
    padding: 1.5rem 1.15rem;
  }
}



