/* ════════════════════════════════════════════════════════════
   book.css  —  Urban Cage Customer Booking Portal
   Dark mode, lime accent (#ccff00), premium sports feel
   ════════════════════════════════════════════════════════════ */

/* ── Variables ───────────────────────────────────────────── */
:root {
  --bg:        #080808;
  --surf:      #141414;
  --surf2:     #1e1e1e;
  --surf3:     #252525;
  --border:    #2a2a2a;
  --lime:      #ccff00;
  --lime-dim:  #a3cc00;
  --lime-glow: rgba(204,255,0,0.18);
  --lime-pale: rgba(204,255,0,0.07);
  --text:      #f0f0f0;
  --muted:     #888;
  --red:       #ff4444;
  --green:     #00e676;
  --font-h:    'Bebas Neue', sans-serif;
  --font-b:    'Inter', sans-serif;
  --radius:    14px;
  --radius-sm: 9px;
  --shadow:    0 4px 24px rgba(0,0,0,0.55);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

/* iOS: prevent inherited user-select:none from blocking keyboard on inputs */
input, textarea, select {
  -webkit-user-select: text;
  user-select: text;
  touch-action: manipulation;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-b);
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
button { font-family: var(--font-b); cursor: pointer; }

@media (max-width: 640px) {
  input, textarea, select { font-size: 16px; }
}

/* ── HEADER ──────────────────────────────────────────────── */
.rk-header {
  position: sticky; top: 0; z-index: 100;
  height: 58px;
  background: rgba(8,8,8,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 20px;
}
.rk-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-h); font-size: 1.25rem;
  color: var(--lime); letter-spacing: 1px;
}
.rk-logo img {
  width: 34px; height: 34px; border-radius: 6px; object-fit: cover;
}
.rk-user { display: flex; align-items: center; }

/* Profile button (top-right) */
.rk-profile-btn {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--surf2); border: 2px solid var(--lime);
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  padding: 0; overflow: hidden; transition: box-shadow 0.15s;
  flex-shrink: 0;
}
.rk-profile-btn:hover { box-shadow: 0 0 0 3px var(--lime-glow); }
.rk-avatar { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; border: none; }
.rk-user-initials {
  font-family: var(--font-h); font-size: 1rem; color: var(--lime);
  line-height: 1; user-select: none;
}

