.booking-hero {
      display: grid;
      gap: 12px;
      padding: 18px;
      border-radius: 26px;
      background:
        radial-gradient(circle at top right, rgba(255,255,255,0.28), transparent 30%),
        linear-gradient(145deg, rgba(25, 59, 46, 0.96), rgba(13, 34, 25, 0.98));
      color: #fff;
      box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.14),
        0 22px 44px rgba(12, 25, 19, 0.22);
    }

    .booking-hero h3,
    .booking-card-title,
    .booking-status-title {
      margin: 0;
      font-family: "Unbounded", "Manrope", sans-serif;
      letter-spacing: -0.05em;
    }

    .booking-hero h3 {
      font-size: 24px;
      line-height: 1.02;
    }

    .booking-hero p {
      margin: 0;
      color: rgba(255,255,255,0.8);
      font-size: 14px;
      line-height: 1.5;
    }

    .booking-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .booking-meta span {
      min-height: 38px;
      padding: 0 14px;
      display: inline-flex;
      align-items: center;
      border-radius: 999px;
      background: rgba(255,255,255,0.12);
      border: 1px solid rgba(255,255,255,0.12);
      font-size: 13px;
      font-weight: 800;
    }

    .booking-grid {
      display: grid;
      gap: 14px;
    }

    .booking-card,
    .booking-status {
      display: grid;
      gap: 12px;
      padding: 16px;
      border-radius: 24px;
      background:
        linear-gradient(180deg, rgba(255,255,255,0.86), rgba(236,241,246,0.54)),
        rgba(255,255,255,0.44);
      border: 1px solid rgba(255,255,255,0.6);
      box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.84),
        0 18px 38px rgba(84, 102, 118, 0.12);
    }

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

    .booking-card-title {
      font-size: 20px;
      line-height: 1.02;
    }

    .booking-card-subtitle,
    .booking-help,
    .booking-slot-empty,
    .booking-empty,
    .booking-note {
      color: var(--muted);
      font-size: 14px;
      line-height: 1.5;
    }

    .booking-badge {
      min-height: 36px;
      padding: 0 12px;
      display: inline-flex;
      align-items: center;
      border-radius: 999px;
      font-size: 12px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      background: rgba(38, 90, 69, 0.1);
      color: var(--green);
      border: 1px solid rgba(38, 90, 69, 0.12);
      white-space: nowrap;
    }

    .booking-badge.pending {
      background: rgba(240, 195, 108, 0.18);
      color: #8a5a12;
      border-color: rgba(240, 195, 108, 0.28);
    }

    .booking-badge.confirmed {
      background: rgba(111, 227, 176, 0.18);
      color: #1a6b4a;
      border-color: rgba(111, 227, 176, 0.28);
    }

    .booking-badge.cancelled {
      background: rgba(187, 104, 104, 0.12);
      color: #934848;
      border-color: rgba(187, 104, 104, 0.2);
    }

    .booking-fields {
      display: grid;
      gap: 12px;
    }

    .booking-field {
      display: grid;
      gap: 7px;
    }

    .booking-field label {
      font-size: 12px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.06em;
      color: #82938b;
    }

    .booking-input,
    .booking-textarea {
      width: 100%;
      border: 1px solid rgba(19,49,38,0.12);
      border-radius: 18px;
      background: rgba(255,255,255,0.84);
      color: var(--text);
      font: inherit;
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.72);
    }

    .booking-input {
      min-height: 58px;
      padding: 0 16px;
    }

    .booking-textarea {
      min-height: 110px;
      padding: 14px 16px;
      resize: vertical;
    }

    .booking-months,
    .booking-days,
    .booking-times {
      display: grid;
      gap: 10px;
    }

    .booking-months {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .booking-days {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

    .booking-chip,
    .booking-day,
    .booking-time,
    .booking-action {
      border: 1px solid rgba(19,49,38,0.1);
      border-radius: 18px;
      background: rgba(255,255,255,0.84);
      color: var(--text);
      font: inherit;
      transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background .18s ease;
    }

    .booking-chip,
    .booking-action {
      min-height: 54px;
      padding: 0 16px;
      font-weight: 800;
    }

    .booking-day,
    .booking-time {
      padding: 14px;
      display: grid;
      gap: 4px;
      text-align: left;
    }

    .booking-day strong,
    .booking-time strong {
      font-size: 18px;
      line-height: 1.02;
    }

    .booking-chip:hover,
    .booking-day:hover,
    .booking-time:hover,
    .booking-action:hover {
      transform: translateY(-1px);
    }

    .booking-chip.is-active,
    .booking-day.is-active,
    .booking-time.is-active,
    .booking-action.primary {
      color: #fff;
      border-color: transparent;
      background: linear-gradient(135deg, #2d654f 0%, #17372b 58%, #0b1d16 100%);
      box-shadow: 0 18px 34px rgba(19,49,38,0.18);
    }

    .booking-action.secondary {
      background: rgba(255,255,255,0.78);
    }

    .booking-action[disabled],
    .booking-time[disabled],
    .booking-chip[disabled] {
      opacity: 0.46;
      cursor: not-allowed;
      transform: none;
      box-shadow: none;
    }

    .booking-status {
      gap: 10px;
    }

    .booking-status-title {
      font-size: 18px;
      line-height: 1.05;
    }

    .booking-status-row,
    .booking-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .booking-actions .booking-action {
      flex: 1 1 180px;
    }

    .support-panel {
      display: grid;
      gap: 16px;
    }

    .support-card,
    .support-thread {
      display: grid;
      gap: 12px;
      padding: 16px;
      border-radius: 24px;
      background:
        linear-gradient(180deg, rgba(255,255,255,0.86), rgba(236,241,246,0.54)),
        rgba(255,255,255,0.44);
      border: 1px solid rgba(255,255,255,0.6);
      box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.84),
        0 18px 38px rgba(84, 102, 118, 0.12);
    }

    .support-card-title,
    .support-thread-title {
      margin: 0;
      font-family: "Unbounded", "Manrope", sans-serif;
      font-size: 20px;
      line-height: 1.02;
      letter-spacing: -0.05em;
    }

    .support-help,
    .support-empty,
    .support-note {
      color: var(--muted);
      font-size: 14px;
      line-height: 1.5;
    }

    .support-fields,
    .support-thread-list {
      display: grid;
      gap: 12px;
    }

    .support-message {
      display: grid;
      gap: 6px;
      padding: 14px 16px;
      border-radius: 18px;
      background: rgba(255,255,255,0.82);
      border: 1px solid rgba(19,49,38,0.08);
    }

    .support-message--admin {
      background: rgba(230,241,236,0.78);
      border-color: rgba(38, 90, 69, 0.12);
    }

    .support-message-head {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
    }

    .support-message-head strong {
      font-size: 13px;
      font-weight: 800;
    }

    .support-message-head time {
      color: #82938b;
      font-size: 12px;
      font-weight: 700;
    }

    .support-message p {
      margin: 0;
      font-size: 14px;
      line-height: 1.55;
      white-space: pre-wrap;
    }

    .legal {
      gap: 12px;
      display: flex;
      flex-direction: column;
    }

    .legal-links {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .footer-link {
      min-height: 42px;
      padding: 0 14px;
      display: inline-flex;
      align-items: center;
      border-radius: 999px;
      background:
        linear-gradient(180deg, rgba(255,255,255,0.74), rgba(255,255,255,0.42)),
        rgba(255,255,255,0.28);
      border: 1px solid rgba(255,255,255,0.54);
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.7);
      backdrop-filter: blur(18px);
      text-decoration: none;
      color: var(--text);
      font-size: 13px;
      font-weight: 800;
      transition: transform .22s ease, box-shadow .22s ease;
    }

    .cookie-banner {
      position: fixed;
      left: 14px;
      right: 14px;
      bottom: max(14px, env(safe-area-inset-bottom));
      z-index: 30;
      display: grid;
      gap: 12px;
      padding: 16px;
      border-radius: 24px;
      background:
        linear-gradient(180deg, rgba(255,255,255,0.92), rgba(246,248,244,0.88)),
        rgba(255,255,255,0.84);
      border: 1px solid rgba(255,255,255,0.7);
      box-shadow:
        inset 0 1px 0 rgba(255,255,255,0.82),
        0 24px 48px rgba(17, 35, 28, 0.16);
      backdrop-filter: blur(24px);
    }

    .cookie-banner.is-hidden {
      display: none;
    }

    .cookie-banner p {
      margin: 0;
      font-size: 14px;
      line-height: 1.5;
      color: var(--text);
    }

    .cookie-banner__actions {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .cookie-banner__button,
    .cookie-banner__link {
      min-height: 44px;
      padding: 0 16px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border-radius: 999px;
      font: inherit;
      font-size: 14px;
      font-weight: 800;
      text-decoration: none;
      cursor: pointer;
    }

    .cookie-banner__button {
      border: none;
      color: #fff;
      background: linear-gradient(135deg, #2d654f 0%, #17372b 58%, #0b1d16 100%);
      box-shadow: 0 16px 32px rgba(19,49,38,0.18);
    }

    .cookie-banner__link {
      color: var(--text);
      border: 1px solid rgba(19,49,38,0.1);
      background: rgba(255,255,255,0.78);
      box-shadow: inset 0 1px 0 rgba(255,255,255,0.72);
    }

    @keyframes drift {
      0%, 100% { transform: translate3d(0, 0, 0) scale(1); }
      50% { transform: translate3d(0, 18px, 0) scale(1.04); }
    }

    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-16px); }
    }

    @keyframes rise {
      0% {
        opacity: 0;
        transform: translateY(18px);
      }
      100% {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @media (max-width: 420px) {
      .hero {
        min-height: 252px;
      }

      .hero-fox {
        width: 116px;
        height: 116px;
        right: 18px;
        top: 12px;
      }

      .booking-months,
      .booking-days,
      .booking-times {
        grid-template-columns: 1fr;
      }
    }
