@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700;800;900&family=Oswald:wght@500;600;700&display=swap');

:root {
  --green-950: #03281f;
  --green-900: #064e3b;
  --green-800: #065f46;
  --green-700: #047857;
  --green-600: #059669;
  --green-500: #10b981;
  --green-200: #bbf7d0;
  --green-100: #dcfce7;
  --orange-600: #ea580c;
  --orange-500: #f97316;
  --orange-100: #ffedd5;
  --blue-700: #1d4ed8;
  --blue-100: #dbeafe;
  --rose-600: #e11d48;
  --slate-950: #0f172a;
  --slate-900: #172033;
  --slate-800: #1e293b;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-400: #94a3b8;
  --slate-300: #cbd5e1;
  --slate-200: #e2e8f0;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --white: #ffffff;
  --shadow-sm: 0 8px 24px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 24px 60px rgba(15, 23, 42, 0.12);
  --shadow-lg: 0 30px 100px rgba(15, 23, 42, 0.2);
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --font-base: 'Cairo', sans-serif;
  --font-accent: 'Oswald', sans-serif;
  --transition: all 0.24s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: var(--font-base);
  color: var(--slate-800);
  background:
    radial-gradient(circle at top right, rgba(16, 185, 129, 0.18), transparent 22%),
    radial-gradient(circle at top left, rgba(59, 130, 246, 0.12), transparent 24%),
    linear-gradient(180deg, #f7fbfa 0%, #f8fafc 36%, #eff6ff 100%);
  overflow-x: hidden;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
  display: block;
}

.navbar {
  position: sticky;
  top: 0;
  z-index: 110;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 28px;
  background: rgba(6, 14, 28, 0.82);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(22px);
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--green-500), var(--orange-500));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-accent);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: -0.3px;
  box-shadow: 0 16px 30px rgba(5, 150, 105, 0.28);
}

.logo-text {
  color: var(--white);
  font-size: 17px;
  font-weight: 800;
  line-height: 1.1;
}

.logo-sub {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  font-weight: 500;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}

.nav-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-family: var(--font-base);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
}

.btn-ghost {
  padding: 11px 18px;
  color: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.04);
}

.btn-ghost:hover,
.btn-ghost.active {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
}

.btn-primary {
  padding: 12px 22px;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
  box-shadow: 0 18px 34px rgba(249, 115, 22, 0.3);
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 20px 40px rgba(249, 115, 22, 0.34);
}

.btn-dark {
  padding: 12px 22px;
  color: var(--white);
  background: linear-gradient(135deg, var(--slate-900), var(--slate-800));
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.22);
}

.btn-dark:hover {
  transform: translateY(-1px);
}

.hero {
  position: relative;
  padding: 32px 28px 24px;
}

.hero-shell,
.page-shell,
.dashboard-shell,
.main-container {
  width: min(1400px, calc(100% - 40px));
  margin: 0 auto;
}

.hero-shell {
  position: relative;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.14), transparent 24%),
    linear-gradient(135deg, #063729 0%, #0b3a4a 56%, #0f172a 100%);
  border-radius: 36px;
  overflow: hidden;
  padding: 34px;
  box-shadow: var(--shadow-lg);
}

.hero-shell::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.05) 45%, transparent 100%),
    url("data:image/svg+xml,%3Csvg width='76' height='76' viewBox='0 0 76 76' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.035'%3E%3Cpath d='M38 0 0 38l38 38 38-38z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.9;
}

.hero-grid,
.page-hero-grid,
.dashboard-grid {
  position: relative;
  display: grid;
  gap: 22px;
}

.hero-grid {
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 360px);
  align-items: center;
}

.page-hero-grid {
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  align-items: stretch;
}

.hero-copy,
.page-hero-copy,
.dashboard-hero-copy {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-copy {
  max-width: 920px;
}

.eyebrow,
.page-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #d1fae5;
  font-size: 12px;
  font-weight: 700;
}

.eyebrow::before,
.page-kicker::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--green-500);
  box-shadow: 0 0 0 6px rgba(16, 185, 129, 0.12);
}

.hero-title,
.page-title {
  color: var(--white);
  font-size: clamp(36px, 4.7vw, 72px);
  line-height: 1.06;
  font-weight: 900;
}

.hero-title em,
.page-title em {
  font-style: normal;
  color: #fde68a;
}

.hero-note,
.page-note {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 17px;
  line-height: 1.9;
}