/* ── LOGIN OVERLAY ───────────────────────────────────────── */
.rk-login-overlay {
  position: fixed; inset: 0; z-index: 200;
  background: radial-gradient(ellipse at 50% -10%, rgba(204,255,0,0.12) 0%, rgba(0,0,0,0.98) 65%);
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.rk-login-card {
  background: var(--surf);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 36px 32px 32px;
  max-width: 380px; width: 100%;
  box-shadow: var(--shadow), 0 0 80px rgba(204,255,0,0.07);
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: 20px;
}

/* Brand row */
.rk-login-brand {
  display: flex; align-items: center; gap: 10px;
}
.rk-login-logo-img {
  width: 38px; height: 38px; border-radius: 9px; object-fit: cover;
  border: 1.5px solid var(--border);
}
.rk-login-brand-name {
  font-family: var(--font-h); font-size: 1.3rem;
  letter-spacing: 2px; color: var(--lime);
}

/* Hero text */
.rk-login-hero { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.rk-login-title {
  font-family: var(--font-h); font-size: 2.6rem;
  letter-spacing: 2px; color: var(--lime);
  line-height: 1; text-transform: uppercase;
}
.rk-login-sub { font-size: 0.82rem; color: var(--muted); line-height: 1.5; }

/* Feature pills */
.rk-login-perks {
  display: flex; gap: 8px; flex-wrap: wrap; justify-content: center;
}
.rk-perk {
  display: flex; align-items: center; gap: 5px;
  padding: 5px 12px;
  background: var(--surf2); border: 1px solid var(--border);
  border-radius: 20px; font-size: 0.74rem; font-weight: 600;
  color: var(--muted); letter-spacing: 0.02em;
  transition: border-color 0.15s, color 0.15s;
}
.rk-perk i { color: var(--lime); font-size: 0.7rem; }

.rk-gsign-wrap { width: 100%; display: flex; justify-content: center; }
.rk-login-note { font-size: 0.72rem; color: #555; }
.rk-login-note i { margin-right: 4px; }

/* ── OTP PANEL ───────────────────────────────────────────── */
.rk-otp-panel { width: 100%; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.rk-otp-label { font-size: 0.78rem; font-weight: 600; color: var(--muted); letter-spacing: 0.04em; text-transform: uppercase; }

.rk-otp-row { display: flex; width: 100%; gap: 8px; }
.rk-otp-email-input {
  flex: 1; padding: 11px 14px; border-radius: var(--radius-sm);
  background: var(--surf2); border: 1px solid var(--border);
  color: var(--text); font-size: 0.9rem; outline: none;
  transition: border-color 0.15s;
}
.rk-otp-email-input:focus { border-color: var(--lime); }
.rk-otp-email-input::placeholder { color: #444; }
.rk-otp-send-btn {
  padding: 11px 18px; border-radius: var(--radius-sm);
  background: var(--lime); color: #000; font-size: 0.85rem;
  font-weight: 700; border: none; white-space: nowrap;
  transition: opacity 0.15s, transform 0.1s;
}
.rk-otp-send-btn:hover:not(:disabled) { opacity: 0.88; transform: translateY(-1px); }
.rk-otp-send-btn:disabled { opacity: 0.45; cursor: not-allowed; transform: none; }

/* OTP digit boxes */
.rk-otp-sent-msg { font-size: 0.8rem; color: var(--muted); text-align: center; }
.rk-otp-sent-msg strong { color: var(--text); }
.rk-otp-digits { display: flex; gap: 8px; justify-content: center; }
.rk-otp-digit {
  width: 42px; height: 50px; border-radius: var(--radius-sm);
  background: var(--surf2); border: 1.5px solid var(--border);
  color: var(--lime); font-size: 1.4rem; font-family: var(--font-h);
  text-align: center; outline: none; caret-color: transparent;
  transition: border-color 0.15s;
}
.rk-otp-digit:focus { border-color: var(--lime); background: var(--surf3); }
.rk-otp-digit.filled { border-color: var(--lime-dim); }

.rk-otp-cta-row { display: flex; gap: 10px; width: 100%; }
.rk-otp-verify-btn {
  flex: 1; padding: 12px; border-radius: var(--radius-sm);
  background: var(--lime); color: #000; font-size: 0.92rem;
  font-weight: 700; border: none;
  transition: opacity 0.15s;
}
.rk-otp-verify-btn:disabled { opacity: 0.38; cursor: not-allowed; }
.rk-otp-verify-btn:hover:not(:disabled) { opacity: 0.88; }
.rk-otp-resend-btn {
  padding: 12px 16px; border-radius: var(--radius-sm);
  background: none; border: 1px solid var(--border);
  color: var(--muted); font-size: 0.82rem;
  transition: border-color 0.15s, color 0.15s;
}
.rk-otp-resend-btn:hover:not(:disabled) { border-color: var(--lime); color: var(--lime); }
.rk-otp-resend-btn:disabled { opacity: 0.35; cursor: not-allowed; }
.rk-otp-back-btn {
  background: none; border: none; color: #555;
  font-size: 0.75rem; cursor: pointer;
  transition: color 0.15s;
}
.rk-otp-back-btn:hover { color: var(--muted); }
.rk-otp-back-btn i { margin-right: 4px; font-size: 0.68rem; }

.rk-otp-error {
  font-size: 0.78rem; color: var(--red);
  text-align: center; padding: 4px 0;
}

/* OR Divider */
.rk-or-divider {
  width: 100%; display: flex; align-items: center; gap: 10px;
  color: #444; font-size: 0.72rem; font-weight: 600; letter-spacing: 0.06em;
}
.rk-or-divider::before, .rk-or-divider::after {
  content: ''; flex: 1; height: 1px; background: var(--border);
}
.rk-or-divider span { padding: 0 2px; }

/* ── PROFILE PANEL ───────────────────────────────────────── */
/* Full-screen modal container */
.rk-profile-panel {
  position: fixed; inset: 0; z-index: 500;
  display: flex; flex-direction: column; justify-content: flex-end;
}
/* Semi-transparent backdrop — clicking it closes the panel */
.rk-pp-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
/* Sliding sheet */
.rk-pp-sheet {
  position: relative; z-index: 1;
  background: var(--surf);
  border-top: 1px solid var(--border);
  border-radius: 22px 22px 0 0;
  padding: 12px 20px 32px;
  padding-bottom: calc(32px + env(safe-area-inset-bottom, 0px));
  width: 100%; max-width: 560px; margin: 0 auto;
  box-shadow: 0 -8px 40px rgba(0,0,0,0.6);
  animation: ppSlideUp 0.22s ease;
  max-height: 90vh; overflow-y: auto;
}
@keyframes ppSlideUp {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);   opacity: 1; }
}
/* Drag handle */
.rk-pp-handle {
  width: 40px; height: 4px; background: var(--border);
  border-radius: 2px; margin: 0 auto 20px;
}
/* Avatar + name row */
.rk-pp-top {
  display: flex; align-items: center; gap: 14px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 18px;
}
.rk-pp-avatar {
  width: 56px; height: 56px; border-radius: 50%; flex-shrink: 0;
  background: var(--surf2); border: 2.5px solid var(--lime);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-h); font-size: 1.5rem; color: var(--lime);
  overflow: hidden;
}
.rk-pp-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.rk-pp-name  { font-size: 1rem; font-weight: 700; color: var(--text); }
.rk-pp-email { font-size: 0.78rem; color: var(--muted); margin-top: 3px; word-break: break-all; }
/* Section label inside panel */
.rk-pp-section-label {
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.06em; color: var(--muted); margin-bottom: 10px;
}
/* Editable fields */
.rk-pp-fields { display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px; }
.rk-pp-save-btn {
  padding: 11px; border-radius: var(--radius-sm); cursor: pointer;
  background: var(--lime-pale); border: 1px solid rgba(204,255,0,0.3);
  color: var(--lime); font-size: 0.88rem; font-weight: 700;
  transition: all 0.15s; width: 100%; margin-top: 2px;
}
.rk-pp-save-btn:hover { background: var(--lime); color: #000; }
/* Nav links */
.rk-pp-links { margin-bottom: 14px; }
.rk-pp-link {
  width: 100%; padding: 14px 0;
  background: none; border: none;
  border-bottom: 1px solid var(--border);
  color: var(--text); font-size: 0.9rem; font-weight: 600;
  display: flex; align-items: center; gap: 12px;
  cursor: pointer; transition: color 0.15s; text-align: left;
  text-decoration: none;
}
.rk-pp-link:hover { color: var(--lime); }
.rk-pp-link > i:first-child { color: var(--lime); width: 18px; font-size: 0.9rem; flex-shrink: 0; }
.rk-pp-arrow { margin-left: auto; color: var(--muted); font-size: 0.7rem; }
/* Sign out */
.rk-pp-logout {
  width: 100%; padding: 13px;
  background: rgba(255,68,68,0.07); border: 1px solid rgba(255,68,68,0.2);
  border-radius: var(--radius-sm); color: #ff6b6b;
  font-size: 0.9rem; font-weight: 600;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  cursor: pointer; transition: all 0.15s;
}
.rk-pp-logout:hover { background: rgba(255,68,68,0.16); border-color: rgba(255,68,68,0.4); }

/* Desktop: show as right-side dropdown rather than bottom sheet */
@media (min-width: 600px) {
  .rk-profile-panel {
    justify-content: flex-start; align-items: flex-end;
    padding-top: 58px; /* header height */
    padding-right: 20px;
  }
  .rk-pp-sheet {
    border-radius: var(--radius); border-top: 1px solid var(--border);
    max-width: 320px; width: 320px; margin: 0;
    box-shadow: 0 8px 40px rgba(0,0,0,0.7);
    animation: ppDropDown 0.18s ease;
    max-height: calc(100vh - 78px);
  }
  .rk-pp-handle { display: none; }
  @keyframes ppDropDown {
    from { transform: translateY(-10px); opacity: 0; }
    to   { transform: translateY(0);    opacity: 1; }
  }
}

/* ── BOTTOM NAV / DOCK ──────────────────────────────────── */
.rk-bottom-nav {
  position: fixed;
  left: 50%; transform: translateX(-50%);
  bottom: calc(14px + env(safe-area-inset-bottom, 0px));
  z-index: 300;
  background: rgba(14,14,14,0.96);
  backdrop-filter: blur(28px);
  -webkit-backdrop-filter: blur(28px);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 30px;
  display: flex; align-items: stretch;
  height: 62px;
  padding: 6px 8px;
  gap: 4px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.65), 0 2px 8px rgba(0,0,0,0.4), inset 0 1px 0 rgba(255,255,255,0.05);
  width: auto;
  min-width: 270px;
}
.rk-nav-item {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 4px;
  background: none; border: none; cursor: pointer;
  color: #555; text-decoration: none;
  font-size: 0.58rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.04em;
  transition: color 0.18s, background 0.18s;
  padding: 0 18px;
  border-radius: 24px;
  white-space: nowrap;
}
.rk-nav-item i { font-size: 1.05rem; }
.rk-nav-item.active {
  color: var(--lime);
  background: rgba(204,255,0,0.1);
}
.rk-nav-item:hover:not(.active) { color: var(--muted); }


/* ── APP LAYOUT ──────────────────────────────────── */
#reserveApp {
  max-width: 560px; margin: 0 auto;
  /* Mobile: extra bottom padding for floating dock + CTA bar */
  padding: 0 16px calc(90px + 60px + env(safe-area-inset-bottom, 0px));
}
@media (min-width: 600px) {
  #reserveApp { padding: 0 16px calc(90px + 60px); }
}

/* ── STEP PROGRESS ───────────────────────────────────────── */
.rk-progress {
  display: flex; align-items: center;
  padding: 20px 4px 6px;
  gap: 0;
}
.rk-progress-step {
  display: flex; flex-direction: column; align-items: center; gap: 5px;
  flex-shrink: 0;
}
.rk-prog-bubble {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--surf2); border: 2px solid var(--border);
  color: var(--muted); font-size: 0.85rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s;
}
.rk-progress-step span {
  font-size: 0.72rem; color: var(--muted); font-weight: 600;
  letter-spacing: 0.03em; text-transform: uppercase;
}
.rk-progress-step.active .rk-prog-bubble {
  background: var(--lime); border-color: var(--lime);
  color: #000; box-shadow: 0 0 14px var(--lime-glow);
}
.rk-progress-step.active span { color: var(--lime); }
.rk-progress-step.done .rk-prog-bubble {
  background: var(--lime-dim); border-color: var(--lime-dim); color: #000;
}
.rk-progress-line {
  flex: 1; height: 2px; background: var(--border);
  margin: 0 8px; margin-bottom: 18px;
  transition: background 0.3s;
}
.rk-progress-line.done { background: var(--lime-dim); }

