﻿@import url("https://fonts.googleapis.com/css2?family=Assistant:wght@400;500;600;700;800&family=Heebo:wght@400;500;600;700;800&family=Rubik:wght@400;500;600;700;800&display=swap");

:root {
  --app-font-primary: "Assistant";
  --app-font-previous: "Heebo", "Rubik", Arial, sans-serif;
  --app-font-family: var(--app-font-primary), var(--app-font-previous);
  --ink: #111827;
  --muted: #6b7280;
  --mint: #fff7de;
  --wave: #f9e7b7;
  --accent: #f1c232;
  --accent-dark: #d19e18;
  --rose: #f1c232;
  --surface: #ffffff;
  --line: rgba(15, 23, 42, 0.12);
  --radius: 20px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--app-font-family);
  color: var(--ink);
  background: #ffffff;
  min-height: 100vh;
}

html[lang^="he"] body {
  font-family: var(--app-font-family);
}

html[lang^="he"] h1,
html[lang^="he"] h2,
html[lang^="he"] h3,
html[lang^="he"] h4,
html[lang^="he"] h5,
html[lang^="he"] h6,
html[lang^="he"] .hero-title {
  font-family: var(--app-font-family);
}

#app {
  min-height: 100vh;
}

.shell {
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
  padding: 24px 20px 80px;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.hero h1 {
  font-family: var(--app-font-family);
  margin: 0;
  font-size: 32px;
}

.navbar {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.navbar a {
  text-decoration: none;
  color: var(--muted);
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
}

.navbar a.active {
  background: rgba(241, 194, 50, 0.18);
  border-color: rgba(241, 194, 50, 0.45);
  color: var(--accent-dark);
}

.surface {
  background: var(--surface);
  border-radius: var(--radius);
  padding: 20px;
}

.legal-links {
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: center;
}

.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}

.card {
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  background: white;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.card.dim {
  opacity: 0.7;
}

.card.is-event {
  border-style: dashed;
  border-color: rgba(14, 165, 233, 0.35);
  background: rgba(14, 165, 233, 0.03);
}

.card.is-appointment {
  border-color: rgba(15, 118, 110, 0.35);
  background: rgba(15, 118, 110, 0.04);
}

.card h3 {
  margin: 0;
  font-size: 18px;
}

.card .meta {
  color: var(--muted);
  font-size: 14px;
}

button {
  border: none;
  padding: 10px 16px;
  border-radius: 12px;
  background: var(--accent);
  color: white;
  font-family: inherit;
  font-weight: 600;
  cursor: pointer;
}

button.secondary {
  background: #ffffff;
  color: var(--ink);
  border: 1px solid var(--line);
}

button.secondary.active {
  background: rgba(241, 194, 50, 0.18);
  border-color: rgba(241, 194, 50, 0.45);
  color: var(--accent-dark);
}

button.icon-btn {
  width: 36px;
  height: 36px;
  padding: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

label {
  display: block;
  font-size: 13px;
  margin-bottom: 6px;
  color: var(--muted);
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-family: inherit;
}

form {
  display: grid;
  gap: 12px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.form-grid .span-2 {
  grid-column: 1 / -1;
}

.profile-avatar-section {
  display: grid;
  gap: 10px;
}

.profile-avatar-editor {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.profile-avatar-frame {
  position: relative;
  width: 96px;
  height: 96px;
  flex: 0 0 auto;
}

.profile-avatar-preview {
  width: 96px;
  height: 96px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(241, 194, 50, 0.12);
  display: grid;
  place-items: center;
  font-size: 28px;
  font-weight: 700;
  color: var(--ink);
  overflow: hidden;
  flex: 0 0 auto;
}

.profile-avatar-preview img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.profile-avatar-actions {
  display: grid;
  gap: 8px;
}

.profile-avatar-edit {
  position: absolute;
  inset-inline-start: 6px;
  bottom: 6px;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(130, 205, 203, 0.9);
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(45, 72, 91, 0.16);
}

.profile-avatar-edit svg {
  width: 17px;
  height: 17px;
  display: block;
}

.profile-avatar-upload {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  cursor: pointer;
  margin: 0;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-weight: 600;
}

.notice {
  padding: 12px 14px;
  background: rgba(241, 194, 50, 0.18);
  border-radius: 12px;
  color: #7c5a00;
}

.waiver-banner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-weight: 600;
}

.waiver-notice {
  display: grid;
  gap: 8px;
}

.waiver-header {
  margin-bottom: 12px;
}

.waiver-form {
  display: grid;
  gap: 20px;
}

.waiver-section {
  background: white;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  display: grid;
  gap: 12px;
}

.waiver-questions {
  display: grid;
  gap: 10px;
}

.radio-row {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.radio-group {
  display: flex;
  gap: 12px;
  align-items: center;
}

.radio-group label {
  display: flex;
  gap: 6px;
  align-items: center;
  font-size: 13px;
  color: var(--muted);
}

.pill-radio-group {
  gap: 8px;
}

.pill-radio {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.pill-radio input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.pill-radio span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-size: 12px;
  font-weight: 600;
}

.pill-radio input:checked + span {
  border-color: var(--accent);
  background: rgba(241, 194, 50, 0.28);
  color: #7c5a00;
}

.checkbox-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-size: 13px;
  color: var(--muted);
}

.checkbox-row input {
  margin-top: 3px;
}

.checkbox-row.checkbox-accent {
  align-items: center;
  font-size: 13px;
  color: var(--muted);
}

.accent-checkbox {
  width: 18px;
  height: 18px;
  accent-color: var(--accent);
}

.pill-check {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}

.pill-check input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.pill-check-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font-size: 13px;
  font-weight: 600;
  text-align: center;
}

.pill-check input:checked + .pill-check-label {
  border-color: var(--accent);
  background: rgba(241, 194, 50, 0.28);
  color: #7c5a00;
}

.waiver-signature-grid {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) minmax(360px, 1.3fr);
  gap: 20px;
  align-items: start;
}

.waiver-checkboxes {
  display: grid;
  gap: 12px;
  align-items: start;
  justify-items: start;
}

.waiver-terms-row {
  display: grid;
  gap: 8px;
  align-items: start;
}

.waiver-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.waiver-signature-block {
  display: grid;
  gap: 12px;
}

.link-button {
  border: none;
  background: none;
  padding: 0 4px;
  color: var(--accent-dark);
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
}

.signature-pad {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  height: 160px;
  overflow: hidden;
}

.signature-pad canvas {
  width: 100%;
  height: 160px;
  display: block;
  touch-action: none;
}

.signature-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--muted);
}

.signature-hint {
  color: var(--muted);
}

.waiver-signature-block .form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.waiver-signature-block .form-grid > div {
  min-width: 0;
}

.waiver-card {
  margin-top: 18px;
}

.charges-card {
  margin-top: 18px;
}

.charge-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 10px;
}

.charge-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px 16px;
  background: white;
}

.charge-title {
  font-weight: 600;
}

.charge-meta {
  color: var(--muted);
  font-size: 13px;
}

.charge-amount {
  font-weight: 600;
  color: var(--accent);
}

@media (max-width: 720px) {
  .charge-row {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 860px) {
  .waiver-signature-grid {
    grid-template-columns: minmax(0, 1fr);
  }
}

html[dir="rtl"] .waiver-signature-grid .waiver-signature-block {
  order: 1;
}

html[dir="rtl"] .waiver-signature-grid .waiver-checkboxes {
  order: 2;
}

.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  z-index: 3000;
}