.hero-actions,
.page-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-metrics,
.stats-bar,
.dashboard-metrics {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.stat-pill,
.stat-item,
.metric-card {
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  padding: 20px 22px;
  backdrop-filter: blur(10px);
}

.stat-number,
.metric-value {
  font-family: var(--font-accent);
  font-size: 30px;
  color: var(--white);
  letter-spacing: -0.8px;
}

.stat-label,
.metric-label {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  margin-top: 6px;
}

.metric-card {
  background: linear-gradient(180deg, var(--white), #f8fbff);
  border-color: rgba(15, 23, 42, 0.06);
}

.metric-card .metric-value {
  color: var(--slate-900);
}

.metric-card .metric-label {
  color: var(--slate-500);
}

.hero-panel,
.page-hero-panel,
.section-card,
.summary-card,
.table-shell,
.venue-group,
.auth-card-lite {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 28px;
  box-shadow: var(--shadow-md);
}

.hero-panel,
.page-hero-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: space-between;
  padding: 26px;
  min-height: 100%;
  background: rgba(248, 250, 252, 0.96);
}

.search-box {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) repeat(3, minmax(150px, 1fr)) auto;
  gap: 10px;
  padding: 14px;
  background: rgba(255, 255, 255, 0.94);
  border-radius: 22px;
  box-shadow: var(--shadow-md);
}

.search-field,
.toolbar-input,
.toolbar-select,
.form-field {
  width: 100%;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--slate-200);
  background: var(--white);
  color: var(--slate-800);
  font-family: var(--font-base);
  font-size: 14px;
  outline: none;
  transition: var(--transition);
}

.search-field:focus,
.toolbar-input:focus,
.toolbar-select:focus,
.form-field:focus,
.bm-promo-input:focus {
  border-color: rgba(5, 150, 105, 0.4);
  box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.12);
}

.search-btn,
.toolbar-submit,
.chip-btn {
  border: 0;
  cursor: pointer;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--green-600), var(--green-700));
  color: var(--white);
  font-family: var(--font-base);
  font-size: 14px;
  font-weight: 800;
  transition: var(--transition);
}

.search-btn,
.toolbar-submit {
  padding: 14px 18px;
}

.search-btn:hover,
.toolbar-submit:hover,
.btn-book:hover,
.bm-confirm-btn:hover,
.chip-btn:hover {
  transform: translateY(-1px);
}

.hero-panel h3,
.page-hero-panel h3,
.section-title {
  color: var(--slate-900);
  font-size: 22px;
  font-weight: 900;
}

.hero-panel p,
.page-hero-panel p,
.section-note {
  color: var(--slate-500);
  font-size: 14px;
  line-height: 1.8;
}

.feature-list,
.info-stack {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.feature-item,
.info-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 16px;
  background: var(--slate-50);
  color: var(--slate-700);
  font-size: 13px;
}

.feature-value {
  color: var(--green-700);
  font-weight: 800;
}

.section-stack {
  padding: 10px 0 40px;
}

.section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 20px;
}

.section-subtitle {
  color: var(--slate-500);
  font-size: 14px;
  line-height: 1.7;
}

.filter-tabs {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
  padding-bottom: 6px;
  scrollbar-width: none;
}

.filter-tabs::-webkit-scrollbar {
  display: none;
}

.filter-tab,
.toolbar-chip,
.chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 11px 16px;
  border-radius: 999px;
  border: 1px solid var(--slate-200);
  background: rgba(255, 255, 255, 0.86);
  color: var(--slate-600);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition);
  white-space: nowrap;
}

.filter-tab:hover,
.toolbar-chip:hover,
.chip:hover,
.filter-tab.active,
.toolbar-chip.active,
.chip.is-active {
  color: var(--green-700);
  border-color: rgba(5, 150, 105, 0.22);
  background: rgba(16, 185, 129, 0.1);
}

.facilities-grid,
.dashboard-card-grid,
.venue-groups {
  display: grid;
  gap: 18px;
}

.facilities-grid {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.venue-groups {
  grid-template-columns: 1fr;
}

.venue-group {
  padding: 24px;
}

.venue-group-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.venue-group-title {
  font-size: 24px;
  color: var(--slate-900);
  font-weight: 900;
}

.venue-group-copy {
  color: var(--slate-500);
  font-size: 14px;
  line-height: 1.8;
  max-width: 720px;
}

.venue-group-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 10px;
}

.facility-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 26px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  cursor: pointer;
}

.facility-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
}

.facility-img-wrap {
  position: relative;
  height: 224px;
  overflow: hidden;
}

.facility-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.facility-card:hover .facility-img {
  transform: scale(1.05);
}

.facility-img-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 58px;
}

.facility-badges {
  position: absolute;
  top: 14px;
  right: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  color: var(--white);
}

.badge-available {
  background: rgba(5, 150, 105, 0.92);
}