/* ── PAGE ────────────────────────────────────────────────── */
.rk-page { padding-top: 10px; }

.rk-page-title { margin-bottom: 20px; }
.rk-page-title h1 {
  font-family: var(--font-h); font-size: 2rem; letter-spacing: 1.5px;
  color: var(--lime); line-height: 1;
}
.rk-page-title p { font-size: 0.83rem; color: var(--muted); margin-top: 4px; }

.rk-page-title--p2 {
  display: flex; align-items: center; gap: 14px;
}
.rk-back-btn {
  width: 38px; height: 38px; border-radius: 50%;
  background: var(--surf2); border: 1px solid var(--border);
  color: var(--lime); font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; transition: all 0.15s;
}
.rk-back-btn:hover { background: var(--lime-pale); border-color: var(--lime); }

/* ── DATE PICKER ─────────────────────────────────────────── */
.rk-date-wrap { margin-bottom: 22px; }
.rk-date-label {
  display: block; margin-bottom: 8px;
  font-size: 0.8rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.05em; color: var(--muted);
}
.rk-date-label i { color: var(--lime); margin-right: 4px; }

.rk-date-nav {
  display: flex; align-items: center; gap: 8px;
  position: relative;
}
.rk-date-display {
  flex: 1; text-align: center;
  padding: 13px 12px; border-radius: var(--radius-sm);
  background: var(--surf); border: 1.5px solid var(--border);
  font-size: 1rem; font-weight: 700; color: var(--text);
  letter-spacing: 0.02em;
  cursor: pointer; transition: border-color 0.15s, background 0.15s;
}
.rk-date-display:hover { border-color: var(--lime); background: var(--lime-pale); }
.rk-date-arrow {
  width: 46px; height: 46px; border-radius: var(--radius-sm);
  background: var(--surf); border: 1.5px solid var(--border);
  color: var(--lime); font-size: 0.9rem; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.15s;
}
.rk-date-arrow:hover:not(:disabled) { border-color: var(--lime); background: var(--lime-pale); }
.rk-date-arrow:disabled { color: #333; border-color: var(--border); cursor: not-allowed; opacity: 0.4; }

.rk-date-input-hidden {
  position: absolute; opacity: 0; pointer-events: none;
  width: 1px; height: 1px; overflow: hidden;
}

/* ── GROUND CARDS ────────────────────────────────────────── */
.rk-ground-title {
  font-size: 0.8rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.05em; color: var(--muted); margin-bottom: 10px;
}
.rk-grounds { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }

.rk-gc {
  display: flex; align-items: center; gap: 14px;
  padding: 13px 15px; border-radius: var(--radius-sm);
  background: var(--surf); border: 1.5px solid var(--border);
  cursor: pointer; transition: all 0.15s; position: relative;
}
.rk-gc:hover { border-color: rgba(204,255,0,0.35); background: var(--surf2); }
.rk-gc.active {
  border-color: var(--lime); background: var(--lime-pale);
  box-shadow: 0 0 0 3px var(--lime-glow);
}
.rk-gc-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--surf3); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--lime); flex-shrink: 0;
  transition: background 0.15s;
}
.rk-gc.active .rk-gc-icon { background: var(--lime); color: #000; }
.rk-gc-body { flex: 1; }
.rk-gc-name { font-size: 0.95rem; font-weight: 700; color: var(--text); }
.rk-gc-desc { font-size: 0.75rem; color: var(--muted); margin-top: 1px; }
.rk-gc-price {
  font-size: 0.8rem; font-weight: 700; color: var(--lime);
  white-space: nowrap;
}
.rk-gc-tick {
  position: absolute; right: 14px; top: 50%; transform: translateY(-50%);
  color: var(--lime); font-size: 1.1rem;
  opacity: 0; transition: opacity 0.15s;
}
.rk-gc.active .rk-gc-tick { opacity: 1; }

/* ── AVAILABILITY BAR ────────────────────────────────────── */
.rk-avail-bar {
  padding: 11px 16px; border-radius: var(--radius-sm);
  background: var(--surf); border: 1px solid var(--border);
  font-size: 0.85rem; color: var(--muted);
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 16px;
}
.rk-avail-bar.error { border-color: var(--red); color: var(--red); }
.rk-avail-bar.ok    { border-color: rgba(0,230,118,0.3); color: var(--green); }

/* ── SLOT SECTION ────────────────────────────────────────── */
.rk-slots-header {
  display: flex; align-items: flex-start; justify-content: space-between;
  margin-bottom: 10px; gap: 10px;
}
.rk-slots-title { font-weight: 700; font-size: 1rem; }
.rk-slots-sub   { font-size: 0.78rem; color: var(--muted); margin-top: 2px; }
.rk-sel-count {
  font-size: 0.73rem; font-weight: 700; padding: 3px 10px;
  border-radius: 20px; background: var(--lime-pale);
  color: var(--lime); border: 1px solid rgba(204,255,0,0.2);
  white-space: nowrap;
}

.rk-legend {
  display: flex; gap: 16px; margin-bottom: 14px;
  font-size: 0.75rem; color: var(--muted);
}
.rk-legend span { display: flex; align-items: center; gap: 5px; }
.rk-dot { width: 10px; height: 10px; border-radius: 3px; display: inline-block; }
.dot-avail  { background: var(--surf3); border: 1px solid var(--border); }
.dot-taken  { background: #2a2a2a; border: 1px solid #444; }
.dot-sel    { background: var(--lime); }

/* Period headers inside grid */
.rk-period-header {
  grid-column: 1 / -1;
  font-size: 0.7rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.07em; color: var(--muted);
  padding: 8px 0 4px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2px;
}

.rk-slot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(138px, 1fr));
  gap: 7px; margin-bottom: 28px;
}
.rk-slot-btn {
  padding: 9px 8px;
  background: var(--surf3); border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); color: var(--text);
  font-size: 0.72rem; font-weight: 600;
  text-align: center; cursor: pointer;
  transition: all 0.12s; user-select: none;
  white-space: nowrap;
}
.rk-slot-btn:hover:not(.taken):not(.selected) {
  border-color: rgba(204,255,0,0.5); background: var(--surf2);
}
.rk-slot-btn.selected {
  background: var(--lime); border-color: var(--lime);
  color: #000; box-shadow: 0 0 8px var(--lime-glow);
}
.rk-slot-btn.taken {
  background: #1a1a1a; border-color: #2e2e2e;
  color: #444; cursor: not-allowed;
  text-decoration: line-through; text-decoration-color: #3a3a3a;
}