.modal {
  background: white;
  border-radius: 18px;
  max-width: 760px;
  width: min(760px, 100%);
  max-height: 80vh;
  overflow: auto;
  padding: 20px;
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.modal-close {
  width: 32px;
  height: 32px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: white;
  position: relative;
  cursor: pointer;
}

.modal-close::before,
.modal-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 2px;
  background: var(--muted);
  transform-origin: center;
}

.modal-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}

.modal-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 6px;
}

.schedule-filter-modal {
  max-width: 680px;
  max-height: min(760px, calc(100dvh - 40px));
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.schedule-filter-body {
  display: grid;
  gap: 16px;
  min-height: 0;
  overflow-y: auto;
  padding-inline: 2px;
  overscroll-behavior: contain;
  scrollbar-gutter: stable both-edges;
}

.schedule-filter-modal .modal-header,
.schedule-filter-modal .modal-actions {
  flex: 0 0 auto;
}

.schedule-filter-modal .modal-actions {
  margin-top: 14px;
  padding-top: 6px;
}

.schedule-filter-group {
  margin: 0;
  padding: 0;
  border: 0;
}

.schedule-filter-group legend {
  margin-bottom: 8px;
  color: var(--customer-ink-strong, var(--ink));
  font-weight: 800;
}

.schedule-filter-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(18px, 5vw, 42px);
  row-gap: 12px;
  align-items: center;
}

.schedule-filter-option {
  width: 100%;
  min-width: 0;
  min-height: 36px;
  padding: 7px 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--customer-ink, var(--ink));
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  cursor: pointer;
  font-weight: 700;
}

.schedule-filter-option span {
  min-width: 0;
  overflow: hidden;
  text-align: end;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.schedule-filter-option input {
  flex: 0 0 auto;
  width: 16px;
  height: 16px;
  accent-color: var(--customer-teal, var(--accent));
}

.legal-body h1,
.legal-body h2,
.legal-body h3 {
  margin-top: 18px;
}

.legal-body p,
.legal-body li {
  color: var(--muted);
  line-height: 1.7;
}

.legal-body ul {
  padding-left: 18px;
}

.event-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.9fr);
  gap: 18px;
  align-items: start;
}

@media (max-width: 840px) {
  .event-layout {
    grid-template-columns: 1fr;
  }
}

.event-card {
  border-top: 3px solid var(--event-accent, var(--accent));
}

.event-layout.is-appointment .event-highlight {
  background: rgba(15, 118, 110, 0.08);
}

.event-layout.is-appointment .event-price {
  color: #0f766e;
}

.event-cover {
  margin: -16px -16px 12px;
  border-radius: 14px 14px 0 0;
  overflow: hidden;
  background: rgba(15, 23, 42, 0.04);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
}

.event-cover img {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  max-height: none;
}

@media (max-width: 600px) {
  .event-cover img {
    max-height: none;
  }
}

.event-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.event-title-block h2 {
  margin: 0;
  font-size: 24px;
}

.event-title-row {
  display: flex;
  align-items: center;
  gap: 8px;
}

.event-time {
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
}

.event-media-actions {
  margin-top: 12px;
  display: flex;
  justify-content: flex-start;
}

.event-media-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  text-decoration: none;
}

.event-highlight {
  margin-top: 14px;
  padding: 12px;
  border-radius: 14px;
  background: #fff8e1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.event-availability {
  font-weight: 600;
  color: var(--slate);
}

.event-price {
  font-weight: 700;
  color: var(--accent);
  font-size: 18px;
}

.event-meta-grid {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
}

.event-meta-item {
  display: grid;
  gap: 4px;
}

.event-meta-label {
  font-size: 12px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.6px;
}

.event-meta-value {
  font-weight: 600;
}

.event-meta-value-row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.presenter-info-trigger {
  width: 28px;
  min-width: 28px;
  height: 28px;
  padding: 0;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: rgba(241, 194, 50, 0.14);
  color: var(--slate);
  box-shadow: none;
}

.presenter-info-trigger .icon {
  margin: 0;
}

.presenter-info-trigger .icon svg {
  width: 16px;
  height: 16px;
}

.presenter-profile-modal {
  max-width: 720px;
  width: min(720px, 100%);
}

.presenter-profile-header {
  display: flex;
  align-items: center;
  gap: 14px;
}

.presenter-profile-title h3 {
  margin: 4px 0 0;
}

.presenter-profile-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(241, 194, 50, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--slate);
  font-size: 28px;
  font-weight: 700;
  flex: 0 0 72px;
}

.presenter-profile-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.presenter-profile-body {
  display: grid;
  gap: 16px;
}

.presenter-profile-section {
  display: grid;
  gap: 10px;
}

.presenter-profile-section-title {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.7px;
  color: var(--muted);
}

.presenter-profile-contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 12px;
}

.presenter-profile-contact-item {
  display: grid;
  gap: 4px;
}

.presenter-profile-contact-label {
  color: var(--muted);
  font-size: 12px;
}

.presenter-profile-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.presenter-profile-link {
  min-width: 0;
}

.presenter-profile-description {
  margin-top: 0;
}

.event-description {
  margin-top: 14px;
  line-height: 1.6;
  color: var(--muted);
  background: rgba(241, 194, 50, 0.12);
  padding: 12px;
  border-radius: 12px;
}

.event-inline-copy {
  margin-top: 12px;
}

.event-auth {
  display: grid;
  gap: 12px;
}

.event-auth form {
  display: grid;
  gap: 8px;
}

.event-auth .login-switch {
  margin: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
}

.event-auth button:not(.social-btn) {
  width: 100%;
}

.event-auth .social-btn {
  width: 44px;
  max-width: 44px;
  flex: 0 0 44px;
}

.event-purchase-terms {
  margin-top: 16px;
  display: grid;
  gap: 8px;
}

.event-purchase-terms h4 {
  margin: 0;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--muted);
}

.event-purchase-terms .event-description {
  margin-top: 0;
}

.event-purchase-terms-section {
  display: grid;
  gap: 6px;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(248, 250, 252, 0.72);
}

.event-purchase-terms-section h5 {
  margin: 0;
  font-size: 13px;
  color: var(--ink);
}

.appointment-booking-note {
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(15, 118, 110, 0.07);
  color: #115e59;
  font-size: 14px;
}

.appointment-guests {
  display: grid;
  gap: 10px;
}

.appointment-section-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.appointment-guest-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr)) auto;
  gap: 10px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #ffffff;
}

.appointment-guest-actions {
  display: flex;
  align-items: end;
}

.appointment-guest-actions .secondary {
  width: auto;
}

.appointment-waiver {
  display: grid;
  gap: 12px;
  padding: 14px;
  border: 1px solid rgba(15, 118, 110, 0.18);
  border-radius: 14px;
  background: rgba(15, 118, 110, 0.04);
}

.appointment-waiver-copy {
  color: var(--slate);
}

.appointment-waiver-check {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
}

.appointment-waiver-check input {
  width: 18px;
  min-width: 18px;
  height: 18px;
  margin: 2px 0 0;
  padding: 0;
}

.event-description-body {
  font-size: 14px;
  color: var(--ink);
}

.pill {
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  background: rgba(15, 23, 42, 0.08);
  color: var(--muted);
}

.pill-live {
  background: rgba(245, 158, 11, 0.16);
  color: #92400e;
}

.pill-muted {
  background: rgba(148, 163, 184, 0.2);
  color: var(--muted);
}

.plan-list {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}

.plan-list h4 {
  margin: 0;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--muted);
}

.plan-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 12px;
}

.plan-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px;
  display: grid;
  gap: 6px;
  background: #ffffff;
}

.plan-name {
  font-weight: 600;
}

.schedule-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.schedule-view-toggle,
.schedule-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: nowrap;
}