.badge-busy {
  background: rgba(225, 29, 72, 0.9);
}

.facility-rating {
  position: absolute;
  bottom: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.76);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  backdrop-filter: blur(10px);
}

.star {
  color: #facc15;
}

.favorite-btn {
  position: absolute;
  top: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.9);
  color: var(--slate-700);
  font-family: var(--font-base);
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.favorite-btn.is-active {
  color: var(--rose-600);
  background: rgba(255, 241, 242, 0.96);
  border-color: rgba(225, 29, 72, 0.18);
}

.facility-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 20px;
}

.facility-type {
  color: var(--green-700);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.facility-name {
  margin-top: 8px;
  color: var(--slate-900);
  font-size: 20px;
  font-weight: 900;
  line-height: 1.25;
}

.facility-desc {
  margin-top: 10px;
  color: var(--slate-500);
  font-size: 13px;
  line-height: 1.8;
}

.facility-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.facility-utility-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 14px;
}

.meta-item,
.pill-soft {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 8px 11px;
  border-radius: 999px;
  background: var(--slate-50);
  color: var(--slate-600);
  font-size: 12px;
  font-weight: 700;
}

.facility-proximity,
.facility-directions-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 40px;
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid var(--slate-200);
  background: var(--white);
  color: var(--slate-700);
  font-family: var(--font-base);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
}

.facility-proximity.is-prompt {
  border-color: rgba(37, 99, 235, 0.16);
  background: rgba(219, 234, 254, 0.55);
  color: var(--blue-700);
}

.facility-proximity.is-ready {
  border-color: rgba(5, 150, 105, 0.2);
  background: rgba(220, 252, 231, 0.72);
  color: var(--green-700);
}

.facility-proximity.is-unavailable {
  border-style: dashed;
  color: var(--slate-500);
  background: var(--slate-50);
}

.facility-directions-link {
  border-color: rgba(249, 115, 22, 0.2);
  background: rgba(255, 237, 213, 0.56);
  color: var(--orange-600);
}

.facility-directions-link.is-disabled,
.facility-directions-link[aria-disabled="true"] {
  opacity: 0.48;
  pointer-events: none;
}

.facility-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--slate-100);
}

.price-section {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.price-from {
  font-size: 11px;
  color: var(--slate-400);
}

.price-amount {
  color: var(--slate-900);
  font-family: var(--font-accent);
  font-size: 26px;
}

.price-unit {
  color: var(--slate-400);
  font-size: 12px;
}

.btn-book {
  padding: 12px 18px;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--green-600), var(--green-700));
  color: var(--white);
  font-family: var(--font-base);
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 16px 28px rgba(5, 150, 105, 0.22);
  cursor: pointer;
  transition: var(--transition);
}

.page-hero {
  padding: 42px 0 18px;
}

.page-shell {
  display: grid;
  gap: 24px;
}

.page-toolbar {
  padding: 20px 24px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
}

.toolbar-form {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) repeat(4, minmax(145px, 1fr)) auto;
  gap: 12px;
  align-items: center;
}

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

.toolbar-count {
  color: var(--slate-500);
  font-size: 13px;
  font-weight: 700;
}

.dashboard-shell {
  padding: 36px 0 44px;
}

.dashboard-hero {
  padding: 28px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.14), transparent 22%),
    linear-gradient(135deg, #07382a 0%, #0e3f52 48%, #111827 100%);
  border-radius: 32px;
  color: var(--white);
  box-shadow: var(--shadow-lg);
}

.dashboard-hero-copy h1 {
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 900;
  line-height: 1.08;
}

.dashboard-hero-copy p {
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
  line-height: 1.8;
}

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

.summary-card,
.section-card,
.table-shell {
  padding: 24px;
}

.summary-card h3,
.table-shell h3 {
  color: var(--slate-900);
  font-size: 20px;
  font-weight: 900;
}

.summary-card p,
.table-shell p {
  color: var(--slate-500);
  font-size: 13px;
  line-height: 1.8;
}

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

.booking-item {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border-radius: 18px;
  background: linear-gradient(180deg, var(--white), #f9fcff);
  border: 1px solid var(--slate-100);
}

.booking-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--green-800), var(--green-600));
  color: var(--white);
  font-size: 24px;
}

.booking-title {
  color: var(--slate-900);
  font-size: 16px;
  font-weight: 800;
}

.booking-sub {
  margin-top: 4px;
  color: var(--slate-500);
  font-size: 13px;
}

.booking-ref {
  margin-top: 6px;
  color: var(--slate-400);
  font-size: 11px;
  font-family: monospace;
}

.booking-side {
  text-align: left;
}