/* ── POST MIDNIGHT / OVERNIGHT ────────────────────────── */
.rk-midnight-section { margin-top: 8px; grid-column: 1 / -1; }
.rk-period-overnight {
  color: rgba(204,255,0,0.75);
  border-bottom-color: rgba(204,255,0,0.15);
  margin-top: 12px;
}
.rk-next-day-label {
  font-size: 0.62rem; font-weight: 400; letter-spacing: 0;
  text-transform: none; color: var(--muted); margin-left: 4px;
}
.rk-midnight-lock {
  color: var(--muted); font-size: 0.8rem;
  padding: 14px 12px; margin: 8px 0;
  background: rgba(204,255,0,0.02);
  border: 1px dashed rgba(204,255,0,0.12);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.rk-midnight-lock i { opacity: 0.4; }
.rk-overnight-tag {
  display: inline-block;
  font-size: 0.66rem; font-weight: 700;
  background: var(--lime); color: #000;
  padding: 2px 8px; border-radius: 20px;
  margin-top: 3px;
}
.rk-confirm-id {
  background: rgba(204,255,0,0.06); border-radius: 8px;
  padding: 8px 12px !important;
  border: 1px solid rgba(204,255,0,0.2);
  font-size: 0.92rem;
}
.rk-confirm-id strong { color: var(--lime); }
.rk-confirm-pending {
  background: rgba(255,168,0,0.08); border-radius: 8px;
  padding: 8px 12px !important;
  border: 1px solid rgba(255,168,0,0.2);
  color: #ffb347;
}
.rk-confirm-pending i { color: #ffb347; }
.rk-overnight-badge {
  display: inline-flex; align-items: center; gap: 3px;
  font-size: 0.68rem; font-weight: 600;
  background: rgba(204,255,0,0.08); color: var(--lime);
  border: 1px solid rgba(204,255,0,0.2);
  padding: 2px 8px; border-radius: 20px;
  margin-left: 8px; vertical-align: middle;
}

/* ── CTA BAR ─────────────────────────────────────────────── */
.rk-cta-bar {
  position: fixed; bottom: calc(90px + env(safe-area-inset-bottom, 0px)); left: 0; right: 0; z-index: 96;
  background: rgba(20,20,20,0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
  padding: 14px 20px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.5);
}
@media (min-width: 600px) {
  .rk-cta-bar { bottom: 90px; }
}
.rk-cta-info { display: flex; flex-direction: column; }
.rk-cta-time { font-size: 0.78rem; color: var(--muted); }
.rk-cta-price { font-size: 1.15rem; font-weight: 700; color: var(--lime); }
.rk-cta-btn {
  padding: 13px 28px;
  background: var(--lime); color: #000;
  border: none; border-radius: var(--radius-sm);
  font-size: 0.95rem; font-weight: 700;
  display: flex; align-items: center; gap: 8px;
  transition: background 0.15s, transform 0.1s;
  box-shadow: 0 0 20px var(--lime-glow);
  white-space: nowrap;
}
.rk-cta-btn:hover  { background: var(--lime-dim); }
.rk-cta-btn:active { transform: scale(0.97); }

/* ── PAGE 2 CARDS ────────────────────────────────────────── */
.rk-booking-card {
  background: linear-gradient(135deg, var(--surf) 0%, #181808 100%);
  border: 1.5px solid rgba(204,255,0,0.2);
  border-radius: var(--radius); padding: 18px 20px;
  margin-bottom: 22px; position: relative; overflow: hidden;
}
.rk-booking-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at top right, var(--lime-glow) 0%, transparent 60%);
  pointer-events: none;
}
.rk-booking-badge {
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--lime);
  margin-bottom: 12px;
}
.rk-booking-rows { display: flex; flex-direction: column; gap: 8px; }
.rk-brow {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.9rem; color: var(--text);
}
.rk-brow i { color: var(--lime); width: 14px; font-size: 0.75rem; }