.date-input {
  width: 100%;
  min-height: 42px;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
  font: inherit;
  font-variant-numeric: tabular-nums;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  color-scheme: light;
}

.date-input[data-dir="rtl"] {
  direction: rtl;
  text-align: right;
}

.date-input[data-dir="ltr"] {
  direction: ltr;
  text-align: left;
}

.date-input::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 0.72;
  filter: saturate(0) brightness(0.45);
}

.date-input:focus {
  outline: none;
  border-color: rgba(241, 194, 50, 0.7);
  box-shadow: 0 0 0 4px rgba(241, 194, 50, 0.14);
  background: #fffdfa;
}

.schedule-nav .date-input {
  min-width: 150px;
}

.schedule-week-label {
  font-weight: 600;
  font-size: 14px;
  color: var(--ink);
  margin-bottom: 12px;
}

.schedule-date {
  direction: ltr;
  unicode-bidi: isolate;
  white-space: nowrap;
}

.schedule-weekday {
  white-space: nowrap;
}

.schedule-day {
  margin-bottom: 20px;
  display: grid;
  gap: 12px;
}

.schedule-day-header {
  font-weight: 600;
  font-size: 13px;
  color: var(--ink);
  padding-bottom: 6px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
}

.schedule-grid {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 12px;
}

.schedule-hours {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.schedule-hours-header {
  height: 30px;
}

.schedule-hour {
  height: var(--hour-height);
  font-size: 12px;
  color: var(--muted);
  display: flex;
  align-items: flex-start;
  padding-top: 2px;
}

.schedule-days {
  display: grid;
  grid-template-columns: repeat(var(--day-count), minmax(0, 1fr));
  gap: 10px;
}

[dir="rtl"] .schedule-days,
[dir="rtl"] .schedule-days-sequential {
  direction: rtl;
}

.schedule-grid-sequential {
  grid-template-columns: 1fr;
}

.schedule-days-sequential {
  grid-template-columns: repeat(var(--day-count), minmax(190px, 1fr));
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
}

.schedule-day-col {
  display: grid;
  gap: 8px;
}

.schedule-day-col-sequential {
  min-width: 220px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.schedule-day-col-sequential .schedule-day-header {
  position: sticky;
  top: 0;
  z-index: 1;
  margin: -10px -10px 0;
  padding: 10px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.schedule-day-stack {
  display: grid;
  gap: 8px;
}

.schedule-day-grid {
  position: relative;
  height: calc(var(--hour-height) * var(--hour-count));
  border-radius: 16px;
  border: 1px solid var(--line);
  background-color: #ffffff;
  overflow: hidden;
  background-image:
    linear-gradient(to bottom, rgba(15, 23, 42, 0.1) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(15, 23, 42, 0.05) 1px, transparent 1px);
  background-size: 100% var(--hour-height), 100% calc(var(--hour-height) / 2);
}

.schedule-event {
  --session-accent: var(--customer-teal, #82cdcb);
  position: absolute;
  left: 4px;
  right: 4px;
  background: #ffffff;
  border: 1px solid var(--session-accent);
  border-radius: 14px;
  padding: 6px 8px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  cursor: pointer;
  box-shadow: 0 8px 16px rgba(15, 23, 42, 0.08);
}

.schedule-event.is-event {
  border-style: dashed;
  border-color: rgba(14, 165, 233, 0.35);
  background: rgba(14, 165, 233, 0.04);
}

.schedule-event.is-appointment {
  border-color: rgba(15, 118, 110, 0.35);
  background: rgba(15, 118, 110, 0.05);
}

.schedule-event.is-full {
  opacity: 0.7;
}

.schedule-sequential-event {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 8px 10px;
  display: grid;
  gap: 4px;
  cursor: pointer;
  background: #fff;
  box-shadow: 0 6px 14px rgba(15, 23, 42, 0.08);
}

.schedule-sequential-event:hover {
  border-color: rgba(241, 194, 50, 0.45);
}

.schedule-sequential-event.is-event {
  border-style: dashed;
  border-color: rgba(14, 165, 233, 0.35);
  background: rgba(14, 165, 233, 0.04);
}

.schedule-sequential-event.is-appointment {
  border-color: rgba(15, 118, 110, 0.35);
  background: rgba(15, 118, 110, 0.05);
}

.schedule-sequential-event.is-full {
  opacity: 0.7;
}

.schedule-event-title {
  font-weight: 600;
  font-size: 13px;
}

.schedule-event-time {
  font-weight: 700;
  font-size: 12px;
}

.schedule-event-meta {
  font-size: 11px;
  color: var(--muted);
}

[dir="rtl"] .schedule-hours {
  align-items: flex-end;
}

[dir="rtl"] .schedule-day-col,
[dir="rtl"] .schedule-event {
  text-align: right;
}

[dir="rtl"] .schedule-day-col-sequential,
[dir="rtl"] .schedule-sequential-event {
  text-align: right;
}

.schedule-list-grid .card button {
  margin-top: 6px;
}

.schedule-list-grid .card {
  --session-accent: var(--customer-teal, #82cdcb);
  border-top: 4px solid var(--session-accent);
}

@media (max-width: 900px) {
  .appointment-guest-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .appointment-guest-actions {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .appointment-section-head {
    flex-direction: column;
  }

  .appointment-guest-row {
    grid-template-columns: 1fr;
  }
}

.empty-state {
  padding: 14px;
  border-radius: 12px;
  background: rgba(15, 23, 42, 0.05);
  color: var(--muted);
}

.login-card {
  max-width: 420px;
  margin: 60px auto;
  background: #ffffff;
  padding: 24px;
  border-radius: 20px;
  border: 1px solid var(--line);
}

.login-social {
  display: grid;
  gap: 8px;
}

.login-social-title {
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
}

.social-grid {
  display: flex;
  gap: 14px;
  flex-wrap: nowrap;
  justify-content: center;
  width: 100%;
}

.social-btn {
  width: 66px;
  height: 66px;
  padding: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.social-btn:hover {
  border-color: var(--accent);
  color: var(--accent-dark);
}

.social-btn:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.social-icon {
  font-weight: 700;
  font-size: 27px;
  text-transform: none;
}

.login-divider {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: var(--muted);
  margin: 4px 0;
}

.login-divider::before,
.login-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line);
}

.login-switch {
  display: flex;
  gap: 8px;
  margin: 12px 0 16px;
}

.login-switch button {
  flex: 1 1 0;
  width: auto;
  min-width: 0;
}

.event-auth .login-switch button {
  flex: 1 1 0;
  width: auto;
  min-width: 0;
}

.login-switch button.active {
  background: var(--accent);
  color: white;
}

.hidden {
  display: none;
}

.toast-root {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 9999;
}

.toast-root.rtl {
  right: auto;
  left: 24px;
}

.toast {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.12);
  font-size: 13px;
  opacity: 0;
  transform: translateY(6px);
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

.toast-message {
  flex: 1;
}

.toast-close {
  border: none;
  background: transparent;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  cursor: pointer;
}

.toast-close:hover {
  background: rgba(15, 23, 42, 0.08);
}

.toast-success {
  border-color: rgba(34, 197, 94, 0.35);
  background: rgba(220, 252, 231, 0.9);
}

.toast-error {
  border-color: rgba(239, 68, 68, 0.3);
  background: rgba(254, 226, 226, 0.95);
}

.toast-info {
  border-color: rgba(14, 165, 233, 0.3);
  background: rgba(224, 242, 254, 0.9);
}

[dir="rtl"] body {
  direction: rtl;
}

[dir="rtl"] .shell,
[dir="rtl"] .hero,
[dir="rtl"] .surface {
  text-align: right;
}

[dir="rtl"] .navbar {
  flex-direction: row;
  justify-content: flex-end;
}

[dir="rtl"] .navbar a {
  text-align: right;
}

@media (max-width: 700px) {
  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* Customer portal redesign: follows docs/mobile-customer-app.pdf */
:root {
  --customer-bg: #f8f6f4;
  --customer-mint-bg: #dcefeb;
  --customer-line: #82cdcb;
  --customer-ink: #4f6985;
  --customer-ink-strong: #334c65;
  --customer-muted: #7a8da1;
  --customer-coral: #efb7a5;
  --customer-teal: #789b91;
  --customer-blue: #88c8dc;
  --customer-lavender: #aaa6d8;
  --customer-card: rgba(255, 254, 254, 0.94);
  --customer-shadow: none;
  --customer-tight-shadow: none;
  --ink: var(--customer-ink-strong);
  --muted: var(--customer-muted);
  --accent: var(--customer-teal);
  --accent-dark: #5f8278;
  --line: rgba(130, 205, 203, 0.52);
  --surface: var(--customer-card);
  --radius: 34px;
}

body {
  color: var(--customer-ink);
  background:
    radial-gradient(circle at 12% 4%, rgba(130, 205, 203, 0.24), transparent 30%),
    linear-gradient(180deg, #fbf8f5 0%, var(--customer-mint-bg) 100%);
  font-size: 16px;
}

body,
html[lang^="he"] body,
html[lang^="he"] h1,
html[lang^="he"] h2,
html[lang^="he"] h3,
html[lang^="he"] h4,
html[lang^="he"] h5,
html[lang^="he"] h6 {
  font-family: var(--app-font-family);
}

button {
  border-radius: 999px;
  background: var(--customer-teal);
  color: #fff;
  box-shadow: var(--customer-tight-shadow);
}

button.secondary,
.secondary {
  border-color: var(--customer-line);
  color: var(--customer-ink);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--customer-tight-shadow);
}

button.secondary.active,
.login-switch button.active {
  background: var(--customer-teal);
  border-color: var(--customer-teal);
  color: #fff;
}

input,
select,
textarea,
.date-input {
  border: 0;
  border-radius: 14px;
  color: var(--customer-ink);
  background: #fff;
  box-shadow: var(--customer-tight-shadow);
}

input:focus,
select:focus,
textarea:focus,
.date-input:focus {
  outline: none;
  border-color: transparent;
  box-shadow: 0 0 0 3px rgba(130, 205, 203, 0.42), var(--customer-tight-shadow);
}

.customer-shell {
  max-width: min(1440px, calc(100vw - 32px));
  min-height: calc(100vh - 32px);
  margin: 16px auto;
  padding: 0 0 28px;
  border: 1px solid rgba(130, 205, 203, 0.5);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: var(--customer-shadow);
  overflow: hidden;
}

.customer-topbar {
  position: relative;
  direction: ltr;
  min-height: 76px;
  padding: 12px 34px;
  border-bottom: 2px solid var(--customer-line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.customer-brand {
  width: clamp(128px, 12vw, 178px);
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-decoration: none;
}

.customer-brand img {
  display: block;
  width: 100%;
  height: auto;
}

.customer-mobile-title {
  display: none;
}

.customer-language-pill,
.customer-avatar-link,
.customer-greeting {
  position: relative;
  z-index: 1;
}

.customer-language-pill {
  min-width: 74px;
  height: 36px;
  padding: 0 14px;
  border: 2px solid var(--customer-ink);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--customer-ink-strong);
  box-shadow: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 18px;
}

.customer-language-icon,
.customer-nav-icon,
.customer-tool-pill,
.customer-paper-plane {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.customer-language-icon svg,
.customer-nav-icon svg,
.customer-tool-pill svg,
.customer-paper-plane svg {
  width: 1em;
  height: 1em;
  display: block;
  stroke: currentColor;
}

.customer-identity {
  direction: rtl;
  display: flex;
  align-items: center;
  gap: 14px;
}

.customer-greeting {
  color: var(--customer-ink);
  text-decoration: none;
  font-size: 19px;
}

.customer-avatar-link {
  text-decoration: none;
}

.customer-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(239, 183, 165, 0.38);
  color: var(--customer-ink-strong);
  display: grid;
  place-items: center;
  overflow: hidden;
  font-weight: 700;
  box-shadow: var(--customer-tight-shadow);
}

.customer-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.customer-page-heading {
  max-width: 1180px;
  margin: 28px auto 0;
  padding: 0 24px;
  text-align: right;
}

.customer-page-heading h1 {
  margin: 0;
  color: var(--customer-ink);
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 500;
}

.customer-page-heading .meta {
  display: none;
}

.customer-surface {
  max-width: 1180px;
  margin: 18px auto 0;
  padding: clamp(18px, 3vw, 34px);
  border: 1px solid rgba(130, 205, 203, 0.44);
  border-radius: 44px;
  background: var(--customer-card);
  box-shadow: var(--customer-shadow);
}

.customer-route-event .customer-surface {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.customer-route-schedule .customer-surface {
  max-width: min(1280px, calc(100vw - 44px));
  padding: clamp(10px, 2vw, 20px);
  border: 0;
  background: transparent;
  box-shadow: none;
}

.customer-route-profile .customer-surface {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.customer-navbar {
  position: static;
  width: min(1180px, calc(100vw - 56px));
  min-height: 64px;
  margin: 18px auto 0;
  padding: 10px 28px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  backdrop-filter: none;
  display: flex;
  align-items: center;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: center;
  gap: clamp(18px, 4vw, 54px);
  box-shadow: none;
}

.customer-navbar a {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--customer-ink);
  display: inline-grid;
  justify-items: center;
  gap: 4px;
  min-width: 88px;
  font-size: 13px;
  line-height: 1.2;
}

.customer-navbar a.active {
  background: transparent;
  border: 0;
  color: var(--customer-teal);
}

.customer-tool-pill.active {
  background: var(--customer-teal);
  border-color: var(--customer-teal);
  color: #fff;
}

.customer-nav-icon {
  color: var(--customer-ink-strong);
  font-size: 22px;
  line-height: 1;
}

.customer-navbar a.active .customer-nav-icon {
  color: var(--customer-teal);
}

[dir="rtl"] .customer-navbar {
  justify-content: center;
}

.customer-logout {
  min-height: 38px;
  padding: 0 18px;
}

.customer-legal-links {
  max-width: 1180px;
  margin: 18px auto 0;
  border-top: 1px solid var(--customer-line);
  padding: 14px 24px 0;
}

.link-button {
  color: var(--customer-ink);
}

.notice,
.empty-state {
  border-radius: 18px;
  background: rgba(130, 205, 203, 0.14);
  color: var(--customer-ink);
}

.card {
  border-color: rgba(130, 205, 203, 0.44);
  border-radius: 28px;
  color: var(--customer-ink);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--customer-tight-shadow);
}

.customer-schedule-toolbar {
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1.5px solid var(--customer-line);
}

.customer-tool-row,
.schedule-nav,
.customer-schedule-search {
  display: flex;
  align-items: center;
  gap: 12px;
}

.customer-schedule-search {
  flex: 1 1 320px;
  max-width: 440px;
  min-width: 240px;
  position: relative;
}

.customer-schedule-search input {
  flex: 1 1 auto;
  min-width: 0;
  width: auto;
  height: 42px;
  padding-inline: 42px 14px;
  border: 1.5px solid var(--customer-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--customer-ink);
  font: inherit;
  font-weight: 700;
}

.customer-schedule-search input::placeholder {
  color: var(--customer-muted);
  opacity: 0.88;
}

.customer-search-icon {
  position: absolute;
  inset-inline-start: 16px;
  z-index: 1;
  width: 18px;
  height: 18px;
  color: var(--customer-ink);
  pointer-events: none;
}

.customer-search-icon svg,
.customer-tool-pill svg,
button.icon-btn svg {
  width: 1em;
  height: 1em;
  display: block;
}

.schedule-nav-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 19px;
}

.customer-tool-pill,
button.icon-btn {
  width: 54px;
  height: 42px;
  border: 1.5px solid var(--customer-line);
  border-radius: 999px;
  background: #fff;
  color: var(--customer-ink);
  box-shadow: var(--customer-tight-shadow);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.customer-tool-pill {
  font-size: 18px;
}

.customer-filter-pill.has-filters {
  position: relative;
}

.customer-filter-pill.has-filters::after {
  content: "";
  position: absolute;
  top: 5px;
  inset-inline-end: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--customer-coral);
  border: 1px solid #fff;
}

.schedule-nav .date-input {
  min-width: 152px;
  height: 42px;
}

.schedule-week-label {
  margin: 0 0 20px;
  direction: ltr;
  unicode-bidi: isolate;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
  text-align: right;
  font-size: 22px;
  color: var(--customer-ink);
}

.customer-schedule-loading {
  width: fit-content;
  max-width: 100%;
  margin: -4px auto 18px;
  padding: 11px 16px;
  border: 1px solid rgba(130, 205, 203, 0.58);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--customer-ink-strong);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  box-shadow: var(--customer-tight-shadow);
}

.customer-schedule-spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(130, 205, 203, 0.28);
  border-top-color: var(--customer-teal);
  border-radius: 50%;
  animation: customer-schedule-spin 0.7s linear infinite;
}

.customer-schedule-content.is-loading {
  opacity: 0.74;
  pointer-events: none;
}

.schedule-loading-grid {
  min-height: 220px;
}

.schedule-day-col-loading {
  min-height: 190px;
}

.schedule-loading-card {
  min-height: 116px;
  border-radius: 28px;
  background: linear-gradient(90deg, rgba(130, 205, 203, 0.15), rgba(255, 255, 255, 0.72), rgba(130, 205, 203, 0.15));
  background-size: 220% 100%;
  animation: customer-schedule-shimmer 1.1s ease-in-out infinite;
}

.schedule-loading-card.is-short {
  min-height: 78px;
  opacity: 0.68;
}

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

@keyframes customer-schedule-shimmer {
  0% {
    background-position: 100% 0;
  }

  100% {
    background-position: -100% 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .customer-schedule-spinner,
  .schedule-loading-card {
    animation: none;
  }
}

.schedule-grid-sequential {
  display: block;
}

.schedule-days-sequential {
  display: grid;
  grid-template-columns: repeat(var(--day-count), minmax(190px, 1fr));
  gap: 8px;
  overflow-x: auto;
  padding: 0;
}

.customer-schedule-content {
  overflow-x: auto;
  padding-bottom: 8px;
}

.customer-schedule-content .schedule-grid:not(.schedule-grid-sequential) {
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 10px;
}

.customer-schedule-content .schedule-grid:not(.schedule-grid-sequential) .schedule-day-header {
  min-height: 34px;
  padding-bottom: 8px;
  justify-content: center;
  color: var(--customer-ink);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
}

.customer-schedule-content .schedule-grid:not(.schedule-grid-sequential) .schedule-day-grid {
  border-color: rgba(130, 205, 203, 0.58);
  background-image:
    linear-gradient(to bottom, rgba(79, 105, 133, 0.13) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(79, 105, 133, 0.06) 1px, transparent 1px);
}

.customer-schedule-content .schedule-grid:not(.schedule-grid-sequential) .schedule-event {
  left: 5px;
  right: 5px;
  padding: 7px 8px;
  gap: 2px;
  overflow: hidden;
  border-color: rgba(130, 205, 203, 0.75);
  box-shadow: none;
}

.customer-schedule-content .schedule-grid:not(.schedule-grid-sequential) .schedule-event-title {
  min-height: 0;
  margin: 0;
  color: var(--customer-ink-strong);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.18;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.customer-schedule-content .schedule-grid:not(.schedule-grid-sequential) .schedule-event-time {
  margin: 0;
  color: var(--customer-ink-strong);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.08;
}

.customer-schedule-content .schedule-grid:not(.schedule-grid-sequential) .schedule-event-meta {
  color: var(--customer-ink);
  font-size: 10.5px;
  font-weight: 700;
  line-height: 1.18;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.customer-schedule-content .schedule-grid:not(.schedule-grid-sequential) .schedule-event-meta + .schedule-event-meta {
  display: none;
}

.schedule-day-col-sequential {
  min-width: 0;
  padding: 0 12px;
  border: 0;
  border-inline-start: 1px solid rgba(79, 105, 133, 0.14);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.schedule-day-col-sequential .schedule-day-header {
  position: static;
  margin: 0 0 14px;
  padding: 0 0 10px;
  border-bottom: 1.5px solid var(--customer-line);
  background: transparent;
  color: var(--customer-ink);
  font-size: 16px;
  font-weight: 700;
  text-align: center;
}

.schedule-day-stack {
  gap: 14px;
}

.schedule-sequential-event.customer-class-card {
  --session-accent: var(--customer-coral);
  position: relative;
  width: min(100%, 245px);
  justify-self: center;
  min-height: 108px;
  padding: 30px 14px 34px;
  border: 1.5px solid rgba(130, 205, 203, 0.8);
  border-radius: 20px;
  border-style: solid;
  background: #fff;
  color: var(--customer-ink);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 5px;
  direction: rtl;
  text-align: right;
  box-shadow: var(--customer-tight-shadow);
  overflow: hidden;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.schedule-sequential-event.customer-class-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 14px;
  background: var(--session-accent);
}

.schedule-sequential-event.customer-class-card:hover {
  transform: translateY(-2px);
  border-color: var(--customer-line);
  box-shadow: var(--customer-shadow);
}

.customer-paper-plane {
  position: absolute;
  top: 30px;
  left: 16px;
  width: 30px;
  height: 30px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  font-size: 20px;
  color: currentColor;
  box-shadow: none;
  cursor: pointer;
  z-index: 1;
}

.customer-card-share:hover,
.customer-card-share:focus-visible {
  color: var(--session-accent);
  outline: none;
}

.schedule-sequential-event.customer-class-card .schedule-event-title {
  align-self: stretch;
  min-height: 0;
  margin-inline: 0;
  margin-left: 40px;
  max-width: 100%;
  color: var(--session-accent);
  font-size: clamp(13px, 0.75vw, 16px);
  font-weight: 700;
  line-height: 1.15;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.schedule-sequential-event.customer-class-card .schedule-event-time {
  align-self: stretch;
  margin-top: 2px;
  max-width: 100%;
  color: var(--customer-ink);
  font-size: clamp(15px, 0.95vw, 18px);
  font-weight: 800;
  line-height: 1.12;
  text-align: right;
  unicode-bidi: isolate;
  white-space: nowrap;
}

.schedule-sequential-event.customer-class-card .schedule-event-meta {
  align-self: stretch;
  max-width: 100%;
  color: var(--customer-ink);
  font-size: clamp(11px, 0.72vw, 13px);
  font-weight: 700;
  line-height: 1.15;
  text-align: right;
  overflow-wrap: anywhere;
}

.customer-card-location {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
}

.customer-location-icon {
  width: 0.9em;
  height: 0.9em;
  display: inline-flex;
  color: currentColor;
}

.schedule-event-presenter {
  align-self: stretch;
  max-width: 100%;
  color: var(--customer-ink);
  font-size: clamp(13px, 0.85vw, 16px);
  font-weight: 700;
  line-height: 1.14;
  text-align: right;
  overflow-wrap: anywhere;
}

.customer-register-pill {
  position: absolute;
  left: 14px;
  right: auto;
  bottom: 9px;
  min-height: 28px;
  max-width: calc(100% - 28px);
  padding: 4px 12px;
  border: 1.5px solid currentColor;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: currentColor;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
}

.customer-register-pill::before {
  content: "";
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--customer-teal);
}

.customer-class-card.customer-card-online:not(.customer-card-special):not(.customer-card-active) {
  background: #fff;
  color: var(--customer-ink);
  padding-bottom: 34px;
}

.customer-class-card.customer-card-online:not(.customer-card-special):not(.customer-card-active)::after {
  display: none;
}

.customer-class-card.customer-card-special {
  border-color: rgba(130, 205, 203, 0.9);
}

.customer-class-card.customer-card-special::before {
  display: block;
}

.customer-class-card.customer-card-full {
  opacity: 0.72;
}

.customer-class-card.customer-card-full:not(.customer-card-active) {
  background-image: repeating-linear-gradient(-45deg, rgba(79, 105, 133, 0.14) 0 2px, transparent 2px 8px);
}

.event-layout.customer-event-layout {
  gap: 24px;
}

.customer-route-event .event-layout.customer-event-layout {
  max-width: 1180px;
  margin: 18px auto 0;
}

.customer-event-layout .event-icon {
  display: none;
}

.event-card {
  border: 1px solid rgba(130, 205, 203, 0.7);
  border-top: 1px solid rgba(130, 205, 203, 0.7);
  border-radius: 34px;
  overflow: hidden;
}

.customer-route-event .event-details {
  padding: clamp(26px, 4vw, 46px);
}

.event-cover {
  margin: -16px -16px 18px;
  border-radius: 34px 34px 0 0;
  border-bottom: 0;
  border-top: 8px solid var(--customer-teal);
  background: rgba(255, 255, 255, 0.96);
}

.event-cover img {
  max-height: none;
}

.event-title-block {
  width: 100%;
  text-align: center;
}

.event-title-block h2 {
  color: var(--customer-teal);
  font-size: clamp(30px, 4vw, 42px);
  font-weight: 800;
  text-decoration: none;
}

.event-title-row {
  justify-content: center;
}

.event-description {
  background: transparent;
  color: var(--customer-ink);
  font-size: 17px;
  line-height: 1.75;
}

.event-time {
  color: var(--customer-ink);
  font-size: 24px;
  font-weight: 800;
  margin-top: 30px;
}

.event-highlight {
  background: transparent;
  border: 0;
  margin-top: 20px;
  padding: 0;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
}

.event-price {
  color: var(--customer-ink-strong);
}

.event-meta-grid {
  border-top: 0;
  padding-top: 8px;
  justify-items: center;
  text-align: center;
}

.event-meta-label,
.event-purchase-terms h4,
.plan-list h4,
.presenter-profile-section-title {
  color: var(--customer-ink);
  letter-spacing: 0;
  text-transform: none;
}

.event-booking {
  text-align: center;
}

.event-booking h3 {
  font-size: 30px;
  font-weight: 500;
  color: var(--customer-ink);
}

.event-booking button#book-btn {
  min-height: 66px;
  font-size: 26px;
  font-weight: 800;
}

.plan-grid {
  grid-template-columns: repeat(auto-fit, minmax(118px, 1fr));
}

.plan-card {
  min-height: 136px;
  justify-items: center;
  text-align: center;
  border: 0;
  border-radius: 14px;
  background: var(--customer-coral);
  color: #fff;
  box-shadow: var(--customer-tight-shadow);
}

.plan-card .meta,
.plan-card .plan-name {
  color: #fff;
}

.plan-card .plan-name {
  font-size: 18px;
  line-height: 1.25;
}

.plan-card .secondary {
  min-height: 46px;
  padding-inline: 18px;
  font-size: 15px;
}

.event-purchase-terms-section {
  border: 0;
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--customer-tight-shadow);
}

.customer-info-card,
.waiver-card,
.charges-card {
  border-radius: 26px;
  background: #fff;
  font-size: 16px;
}

.customer-info-card .meta,
.waiver-card .meta,
.charges-card .meta {
  font-size: 15px;
}

.customer-bookings-grid .card {
  min-height: 150px;
  justify-content: center;
}

.customer-payments-list {
  display: grid;
  gap: 14px;
}

.customer-payment-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  padding: 18px 20px;
  text-align: start;
}

.customer-payment-body {
  min-width: 0;
  display: grid;
  gap: 6px;
}

.customer-payment-kicker {
  color: var(--customer-coral);
  font-size: 14px;
  font-weight: 800;
}

.customer-payment-card h3 {
  margin: 0;
  color: var(--customer-ink);
  font-size: clamp(19px, 2.2vw, 25px);
  line-height: 1.25;
}

.customer-payment-summary {
  min-width: 178px;
  display: grid;
  justify-items: end;
  gap: 7px;
}

.customer-payment-amount {
  color: var(--customer-ink);
  font-size: clamp(24px, 3vw, 34px);
  font-weight: 800;
  line-height: 1;
}

.customer-payment-status {
  color: var(--customer-muted);
  font-size: 15px;
  font-weight: 700;
}

.customer-invoice-link {
  min-height: 42px;
  padding-inline: 18px;
}

.customer-invoice-missing {
  max-width: 210px;
  text-align: end;
}

.customer-empty-state {
  min-height: min(56vh, 480px);
  padding: clamp(24px, 6vw, 54px) 18px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 14px;
  text-align: center;
  color: var(--customer-ink);
}

.customer-empty-illustration {
  width: min(260px, 82vw);
  color: var(--customer-ink);
}

.customer-empty-illustration svg {
  display: block;
  width: 100%;
  height: auto;
}

.empty-blob {
  fill: rgba(130, 205, 203, 0.2);
}

.empty-card {
  fill: rgba(255, 255, 255, 0.96);
  stroke: rgba(130, 205, 203, 0.82);
  stroke-width: 2;
}

.empty-card-top {
  fill: rgba(239, 183, 165, 0.78);
}

.empty-line {
  fill: none;
  stroke: var(--customer-ink);
  stroke-width: 5;
  stroke-linecap: round;
  opacity: 0.42;
}

.empty-check-bg {
  fill: var(--customer-teal);
  opacity: 0.92;
}

.empty-check,
.empty-spark {
  fill: none;
  stroke: #fff;
  stroke-width: 6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.empty-spark {
  stroke: rgba(79, 105, 133, 0.72);
  stroke-width: 4;
}

.customer-empty-state h2 {
  margin: 0;
  color: var(--customer-ink);
  font-size: clamp(26px, 4vw, 38px);
  font-weight: 800;
}

.customer-empty-state p {
  max-width: 420px;
  margin: 0;
  color: var(--customer-muted);
  font-size: clamp(16px, 2.2vw, 20px);
  line-height: 1.55;
}

.customer-empty-cta {
  min-height: 52px;
  margin-top: 6px;
  padding: 0 30px;
  border-radius: 999px;
  background: var(--customer-teal);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 18px;
  font-weight: 800;
}

.profile-avatar-preview {
  border: 0;
  background: rgba(239, 183, 165, 0.38);
  box-shadow: var(--customer-tight-shadow);
  color: var(--customer-ink);
}

.profile-avatar-edit {
  border-color: rgba(130, 205, 203, 0.9);
  background: rgba(255, 255, 255, 0.94);
  color: var(--customer-ink);
}

.profile-avatar-upload {
  border: 0;
  background: #fff;
  box-shadow: var(--customer-tight-shadow);
}

.customer-profile-layout {
  display: grid;
  gap: 20px;
}

.customer-profile-form {
  gap: 16px;
}

.customer-profile-form > div:not(.profile-avatar-section),
.customer-profile-form .span-2:not(.profile-avatar-section) {
  min-width: 0;
}

.customer-profile-form label {
  color: var(--customer-ink);
  font-size: 16px;
}

.customer-profile-form input,
.customer-profile-form select,
.customer-profile-form textarea {
  min-height: 58px;
  font-size: 18px;
}

.customer-profile-form textarea {
  min-height: 128px;
  resize: vertical;
}

.customer-profile-section-title {
  color: var(--customer-ink);
  font-size: 20px;
  font-weight: 700;
  text-align: center;
}

.customer-profile-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.customer-profile-actions button {
  min-height: 48px;
}

.charge-row {
  border: 0;
  background: #fff;
  box-shadow: var(--customer-tight-shadow);
}

.charge-amount {
  color: var(--customer-teal);
}

.customer-document-list {
  display: grid;
  gap: 10px;
}

.customer-document-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid rgba(130, 205, 203, 0.45);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--customer-ink);
  text-decoration: none;
}

.customer-document-link strong,
.customer-document-link small {
  display: block;
}

.customer-document-link small {
  color: var(--customer-muted);
  font-size: 12px;
}

.customer-document-icon {
  width: 28px;
  height: 34px;
  border: 2px solid currentColor;
  border-radius: 4px;
  color: var(--customer-ink);
  opacity: 0.82;
  position: relative;
  flex: 0 0 auto;
}

.customer-document-icon::before,
.customer-document-icon::after {
  content: "";
  position: absolute;
  left: 5px;
  right: 5px;
  height: 2px;
  background: currentColor;
  opacity: 0.5;
}

.customer-document-icon::before {
  top: 12px;
}

.customer-document-icon::after {
  top: 19px;
}

.login-card {
  max-width: min(960px, 100vw);
  width: min(960px, 100vw);
  min-height: 100vh;
  margin: 0 auto;
  padding: clamp(64px, 9vh, 120px) clamp(36px, 6vw, 72px) clamp(46px, 7vh, 80px);
  border: 0;
  border-radius: 0;
  background: linear-gradient(180deg, #bde5e1 0%, #9dc8c2 100%);
  color: #fff;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(20px, 3vh, 34px);
}

.customer-login-logo {
  display: block;
  width: min(260px, 72%);
  height: auto;
  margin: 0 auto 18px;
  border-radius: 22px;
}

.customer-event-auth-logo {
  display: block;
  width: min(180px, 62%);
  height: auto;
  margin: 0 auto 4px;
  border-radius: 16px;
}

.login-card h2 {
  color: #fff;
  font-size: clamp(46px, 6vw, 72px);
  font-weight: 600;
  text-align: center;
}

.customer-login-heading {
  margin: 0;
  letter-spacing: 0;
}

.customer-login-logo.customer-login-logo-hero {
  width: min(620px, 75vw);
  margin: 0 auto clamp(18px, 4vh, 42px);
  border-radius: 0;
  filter: drop-shadow(0 12px 14px rgba(37, 61, 75, 0.28));
}

.login-card p,
.login-card label,
.login-card .meta,
.login-card .login-social-title {
  color: rgba(255, 255, 255, 0.9);
}

.login-card label {
  color: #fff;
  font-weight: 700;
}

.login-card input {
  min-height: 76px;
  border: 3px solid rgba(255, 255, 255, 0.95);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 400;
  box-shadow: 0 14px 22px rgba(45, 72, 91, 0.18);
  padding: 0 34px;
}

.login-card input::placeholder {
  color: rgba(255, 255, 255, 0.94);
}

.login-card .social-btn {
  width: clamp(116px, 12vw, 150px);
  height: clamp(116px, 12vw, 150px);
  border: 3px solid rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  box-shadow: inset 0 0 30px rgba(255, 255, 255, 0.22), 0 12px 18px rgba(45, 72, 91, 0.25);
}

.login-card .social-icon {
  font-size: clamp(46px, 5vw, 68px);
  font-weight: 800;
}

.login-card .login-divider {
  width: 100%;
  color: #fff;
  font-size: clamp(20px, 2.3vw, 32px);
  font-weight: 600;
  margin: clamp(18px, 4vh, 44px) 0 4px;
  gap: 28px;
}

.login-card .login-divider::before,
.login-card .login-divider::after {
  background: rgba(255, 255, 255, 0.86);
  height: 2px;
}

.login-card .link-button {
  color: #fff;
  font-size: clamp(20px, 2.3vw, 32px);
  text-decoration: none;
}

.customer-login-card .auth-panel,
.customer-login-card #login-form,
.customer-login-card #register-form,
.customer-login-card .login-social {
  width: min(100%, 820px);
}

.customer-login-card #login-form,
.customer-login-card #register-form {
  gap: clamp(22px, 3vh, 32px);
}

.customer-login-card .social-grid {
  gap: clamp(38px, 6vw, 86px);
  justify-content: center;
}

.customer-login-mode-toggle {
  order: 6;
  width: min(100%, 520px);
  margin: 0;
  opacity: 0.88;
}

.customer-login-mode-toggle button {
  border-color: rgba(255, 255, 255, 0.8);
  color: #fff;
  background: transparent;
}

.customer-login-mode-toggle button.active {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.customer-login-forgot {
  margin-top: -10px;
  text-align: right;
}

.customer-login-card .customer-login-submit {
  min-height: 92px;
  margin-top: clamp(34px, 5vh, 70px);
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: var(--customer-coral);
  font-size: clamp(28px, 3vw, 46px);
  font-weight: 700;
  box-shadow: 0 16px 22px rgba(45, 72, 91, 0.3);
}

.event-auth .login-social-title {
  color: var(--customer-muted);
}

.event-auth .social-btn {
  width: 66px;
  max-width: 66px;
  height: 66px;
  flex: 0 0 66px;
  background: #fff;
  border-color: var(--customer-line);
  color: var(--customer-ink);
}

.event-auth .social-icon {
  font-size: 34px;
}

.event-auth form {
  gap: 14px;
}

.event-auth input {
  min-height: 58px;
  border: 1.5px solid rgba(130, 205, 203, 0.72);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--customer-ink);
  font-size: 18px;
  font-weight: 600;
  box-shadow: none;
  text-align: inherit;
  padding-inline: 24px;
}

.event-auth input::placeholder {
  color: var(--customer-muted);
  opacity: 0.9;
}

.event-auth button[type="submit"] {
  min-height: 58px;
  font-size: 18px;
  font-weight: 800;
}

.event-auth form.hidden,
.event-auth .auth-panel.hidden {
  display: none;
}

.pregnancy-week-field {
  display: grid;
  gap: 8px;
  max-width: 240px;
  margin-inline-start: auto;
}

.pregnancy-week-field.hidden {
  display: none;
}

.pregnancy-week-field label {
  color: var(--customer-ink);
  font-size: 15px;
  font-weight: 600;
}

.toast {
  color: var(--customer-ink);
}

@media (max-width: 780px) {
  .customer-shell {
    max-width: min(430px, 100vw);
    min-height: 100vh;
    margin: 0 auto;
    padding-bottom: 88px;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: var(--customer-bg);
  }

  .customer-topbar {
    min-height: 76px;
    padding: 10px 18px 0;
    align-items: center;
  }

  .customer-greeting {
    display: none;
  }

  .customer-brand {
    width: min(34vw, 140px);
    border-radius: 11px;
    display: inline-flex;
  }

  .customer-mobile-title {
    display: none;
  }

  .customer-avatar {
    width: 52px;
    height: 52px;
  }

  .customer-language-pill {
    margin-top: 0;
  }

  .customer-page-heading {
    display: none;
  }

  .customer-surface {
    width: calc(100% - 40px);
    margin: 0 auto 96px;
    padding: 28px 18px;
    border: 0;
    border-radius: 42px;
  }

  .customer-route-profile .customer-surface {
    width: calc(100% - 26px);
    padding: 8px 4px 96px;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
  }

  .customer-route-event .customer-surface {
    width: calc(100% - 16px);
    margin: 0 auto 96px;
    padding: 0;
  }

  .customer-navbar {
    position: fixed;
    z-index: 1000;
    width: 100%;
    min-height: 72px;
    left: 0;
    bottom: 0;
    transform: none;
    margin: 0;
    border-radius: 0;
    border-top: 1.5px solid var(--customer-line);
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 0;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--customer-tight-shadow);
  }

  [dir="rtl"] .customer-navbar {
    justify-content: space-between;
  }

  .customer-navbar a {
    flex: 1 1 0;
    min-width: 0;
    font-size: 11px;
  }

  .customer-nav-icon {
    font-size: 22px;
  }

  .customer-logout,
  .customer-legal-links {
    display: none;
  }

  .customer-schedule-toolbar {
    justify-content: center;
    border-bottom: 0;
    padding-bottom: 10px;
  }

  .schedule-nav {
    order: 1;
    width: 100%;
    justify-content: center;
  }

  .customer-schedule-search {
    order: 2;
    width: 100%;
    max-width: none;
    min-width: 0;
    justify-content: center;
  }

  .customer-schedule-search input {
    height: 44px;
  }

  .customer-tool-row {
    order: 3;
    width: 100%;
    justify-content: center;
  }

  .schedule-week-label {
    font-size: 0;
    margin: 0;
  }

  .customer-schedule-loading {
    max-width: calc(100% - 28px);
    margin: 0 auto 18px;
    font-size: 14px;
  }

  .customer-schedule-content .schedule-grid:not(.schedule-grid-sequential) {
    --hour-height: 62px !important;
    display: block;
    overflow: hidden;
  }

  .customer-schedule-content .schedule-grid:not(.schedule-grid-sequential) .schedule-hours {
    display: none;
  }

  .customer-schedule-content .schedule-grid:not(.schedule-grid-sequential) .schedule-days {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc(100% - 54px);
    grid-template-columns: none;
    gap: 14px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    padding: 0 54px 10px 0;
    scroll-padding-inline: 0 54px;
    scroll-snap-type: x mandatory;
  }

  .customer-schedule-content .schedule-grid:not(.schedule-grid-sequential) .schedule-day-col {
    min-width: 0;
    scroll-snap-align: start;
  }

  .customer-schedule-content .schedule-grid:not(.schedule-grid-sequential) .schedule-day-header {
    justify-content: space-between;
    padding: 0 4px 10px;
    font-size: 18px;
    text-align: right;
  }

  .customer-schedule-content .schedule-grid:not(.schedule-grid-sequential) .schedule-day-grid {
    min-height: calc(var(--hour-height) * var(--hour-count));
    border-radius: 18px;
  }

  .customer-schedule-content .schedule-grid:not(.schedule-grid-sequential) .schedule-event {
    left: 8px;
    right: 8px;
    padding: 8px 10px;
  }

  .customer-schedule-content .schedule-grid:not(.schedule-grid-sequential) .schedule-event-title {
    font-size: 12px;
  }

  .customer-schedule-content .schedule-grid:not(.schedule-grid-sequential) .schedule-event-time {
    font-size: 17px;
  }

  .schedule-days-sequential {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: minmax(82%, 340px);
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: inline mandatory;
  }

  .schedule-day-col-sequential {
    padding: 0 8px;
    scroll-snap-align: start;
  }

  .schedule-day-col-sequential .schedule-day-header {
    display: flex;
    justify-content: space-between;
    text-align: right;
    font-size: 21px;
  }

  .schedule-sequential-event.customer-class-card {
    width: 100%;
    justify-self: stretch;
    min-height: 0;
    padding: 36px 18px 40px;
    gap: 5px;
    border-radius: 20px;
  }

  .customer-paper-plane {
    top: 36px;
    left: 18px;
    width: 34px;
    height: 34px;
    font-size: 22px;
  }

  .schedule-sequential-event.customer-class-card .schedule-event-title {
    min-height: 0;
    margin-left: 44px;
    font-size: 18px;
    line-height: 1.15;
  }

  .schedule-sequential-event.customer-class-card .schedule-event-time {
    font-size: 21px;
    line-height: 1.12;
  }

  .schedule-sequential-event.customer-class-card .schedule-event-meta {
    font-size: 13px;
    line-height: 1.16;
  }

  .schedule-event-presenter {
    font-size: 16px;
  }

  .customer-register-pill {
    right: auto;
    left: 18px;
    bottom: 11px;
    min-height: 32px;
    font-size: 14px;
    padding-inline: 13px;
  }

  .customer-class-card.customer-card-online:not(.customer-card-special):not(.customer-card-active) {
    padding-bottom: 40px;
  }

  .customer-class-card.customer-card-online:not(.customer-card-special):not(.customer-card-active)::after {
    min-height: 44px;
    font-size: 14px;
  }

  .event-layout.customer-event-layout {
    gap: 20px;
  }

  .customer-route-event .event-layout.customer-event-layout {
    margin-top: 0;
  }

  .customer-route-event .event-details {
    padding: 30px 22px;
  }

  .customer-route-event .event-title-row {
    display: none;
  }

  .event-cover img {
    max-height: none;
  }

  .event-title-block h2 {
    font-size: 30px;
  }

  .event-description {
    font-size: 16px;
    padding-inline: 0;
  }

  .event-highlight {
    flex-direction: column;
    gap: 8px;
  }

  .plan-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .form-grid .span-2 {
    grid-column: auto;
  }

  .customer-profile-form input,
  .customer-profile-form select,
  .customer-profile-form textarea {
    min-height: 58px;
  }

  .customer-profile-actions {
    display: grid;
  }

  .charge-row {
    align-items: stretch;
  }

  .customer-payment-card {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 18px;
  }

  .customer-payment-summary {
    width: 100%;
    min-width: 0;
    justify-items: start;
  }

  .customer-invoice-missing {
    max-width: none;
    text-align: start;
  }

  .login-card {
    width: 100vw;
    max-width: 100vw;
    min-height: 100vh;
    padding: 66px 34px 42px;
    gap: 22px;
  }

  .login-card h2 {
    font-size: 48px;
  }

  .customer-login-logo.customer-login-logo-hero {
    width: min(82vw, 390px);
    margin-bottom: 26px;
  }

  .login-card .social-btn {
    width: 88px;
    height: 88px;
  }

  .login-card .social-icon {
    font-size: 42px;
  }

  .customer-login-card .social-grid {
    gap: 24px;
  }

  .login-card .login-divider {
    font-size: 22px;
    gap: 18px;
    margin-top: 22px;
  }

  .login-card input {
    min-height: 68px;
    font-size: 28px;
    padding: 0 28px;
  }

  .login-card .link-button {
    font-size: 22px;
  }

  .customer-login-card .customer-login-submit {
    min-height: 76px;
    margin-top: 30px;
    font-size: 30px;
  }
}