.booking-price {
  color: var(--green-700);
  font-family: var(--font-accent);
  font-size: 24px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
}

.table-shell table,
table.rt {
  width: 100%;
  border-collapse: collapse;
}

.table-shell th,
table.rt th {
  text-align: right;
  padding: 12px 14px;
  color: var(--slate-400);
  background: var(--slate-50);
  font-size: 11px;
  font-weight: 800;
  border-bottom: 1px solid var(--slate-200);
}

.table-shell td,
table.rt td {
  padding: 14px;
  border-bottom: 1px solid var(--slate-100);
  color: var(--slate-700);
  font-size: 13px;
}

.table-shell tr:last-child td,
table.rt tr:last-child td {
  border-bottom: 0;
}

.empty-state {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 160px;
  padding: 40px 24px;
  border-radius: 14px;
  border: 1.5px dashed var(--slate-200);
  color: var(--slate-500);
  font-size: 14px;
  font-weight: 600;
  text-align: center;
  background: rgba(248, 250, 252, 0.9);
}

/* ═══════════════════════════════════════════════════
   Booking Modal — تصميم الوسام
   ═══════════════════════════════════════════════════ */

:root {
  --bk-primary: #059669;
  --bk-secondary: #047857;
  --bk-gradient: linear-gradient(135deg, #064e3b 0%, #0f172a 100%);
}


/* ═══════════════════════════════════════════════════
   BOOKING MODAL — Complete Rewrite
   ═══════════════════════════════════════════════════ */

/* ── Overlay ── */
.bk-overlay {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(15, 23, 42, .78);
  backdrop-filter: blur(10px);
  display: flex; align-items: center; justify-content: center;
  padding: 12px;
  opacity: 0; pointer-events: none;
  transition: opacity .25s;
}
.bk-overlay.is-open {
  opacity: 1; pointer-events: all;
}

/* ── Modal shell ── */
.bk-modal {
  background: #fff;
  border-radius: 22px;
  width: 100%; max-width: 1020px;
  max-height: 92vh;
  display: flex; flex-direction: column;
  overflow: hidden;
  box-shadow: 0 32px 80px rgba(0,0,0,.28), 0 0 0 1px rgba(255,255,255,.08);
  transform: scale(.94) translateY(28px);
  transition: transform .35s cubic-bezier(.34,1.56,.64,1);
}
.bk-overlay.is-open .bk-modal {
  transform: scale(1) translateY(0);
}

/* ── Header ── */
.bk-hd {
  background: var(--bk-gradient, linear-gradient(135deg,#064e3b,#0f172a));
  padding: 22px 26px 20px;
  display: flex; flex-direction: column; gap: 4px;
  flex-shrink: 0; position: relative;
}
.bk-hd-badge {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(255,255,255,.18); color: #fff;
  font-size: 11px; font-weight: 700;
  padding: 3px 10px; border-radius: 20px;
  width: fit-content; margin-bottom: 4px;
}
.bk-hd-name {
  color: #fff; font-size: 20px; font-weight: 800;
  margin: 0; line-height: 1.2;
}
.bk-hd-meta {
  display: flex; flex-wrap: wrap; gap: 12px;
  font-size: 12px; color: rgba(255,255,255,.65);
}
.bk-hd-meta span { display: inline-flex; align-items: center; gap: 4px; }
.bk-slot-chip {
  background: rgba(255,255,255,.15);
  color: #fff; padding: 2px 10px; border-radius: 20px;
  font-size: 11px; font-weight: 600;
}
.bk-close-btn {
  position: absolute; top: 14px; left: 16px;
  width: 34px; height: 34px; border-radius: 50%;
  border: none; background: rgba(255,255,255,.15);
  color: #fff; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.bk-close-btn:hover { background: rgba(255,255,255,.28); }

/* ── Body ── */
.bk-body {
  padding: 22px 24px; overflow-y: auto; flex: 1;
  overscroll-behavior: contain;
}
.bk-body::-webkit-scrollbar { width: 4px; }
.bk-body::-webkit-scrollbar-thumb { background: rgba(0,0,0,.12); border-radius: 4px; }

/* ── Two-column layout ── */
.bk-cols {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 20px;
  align-items: start;
}

/* ── Section card ── */
.bk-section {
  background: #fff;
  border: 1.5px solid #e2e8f0;
  border-radius: 14px;
  padding: 18px;
  margin-bottom: 16px;
}
.bk-section:last-child { margin-bottom: 0; }
.bk-sec-title {
  font-size: 12px; font-weight: 800; color: #475569;
  text-transform: uppercase; letter-spacing: .5px;
  margin-bottom: 14px;
  display: flex; align-items: center; gap: 7px;
}
.bk-sec-title svg { color: #059669; flex-shrink: 0; }

/* ── Calendar ── */
.bk-cal-nav {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 12px;
}
.bk-cal-nav-btn {
  width: 34px; height: 34px; border-radius: 9px;
  border: 1.5px solid #e2e8f0; background: #f8fafc;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  color: #475569; transition: all .15s;
}
.bk-cal-nav-btn:hover { background: #059669; border-color: #059669; color: #fff; }
.bk-cal-month { font-size: 15px; font-weight: 700; color: #1e293b; }

.bk-cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
}
.bm-weekday {
  text-align: center; font-size: 11px; font-weight: 700;
  color: #94a3b8; padding: 6px 0;
}
.bm-day-gap { /* empty cell */ }
.bm-day {
  aspect-ratio: 1;
  border-radius: 9px; border: none; background: transparent;
  font-size: 13px; font-family: 'Cairo', sans-serif;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  transition: all .15s; position: relative; color: #334155;
}
.bm-day:not(.bm-day-past):hover { background: #d1fae5; color: #059669; }
.bm-day-today { font-weight: 900; color: #059669; }
.bm-day-today::after {
  content: ''; position: absolute; bottom: 3px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 4px; background: #059669; border-radius: 50%;
}
.bm-day-sel {
  background: #059669 !important; color: #fff !important;
  font-weight: 800;
  box-shadow: 0 4px 10px rgba(5,150,105,.35);
}
.bm-day-past { color: #cbd5e1; cursor: default; }

/* ── Slot Legend ── */
.bk-legend {
  display: flex; gap: 12px; flex-wrap: wrap;
  margin-bottom: 12px;
}
.bk-legend-item {
  display: flex; align-items: center; gap: 5px;
  font-size: 11px; color: #64748b;
}
.bk-legend-dot {
  width: 11px; height: 11px; border-radius: 3px; flex-shrink: 0;
}
.bk-legend-avail { background: #f1f5f9; border: 2px solid #10b981; }
.bk-legend-peak  { background: #fff7ed; border: 2px solid #f97316; }
.bk-legend-sel   { background: #059669; }
.bk-legend-book  { background: #fee2e2; }

/* ── Slots Grid ── */
.bk-slots-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(105px, 1fr));
  gap: 8px;
}

/* ── Slot button ── */
.bm-slot {
  padding: 10px 8px; border-radius: 10px;
  border: 2px solid #e2e8f0; background: #f8fafc;
  cursor: pointer; text-align: center;
  transition: all .18s; font-family: 'Cairo', sans-serif;
  display: flex; flex-direction: column; align-items: center; gap: 3px;
}
.bm-slot:not([disabled]):hover {
  border-color: #059669; background: #f0fdf4; transform: translateY(-2px);
}
.bm-slot.is-selected {
  background: #059669 !important; border-color: #059669 !important; color: #fff !important;
  box-shadow: 0 4px 12px rgba(5,150,105,.35);
}
.bm-slot.is-peak { background: #fff7ed; border-color: #fed7aa; }
.bm-slot.is-peak:not([disabled]):hover { border-color: #f97316; }
.bm-slot.is-booked { background: #fff1f2; border-color: #fecdd3; cursor: not-allowed; opacity: .7; }
.bm-slot.is-hold   { background: #fff8e1; border-color: #fde68a; cursor: not-allowed; opacity: .7; }
.bm-slot-time {
  font-size: 12px; font-weight: 700; color: #334155;
  font-family: monospace; direction: ltr;
}
.bm-slot.is-selected .bm-slot-time { color: #fff; }
.bm-slot-meta {
  display: flex; align-items: center; gap: 4px; flex-wrap: wrap; justify-content: center;
}
.bm-slot-dur   { font-size: 10px; color: #94a3b8; }
.bm-slot-price { font-size: 11px; font-weight: 700; color: #059669; }
.bm-slot.is-selected .bm-slot-dur,
.bm-slot.is-selected .bm-slot-price { color: rgba(255,255,255,.85); }
.bm-slot-peak-badge {
  font-size: 9px; font-weight: 700; color: #ea580c;
  background: rgba(234,88,12,.12); padding: 1px 5px; border-radius: 4px;
}

/* ── States ── */
.bm-state {
  grid-column: 1/-1; text-align: center;
  padding: 36px 20px; color: #94a3b8;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
  font-size: 14px;
}
.bm-state-error { color: #ef4444; }
.bm-state-loading { color: #6366f1; }
.bm-spinner {
  width: 28px; height: 28px;
  border: 3px solid rgba(99,102,241,.2); border-top-color: #6366f1;
  border-radius: 50%; animation: bm-spin .7s linear infinite;
}
@keyframes bm-spin { to { transform: rotate(360deg); } }

/* ── Summary Card ── */
.bk-summary-card {
  background: linear-gradient(145deg, #f8faff, #f5f3ff);
  border: 1.5px solid rgba(99,102,241,.15);
  border-radius: 16px; padding: 18px;
  display: flex; flex-direction: column; gap: 12px;
}
.bk-sum-rows { display: flex; flex-direction: column; }
.bk-sum-empty { padding: 16px 0; color: #94a3b8; text-align: center; font-size: 13px; }
.bk-sum-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 6px 0; font-size: 13px; color: #475569;
  border-bottom: 1px dashed #e2e8f0;
}
.bk-sum-row:last-child { border-bottom: none; }
.bk-sum-row strong { color: #1e293b; font-weight: 700; }
.bk-sum-row.is-positive strong { color: #059669; }
.bk-sum-hr { border: none; border-top: 2px solid #e2e8f0; margin: 2px 0; }
.bk-sum-row.bk-sum-total { padding-top: 10px; font-size: 15px; font-weight: 800; border-bottom: none; }
.bk-sum-total-val { color: #059669; font-size: 18px; font-weight: 900; }

/* ── Hold Timer ── */
.bk-hold-timer {
  display: flex; align-items: center; gap: 7px;
  padding: 9px 13px; border-radius: 10px;
  background: rgba(99,102,241,.07); border: 1px solid rgba(99,102,241,.18);
  color: #6366f1; font-size: 13px; font-weight: 600;
}
.bk-timer-val { font-family: monospace; font-size: 15px; font-weight: 900; margin-right: auto; }

/* ── Promo ── */
.bk-promo-row { display: flex; gap: 6px; }
.bk-promo-inp {
  flex: 1; padding: 10px 12px;
  border: 2px solid #e2e8f0; border-radius: 10px;
  font-family: 'Cairo', sans-serif; font-size: 13px;
  outline: none; transition: border-color .2s; direction: ltr;
}
.bk-promo-inp:focus { border-color: #059669; }
.bk-promo-btn {
  padding: 10px 16px; border: none; border-radius: 10px;
  background: #059669; color: #fff;
  font-family: 'Cairo', sans-serif; font-weight: 700; font-size: 13px;
  cursor: pointer; transition: background .2s; white-space: nowrap;
}
.bk-promo-btn:hover { background: #047857; }

/* ── Total Box ── */
.bk-total-box {
  background: linear-gradient(135deg, #059669, #047857);
  color: #fff; padding: 14px 16px; border-radius: 12px;
}
.bk-total-hint { font-size: 11px; opacity: .8; margin-bottom: 3px; }
.bk-total-val {
  font-size: 28px; font-weight: 900;
  font-family: 'Oswald', sans-serif; letter-spacing: -1px;
  direction: ltr; text-align: right;
}

/* ══════════════════════════
   KITTY SYSTEM
   ══════════════════════════ */
.bk-kitty {
  border-radius: 14px; overflow: hidden;
  border: 2px solid #fed7aa;
  background: linear-gradient(135deg, #fff7ed, #fff3e0);
  transition: all .2s;
}
.bk-kitty.is-disabled { opacity: .55; pointer-events: none; }

/* Kitty header row */
.bk-kitty-hd {
  display: flex; align-items: center; gap: 10px;
  padding: 13px 14px;
}
.bk-kitty-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(230,81,0,.12);
  display: flex; align-items: center; justify-content: center;
  color: #e65100; flex-shrink: 0;
}
.bk-kitty-info { flex: 1; }
.bk-kitty-title { font-size: 13px; font-weight: 700; color: #c2410c; }
.bk-kitty-sub   { font-size: 11px; color: #9a3412; margin-top: 1px; }

/* Toggle Switch */
.bk-switch { display: inline-flex; align-items: center; cursor: pointer; flex-shrink: 0; }
.bk-switch input { position: absolute; opacity: 0; width: 0; height: 0; }
.bk-switch-track {
  width: 42px; height: 24px; border-radius: 999px;
  background: #d1d5db; position: relative;
  transition: background .22s;
}
.bk-switch input:checked + .bk-switch-track { background: #e65100; }
.bk-switch-track::after {
  content: ''; position: absolute;
  top: 3px; left: 3px;
  width: 18px; height: 18px; border-radius: 50%;
  background: #fff; box-shadow: 0 1px 4px rgba(0,0,0,.2);
  transition: left .22s;
}
.bk-switch input:checked + .bk-switch-track::after { left: 21px; }

/* Kitty body (expanded) */
.bk-kitty-body { padding: 0 14px 14px; display: flex; flex-direction: column; gap: 10px; }

.bk-kitty-members-row {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
}
.bk-kitty-lbl { font-size: 13px; font-weight: 600; color: #7c2d12; }

/* Counter */
.bk-kitty-counter { display: flex; align-items: center; gap: 0; }
.bk-counter-btn {
  width: 32px; height: 32px;
  border: 1.5px solid #fed7aa; background: #fff;
  font-size: 18px; font-weight: 700; color: #e65100;
  cursor: pointer; transition: all .15s;
  display: flex; align-items: center; justify-content: center;
}
.bk-counter-btn:first-child { border-radius: 8px 0 0 8px; }
.bk-counter-btn:last-child  { border-radius: 0 8px 8px 0; }
.bk-counter-btn:hover { background: #e65100; color: #fff; border-color: #e65100; }
.bk-counter-inp {
  width: 48px; height: 32px; text-align: center;
  border: 1.5px solid #fed7aa; border-left: none; border-right: none;
  font-family: 'Cairo', sans-serif; font-size: 14px; font-weight: 700; color: #1e293b;
  outline: none; background: #fff;
  -moz-appearance: textfield;
}
.bk-counter-inp::-webkit-outer-spin-button,
.bk-counter-inp::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

/* Share box */
.bk-kitty-share-box {
  background: rgba(255,255,255,.7); border-radius: 10px; padding: 10px 12px;
  border: 1px solid rgba(230,81,0,.15);
  transition: opacity .2s;
}
.bk-kitty-share-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: #7c2d12; padding: 3px 0;
}
.bk-kitty-share-val { font-weight: 900; font-size: 18px; color: #e65100; }
.bk-kitty-share-sub { font-size: 11px; opacity: .7; }

.bk-kitty-msg {
  font-size: 12px; color: #9a3412; line-height: 1.5;
  padding: 8px 10px; background: rgba(230,81,0,.07);
  border-radius: 8px;
}
.bk-kitty-share-hint {
  display: flex; align-items: center; gap: 5px;
  font-size: 11px; color: #9a3412; opacity: .8;
}

/* ── Confirm Button ── */
.bk-confirm-btn {
  width: 100%; padding: 14px;
  background: linear-gradient(135deg, #059669, #047857);
  color: #fff; border: none; border-radius: 12px;
  font-family: 'Cairo', sans-serif; font-size: 16px; font-weight: 800;
  cursor: pointer; transition: all .2s;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  box-shadow: 0 6px 20px rgba(5,150,105,.35);
}
.bk-confirm-btn:hover:not(:disabled) {
  transform: translateY(-2px); box-shadow: 0 8px 24px rgba(5,150,105,.45);
}
.bk-confirm-btn:disabled { opacity: .45; cursor: not-allowed; transform: none; box-shadow: none; }
.bk-legal { font-size: 11px; color: #94a3b8; text-align: center; margin-top: 8px; }

/* ── Right column summary card ── */
.bk-right .bk-summary-card { position: sticky; top: 0; }

/* ═══════════════════════════════════════════════════
   Footer
   ═══════════════════════════════════════════════════ */
.site-footer {
  position: relative;
  margin-top: 44px;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(16, 185, 129, 0.14), transparent 20%),
    radial-gradient(circle at bottom left, rgba(249, 115, 22, 0.1), transparent 22%),
    linear-gradient(135deg, #09111d 0%, #0f172a 46%, #162536 100%);
  color: var(--white);
}

.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.045) 48%, transparent 100%),
    url("data:image/svg+xml,%3Csvg width='88' height='88' viewBox='0 0 88 88' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none'%3E%3Cg fill='%23ffffff' fill-opacity='0.035'%3E%3Cpath d='M44 0 0 44l44 44 44-44z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.82;
  pointer-events: none;
}

.footer-shell {
  position: relative;
  width: min(1400px, calc(100% - 32px));
  margin: 0 auto;
  padding: 18px 0 16px;
}

.footer-hero,
.footer-panel {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 52px rgba(3, 10, 22, 0.2);
}

.footer-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 22px;
  background:
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.1), transparent 24%),
    linear-gradient(135deg, rgba(5, 150, 105, 0.18) 0%, rgba(11, 58, 74, 0.62) 48%, rgba(15, 23, 42, 0.84) 100%);
}

.footer-hero-copy,
.footer-grid,
.footer-bottom {
  position: relative;
  z-index: 1;
}

.footer-hero-copy {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  padding: 6px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  color: #d1fae5;
  font-size: 11px;
  font-weight: 800;
}

.footer-kicker::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--green-500);
  box-shadow: 0 0 0 5px rgba(16, 185, 129, 0.12);
}

.footer-title {
  font-size: clamp(22px, 2.4vw, 30px);
  line-height: 1.18;
  font-weight: 900;
  letter-spacing: -0.2px;
}

.footer-note {
  max-width: 620px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
  line-height: 1.8;
}

.footer-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  flex-shrink: 0;
}

.footer-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
  transition: var(--transition);
}

.footer-btn:hover {
  transform: translateY(-2px);
}

.footer-btn-primary {
  background: linear-gradient(135deg, var(--orange-500), var(--orange-600));
  color: var(--white);
  box-shadow: 0 12px 24px rgba(249, 115, 22, 0.22);
}

.footer-btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr) minmax(0, 0.95fr);
  gap: 14px;
  margin-top: 14px;
}

.footer-panel {
  padding: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.065), rgba(255, 255, 255, 0.03));
}

.footer-brand-panel {
  background:
    radial-gradient(circle at top right, rgba(16, 185, 129, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
}

.footer-brand-head {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand-logo {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--green-500), var(--orange-500));
  color: var(--white);
  font-family: var(--font-accent);
  font-size: 16px;
  font-weight: 700;
  box-shadow: 0 12px 26px rgba(5, 150, 105, 0.18);
}

.footer-brand-title {
  font-size: 18px;
  font-weight: 900;
  color: var(--white);
}

.footer-brand-sub {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 12px;
}

.footer-brand-text {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  line-height: 1.8;
}

.footer-pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.footer-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: #d1fae5;
  font-size: 11px;
  font-weight: 800;
}

.footer-heading {
  margin-bottom: 12px;
  color: var(--white);
  font-size: 14px;
  font-weight: 900;
}

.footer-link-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.footer-link-list,
.footer-contact-list {
  display: grid;
  gap: 8px;
}

.footer-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 14px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: var(--transition);
  font-size: 13px;
}

.footer-link::after {
  content: '←';
  color: rgba(255, 255, 255, 0.42);
  transition: var(--transition);
}

.footer-link:hover {
  color: var(--white);
  background: rgba(16, 185, 129, 0.12);
  border-color: rgba(16, 185, 129, 0.18);
}

.footer-link:hover::after {
  color: var(--white);
  transform: translateX(-3px);
}

.footer-contact-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 46px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  text-decoration: none;
  transition: var(--transition);
}

.footer-contact-row:hover {
  border-color: rgba(255, 255, 255, 0.16);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.04));
}

.footer-contact-label {
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  font-weight: 800;
  white-space: nowrap;
}

.footer-contact-value {
  color: var(--white);
  font-size: 13px;
  font-weight: 800;
  text-align: left;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 14px;
  padding: 2px 2px 0;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  line-height: 1.7;
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.footer-bottom-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 11px;
  font-weight: 700;
  transition: var(--transition);
}

.footer-bottom-links a:hover {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

/* ── RESPONSIVE ── */
@media (max-width: 1180px) {
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  .site-footer {
    margin-top: 36px;
  }

  .footer-shell {
    width: min(calc(100% - 20px), 1400px);
    padding-top: 14px;
  }

  .footer-hero,
  .footer-panel {
    border-radius: 20px;
    padding: 16px;
  }

  .footer-hero {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-link-columns,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-actions {
    width: 100%;
    flex-direction: column;
  }

  .footer-btn {
    width: 100%;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: stretch;
  }

  .footer-bottom-links {
    width: 100%;
  }

  .footer-bottom-links a {
    flex: 1 1 calc(50% - 10px);
  }
}

@media (max-width: 820px) {
  .bk-cols { grid-template-columns: 1fr; }
  .bk-modal { border-radius: 20px 20px 0 0; max-height: 95vh; }
  .bk-overlay { align-items: flex-end; padding: 0; }
  .bk-overlay.is-open .bk-modal { transform: scale(1) translateY(0); }
  .bk-right .bk-summary-card { position: static; }
  .bk-slots-grid { grid-template-columns: repeat(auto-fill, minmax(95px, 1fr)); }
}
@media (max-width: 480px) {
  .footer-title {
    font-size: 20px;
  }

  .footer-note,
  .footer-brand-text {
    font-size: 13px;
  }

  .footer-contact-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-bottom-links a {
    flex-basis: 100%;
  }

  .bk-hd { padding: 16px 18px 14px; }
  .bk-body { padding: 14px 14px; }
  .bk-section { padding: 14px; }
  .bk-slots-grid { grid-template-columns: repeat(3, 1fr); }
}