.rk-section-label {
  font-size: 0.75rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.07em; color: var(--muted);
  margin: 20px 0 9px;
}

.rk-form-card,
.rk-coupon-card,
.rk-amount-card,
.rk-pay-card {
  background: var(--surf);
  border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 16px 18px;
  margin-bottom: 4px;
}

.rk-form-row-2 {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  margin-bottom: 12px;
}
@media (max-width: 360px) { .rk-form-row-2 { grid-template-columns: 1fr; } }

.rk-field { display: flex; flex-direction: column; gap: 5px; }
.rk-field label { font-size: 0.75rem; font-weight: 600; color: var(--muted); }
.req { color: var(--lime); }
.rk-opt { font-weight: 400; color: #555; font-size: 0.7rem; }

.rk-input {
  background: var(--surf2); border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); padding: 10px 12px;
  color: var(--text); font-family: var(--font-b); font-size: 0.9rem;
  transition: border-color 0.15s; width: 100%;
}
.rk-input:focus { outline: none; border-color: var(--lime); }
.rk-input::placeholder { color: #555; }

/* Coupon row */
.rk-coupon-row { display: flex; gap: 10px; }
.rk-coupon-input { flex: 1; letter-spacing: 0.08em; }
.rk-apply-btn {
  padding: 10px 18px;
  background: var(--surf3); border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); color: var(--lime);
  font-weight: 700; font-size: 0.85rem; white-space: nowrap;
  transition: all 0.15s;
}
.rk-apply-btn:hover { border-color: var(--lime); background: var(--lime-pale); }
.rk-coupon-msg {
  padding: 8px 12px; border-radius: 8px;
  font-size: 0.8rem; margin-top: 8px;
}
.rk-coupon-msg.success { background: rgba(0,230,118,0.1); color: var(--green); border: 1px solid rgba(0,230,118,0.2); }
.rk-coupon-msg.error   { background: rgba(255,68,68,0.1);  color: var(--red);   border: 1px solid rgba(255,68,68,0.2);  }

/* Amount breakdown */
.rk-amt-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.9rem; color: var(--text); padding: 5px 0;
}
.rk-amt-row + .rk-amt-row { border-top: 1px solid var(--border); }
.rk-discount  { color: var(--green); font-weight: 600; }
.rk-net-row   { font-size: 1rem; font-weight: 700; padding-top: 9px; }
.rk-net-row strong { color: var(--lime); font-size: 1.1rem; }

/* Part payment */
.rk-pay-note { font-size: 0.8rem; color: var(--muted); margin-bottom: 14px; line-height: 1.5; }
.rk-pay-opts { display: flex; gap: 8px; margin-bottom: 18px; }
.rk-popt {
  flex: 1; padding: 13px 6px;
  background: var(--surf2); border: 2px solid var(--border);
  border-radius: var(--radius-sm); cursor: pointer;
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  transition: all 0.15s;
}
.rk-popt:hover { border-color: rgba(204,255,0,0.4); }
.rk-popt--active {
  border-color: var(--lime); background: var(--lime-pale);
  box-shadow: 0 0 0 3px var(--lime-glow);
}
.rk-popt-pct { font-family: var(--font-h); font-size: 1.3rem; color: var(--lime); letter-spacing: 1px; }
.rk-popt--active .rk-popt-pct { color: var(--lime); }
.rk-popt-amt { font-size: 0.82rem; font-weight: 700; color: var(--text); }
.rk-popt-lbl { font-size: 0.65rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; }

.rk-pay-summary { border-top: 1px solid var(--border); padding-top: 12px; display: flex; flex-direction: column; gap: 7px; }
.rk-pay-row { display: flex; justify-content: space-between; font-size: 0.9rem; }
.rk-pay-now { color: var(--lime); font-size: 1rem; }
.rk-balance-row { color: var(--muted); font-size: 0.85rem; }

/* Pay button */
.rk-payaction { margin: 22px 0 10px; }
.rk-paybtn {
  width: 100%; padding: 16px;
  background: var(--lime); border: none;
  border-radius: var(--radius); color: #000;
  font-family: var(--font-h); font-size: 1.2rem; letter-spacing: 1px;
  display: flex; align-items: center; justify-content: center; gap: 9px;
  transition: all 0.15s;
  box-shadow: 0 0 28px var(--lime-glow);
}
.rk-paybtn:hover  { background: var(--lime-dim); }
.rk-paybtn:active { transform: scale(0.98); }
.rk-paybtn:disabled { background: #333; color: #666; box-shadow: none; cursor: not-allowed; }
.rk-secure-note {
  text-align: center; margin-top: 10px;
  font-size: 0.73rem; color: var(--muted);
  display: flex; align-items: center; justify-content: center; gap: 5px;
}
.rk-secure-note i { color: var(--green); }

/* Payment ID badge on confirmation page */
.rk-payid-note {
  font-size: 0.75rem; color: var(--muted);
  background: var(--surf2); border: 1px solid var(--border);
  border-radius: 6px; padding: 6px 14px;
  font-family: monospace; letter-spacing: 0.03em;
  margin-bottom: 4px;
}

/* ── PAGE 3 — CONFIRMATION ───────────────────────────────── */
.rk-confirm-page {
  display: flex; flex-direction: column; align-items: center;
  padding: 40px 0 60px; text-align: center;
}
.rk-confirm-anim {
  position: relative; width: 90px; height: 90px;
  margin-bottom: 22px;
}
.rk-confirm-ring {
  position: absolute; inset: 0; border-radius: 50%;
  border: 3px solid var(--lime);
  animation: ringPulse 1.2s cubic-bezier(0.6,0,0.4,1) forwards;
}
@keyframes ringPulse {
  0%   { transform: scale(0.6); opacity: 0; }
  60%  { transform: scale(1.1); opacity: 1; }
  100% { transform: scale(1);   opacity: 1; }
}
.rk-confirm-check {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; color: var(--lime);
  animation: checkIn 0.4s 0.5s both;
}
@keyframes checkIn {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}
.rk-confirm-title {
  font-family: var(--font-h); font-size: 2.2rem;
  color: var(--lime); letter-spacing: 1px; margin-bottom: 8px;
}
.rk-confirm-sub { font-size: 0.9rem; color: var(--muted); margin-bottom: 24px; line-height: 1.6; }
.rk-confirm-card {
  width: 100%; background: var(--surf);
  border: 1px solid var(--border); border-radius: var(--radius);
  padding: 18px 20px; text-align: left;
  display: flex; flex-direction: column; gap: 9px;
  margin-bottom: 26px; font-size: 0.9rem;
}
.rk-confirm-row { display: flex; align-items: center; gap: 10px; }
.rk-confirm-row i { color: var(--lime); width: 14px; font-size: 0.78rem; }
.rk-confirm-actions { display: flex; gap: 10px; width: 100%; }
.rk-home-btn, .rk-whatsapp-btn {
  flex: 1; padding: 13px; border-radius: var(--radius-sm);
  font-size: 0.9rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center; gap: 7px;
  transition: all 0.15s;
}
.rk-home-btn {
  background: var(--surf); border: 1.5px solid var(--border); color: var(--text);
}
.rk-home-btn:hover { border-color: var(--lime); color: var(--lime); }
.rk-whatsapp-btn {
  background: #075e54; border: none; color: #fff;
}
.rk-whatsapp-btn:hover { background: #128c7e; }

/* ── TOAST ───────────────────────────────────────────────── */
.rk-toast {
  position: fixed;
  bottom: calc(96px + env(safe-area-inset-bottom, 0px));
  left: 50%; transform: translateX(-50%);
  background: var(--surf); border: 1px solid var(--border);
  border-radius: 30px; padding: 10px 22px;
  font-size: 0.85rem; color: var(--text);
  box-shadow: var(--shadow); z-index: 600;
  opacity: 0; pointer-events: none;
  transition: opacity 0.2s, bottom 0.2s;
  white-space: nowrap;
}
.rk-toast.show { opacity: 1; bottom: calc(110px + env(safe-area-inset-bottom, 0px)); }
@media (min-width: 600px) {
  .rk-toast        { bottom: 30px; }
  .rk-toast.show   { bottom: 46px; }
}

/* ── UTILS ───────────────────────────────────────────────── */
@media (max-width: 480px) {
  .rk-login-card { padding: 30px 20px 26px; }
  .rk-cta-bar { padding: 12px 16px; }
}

/* ── MY BOOKINGS BUTTON (kept for backwards compat, unused) ── */
.rk-mybookings-btn { display: none; }

/* ── PROFILE PAGE ──────────────────────────────────── */
.rk-fp-topbar {
  padding: 20px 0 16px;
}
.rk-fp-title {
  font-family: var(--font-h); font-size: 2rem;
  color: var(--lime); letter-spacing: 1.5px; line-height: 1;
}
.rk-fp-hero {
  display: flex; flex-direction: column; align-items: center;
  padding: 12px 0 28px; gap: 8px;
}
.rk-fp-avatar {
  width: 84px; height: 84px; border-radius: 50%;
  background: var(--surf2); border: 3px solid var(--lime);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-h); font-size: 2rem; color: var(--lime);
  overflow: hidden; margin-bottom: 6px;
  box-shadow: 0 0 0 8px rgba(204,255,0,0.08);
}
.rk-fp-dname {
  font-size: 1.1rem; font-weight: 700; color: var(--text);
}
.rk-fp-demail {
  font-size: 0.8rem; color: var(--muted);
}

/* ── CONTACT PAGE ──────────────────────────────────── */
.rk-contact-brand {
  display: flex; flex-direction: column; align-items: center;
  padding: 12px 0 28px; gap: 8px;
}
.rk-contact-logo {
  width: 72px; height: 72px; border-radius: 18px; object-fit: cover;
  border: 2px solid var(--border);
  margin-bottom: 4px;
}
.rk-contact-name {
  font-family: var(--font-h); font-size: 1.8rem;
  color: var(--lime); letter-spacing: 2px;
}
.rk-contact-tagline {
  font-size: 0.8rem; color: var(--muted);
}
.rk-contact-list {
  display: flex; flex-direction: column; gap: 10px; margin-bottom: 20px;
}
.rk-contact-item {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px;
  background: var(--surf); border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  text-decoration: none; color: var(--text);
  transition: border-color 0.15s, background 0.15s;
}
.rk-contact-item:hover { border-color: rgba(204,255,0,0.35); background: var(--surf2); }
.rk-contact-item--wa { border-color: rgba(37,211,102,0.25); }
.rk-contact-item--wa:hover { border-color: rgba(37,211,102,0.5); background: rgba(37,211,102,0.05); }
.rk-ci-icon {
  width: 42px; height: 42px; border-radius: 12px; flex-shrink: 0;
  background: var(--lime-pale); border: 1px solid rgba(204,255,0,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--lime); font-size: 1rem;
}
.rk-ci-icon--wa { background: rgba(37,211,102,0.1); border-color: rgba(37,211,102,0.2); color: #25d366; }
.rk-ci-body { flex: 1; }
.rk-ci-label {
  font-size: 0.7rem; color: var(--muted); font-weight: 600;
  text-transform: uppercase; letter-spacing: 0.04em;
}
.rk-ci-value { font-size: 0.92rem; font-weight: 600; color: var(--text); margin-top: 2px; }
.rk-ci-arrow { color: var(--muted); font-size: 0.7rem; margin-left: auto; }
.rk-contact-social {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  padding: 14px; border-radius: var(--radius-sm);
  background: linear-gradient(135deg, rgba(225,48,108,0.1), rgba(253,121,36,0.1));
  border: 1px solid rgba(225,48,108,0.25);
  color: #e1306c; text-decoration: none; font-weight: 700; font-size: 0.9rem;
  transition: all 0.15s;
}
.rk-contact-social:hover { background: linear-gradient(135deg, rgba(225,48,108,0.18), rgba(253,121,36,0.18)); }
.rk-contact-social i { font-size: 1.2rem; }
.rk-policy-link-btn {
  width: 100%; margin-top: 10px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px; border-radius: var(--radius-sm);
  background: none; border: 1px solid var(--border);
  color: var(--muted); font-size: 0.88rem; font-weight: 600;
  cursor: pointer; transition: all 0.15s;
}
.rk-policy-link-btn:hover { border-color: var(--lime); color: var(--lime); }

/* ── POLICY PAGE ──────────────────────────────────── */
.rk-policy-updated {
  font-size: 0.75rem; color: var(--muted); margin-bottom: 20px;
}
.rk-policy-block {
  background: var(--surf); border: 1px solid var(--border);
  border-radius: var(--radius-sm); padding: 16px;
  margin-bottom: 12px;
}
.rk-policy-block--compliance {
  border-color: rgba(204,255,0,0.2);
  background: rgba(204,255,0,0.03);
}
.rk-policy-h {
  font-size: 0.82rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.05em; color: var(--lime); margin-bottom: 10px;
}
.rk-policy-block p {
  font-size: 0.85rem; color: var(--muted); line-height: 1.6;
  margin-bottom: 8px;
}
.rk-policy-block p:last-child { margin-bottom: 0; }
.rk-policy-block strong { color: var(--text); }
.rk-policy-list {
  font-size: 0.85rem; color: var(--muted); line-height: 1.7;
  padding-left: 18px; margin: 6px 0 8px;
}
.rk-policy-list a { color: var(--lime); text-decoration: none; }
.rk-policy-officer {
  margin-top: 10px; display: flex; flex-direction: column; gap: 6px;
  font-size: 0.85rem; color: var(--muted);
}
.rk-policy-officer span { color: var(--text); font-weight: 600; margin-right: 6px; }
.rk-policy-officer a { color: var(--lime); text-decoration: none; }
.rk-policy-footer {
  font-size: 0.75rem; color: #333; text-align: center;
  margin-top: 20px; margin-bottom: 8px;
}

/* ── GROUND RULES ACCORDION ──────────────────────────────── */
.rk-rules-wrap {
  margin-bottom: 16px;
  border: 1.5px solid rgba(204,255,0,0.2);
  border-radius: var(--radius-sm);
  overflow: hidden;
}
.rk-rules-toggle {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 13px 16px;
  background: rgba(204,255,0,0.05); border: none;
  color: var(--lime); font-size: 0.82rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.05em;
  cursor: pointer; transition: background 0.15s;
}
.rk-rules-toggle:hover { background: rgba(204,255,0,0.1); }
.rk-rules-toggle span { display: flex; align-items: center; gap: 8px; }
.rk-rules-chevron { transition: transform 0.22s ease; font-size: 0.75rem; }
.rk-rules-body {
  padding: 4px 16px 14px;
  background: var(--surf);
  border-top: 1px solid rgba(204,255,0,0.12);
}
.rk-rules-list {
  margin: 10px 0 0; padding-left: 0;
  list-style: none; display: flex; flex-direction: column; gap: 8px;
}
.rk-rules-list li {
  font-size: 0.83rem; color: var(--muted); line-height: 1.5;
  padding-left: 20px; position: relative;
}
.rk-rules-list li::before {
  content: '▪'; position: absolute; left: 0;
  color: var(--lime); font-size: 0.7rem; top: 2px;
}

/* ── POLICY CONSENT NOTE (under pay button) ──── */
.rk-policy-note {
  font-size: 0.75rem; color: var(--muted); text-align: center; margin-top: 8px;
}
.rk-inline-policy-btn {
  background: none; border: none; padding: 0;
  color: var(--lime); font-size: 0.75rem; font-weight: 600;
  cursor: pointer; text-decoration: underline;
}

/* ── EMAIL READ-ONLY DISPLAY ─────────────────────────────── */
.rk-email-display {
  padding: 11px 14px;
  background: var(--surf2); border: 1.5px solid var(--border);
  border-radius: var(--radius-sm); color: var(--muted);
  font-size: 0.88rem; font-family: var(--font-b);
  user-select: none;
}

/* ── MY BOOKINGS PANEL ───────────────────────────────────── */
.rk-mb-panel {
  position: fixed; inset: 0; z-index: 250;
  background: rgba(0,0,0,0.8);
  display: flex; align-items: flex-start; justify-content: center;
  padding: 0;
  backdrop-filter: blur(6px);
}
.rk-mb-inner {
  background: var(--surf);
  width: 100%; max-width: 520px; height: 100%;
  overflow-y: auto; display: flex; flex-direction: column;
  border-left: 1px solid var(--border); border-right: 1px solid var(--border);
}
.rk-mb-header {
  position: sticky; top: 0; z-index: 10;
  background: var(--surf);
  border-bottom: 1px solid var(--border);
  padding: 18px 20px;
  display: flex; align-items: center; justify-content: space-between;
}
.rk-mb-title {
  font-family: var(--font-h); font-size: 1.5rem;
  letter-spacing: 1px; color: var(--lime);
  display: flex; align-items: center; gap: 10px;
  margin: 0;
}
.rk-mb-title i { font-size: 1.1rem; }
.rk-mb-close {
  background: none; border: 1px solid var(--border);
  color: var(--muted); border-radius: 50%;
  width: 34px; height: 34px; font-size: 0.9rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all 0.15s;
}
.rk-mb-close:hover { border-color: var(--red); color: var(--red); }
.rk-mb-loading, .rk-mb-empty, .rk-mb-error {
  padding: 40px 20px; text-align: center;
  color: var(--muted); font-size: 0.9rem;
}
.rk-mb-loading i { color: var(--lime); font-size: 1.4rem; margin-bottom: 10px; display: block; }
.rk-mb-error { color: #ff6b6b; }
.rk-mb-section { padding: 16px 20px 0; }
.rk-mb-section-title {
  font-size: 0.72rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.07em; color: var(--muted); margin-bottom: 10px;
}
.rk-mb-list { display: flex; flex-direction: column; gap: 10px; padding-bottom: 20px; }
.rk-mb-card {
  background: var(--surf2); border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 14px 16px;
  display: flex; flex-direction: column; gap: 7px;
}
.rk-mb-card.upcoming { border-color: rgba(204,255,0,0.3); }
.rk-mb-card.cancelled { opacity: 0.5; }
.rk-mb-card-top {
  display: flex; align-items: center; justify-content: space-between;
}
.rk-mb-card-id { font-size: 0.72rem; color: var(--muted); font-family: monospace; }
.rk-mb-card-status {
  font-size: 0.67rem; font-weight: 700; text-transform: uppercase;
  padding: 2px 8px; border-radius: 20px;
  background: rgba(204,255,0,0.1); color: var(--lime);
  letter-spacing: 0.04em;
}
.rk-mb-card.past     .rk-mb-card-status { background: rgba(136,136,136,0.12); color: var(--muted); }
.rk-mb-card.cancelled .rk-mb-card-status { background: rgba(255,68,68,0.12);  color: #ff6b6b; }
.rk-mb-card-turf { font-size: 0.92rem; font-weight: 700; color: var(--text); }
.rk-mb-card-turf i { color: var(--lime); margin-right: 6px; font-size: 0.78rem; }
.rk-mb-card-row { font-size: 0.82rem; color: var(--muted); }
.rk-mb-card-row i { width: 14px; margin-right: 6px; color: var(--muted); font-size: 0.75rem; }
.rk-mb-card-footer {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 0.78rem; color: var(--muted);
  border-top: 1px solid var(--border); padding-top: 7px; margin-top: 2px;
}
.rk-mb-balance { color: #ffa040; font-weight: 600; }
