/* ============================================================
   Kitesurfing Portal v1.0.5 — Visual Parity Stylesheet
   Hebrew RTL / Heebo font / Ocean palette matching Base44
   ============================================================ */

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

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --kite-ocean-950:  #020f1e;
  --kite-ocean-900:  #051525;
  --kite-ocean-800:  #0a2540;
  --kite-ocean-700:  #0e3a60;
  --kite-cyan:       #06b6d4;
  --kite-sky:        #0284c7;
  --kite-cyan-dark:  #0891b2;
  --kite-emerald:    #10b981;
  --kite-white:      #f8fafc;
  --kite-light:      #f1f5f9;
  --kite-text:       #0f172a;
  --kite-muted:      #64748b;
  --kite-border:     #e2e8f0;
  --kite-card-bg:    #ffffff;
  --kite-radius:     16px;
  --kite-radius-sm:  10px;
  --kite-radius-lg:  20px;
  --kite-shadow:     0 2px 12px rgba(0,0,0,.06);
  --kite-shadow-lg:  0 16px 48px rgba(0,0,0,.12);
  --kite-shadow-btn: 0 4px 14px rgba(6,182,212,.30);
  --kite-font:       'Heebo', 'Arial', sans-serif;
  --kite-nav-h:      68px;
  --kite-transition: .2s ease;
}

/* ── Reset & Base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

/* Hide Hello Elementor default header and footer — we inject our own */
.site-header,
.site-footer { display: none !important; }

/* Compensate for fixed navbar height */
body { padding-top: var(--kite-nav-h) !important; }

/* On full-width Elementor canvas pages (hero on first section) keep 0 padding */
body.kite-has-hero { padding-top: 0 !important; }

body.kite-rtl,
.kite-rtl body {
  direction: rtl;
  font-family: var(--kite-font);
  color: var(--kite-text);
  background: var(--kite-white);
  -webkit-font-smoothing: antialiased;
}

/* ── Navbar ────────────────────────────────────────────────── */
#kite-navbar {
  position: fixed;
  top: 0;
  inset-inline: 0;
  z-index: 99999;
  height: var(--kite-nav-h);
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(226,232,240,.8);
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
  transition: background .3s, box-shadow .3s;
  direction: rtl;
}

#kite-navbar.kite-nav-transparent {
  background: rgba(255,255,255,.50);
  border-bottom-color: rgba(255,255,255,.3);
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
}

.kite-nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  padding: 0 24px;
  gap: 12px;
}

.kite-nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}

.kite-nav-logo img {
  height: 40px;
  width: auto;
  object-fit: contain;
  transition: opacity .2s;
}

.kite-nav-logo:hover img { opacity: .85; }

/* Desktop nav links — centered */
.kite-nav-links {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2px;
  flex-wrap: nowrap;
}

.kite-nav-link {
  padding: 8px 12px;
  border-radius: var(--kite-radius-sm);
  font-size: .875rem;
  font-weight: 600;
  color: #475569;
  text-decoration: none;
  transition: background .2s, color .2s;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.kite-nav-link:hover {
  background: #f0f9ff;
  color: #0e7490;
}

.kite-nav-link.kite-nav-active {
  background: #ecfeff;
  color: #0e7490;
}

/* Live wind pulse dot */
.kite-live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--kite-emerald);
  flex-shrink: 0;
  animation: kite-pulse 2s ease infinite;
}

@keyframes kite-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .5; transform: scale(.8); }
}

/* Actions (right-most in RTL = left side of screen) */
.kite-nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.kite-btn-nav-cta {
  background: var(--kite-cyan);
  color: #fff !important;
  border: none;
  border-radius: var(--kite-radius-sm);
  padding: 9px 18px;
  font-family: var(--kite-font);
  font-size: .875rem;
  font-weight: 700;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  box-shadow: var(--kite-shadow-btn);
  transition: background var(--kite-transition);
  white-space: nowrap;
}

.kite-btn-nav-cta:hover {
  background: var(--kite-cyan-dark);
  color: #fff !important;
}

/* Mobile hamburger */
.kite-mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: var(--kite-radius-sm);
  transition: background .2s;
}

.kite-mobile-toggle:hover { background: #f1f5f9 !important; }

.kite-mobile-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #475569;
  border-radius: 2px;
  transition: transform .2s, opacity .2s;
}

/* Mobile menu drawer */
.kite-mobile-menu {
  display: none;
  position: fixed;
  top: var(--kite-nav-h);
  inset-inline: 0;
  bottom: 0;
  background: #fff;
  z-index: 99998;
  flex-direction: column;
  gap: 2px;
  padding: 12px;
  overflow-y: auto;
  border-top: 1px solid var(--kite-border);
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
}

.kite-mobile-menu.kite-menu-open { display: flex; }

.kite-mobile-link {
  display: block;
  padding: 12px 16px;
  border-radius: var(--kite-radius-sm);
  font-size: 1rem;
  font-weight: 600;
  color: var(--kite-text);
  text-decoration: none;
  transition: background .2s;
}

.kite-mobile-link:hover { background: #f8fafc; color: var(--kite-text); }

.kite-mobile-cta {
  margin-top: 8px;
  display: block;
  text-align: center;
  border-radius: var(--kite-radius-sm);
}

/* ── Elementor hero section: remove container max-width ────── */
.kite-hero-section.elementor-section,
.kite-hero-section { padding: 0 !important; }
.kite-hero-section .elementor-container { max-width: 100% !important; padding: 0 !important; }
.kite-hero-section .elementor-column-wrap { padding: 0 !important; }
.kite-hero-section .elementor-widget-container { padding: 0 !important; }
.kite-hero-section .elementor-widget-shortcode,
.kite-hero-section .elementor-column,
.kite-hero-section .elementor-col-100 { width: 100% !important; max-width: 100% !important; }

/* Elementor section default vertical rhythm */
.elementor-section { padding-block: 0; }

/* ── Hero Section ──────────────────────────────────────────── */
.kite-home-hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background-color: var(--kite-ocean-950);
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  direction: rtl;
}

.kite-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(5,15,30,.45) 0%,
    rgba(5,15,30,.25) 40%,
    rgba(5,15,30,.68) 100%
  );
}

.kite-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 128px 24px 80px;
  width: 100%;
}

.kite-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #67e8f9;
  margin-bottom: 20px;
}

.kite-hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.05;
  margin: 0 0 20px;
  max-width: 700px;
}

.kite-gradient-text {
  background: linear-gradient(135deg, var(--kite-cyan), var(--kite-sky));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.kite-hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,.75);
  margin: 0 0 36px;
  max-width: 520px;
  line-height: 1.65;
  font-weight: 400;
}

.kite-hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.kite-btn-hero-primary {
  background: var(--kite-cyan);
  color: #fff !important;
  border: none;
  border-radius: 12px;
  padding: 14px 28px;
  font-family: var(--kite-font);
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 20px rgba(6,182,212,.40);
  transition: background var(--kite-transition);
}

.kite-btn-hero-primary:hover {
  background: var(--kite-cyan-dark);
  color: #fff !important;
}

.kite-btn-hero-ghost {
  background: rgba(255,255,255,.12);
  color: #fff !important;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 12px;
  padding: 14px 24px;
  font-family: var(--kite-font);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  backdrop-filter: blur(6px);
  transition: background var(--kite-transition);
}

.kite-btn-hero-ghost:hover {
  background: rgba(255,255,255,.22);
  color: #fff !important;
}

/* Stats strip inside hero */
.kite-hero-stats {
  position: relative;
  z-index: 2;
  background: rgba(5,21,37,.82);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,.08);
  display: grid;
  grid-template-columns: repeat(3,1fr);
  text-align: center;
  padding: 20px 24px;
}

.kite-hero-stat { display: flex; flex-direction: column; align-items: center; }

.kite-hero-stat-num {
  font-size: 1.875rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
}

.kite-hero-stat-label {
  font-size: .75rem;
  color: rgba(255,255,255,.5);
  margin-top: 4px;
  font-weight: 500;
}

/* ── Quick Links dark section ──────────────────────────────── */
.kite-ql-section {
  background: var(--kite-ocean-800);
  padding: 48px 0;
  direction: rtl;
}

.kite-ql-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 24px;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 12px;
}

.kite-ql-item {
  display: block;
  text-decoration: none;
  border-radius: var(--kite-radius);
  border: 1px solid rgba(255,255,255,.06);
  background: rgba(255,255,255,.04);
  padding: 20px 16px;
  text-align: center;
  transition: background .2s, transform .2s;
}

.kite-ql-item:hover {
  background: rgba(255,255,255,.08);
  transform: translateY(-2px);
}

.kite-ql-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  font-size: 1.25rem;
}

.kite-ql-label {
  font-size: .9rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

/* ── Section Container ─────────────────────────────────────── */
.kite-section {
  padding: 80px 0;
  direction: rtl;
}

.kite-section-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.kite-section-light  { background: var(--kite-light); }
.kite-section-white  { background: #fff; }
.kite-section-dark   { background: var(--kite-ocean-800); position: relative; overflow: hidden; }
.kite-section-ocean  { background: var(--kite-ocean-900); }

.kite-section-dark-bg-img {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .12;
}

/* ── Section Header ────────────────────────────────────────── */
.kite-sh {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 32px;
  gap: 16px;
  direction: rtl;
}

.kite-sh-left { display: flex; flex-direction: column; gap: 2px; }

.kite-sh-label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--kite-cyan);
  display: block;
}

.kite-sh-title {
  font-size: 1.875rem;
  font-weight: 800;
  color: var(--kite-text);
  margin: 0;
  line-height: 1.2;
}

.kite-sh-title-white { color: #fff; }

.kite-sh-cta {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: .875rem;
  font-weight: 700;
  color: var(--kite-cyan-dark);
  text-decoration: none;
  white-space: nowrap;
  transition: color .2s;
  flex-shrink: 0;
}

.kite-sh-cta:hover { color: var(--kite-cyan); }

.kite-sh-cta-white { color: rgba(255,255,255,.65); }
.kite-sh-cta-white:hover { color: #fff; }

/* ── Grid ──────────────────────────────────────────────────── */
.kite-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(auto-fill, minmax(280px,1fr));
  direction: rtl;
}

.kite-grid-3 { grid-template-columns: repeat(3,1fr); }
.kite-grid-2 { grid-template-columns: repeat(2,1fr); }

/* ── School Cards ──────────────────────────────────────────── */
.kite-school-card {
  background: var(--kite-card-bg);
  border-radius: var(--kite-radius);
  overflow: hidden;
  box-shadow: var(--kite-shadow);
  border: 1px solid var(--kite-border);
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
  direction: rtl;
}

.kite-school-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--kite-shadow-lg);
}

.kite-sc-img-wrap {
  position: relative;
  height: 192px;
  overflow: hidden;
  flex-shrink: 0;
  background: #c8d6e5;
}

.kite-sc-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
  display: block;
}

.kite-school-card:hover .kite-sc-img-wrap img { transform: scale(1.05); }

.kite-sc-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.72) 0%, rgba(0,0,0,.2) 55%, transparent 100%);
}

.kite-sc-badges {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  z-index: 2;
}

.kite-badge-cert {
  background: rgba(255,255,255,.95);
  color: #0369a1;
  font-size: .7rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(0,0,0,.15);
  display: inline-flex;
  align-items: center;
  gap: 3px;
}

.kite-badge-beginner {
  background: var(--kite-emerald);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 8px;
}

.kite-sc-img-bottom {
  position: absolute;
  bottom: 12px;
  right: 12px;
  left: 12px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  z-index: 2;
}

.kite-sc-name {
  font-size: 1rem;
  font-weight: 800;
  color: #fff;
  margin: 0;
  line-height: 1.2;
}

.kite-sc-location {
  color: rgba(255,255,255,.75);
  font-size: .75rem;
  margin: 2px 0 0;
  display: flex;
  align-items: center;
  gap: 3px;
}

.kite-sc-rating {
  background: rgba(0,0,0,.40);
  backdrop-filter: blur(8px);
  color: #fff;
  border-radius: 12px;
  padding: 5px 10px;
  font-size: .8rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  gap: 3px;
  white-space: nowrap;
  flex-shrink: 0;
}

.kite-sc-star { color: #fbbf24; }

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

.kite-sc-desc {
  font-size: .875rem;
  color: var(--kite-muted);
  line-height: 1.55;
  margin: 0 0 12px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.kite-sc-langs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.kite-tag {
  font-size: .7rem;
  background: var(--kite-light);
  color: #475569;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 8px;
}

.kite-tag-cyan {
  background: #ecfeff;
  color: #0e7490;
}

.kite-sc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--kite-border);
  gap: 8px;
  flex-wrap: wrap;
}

.kite-price-from {
  font-size: .65rem;
  color: #94a3b8;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .05em;
  display: block;
}

.kite-price-val {
  font-size: 1.125rem;
  font-weight: 800;
  color: var(--kite-sky);
  display: block;
  line-height: 1;
}

.kite-card-actions {
  display: flex;
  gap: 6px;
  align-items: center;
}

/* ── Spot Cards ────────────────────────────────────────────── */
.kite-spot-card {
  background: var(--kite-card-bg);
  border-radius: var(--kite-radius);
  overflow: hidden;
  border: 1px solid var(--kite-border);
  box-shadow: var(--kite-shadow);
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
  direction: rtl;
}

.kite-spot-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--kite-shadow-lg);
}

/* Dark mode spot card (used on spots-dark section) */
.kite-spot-card.dark {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.08);
}

.kite-spot-card.dark:hover { background: rgba(255,255,255,.10); }

.kite-sp-img-wrap {
  position: relative;
  height: 176px;
  overflow: hidden;
  flex-shrink: 0;
  background: #c8d6e5;
}

.kite-sp-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
  display: block;
}

.kite-spot-card:hover .kite-sp-img-wrap img { transform: scale(1.05); }

.kite-sp-level-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: .75rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 8px;
  color: #fff;
  z-index: 2;
}
.kite-level-beginner-advanced { background: var(--kite-emerald); }
.kite-level-advanced          { background: #ef4444; }
.kite-level-intermediate      { background: #f59e0b; }
.kite-level-beginner          { background: var(--kite-sky); }

.kite-sp-type-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(6px);
  color: rgba(255,255,255,.9);
  font-size: .7rem;
  font-weight: 500;
  padding: 3px 8px;
  border-radius: 8px;
  z-index: 2;
}

.kite-sp-name-overlay {
  position: absolute;
  bottom: 0;
  inset-inline: 0;
  padding: 32px 16px 16px;
  background: linear-gradient(to top, rgba(0,0,0,.38) 0%, rgba(0,0,0,.12) 55%, transparent 100%);
  z-index: 2;
}

.kite-sp-name {
  font-size: .9375rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.2;
}

.kite-sp-region {
  font-size: .75rem;
  color: rgba(255,255,255,.75);
  margin: 2px 0 0;
  display: flex;
  align-items: center;
  gap: 3px;
}

.kite-sp-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.kite-sp-desc {
  font-size: .8125rem;
  line-height: 1.5;
  margin: 0 0 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.kite-sp-desc.light { color: var(--kite-muted); }
.kite-sp-desc.dark  { color: rgba(255,255,255,.55); }

.kite-sp-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 12px; }

.kite-sp-tag {
  font-size: .75rem;
  font-weight: 500;
  padding: 2px 8px;
  border-radius: 6px;
}

.kite-sp-tag.light { background: var(--kite-light); color: #475569; }
.kite-sp-tag.dark  { background: rgba(255,255,255,.08); color: rgba(255,255,255,.65); }

/* ── Gear Cards ────────────────────────────────────────────── */
.kite-gear-card {
  background: var(--kite-card-bg);
  border-radius: var(--kite-radius);
  overflow: hidden;
  border: 1px solid var(--kite-border);
  box-shadow: var(--kite-shadow);
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
  direction: rtl;
}

.kite-gear-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--kite-shadow-lg);
}

.kite-gc-img-wrap {
  position: relative;
  overflow: hidden;
  background: #f1f5f9;
  padding-bottom: 72%;
}

.kite-gc-img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
  display: block;
}

.kite-gear-card:hover .kite-gc-img-wrap img { transform: scale(1.05); }

.kite-gc-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.6) 0%, transparent 60%);
}

.kite-gc-cond-badge {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: .75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 8px;
  color: #fff;
  z-index: 2;
}

.kite-cond-likenew  { background: var(--kite-emerald); }
.kite-cond-excellent{ background: var(--kite-sky); }
.kite-cond-good     { background: #f59e0b; }
.kite-cond-fair     { background: #f97316; }

.kite-gc-price-badge {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(6px);
  color: var(--kite-text);
  font-size: .9375rem;
  font-weight: 800;
  padding: 5px 12px;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,.18);
  z-index: 2;
}

.kite-gc-year-badge {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background: rgba(0,0,0,.40);
  backdrop-filter: blur(6px);
  color: rgba(255,255,255,.9);
  font-size: .75rem;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 8px;
  z-index: 2;
}

.kite-gc-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.kite-gc-type {
  font-size: .7rem;
  font-weight: 700;
  color: var(--kite-cyan-dark);
  text-transform: uppercase;
  letter-spacing: .06em;
  margin-bottom: 4px;
}

.kite-gc-title {
  font-size: .9375rem;
  font-weight: 700;
  color: var(--kite-text);
  margin: 0 0 8px;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}

.kite-gc-location {
  font-size: .8125rem;
  color: var(--kite-muted);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  gap: 5px;
}

.kite-gc-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--kite-border);
}

.kite-gc-seller {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .75rem;
  color: var(--kite-muted);
  font-weight: 500;
}

.kite-gc-avatar {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--kite-cyan), var(--kite-sky));
  color: #fff;
  font-size: .75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.kite-gc-detail-link {
  font-size: .75rem;
  font-weight: 700;
  color: var(--kite-cyan-dark);
  text-decoration: none;
  transition: color .2s;
}

.kite-gc-detail-link:hover { color: var(--kite-cyan); }

/* ── Guide Cards ───────────────────────────────────────────── */
.kite-guide-card {
  background: var(--kite-card-bg);
  border-radius: var(--kite-radius);
  overflow: hidden;
  border: 1px solid var(--kite-border);
  box-shadow: var(--kite-shadow);
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
  direction: rtl;
  text-decoration: none;
}

.kite-guide-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--kite-shadow-lg);
}

.kite-gd-img-wrap {
  position: relative;
  height: 176px;
  overflow: hidden;
  flex-shrink: 0;
  background: #c8d6e5;
}

.kite-gd-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
  display: block;
}

.kite-guide-card:hover .kite-gd-img-wrap img { transform: scale(1.05); }

.kite-gd-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.55) 0%, transparent 65%);
}

.kite-gd-cat-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  font-size: .7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 8px;
  z-index: 2;
}

.kite-cat-beginner   { background: #d1fae5; color: #065f46; }
.kite-cat-school     { background: #dbeafe; color: #1e40af; }
.kite-cat-spots      { background: #cffafe; color: #164e63; }
.kite-cat-forecast   { background: #ede9fe; color: #4c1d95; }
.kite-cat-gear       { background: #fef3c7; color: #92400e; }
.kite-cat-default    { background: #f1f5f9; color: #475569; }

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

.kite-gd-title {
  font-size: .9375rem;
  font-weight: 700;
  color: var(--kite-text);
  margin: 0 0 8px;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
  transition: color .2s;
}

.kite-guide-card:hover .kite-gd-title { color: var(--kite-cyan-dark); }

.kite-gd-summary {
  font-size: .8125rem;
  color: var(--kite-muted);
  line-height: 1.5;
  margin: 0 0 16px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.kite-gd-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid var(--kite-border);
}

.kite-gd-read-time {
  font-size: .75rem;
  color: #94a3b8;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 5px;
}

.kite-gd-more {
  font-size: .75rem;
  font-weight: 700;
  color: var(--kite-cyan-dark);
  display: flex;
  align-items: center;
  gap: 3px;
  transition: color .2s;
}

.kite-guide-card:hover .kite-gd-more { color: var(--kite-cyan); }

/* ── Shop Cards ────────────────────────────────────────────── */
.kite-shop-card {
  background: var(--kite-card-bg);
  border-radius: var(--kite-radius);
  overflow: hidden;
  border: 1px solid var(--kite-border);
  box-shadow: var(--kite-shadow);
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
  direction: rtl;
}

.kite-shop-card:hover { transform: translateY(-4px); box-shadow: var(--kite-shadow-lg); }

.kite-sh-card-img-wrap {
  position: relative;
  height: 160px;
  overflow: hidden;
  background: #c8d6e5;
  flex-shrink: 0;
}

.kite-sh-card-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }

.kite-sh-card-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }

/* ── Forecast / Wind Station Cards ─────────────────────────── */
.kite-forecast-card {
  background: var(--kite-card-bg);
  border-radius: var(--kite-radius);
  border: 1px solid var(--kite-border);
  padding: 28px 20px;
  text-align: center;
  box-shadow: var(--kite-shadow);
  transition: transform .2s, box-shadow .2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  direction: rtl;
}

.kite-forecast-card:hover { transform: translateY(-3px); box-shadow: var(--kite-shadow-lg); }

.kite-forecast-icon { font-size: 2.5rem; }

.kite-wind-speed {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--kite-sky);
  line-height: 1;
}

.kite-wind-dir { font-size: 1rem; color: var(--kite-muted); font-weight: 600; }

/* ── Buttons ───────────────────────────────────────────────── */
.kite-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 10px 20px;
  border-radius: var(--kite-radius-sm);
  font-family: var(--kite-font);
  font-size: .875rem;
  font-weight: 700;
  text-decoration: none !important;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--kite-transition);
  white-space: nowrap;
  line-height: 1;
}

.kite-btn-primary {
  background: var(--kite-cyan);
  color: #fff !important;
  border-color: var(--kite-cyan);
  box-shadow: var(--kite-shadow-btn);
}

.kite-btn-primary:hover {
  background: var(--kite-cyan-dark);
  border-color: var(--kite-cyan-dark);
  color: #fff !important;
}

.kite-btn-secondary {
  background: transparent;
  color: var(--kite-cyan-dark) !important;
  border-color: var(--kite-cyan-dark);
}

.kite-btn-secondary:hover {
  background: var(--kite-cyan);
  color: #fff !important;
  border-color: var(--kite-cyan);
}

.kite-btn-ghost-white {
  background: rgba(255,255,255,.12);
  color: #fff !important;
  border-color: rgba(255,255,255,.25);
  backdrop-filter: blur(6px);
}

.kite-btn-ghost-white:hover {
  background: rgba(255,255,255,.22);
  color: #fff !important;
}

/* Small button variants */
.kite-btn-sm {
  padding: 7px 14px;
  font-size: .75rem;
  border-radius: 8px;
}

.kite-btn-wa {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #ecfdf5;
  color: #065f46 !important;
  border: 1px solid #a7f3d0;
  border-radius: 8px;
  padding: 7px 12px;
  font-family: var(--kite-font);
  font-size: .75rem;
  font-weight: 700;
  text-decoration: none !important;
  transition: background var(--kite-transition);
}

.kite-btn-wa:hover { background: #d1fae5; color: #065f46 !important; }

/* ── Lead CTA Box ──────────────────────────────────────────── */
.kite-lead-box {
  border-radius: 24px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  box-shadow: var(--kite-shadow-lg);
}

.kite-lead-left {
  background: linear-gradient(135deg, var(--kite-cyan), var(--kite-sky));
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.kite-lead-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  margin-bottom: 16px;
}

.kite-lead-title {
  font-size: 1.75rem;
  font-weight: 800;
  color: #fff;
  margin: 0 0 12px;
  line-height: 1.2;
}

.kite-lead-desc { color: rgba(255,255,255,.75); font-size: .9375rem; line-height: 1.55; }

.kite-lead-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 32px;
}

.kite-lead-stat {
  background: rgba(255,255,255,.12);
  border-radius: 12px;
  padding: 16px;
}

.kite-lead-stat-n { font-size: 1.75rem; font-weight: 800; color: #fff; display: block; }
.kite-lead-stat-l { font-size: .75rem; color: rgba(255,255,255,.6); }

.kite-lead-right { background: #fff; padding: 48px; }

/* ── Footer ────────────────────────────────────────────────── */
#kite-footer {
  background: var(--kite-ocean-900);
  color: #fff;
  direction: rtl;
}

.kite-footer-cta-strip {
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.kite-footer-cta-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 32px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.kite-footer-cta-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 4px;
}

.kite-footer-cta-sub { font-size: .875rem; color: rgba(255,255,255,.5); margin: 0; }

.kite-footer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--kite-cyan);
  color: #fff !important;
  padding: 12px 24px;
  border-radius: 12px;
  font-family: var(--kite-font);
  font-size: .875rem;
  font-weight: 700;
  text-decoration: none !important;
  box-shadow: var(--kite-shadow-btn);
  transition: background var(--kite-transition);
  white-space: nowrap;
  flex-shrink: 0;
}

.kite-footer-cta-btn:hover { background: var(--kite-cyan-dark); color: #fff !important; }

.kite-footer-main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 56px 24px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 32px;
}

.kite-footer-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  margin-bottom: 20px;
  display: block;
}

.kite-footer-tagline {
  color: rgba(255,255,255,.4);
  font-size: .875rem;
  line-height: 1.5;
  margin: 0 0 24px;
}

.kite-footer-social {
  display: flex;
  gap: 8px;
}

.kite-social-btn {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: .875rem;
  color: rgba(255,255,255,.55);
  transition: background var(--kite-transition), border-color var(--kite-transition);
}

.kite-social-btn:hover {
  background: rgba(6,182,212,.2);
  border-color: rgba(6,182,212,.4);
  color: rgba(255,255,255,.8);
}

.kite-footer-col h4 {
  font-size: .875rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 20px;
  letter-spacing: .02em;
}

.kite-footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.kite-footer-col ul li a {
  color: rgba(255,255,255,.4);
  text-decoration: none;
  font-size: .875rem;
  font-weight: 500;
  transition: color var(--kite-transition);
}

.kite-footer-col ul li a:hover { color: rgba(255,255,255,.8); }

.kite-footer-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 24px 0;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.kite-footer-bottom p {
  font-size: .75rem;
  color: rgba(255,255,255,.3);
  margin: 0;
}

.kite-footer-credit {
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px 24px 32px;
  text-align: center;
  font-size: .7rem;
  color: rgba(255,255,255,.18);
}

.kite-footer-credit a {
  color: rgba(255,255,255,.3);
  text-decoration: none;
  transition: color var(--kite-transition);
}

.kite-footer-credit a:hover { color: rgba(255,255,255,.55); }

/* ── Forms ─────────────────────────────────────────────────── */
.kite-form-wrap { max-width: 640px; margin: 0 auto; }

.kite-form {
  background: #fff;
  border-radius: var(--kite-radius);
  padding: 32px;
  box-shadow: var(--kite-shadow);
}

.kite-form-row {
  margin-bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.kite-row-2cols { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

.kite-label { font-size: .9rem; font-weight: 600; color: var(--kite-text); }
.kite-req   { color: #ef4444; margin-right: 3px; }

.kite-input,
.kite-select,
.kite-textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--kite-border);
  border-radius: 8px;
  font-family: var(--kite-font);
  font-size: .95rem;
  color: var(--kite-text);
  background: #fff;
  transition: border-color var(--kite-transition), box-shadow var(--kite-transition);
  direction: rtl;
}

.kite-input:focus, .kite-select:focus, .kite-textarea:focus {
  outline: none;
  border-color: var(--kite-cyan);
  box-shadow: 0 0 0 3px rgba(6,182,212,.15);
}

.kite-textarea { resize: vertical; min-height: 100px; }

.kite-checkbox-row label { display: flex; align-items: flex-start; gap: 10px; font-size: .9rem; cursor: pointer; }
.kite-checkbox-row input[type=checkbox] { width: 18px; height: 18px; margin-top: 2px; flex-shrink: 0; }

.kite-upload-placeholder {
  background: var(--kite-light);
  border: 1.5px dashed var(--kite-border);
  border-radius: 8px;
  padding: 16px;
}

.kite-hint { font-size: .85rem; color: var(--kite-muted); margin: 0; }

/* Send button override for forms */
[type=submit].kite-btn,
button[type=submit].kite-btn {
  background: var(--kite-cyan);
  color: #fff;
  border: none;
  cursor: pointer;
  width: 100%;
  padding: 14px;
  font-size: 1rem;
  border-radius: 10px;
  margin-top: 8px;
  box-shadow: var(--kite-shadow-btn);
}

[type=submit].kite-btn:hover { background: var(--kite-cyan-dark); }

/* Form messages */
.kite-form-msg {
  margin-top: 12px;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: .9rem;
  font-weight: 600;
  display: none;
}

.kite-form-msg.kite-msg-success { background: #ecfdf5; color: #065f46; border: 1px solid #6ee7b7; display: block; }
.kite-form-msg.kite-msg-error   { background: #fef2f2; color: #991b1b; border: 1px solid #fca5a5; display: block; }
.kite-form-msg.kite-msg-loading { background: #eff6ff; color: #1e40af; border: 1px solid #93c5fd; display: block; }

/* ── Maps ───────────────────────────────────────────────────── */
.kite-map {
  z-index: 1;
  border: 1px solid var(--kite-border);
  border-radius: var(--kite-radius);
}

.kite-station-icon, .kite-report-icon { font-size: 20px; text-align: center; line-height: 1; }

/* ── No results ─────────────────────────────────────────────── */
.kite-no-results {
  text-align: center;
  color: var(--kite-muted);
  padding: 48px 20px;
  font-size: 1rem;
}

/* ── Admin ──────────────────────────────────────────────────── */
.kite-admin-wrap { direction: rtl; }

/* ── "View all" links ─────────────────────────────────────────  */
.kite-view-all {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: .875rem;
  font-weight: 700;
  color: var(--kite-cyan-dark);
  text-decoration: none;
  margin-top: 20px;
  transition: color .2s;
}

.kite-view-all:hover { color: var(--kite-cyan); }

/* ── Page Hero (inner pages) ────────────────────────────────── */
.kite-page-hero {
  position: relative;
  min-height: 260px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--kite-ocean-800);
  background-size: cover;
  background-position: center;
  direction: rtl;
}

.kite-page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(10,37,64,.5), rgba(10,37,64,.85));
}

.kite-page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 24px;
  width: 100%;
}

.kite-page-hero-label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--kite-cyan);
  display: block;
  margin-bottom: 8px;
}

.kite-page-hero-title {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 900;
  color: #fff;
  margin: 0 0 8px;
  line-height: 1.1;
}

.kite-page-hero-sub { font-size: 1rem; color: rgba(255,255,255,.65); margin: 0; }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .kite-nav-links { display: none; }
  .kite-mobile-toggle { display: flex; }
  .kite-nav-actions { display: none; }
  .kite-footer-main { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .kite-grid       { grid-template-columns: 1fr; }
  .kite-grid-3     { grid-template-columns: 1fr; }
  .kite-ql-grid    { grid-template-columns: repeat(3,1fr); }
  .kite-lead-box   { grid-template-columns: 1fr; }
  .kite-lead-left  { padding: 32px 24px; }
  .kite-lead-right { padding: 24px; }
  .kite-footer-main { grid-template-columns: 1fr 1fr; gap: 24px; }
  .kite-footer-cta-inner { flex-direction: column; align-items: flex-start; }
  .kite-footer-bottom { flex-direction: column; align-items: center; text-align: center; }
  .kite-hero-content { padding-bottom: 48px; }
  .kite-form { padding: 20px 16px; }
  .kite-row-2cols { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .kite-ql-grid { grid-template-columns: repeat(2,1fr); }
  .kite-hero-stats { grid-template-columns: repeat(3,1fr); }
  .kite-footer-main { grid-template-columns: 1fr; }
}

@media (min-width: 640px) {
  .kite-grid { grid-template-columns: repeat(2,1fr); }
}

@media (min-width: 1024px) {
  .kite-grid { grid-template-columns: repeat(3,1fr); }
  .kite-ql-grid { grid-template-columns: repeat(6,1fr); }
}

/* ── v1.0.4 New Components ─────────────────────────────────── */

/* Quick Links SVG icon wrap (replaces emoji .kite-ql-icon) */
.kite-ql-icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
  transition: transform .2s;
}
.kite-ql-item:hover .kite-ql-icon-wrap { transform: scale(1.1); }
.kite-ql-label { margin: 0; font-size: .875rem; }

/* Spot card — dark glass variant container */
.kite-spot-card.dark {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  box-shadow: none;
}
.kite-spot-card.dark:hover {
  background: rgba(255,255,255,.10);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0,0,0,.3);
}
.kite-spot-card.dark .kite-sp-body {
  background: rgba(15,23,42,.32);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,.08);
}

/* Spots dark section — background image overlay */
.kite-spots-dark-section { position: relative; overflow: hidden; }
.kite-spots-dark-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?w=1400&q=70') center / cover no-repeat;
  opacity: .12;
  pointer-events: none;
  z-index: 0;
}
.kite-spots-dark-section > * { position: relative; z-index: 1; }

/* ── Section Header (SectionHeader component) ─────────────── */
.kite-section-hdr {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 36px;
  direction: rtl;
}
.kite-sh-eyebrow {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin: 0 0 8px;
  font-family: var(--kite-font);
}
.kite-sh-eyebrow.light { color: #0891b2; }
.kite-sh-eyebrow.dark  { color: #22d3ee; }
.kite-sh-h2 {
  font-size: 1.875rem;
  font-weight: 800;
  margin: 0;
  line-height: 1.1;
  font-family: var(--kite-font);
}
@media (min-width: 768px) { .kite-sh-h2 { font-size: 2.25rem; } }
.kite-sh-h2.light { color: #0f172a; }
.kite-sh-h2.dark  { color: #ffffff; }
.kite-sh-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }
.kite-sh-viewall {
  display: none;
  align-items: center;
  gap: 4px;
  font-size: .8125rem;
  font-weight: 600;
  text-decoration: none;
  padding: 6px 14px;
  border-radius: 10px;
  border: 1px solid;
  transition: all .2s;
  font-family: var(--kite-font);
}
@media (min-width: 640px) { .kite-sh-viewall { display: flex; } }
.kite-sh-viewall.light { color: #475569; border-color: #e2e8f0; }
.kite-sh-viewall.light:hover { background: #f8fafc; color: #0f172a; }
.kite-sh-viewall.dark  { color: rgba(255,255,255,.7); border-color: rgba(255,255,255,.2); }
.kite-sh-viewall.dark:hover  { color: #fff; background: rgba(255,255,255,.1); }

/* ── WindCard (Forecast Base44 parity) ────────────────────── */
.kite-wind-card {
  background: #fff;
  border-radius: var(--kite-radius);
  border: 1px solid #f1f5f9;
  box-shadow: var(--kite-shadow);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  transition: transform .2s, box-shadow .2s;
  direction: rtl;
}
.kite-wind-card:hover { transform: translateY(-4px); box-shadow: var(--kite-shadow-lg); }
.kite-wc-header { display: flex; align-items: center; gap: 12px; }
.kite-wc-icon { font-size: 2rem; line-height: 1; }
.kite-wc-name { font-weight: 700; color: var(--kite-text); font-size: .9375rem; margin: 0; }
.kite-wc-season { font-size: .75rem; color: #94a3b8; margin: 2px 0 0; }
.kite-wc-body { display: flex; align-items: flex-end; justify-content: space-between; }
.kite-wc-now-label {
  font-size: .65rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: #94a3b8; margin: 0 0 2px;
}
.kite-wc-speed-row { display: flex; align-items: baseline; gap: 4px; }
.kite-wc-speed { font-size: 2.5rem; font-weight: 800; color: var(--kite-text); line-height: 1; }
.kite-wc-unit { font-size: .875rem; color: #94a3b8; }
.kite-wc-dir { font-size: .75rem; color: #94a3b8; margin: 3px 0 0; }
.kite-wc-typical-label { font-size: .75rem; color: #94a3b8; margin: 0 0 4px; }
.kite-wc-typical-val { font-size: .875rem; font-weight: 600; color: #334155; margin: 0; }
.kite-wc-bar-track { height: 6px; background: #f1f5f9; border-radius: 9999px; overflow: hidden; }
.kite-wc-bar-fill { height: 100%; border-radius: 9999px; transition: width .7s ease; }
.kite-wc-link {
  font-size: .75rem; font-weight: 700; color: var(--kite-cyan-dark);
  text-decoration: none; transition: color .2s; align-self: flex-end;
}
.kite-wc-link:hover { color: var(--kite-cyan); }

/* ── Home Lead Panel (two-panel card) ─────────────────────── */
.kite-home-lead-panel { max-width: 1024px; margin: 0 auto; direction: rtl; }
.kite-hlp-card {
  border-radius: 24px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  box-shadow: 0 20px 60px rgba(0,0,0,.25);
}
@media (min-width: 768px) { .kite-hlp-card { grid-template-columns: 1fr 1fr; } }
.kite-hlp-left {
  background: linear-gradient(135deg, #06b6d4 0%, #0369a1 100%);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.kite-hlp-eyebrow {
  font-size: .65rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: rgba(255,255,255,.65); margin: 0 0 14px;
}
.kite-hlp-h2 { font-size: 1.5rem; font-weight: 800; color: #fff; margin: 0 0 14px; line-height: 1.2; font-family: var(--kite-font); }
@media (min-width: 768px) { .kite-hlp-h2 { font-size: 1.75rem; } }
.kite-hlp-desc { font-size: .875rem; color: rgba(255,255,255,.7); margin: 0 0 28px; line-height: 1.6; }
.kite-hlp-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.kite-hlp-stat { background: rgba(255,255,255,.12); border-radius: 12px; padding: 14px; }
.kite-hlp-stat-n { font-size: 1.5rem; font-weight: 800; color: #fff; margin: 0; }
.kite-hlp-stat-l { font-size: .7rem; color: rgba(255,255,255,.6); margin: 4px 0 0; }
.kite-hlp-right { padding: 40px; background: #fff; }

/* ── Schools Page Hero ─────────────────────────────────────── */
.kite-page-hero {
  position: relative;
  overflow: hidden;
  padding: 80px 24px 48px;
  direction: rtl;
}
.kite-schools-hero {
  background: linear-gradient(135deg, #051525 0%, #0a2540 55%, #145280 100%);
}
.kite-ph-bg-img {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1530870110042-98b2cb110834?w=1200&q=60') center / cover;
  opacity: .08;
  pointer-events: none;
}
.kite-ph-content { max-width: 1280px; margin: 0 auto; }
.kite-ph-eyebrow {
  color: #22d3ee; font-size: .7rem; font-weight: 700;
  letter-spacing: .2em; text-transform: uppercase; margin: 0 0 12px;
}
.kite-ph-title { font-size: 2.25rem; font-weight: 900; color: #fff; margin: 0 0 12px; line-height: 1.05; font-family: var(--kite-font); }
@media (min-width: 768px) { .kite-ph-title { font-size: 3rem; } }
.kite-ph-subtitle { font-size: 1.0625rem; color: rgba(255,255,255,.6); margin: 0 0 24px; }
.kite-ph-badges { display: flex; flex-wrap: wrap; gap: 10px; }
.kite-ph-badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(255,255,255,.1); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.2); border-radius: 12px;
  padding: 6px 14px; font-size: .75rem; font-weight: 500; color: rgba(255,255,255,.8);
}

/* ── Schools Filter Bar ────────────────────────────────────── */
.kite-schools-filter-bar {
  position: sticky;
  top: var(--kite-nav-h);
  z-index: 30;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid #f1f5f9;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
  direction: rtl;
}
.kite-sfb-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.kite-sfb-search { position: relative; min-width: 160px; max-width: 240px; flex: 1; }
.kite-sfb-search-icon {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  color: #94a3b8;
  pointer-events: none;
  display: flex;
}
.kite-sfb-input {
  width: 100%;
  padding: 7px 32px 7px 12px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  font-size: .875rem;
  font-family: var(--kite-font);
  background: #f8fafc;
  color: var(--kite-text);
  outline: none;
  transition: border-color .2s;
}
.kite-sfb-input:focus { border-color: #06b6d4; background: #fff; }
.kite-sfb-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.kite-chip {
  padding: 6px 12px;
  border-radius: 12px;
  font-size: .75rem;
  font-weight: 600;
  border: 1px solid #e2e8f0;
  background: #fff;
  color: #475569;
  cursor: pointer;
  transition: all .2s;
  font-family: var(--kite-font);
}
.kite-chip:hover { border-color: #94a3b8; background: #f8fafc; }
.kite-chip.kite-chip-active {
  background: #1e40af; color: #fff;
  border-color: #1e40af;
  box-shadow: 0 2px 8px rgba(37,99,235,.25);
}
.kite-sfb-adv-toggle {
  display: flex; align-items: center; gap: 6px;
  padding: 6px 12px; border-radius: 12px;
  font-size: .75rem; font-weight: 700;
  border: 1px solid #e2e8f0; background: #fff; color: #475569;
  cursor: pointer; font-family: var(--kite-font); transition: all .2s;
}
.kite-sfb-adv-toggle.kite-adv-open { background: #1e293b; color: #fff; border-color: transparent; }
.kite-sfb-count { margin-inline-start: auto; font-size: .75rem; color: #94a3b8; font-weight: 500; white-space: nowrap; }
.kite-sfb-adv { border-top: 1px solid #f1f5f9; }
.kite-sfb-adv-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 10px 24px;
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px;
}
.kite-sfb-adv-label { font-size: .75rem; font-weight: 700; color: #94a3b8; }

/* ── Add School CTA (banner) ──────────────────────────────── */
.kite-add-school-cta { direction: rtl; margin-bottom: 24px; }
.kite-asc-inner {
  border: 1px solid #bae6fd;
  background: linear-gradient(to left, #ecfeff, #e0f2fe);
  border-radius: 16px;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: flex-start;
}
@media (min-width: 640px) {
  .kite-asc-inner { flex-direction: row; align-items: center; justify-content: space-between; }
}
.kite-asc-title { font-weight: 900; font-size: 1.0625rem; color: var(--kite-text); margin: 0 0 4px; }
.kite-asc-desc { font-size: .875rem; color: #475569; margin: 0; }
.kite-asc-btn {
  flex-shrink: 0;
  display: inline-flex; align-items: center; gap: 6px;
  background: #06b6d4; color: #fff !important;
  text-decoration: none !important;
  padding: 10px 20px; border-radius: 12px;
  font-weight: 700; font-size: .875rem;
  transition: background .2s, transform .15s;
  box-shadow: 0 4px 14px rgba(6,182,212,.3);
  white-space: nowrap;
}
.kite-asc-btn:hover { background: #0891b2; transform: translateY(-1px); }

/* ── Schools Lead Panel ────────────────────────────────────── */
.kite-schools-lead-panel { max-width: 768px; margin: 0 auto; direction: rtl; }
.kite-slp-card {
  background: #fff;
  border-radius: 24px;
  border: 1px solid #f1f5f9;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  overflow: hidden;
}
.kite-slp-header { background: linear-gradient(to left, #06b6d4, #2563eb); padding: 32px; }
.kite-slp-h2 { font-size: 1.5rem; font-weight: 900; color: #fff; margin: 0 0 8px; font-family: var(--kite-font); }
@media (min-width: 768px) { .kite-slp-h2 { font-size: 1.875rem; } }
.kite-slp-desc { color: rgba(255,255,255,.7); font-size: .9375rem; margin: 0; }
.kite-slp-body { padding: 32px; }

/* ============================================================
   v1.0.5 — Polish Pass
   ============================================================ */

/* Hide Hello Elementor default site header (we use our own navbar)
   and duplicate page entry-title that Hello Elementor injects */
#masthead { display: none !important; }
.entry-header,
.elementor-page .entry-title,
body:has(.kite-page-hero) .entry-title,
body:has(.kite-home-hero) .entry-title { display: none !important; }

/* ── Popular Spots — enhanced glass dark cards ────────────── */
.kite-spot-card.dark {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.15);
  box-shadow: 0 8px 32px rgba(0,0,0,.28);
}
.kite-spot-card.dark:hover {
  background: rgba(255,255,255,.10);
  border-color: rgba(255,255,255,.24);
  transform: translateY(-6px);
  box-shadow: 0 20px 50px rgba(0,0,0,.4);
}
.kite-spot-card.dark .kite-sp-body {
  background: rgba(5,21,37,.62);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255,255,255,.10);
}
.kite-spot-card.dark .kite-sp-name-overlay {
  background: linear-gradient(to top, rgba(0,0,0,.68) 0%, rgba(0,0,0,.2) 60%, transparent 100%);
}
/* Taller image for dark spot cards */
.kite-spots-dark-section .kite-sp-img-wrap { height: 220px; }
/* Stronger beach background overlay */
.kite-spots-dark-section::before { opacity: .2; }
/* Ghost CTA full-width inside spot body */
.kite-sp-body .kite-btn-ghost-white {
  width: 100%;
  justify-content: center;
  margin-top: auto;
}
/* Force 3-col on desktop */
@media (min-width: 900px) {
  .kite-spots-dark-section .kite-grid { grid-template-columns: repeat(3,1fr); gap: 24px; }
}

/* ── Home lead panel — two-column compact form ─────────────── */
.kite-hlp-right .kite-form-wrap { max-width: none; }
.kite-hlp-right .kite-form {
  background: transparent;
  padding: 0;
  box-shadow: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 16px;
}
.kite-hlp-right .kite-form .kite-form-row:nth-child(n+7) { grid-column: span 2; }
@media (max-width: 600px) {
  .kite-hlp-right .kite-form { grid-template-columns: 1fr; }
  .kite-hlp-right .kite-form .kite-form-row:nth-child(n+7) { grid-column: auto; }
}

/* ── Schools lead panel — two-column compact form ─────────── */
.kite-slp-body .kite-form-wrap { max-width: none; }
.kite-slp-body .kite-form {
  background: transparent;
  padding: 0;
  box-shadow: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 16px;
}
.kite-slp-body .kite-form .kite-form-row:nth-child(n+7) { grid-column: span 2; }
@media (max-width: 600px) {
  .kite-slp-body .kite-form { grid-template-columns: 1fr; }
  .kite-slp-body .kite-form .kite-form-row:nth-child(n+7) { grid-column: auto; }
}

/* ── Lead form submit button — gradient ────────────────────── */
.kite-btn-lead {
  background: linear-gradient(to left, #2563eb, #06b6d4) !important;
  border-color: transparent !important;
  width: 100%;
  padding: 14px 24px;
  font-size: .9375rem;
  letter-spacing: .02em;
  box-shadow: 0 4px 20px rgba(6,182,212,.35) !important;
  justify-content: center;
}
.kite-btn-lead:hover {
  background: linear-gradient(to left, #1d4ed8, #0891b2) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 24px rgba(6,182,212,.45) !important;
}

/* ── Schools filter bar — polished search input ─────────────── */
.kite-sfb-input {
  border-radius: 24px !important;
  padding: 8px 38px 8px 16px !important;
}
.kite-sfb-search-icon { right: 12px; top: 50%; transform: translateY(-50%); }
.kite-sfb-input:focus { border-color: var(--kite-cyan); }

/* ── Schools hero — full-width edge-to-edge ────────────────── */
.kite-page-hero.kite-schools-hero { padding-left: 0; padding-right: 0; }
.kite-schools-hero .kite-ph-content { padding-left: 24px; padding-right: 24px; }
.kite-schools-hero .kite-ph-bg-img {
  background-image: linear-gradient(135deg, #023e8a 0%, #0077b6 40%, #00b4d8 100%);
}
/* Remove Elementor inner wrapper padding so hero bleeds edge-to-edge */
.elementor-widget-shortcode:has(.kite-schools-hero),
.elementor-widget-shortcode:has(.kite-page-hero) {
  padding: 0 !important;
  margin: 0 !important;
}
.elementor-column:has(.kite-page-hero) > .elementor-widget-wrap {
  padding: 0 !important;
}

/* ── Social icon buttons — SVG-aware centering ─────────────── */
.kite-social-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.55);
}
.kite-social-btn svg { display: block; }

/* ============================================================
   v1.0.6 — Focused Polish Pass
   ============================================================ */

/* Fix #1 ── Navbar always solid (disable transparent-on-hero) */
#kite-navbar.kite-nav-transparent {
  background: rgba(255,255,255,.97) !important;
  border-bottom-color: rgba(226,232,240,.8) !important;
  box-shadow: 0 2px 16px rgba(0,0,0,.06) !important;
}

/* Fix #2 ── Popular Spots: warmer, lighter, more inviting */
.kite-spots-dark-section { background: #162d4e !important; }
.kite-spots-dark-section::before { opacity: .58; }
.kite-spot-card.dark {
  background: rgba(255,255,255,.09);
  border-color: rgba(255,255,255,.18);
  box-shadow: 0 4px 20px rgba(0,0,0,.18);
}
.kite-spot-card.dark:hover {
  background: rgba(255,255,255,.14);
  border-color: rgba(255,255,255,.28);
  transform: translateY(-5px);
  box-shadow: 0 16px 40px rgba(0,0,0,.28);
}
.kite-spot-card.dark .kite-sp-body {
  background: rgba(255,255,255,.12);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255,255,255,.18);
}
.kite-spot-card.dark .kite-sp-name-overlay {
  background: linear-gradient(to top, rgba(0,0,0,.55) 0%, rgba(0,0,0,.08) 60%, transparent 100%);
}

/* Fix #3 ── Schools hero: image-based background, full-width */
/* Override v1.0.5 gradient — restore the kitesurfing photo.
   !important removed so admin-selected hero image (inline style) can override. */
.kite-schools-hero .kite-ph-bg-img {
  background: url('https://images.unsplash.com/photo-1530870110042-98b2cb110834?w=1400&q=75') center / cover;
  opacity: .58;
}
/* Full-width: override Elementor container in hero section */
.kite-hero-section > .elementor-container,
.elementor-section:has(.kite-page-hero) > .elementor-container {
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* Fix #5 ── Schools filter panel: smooth accordion animation */
/* Panel starts collapsed — JS toggles .kite-adv-open class */
.kite-sfb-adv {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-6px);
  transition: max-height .32s ease, opacity .25s ease, transform .25s ease;
  border-top: none;
}
.kite-sfb-adv.kite-adv-open {
  max-height: 160px;
  opacity: 1;
  transform: translateY(0);
  border-top: 1px solid #f1f5f9;
}

/* Fix #6 ── Filter bar search input polish */
.kite-sfb-input {
  border-radius: 24px !important;
  padding: 8px 36px 8px 14px !important;
  border: 1.5px solid #e2e8f0 !important;
  box-shadow: 0 1px 3px rgba(0,0,0,.05) !important;
}
.kite-sfb-input:focus {
  border-color: #06b6d4 !important;
  box-shadow: 0 0 0 3px rgba(6,182,212,.12) !important;
  background: #fff !important;
}
.kite-sfb-search-icon { right: 10px; }

/* Fix #7 ── Schools lead form: more rounded fields + focused colours */
.kite-slp-body .kite-input,
.kite-slp-body .kite-select,
.kite-slp-body .kite-textarea {
  border-radius: 12px;
  border-color: #e2e8f0;
  background: #f8fafc;
}
.kite-slp-body .kite-input:focus,
.kite-slp-body .kite-select:focus,
.kite-slp-body .kite-textarea:focus {
  background: #fff;
  border-color: #06b6d4;
  box-shadow: 0 0 0 3px rgba(6,182,212,.12);
}

/* ============================================================
   v1.0.7 — Micro-fix Pass
   ============================================================ */

/* Fix #1 ── Home hero: fill viewport minus navbar, correct content padding */
.kite-home-hero { min-height: calc(100svh - var(--kite-nav-h)); }
.kite-hero-content { padding-top: 64px; }

/* Fix #2 ── Popular Spots: beach photo dominates, less dark base */
.kite-spots-dark-section::before { opacity: .88; }

/* Fix #3 ── Schools hero: gradient overlay ON TOP of photo for readability */
.kite-schools-hero .kite-ph-bg-img {
  background:
    linear-gradient(to bottom,
      rgba(3,12,25,.68) 0%,
      rgba(3,12,25,.45) 45%,
      rgba(3,12,25,.62) 100%),
    url('https://images.unsplash.com/photo-1530870110042-98b2cb110834?w=1400&q=75')
    center / cover;
  opacity: 1;
}

/* Fix #4 ── Schools hero: right-align content (RTL start side) */
.kite-schools-hero .kite-ph-content { text-align: right; }
.kite-schools-hero .kite-ph-badges { justify-content: flex-start; }

/* Fix #5 ── Schools filter section: full-width container override */
.kite-filter-section > .elementor-container,
.elementor-section:has(.kite-schools-filter-bar) > .elementor-container {
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

/* ============================================================
   v1.0.8 — Regression fixes
   ============================================================ */

/* Fix #1 ── Revert v1.0.7 home hero height regression */
.kite-home-hero { min-height: 100svh; }
.kite-hero-content { padding-top: 128px; }

/* Fix #2 ── Popular Spots: add missing badge levels + fallback */
/* Fallback: any badge without a matching level class gets a neutral slate */
.kite-sp-level-badge { background: #475569; }
/* Restore all named levels (some were missing) */
.kite-level-beginner            { background: var(--kite-sky); }
.kite-level-beginner-intermediate { background: #06b6d4; }
.kite-level-intermediate        { background: #f59e0b; }
.kite-level-beginner-advanced   { background: var(--kite-emerald); }
.kite-level-advanced            { background: #ef4444; }

/* Fix #3 ── Popular Spots: restore dark translucent lower panel */
.kite-spot-card.dark .kite-sp-body {
  background: rgba(10,18,40,.74);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255,255,255,.10);
}
/* Sharper ghost CTA button inside dark cards */
.kite-spot-card.dark .kite-sp-body .kite-btn-ghost-white {
  background: rgba(255,255,255,.08) !important;
  border: 1.5px solid rgba(255,255,255,.28) !important;
  color: rgba(255,255,255,.92) !important;
  border-radius: 10px;
}
.kite-spot-card.dark .kite-sp-body .kite-btn-ghost-white:hover {
  background: rgba(255,255,255,.18) !important;
  border-color: rgba(255,255,255,.50) !important;
  color: #fff !important;
}

/* Fix #4+6 ── Schools hero: fix stacking so text renders above bg overlay */
/* position:absolute ph-bg-img was painting on top of in-flow ph-content */
.kite-ph-bg-img { z-index: 0; }
.kite-ph-content { position: relative; z-index: 1; }

/* Fix #4 ── Schools hero: stronger dark blue diagonal overlay */
.kite-schools-hero .kite-ph-bg-img {
  background:
    linear-gradient(135deg,
      rgba(2,8,22,.88) 0%,
      rgba(3,14,44,.72) 50%,
      rgba(5,24,62,.85) 100%),
    url('https://images.unsplash.com/photo-1530870110042-98b2cb110834?w=1400&q=75')
    center / cover;
  opacity: 1;
}

/* Fix #5 ── Schools hero: right-align content (RTL start side) */
.kite-schools-hero .kite-ph-content,
.kite-schools-hero .kite-ph-content p,
.kite-schools-hero .kite-ph-content h1 { text-align: right !important; }
.kite-schools-hero .kite-ph-badges {
  display: flex !important;
  justify-content: flex-start !important;
}

/* ============================================================
   v1.0.9 — Home hero height + Spots card CSS final
   ============================================================ */

/* Fix #1 ── Home hero fills viewport below header
   --kite-nav-h (68px) is the fixed navbar height.
   body.home targets the WordPress front page only.
   Scoped selector overrides the generic min-height: 100svh rule above. */
body.home .kite-home-hero {
  min-height: calc(100vh - var(--kite-nav-h));
}

/* Fix #2C ── Image/title overlay: subtle dark only at bottom */
.kite-spot-card.dark .kite-sp-name-overlay {
  background: linear-gradient(
    to top,
    rgba(0,0,0,.55) 0%,
    rgba(0,0,0,.20) 55%,
    rgba(0,0,0,0) 100%
  );
}

/* Fix #2D ── Lower panel: dark translucent glass (exact Base44 target values) */
.kite-spot-card.dark .kite-sp-body {
  background: rgba(15,23,42,.72);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid rgba(255,255,255,.08);
}
.kite-spot-card.dark .kite-sp-desc.dark { color: rgba(255,255,255,.82); }

/* Fix #2E ── CTA ghost button (Base44 style) */
.kite-spot-card.dark .kite-sp-body .kite-btn-ghost-white {
  background: rgba(255,255,255,.08) !important;
  border: 1px solid rgba(255,255,255,.22) !important;
  color: #fff !important;
  border-radius: 14px !important;
  font-weight: 700;
  width: 100%;
  justify-content: center;
  margin-top: auto;
}
.kite-spot-card.dark .kite-sp-body .kite-btn-ghost-white:hover {
  background: rgba(255,255,255,.16) !important;
  border-color: rgba(255,255,255,.36) !important;
  color: #fff !important;
}

/* ============================================================
   v1.1.0 — Spots page + Live Wind page
   ============================================================ */

/* ── Spots Hero ─────────────────────────────────────────────── */
.kite-spots-hero {
  background: linear-gradient(135deg, #023e5a 0%, #065e80 50%, #0a7fa8 100%);
  min-height: 360px;
}
.kite-spots-ph-bg {
  background:
    linear-gradient(135deg, rgba(2,20,40,.82) 0%, rgba(3,40,70,.65) 50%, rgba(5,60,100,.78) 100%),
    url('https://images.unsplash.com/photo-1530870110042-98b2cb110834?w=1400&q=75') center / cover;
  opacity: 1 !important;
}

/* ── Spots Mode Buttons ─────────────────────────────────────── */
.kite-spots-mode-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.kite-mode-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: 14px;
  font-size: .875rem;
  font-weight: 700;
  font-family: var(--kite-font);
  cursor: pointer;
  border: 1.5px solid rgba(255,255,255,.3);
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.75);
  transition: all .2s;
}
.kite-mode-btn:hover {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.55);
  color: #fff;
}
.kite-mode-btn.kite-mode-active {
  background: rgba(255,255,255,.18);
  border-color: #22d3ee;
  color: #fff;
  box-shadow: 0 0 0 2px rgba(34,211,238,.25);
}

/* ── Spots Filter Bar ───────────────────────────────────────── */
.kite-spots-filter-bar {
  position: sticky;
  top: var(--kite-nav-h);
  z-index: 28;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
}
.kite-spots-fb-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.kite-sf-chip {
  padding: 6px 14px;
  border-radius: 12px;
  font-size: .78rem;
  font-weight: 600;
  border: 1px solid #e2e8f0;
  background: #fff;
  color: #475569;
  cursor: pointer;
  transition: all .2s;
  font-family: var(--kite-font);
  white-space: nowrap;
}
.kite-sf-chip:hover { border-color: #94a3b8; background: #f8fafc; }
.kite-sf-chip.kite-sf-active {
  background: #0369a1;
  color: #fff;
  border-color: #0369a1;
  box-shadow: 0 2px 8px rgba(3,105,161,.25);
}
.kite-spots-fb-count {
  margin-right: auto;
  font-size: .75rem;
  color: #94a3b8;
  font-weight: 500;
}

/* ── Spots Map+List Layout ──────────────────────────────────── */
.kite-spots-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  min-height: 620px;
  direction: rtl;
}
.kite-spots-list-panel {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-left: 1px solid #e2e8f0;
  overflow: hidden;
}
.kite-spots-list-hdr {
  padding: 14px 16px;
  border-bottom: 1px solid #f1f5f9;
  background: #f8fafc;
}
.kite-spots-list-count {
  font-size: .8rem;
  font-weight: 700;
  color: #475569;
}
.kite-spots-list {
  flex: 1;
  overflow-y: auto;
  max-height: 620px;
}
.kite-sl-card {
  display: flex;
  gap: 12px;
  padding: 12px 14px;
  border-bottom: 1px solid #f1f5f9;
  cursor: pointer;
  transition: background .15s;
  direction: rtl;
}
.kite-sl-card:hover { background: #f8fafc; }
.kite-sl-card.kite-sl-active { background: #eff6ff; border-right: 3px solid #0369a1; }
.kite-sl-thumb {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
}
.kite-sl-thumb img { width: 100%; height: 100%; object-fit: cover; }
.kite-sl-body { flex: 1; min-width: 0; }
.kite-sl-badge {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 8px;
  font-size: .65rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 4px;
  background: #475569;
}
.kite-sl-name {
  font-size: .875rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 3px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.kite-sl-meta {
  font-size: .72rem;
  color: #64748b;
  margin: 0 0 6px;
}
.kite-sl-link {
  font-size: .72rem;
  color: #0369a1;
  font-weight: 600;
  text-decoration: none;
}
.kite-sl-link:hover { text-decoration: underline; }
.kite-spots-map-panel { position: relative; }
.kite-spots-map-panel .kite-map { border-radius: 0; }

/* ── Live Wind Hero ─────────────────────────────────────────── */
.kite-lw-hero {
  background: linear-gradient(135deg, #020c1e 0%, #041e42 55%, #073060 100%);
  min-height: 380px;
}
.kite-lw-ph-bg {
  background:
    linear-gradient(135deg, rgba(2,10,28,.88) 0%, rgba(3,20,55,.72) 50%, rgba(5,35,80,.85) 100%),
    url('https://images.unsplash.com/photo-1500375592092-40eb2168fd21?w=1400&q=75') center / cover;
  opacity: 1 !important;
}
.kite-lw-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  max-width: 1280px;
  margin: 0 auto;
  padding: 56px 24px 48px;
}
.kite-lw-badges-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.kite-lw-live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(239,68,68,.18);
  border: 1px solid rgba(239,68,68,.4);
  color: #fca5a5;
  font-size: .75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: .05em;
}
.kite-lw-pulse {
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #ef4444;
  border-radius: 50%;
  animation: kitePulse 1.4s ease-in-out infinite;
}
@keyframes kitePulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(.7); }
}
.kite-lw-auto-badge {
  font-size: .72rem;
  color: rgba(255,255,255,.5);
  padding: 4px 12px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 20px;
}
.kite-lw-hero-text .kite-ph-title { text-align: right; }
.kite-lw-hero-text .kite-ph-subtitle { text-align: right; }

/* ── Live Wind Hero Stats ───────────────────────────────────── */
.kite-lw-hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 12px;
}
.kite-lw-stat-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 16px;
  padding: 20px 14px;
  text-align: center;
  backdrop-filter: blur(10px);
}
.kite-lw-sc-num {
  display: block;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
  font-family: var(--kite-font);
}
.kite-lw-sc-label {
  display: block;
  font-size: .72rem;
  color: rgba(255,255,255,.55);
  letter-spacing: .04em;
}

/* ── Layer Bar ──────────────────────────────────────────────── */
.kite-lw-layer-bar {
  background: #0f172a;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.kite-lw-lb-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  justify-content: space-between;
}
.kite-lw-layers {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.kite-lw-layers-lbl {
  font-size: .72rem;
  color: rgba(255,255,255,.4);
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-left: 4px;
}
.kite-layer-btn {
  padding: 6px 14px;
  border-radius: 10px;
  font-size: .78rem;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color: rgba(255,255,255,.5);
  cursor: pointer;
  font-family: var(--kite-font);
  transition: all .2s;
}
.kite-layer-btn:hover {
  background: rgba(255,255,255,.12);
  color: rgba(255,255,255,.85);
}
.kite-layer-btn.kite-layer-on {
  background: rgba(34,211,238,.12);
  border-color: rgba(34,211,238,.35);
  color: #67e8f9;
}
.kite-lw-lb-actions { display: flex; gap: 8px; }
.kite-lw-report-btn {
  background: #0ea5e9 !important;
  color: #fff !important;
  border: none !important;
  padding: 7px 16px !important;
  border-radius: 10px;
  font-size: .8rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s;
}
.kite-lw-report-btn:hover { background: #0284c7 !important; }
.kite-lw-alert-btn {
  background: transparent !important;
  color: rgba(255,255,255,.6) !important;
  border: 1px solid rgba(255,255,255,.15) !important;
  padding: 7px 14px !important;
  border-radius: 10px;
  font-size: .8rem;
  cursor: pointer;
  transition: all .2s;
}
.kite-lw-alert-btn:hover {
  background: rgba(255,255,255,.08) !important;
  color: rgba(255,255,255,.9) !important;
}

/* ── Report Modal ───────────────────────────────────────────── */
.kite-report-modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity .25s;
}
.kite-report-modal[aria-hidden="false"] {
  pointer-events: all;
  opacity: 1;
}
.kite-rm-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2,8,22,.72);
  backdrop-filter: blur(4px);
}
.kite-rm-panel {
  position: relative;
  z-index: 1;
  background: #fff;
  border-radius: 20px;
  width: 90%;
  max-width: 520px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 64px rgba(0,0,0,.4);
  padding: 28px;
  direction: rtl;
}
.kite-rm-hdr {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}
.kite-rm-title {
  font-size: 1.125rem;
  font-weight: 800;
  color: #1e293b;
  margin: 0;
  font-family: var(--kite-font);
}
.kite-rm-close {
  background: #f1f5f9;
  border: none;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  flex-shrink: 0;
  transition: background .2s;
}
.kite-rm-close:hover { background: #e2e8f0; }
.kite-rm-desc {
  font-size: .875rem;
  color: #64748b;
  margin: 0 0 20px;
}

/* ── Live Wind Map + Side Panel ─────────────────────────────── */
.kite-lw-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  direction: rtl;
  border-top: 1px solid #e2e8f0;
}
.kite-lw-map-wrap { position: relative; }
.kite-lw-map { border-radius: 0 !important; }

/* ── Map Legend ─────────────────────────────────────────────── */
.kite-lw-legend {
  position: absolute;
  bottom: 20px;
  right: 12px;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(8px);
  border-radius: 12px;
  padding: 10px 14px;
  box-shadow: 0 4px 16px rgba(0,0,0,.14);
  z-index: 400;
  min-width: 140px;
}
.kite-lw-legend-title {
  font-size: .65rem;
  font-weight: 700;
  color: #94a3b8;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin: 0 0 8px;
}
.kite-lw-leg-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .75rem;
  color: #475569;
  margin-bottom: 5px;
}
.kite-lw-leg-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.kite-lw-leg-dot.good    { background: #10b981; }
.kite-lw-leg-dot.gusty   { background: #10b981; box-shadow: 0 0 0 2px #f59e0b, 0 0 0 4px rgba(245,158,11,.25); }
.kite-lw-leg-dot.strong  { background: #ef4444; }
.kite-lw-leg-dot.offline { background: #94a3b8; }

/* ── Active Spots Side Panel ────────────────────────────────── */
.kite-lw-spots-panel {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-right: 1px solid #e2e8f0;
  overflow: hidden;
}
.kite-lw-sp-hdr {
  padding: 14px 16px;
  border-bottom: 1px solid #f1f5f9;
  background: #f8fafc;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.kite-lw-sp-title {
  font-size: .875rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
}
.kite-lw-sp-count {
  background: #0ea5e9;
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 10px;
}
.kite-lw-sp-list {
  flex: 1;
  overflow-y: auto;
  max-height: 560px;
}
.kite-lw-spot-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-bottom: 1px solid #f1f5f9;
  cursor: pointer;
  transition: background .15s;
  direction: rtl;
}
.kite-lw-spot-item:hover { background: #f8fafc; }
.kite-lw-spot-item.kite-lw-si-sel { background: #eff6ff; border-right: 3px solid #0369a1; }
.kite-lw-si-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}
.kite-lw-si-dot.good   { background: #10b981; box-shadow: 0 0 0 3px rgba(16,185,129,.2); }
.kite-lw-si-dot.gusty  { background: #f59e0b; box-shadow: 0 0 0 3px rgba(245,158,11,.2); }
.kite-lw-si-dot.strong { background: #ef4444; box-shadow: 0 0 0 3px rgba(239,68,68,.2); }
.kite-lw-si-body { flex: 1; min-width: 0; }
.kite-lw-si-row {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 2px;
}
.kite-lw-si-name {
  font-size: .8125rem;
  font-weight: 700;
  color: #1e293b;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  flex: 1;
}
.kite-lw-si-meta {
  font-size: .7rem;
  color: #94a3b8;
  margin: 0 0 4px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.kite-lw-si-status {
  font-size: .68rem;
  font-weight: 700;
  padding: 1px 7px;
  border-radius: 8px;
}
.kite-lw-si-status.good   { background: #d1fae5; color: #065f46; }
.kite-lw-si-status.gusty  { background: #fef3c7; color: #92400e; }
.kite-lw-si-status.strong { background: #fee2e2; color: #991b1b; }
.kite-lw-si-link {
  font-size: .875rem;
  color: #94a3b8;
  text-decoration: none;
  flex-shrink: 0;
  padding: 4px;
  border-radius: 6px;
  transition: all .15s;
}
.kite-lw-si-link:hover { background: #f1f5f9; color: #0369a1; }

/* ── Wind Station Cards ─────────────────────────────────────── */
.kite-ws-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
  max-width: 1280px;
  margin: 0 auto;
}
.kite-ws-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
  transition: box-shadow .2s, transform .2s;
}
.kite-ws-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,.1);
  transform: translateY(-2px);
}
.kite-ws-card-hdr {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px 10px;
  border-bottom: 1px solid #f1f5f9;
}
.kite-ws-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}
.kite-ws-dot.kite-ws-good   { background: #10b981; box-shadow: 0 0 0 3px rgba(16,185,129,.2); }
.kite-ws-dot.kite-ws-strong { background: #ef4444; box-shadow: 0 0 0 3px rgba(239,68,68,.2); }
.kite-ws-dot.kite-ws-low    { background: #94a3b8; }
.kite-ws-hdr-text { flex: 1; min-width: 0; }
.kite-ws-name {
  font-size: .875rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
}
.kite-ws-region { font-size: .72rem; color: #94a3b8; margin: 2px 0 0; }
.kite-ws-status-badge {
  font-size: .68rem;
  font-weight: 700;
  padding: 3px 9px;
  border-radius: 10px;
  flex-shrink: 0;
}
.kite-ws-status-badge.kite-ws-good   { background: #d1fae5; color: #065f46; }
.kite-ws-status-badge.kite-ws-strong { background: #fee2e2; color: #991b1b; }
.kite-ws-status-badge.kite-ws-low    { background: #f1f5f9; color: #64748b; }
.kite-ws-card-body { padding: 14px 16px; }
.kite-ws-wind-row {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 8px;
}
.kite-ws-speed {
  font-size: 2.25rem;
  font-weight: 800;
  color: #1e293b;
  line-height: 1;
  font-family: var(--kite-font);
}
.kite-ws-unit { font-size: .875rem; color: #64748b; font-weight: 600; }
.kite-ws-dir-badge {
  margin-right: auto;
  background: #eff6ff;
  color: #1d4ed8;
  font-size: .72rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 8px;
}
.kite-ws-gust  { font-size: .78rem; color: #64748b; margin: 0 0 4px; }
.kite-ws-trend { font-size: .78rem; color: #94a3b8; margin: 0; }
.kite-ws-card-ftr {
  padding: 8px 16px;
  border-top: 1px solid #f1f5f9;
  background: #fafafa;
}
.kite-ws-updated { font-size: .7rem; color: #94a3b8; }

/* ── Field Report Cards ─────────────────────────────────────── */
.kite-fr-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  max-width: 1280px;
  margin: 0 auto;
}
.kite-fr-card {
  background: #fff;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 2px 8px rgba(0,0,0,.06);
  border: 1px solid #f1f5f9;
  direction: rtl;
}
.kite-fr-card.kite-fr-warn { border-right: 3px solid #ef4444; }
.kite-fr-card.kite-fr-ok   { border-right: 3px solid #10b981; }
.kite-fr-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 10px;
  gap: 8px;
}
.kite-fr-top-left { flex: 1; min-width: 0; }
.kite-fr-spot {
  display: block;
  font-size: .9375rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 2px;
}
.kite-fr-time {
  font-size: .72rem;
  color: #94a3b8;
}
.kite-fr-flag {
  font-size: .72rem;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}
.kite-fr-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}
.kite-fr-chip {
  font-size: .75rem;
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: 500;
}
.kite-fr-chip.feel  { background: #eff6ff; color: #1d4ed8; }
.kite-fr-chip.wind  { background: #f0fdf4; color: #166534; }
.kite-fr-chip.dir   { background: #fafafa; color: #64748b; border: 1px solid #e2e8f0; }
.kite-fr-chip.water { background: #e0f2fe; color: #075985; }
.kite-fr-chip.crowd { background: #fef3c7; color: #92400e; }
.kite-fr-note { font-size: .8125rem; color: #475569; margin: 0 0 8px; }
.kite-fr-user { font-size: .72rem; color: #94a3b8; }

/* ── Live Wind Section wrapper ──────────────────────────────── */
.kite-lw-stations-section .kite-section-hdr,
.kite-lw-reports-section .kite-section-hdr { max-width: 1280px; margin: 0 auto 24px; }

/* ── Safety Disclaimer ──────────────────────────────────────── */
.kite-lw-disclaimer {
  background: #fefce8;
  border-top: 1px solid #fde68a;
}
.kite-lw-disc-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  direction: rtl;
}
.kite-lw-disc-icon { font-size: 1.5rem; flex-shrink: 0; margin-top: 2px; }
.kite-lw-disc-title {
  font-size: .9375rem;
  font-weight: 700;
  color: #92400e;
  margin: 0 0 6px;
}
.kite-lw-disc-text {
  font-size: .8125rem;
  color: #78350f;
  margin: 0;
  line-height: 1.6;
}

/* ── Section header max-width wrappers ──────────────────────── */
.kite-lw-stations-section > .elementor-container,
.kite-lw-reports-section > .elementor-container { max-width: 1280px; margin: 0 auto; }

/* ── Mobile Responsive (Spots + Live Wind only) ─────────────── */
@media (max-width: 768px) {
  .kite-spots-layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    min-height: unset;
  }
  .kite-spots-list-panel { order: 2; max-height: 420px; }
  .kite-spots-map-panel { order: 1; }
  .kite-spots-map-panel .kite-map { height: 320px !important; }
  .kite-spots-list { max-height: 380px; }

  .kite-lw-hero-inner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 40px 16px 32px;
  }
  .kite-lw-hero-stats { grid-template-columns: 1fr 1fr 1fr; gap: 8px; }
  .kite-lw-sc-num { font-size: 1.5rem; }

  .kite-lw-layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
  }
  .kite-lw-map-wrap { order: 1; }
  .kite-lw-spots-panel { order: 2; max-height: 320px; }
  .kite-lw-map { height: 360px !important; }

  .kite-lw-lb-inner { flex-direction: column; align-items: flex-start; gap: 8px; }
  .kite-lw-layers { overflow-x: auto; width: 100%; padding-bottom: 4px; flex-wrap: nowrap; }
  .kite-lw-lb-actions { width: 100%; justify-content: flex-start; }

  .kite-spots-fb-inner { flex-wrap: nowrap; overflow-x: auto; padding: 10px 16px; }
  .kite-sf-chip { flex-shrink: 0; }

  .kite-ws-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .kite-fr-grid { grid-template-columns: 1fr; }

  .kite-rm-panel { padding: 20px 16px; width: 95%; }

  .kite-spots-mode-bar { gap: 8px; }
  .kite-mode-btn { padding: 8px 16px; font-size: .8rem; }
}
@media (max-width: 480px) {
  .kite-lw-hero-stats { grid-template-columns: 1fr; gap: 8px; }
  .kite-ws-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   v1.1.1 — Spots + Live Wind parity pass
   ============================================================ */

/* Elementor full-width overrides */
.kite-hero-section .elementor-container,
.kite-spots-filter-section .elementor-container,
.kite-spots-main-section .elementor-container,
.kite-lw-layerbar-section .elementor-container,
.kite-lw-map-section .elementor-container,
.kite-lw-disclaimer-section .elementor-container { max-width: 100% !important; padding: 0 !important; }
.kite-hero-section .elementor-column,
.kite-spots-filter-section .elementor-column,
.kite-spots-main-section .elementor-column,
.kite-lw-layerbar-section .elementor-column,
.kite-lw-map-section .elementor-column,
.kite-lw-disclaimer-section .elementor-column { padding: 0 !important; }
.kite-hero-section .elementor-widget-container,
.kite-spots-filter-section .elementor-widget-container,
.kite-spots-main-section .elementor-widget-container,
.kite-lw-layerbar-section .elementor-widget-container,
.kite-lw-map-section .elementor-widget-container,
.kite-lw-disclaimer-section .elementor-widget-container { padding: 0 !important; margin: 0 !important; }

/* ── Spots hero ────────────────────────────────────────────── */
.kite-sph-inner {
  max-width: 1280px; margin: 0 auto;
  padding: 24px 24px 20px;
  display: flex; align-items: flex-end;
  justify-content: space-between; gap: 16px;
  direction: rtl;
}
.kite-sph-label {
  font-size: .7rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: #22d3ee; margin: 0 0 6px;
}
.kite-sph-title {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 900; color: #fff; margin: 0 0 6px;
  line-height: 1.1; font-family: var(--kite-font);
}
.kite-sph-sub { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; color: rgba(255,255,255,.55); font-size: .875rem; margin: 0; }
.kite-sph-count-pill { display: inline-flex; align-items: center; gap: 4px; background: #06b6d4; color: #fff; font-size: .75rem; font-weight: 700; padding: 2px 10px; border-radius: 9999px; }
.kite-sph-range { color: rgba(255,255,255,.55); }
.kite-sph-modes { display: flex; gap: 2px; background: rgba(255,255,255,.1); padding: 4px; border-radius: 14px; flex-shrink: 0; }
.kite-sph-mode-btn {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 7px 14px; border-radius: 10px;
  font-size: .78rem; font-weight: 700; cursor: pointer;
  border: none; background: transparent;
  color: rgba(255,255,255,.7);
  font-family: var(--kite-font); transition: all .2s; white-space: nowrap;
  text-decoration: none;
}
.kite-sph-mode-btn:hover { color: #fff; background: rgba(255,255,255,.08); }
.kite-sph-mode-btn.kite-sph-mode-active { background: #fff; color: #1e293b; box-shadow: 0 1px 4px rgba(0,0,0,.15); }
.kite-sph-wind-dot { display: inline-block; width: 6px; height: 6px; border-radius: 50%; background: #10b981; animation: kitePulse 1.4s ease-in-out infinite; vertical-align: middle; }

/* ── Spots filter bar (2-tier) ─────────────────────────────── */
.kite-sfb-bar { position: sticky; top: var(--kite-nav-h); z-index: 28; background: rgba(255,255,255,.97); backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px); border-bottom: 1px solid #e2e8f0; box-shadow: 0 2px 8px rgba(0,0,0,.05); direction: rtl; }
.kite-sfb-row { max-width: 1280px; margin: 0 auto; padding: 10px 24px; display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.kite-sfb-chip { padding: 7px 14px; border-radius: 12px; font-size: .78rem; font-weight: 700; border: 1px solid #e2e8f0; background: #fff; color: #475569; cursor: pointer; font-family: var(--kite-font); transition: all .2s; white-space: nowrap; display: inline-flex; align-items: center; gap: 5px; }
.kite-sfb-chip:hover { border-color: #94a3b8; background: #f8fafc; }
.kite-sfb-lvl.kite-sfb-active { background: linear-gradient(135deg,#06b6d4,#0369a1); color: #fff; border-color: transparent; box-shadow: 0 2px 8px rgba(3,105,161,.25); }
.kite-sfb-adv-toggle.kite-sfb-active { background: #1e293b; color: #fff; border-color: transparent; }
.kite-sfb-sep { width: 1px; height: 20px; background: #e2e8f0; flex-shrink: 0; margin: 0 2px; }
.kite-sfb-count { margin-right: auto; font-size: .75rem; color: #94a3b8; font-weight: 500; white-space: nowrap; }
.kite-sfb-adv-panel { overflow: hidden; max-height: 0; transition: max-height .28s ease; border-top: 0px solid #f1f5f9; background: #fafafa; }
.kite-sfb-adv-panel.kite-sfb-adv-open { max-height: 200px; border-top-width: 1px; }
.kite-sfb-adv-inner { max-width: 1280px; margin: 0 auto; padding: 12px 24px; display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.kite-sfb-adv-group { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.kite-sfb-adv-lbl { font-size: .72rem; font-weight: 700; color: #64748b; white-space: nowrap; }
.kite-sfb-adv-chip { padding: 5px 10px; border-radius: 10px; font-size: .72rem; font-weight: 600; border: 1px solid #e2e8f0; background: #fff; color: #475569; cursor: pointer; font-family: var(--kite-font); transition: all .15s; }
.kite-sfb-adv-chip:hover { border-color: #06b6d4; color: #0369a1; }
.kite-sfb-adv-chip.kite-sfb-active { background: #06b6d4; color: #fff; border-color: transparent; }
.kite-sfb-adv-clear { font-size: .72rem; color: #94a3b8; cursor: pointer; background: none; border: none; padding: 4px 8px; font-family: var(--kite-font); transition: color .15s; }
.kite-sfb-adv-clear:hover { color: #475569; }

/* ── Spots split layout ────────────────────────────────────── */
.kite-spots-split { display: flex; flex-direction: row; direction: rtl; width: 100%; }
.kite-splits-map { flex: 3; min-width: 0; position: relative; }
.kite-splits-map-el { border-radius: 0 !important; border: none !important; }
.kite-splits-list { flex: 0 0 360px; max-width: 360px; display: flex; flex-direction: column; background: #fff; border-right: 1px solid #e2e8f0; overflow: hidden; }
.kite-splits-list-hdr { padding: 14px 16px; border-bottom: 1px solid #f1f5f9; background: #f8fafc; display: flex; align-items: center; justify-content: space-between; flex-shrink: 0; }
.kite-splits-count { font-size: .875rem; font-weight: 700; color: #1e293b; }
.kite-splits-hint { font-size: .7rem; color: #94a3b8; }
.kite-splits-scroll { flex: 1; overflow-y: auto; }

/* ── Safety strip ──────────────────────────────────────────── */
.kite-spots-safety { background: #fffbeb; border-top: 1px solid #fde68a; }
.kite-spots-safety-inner { max-width: 1280px; margin: 0 auto; padding: 14px 24px; display: flex; align-items: flex-start; gap: 12px; direction: rtl; }
.kite-spots-safety-icon { font-size: 1.125rem; flex-shrink: 0; margin-top: 2px; }
.kite-spots-safety-text { flex: 1; font-size: .8125rem; color: #92400e; line-height: 1.6; margin: 0; }
.kite-spots-safety-text strong { font-weight: 700; }
.kite-spots-safety-link { font-size: .75rem; font-weight: 700; color: #92400e; text-decoration: none; white-space: nowrap; flex-shrink: 0; align-self: center; }
.kite-spots-safety-link:hover { color: #78350f; text-decoration: underline; }

/* ── Live Wind hero ────────────────────────────────────────── */
.kite-lwh-inner { max-width: 1280px; margin: 0 auto; padding: 20px 24px; display: flex; flex-wrap: wrap; align-items: flex-end; justify-content: space-between; gap: 16px; direction: rtl; }
.kite-lwh-badges { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; }
.kite-lwh-live-badge { display: inline-flex; align-items: center; gap: 6px; background: rgba(16,185,129,.15); color: #6ee7b7; font-size: .75rem; font-weight: 700; padding: 3px 10px; border-radius: 9999px; border: 1px solid rgba(16,185,129,.25); }
.kite-lwh-pulse { display: inline-block; width: 7px; height: 7px; background: #10b981; border-radius: 50%; animation: kitePulse 1.4s ease-in-out infinite; }
.kite-lwh-auto { font-size: .75rem; color: rgba(255,255,255,.35); }
.kite-lwh-title { font-size: clamp(1.375rem, 3vw, 1.875rem); font-weight: 900; color: #fff; margin: 0 0 6px; line-height: 1.15; font-family: var(--kite-font); }
.kite-lwh-sub { font-size: .875rem; color: rgba(255,255,255,.45); margin: 0; }
.kite-lwh-stats { display: flex; gap: 10px; flex-wrap: wrap; }
.kite-lwh-stat { background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.1); border-radius: 16px; padding: 10px 14px; text-align: center; min-width: 80px; }
.kite-lwh-stat-n { font-size: 1.25rem; font-weight: 900; line-height: 1; margin: 0 0 4px; font-family: var(--kite-font); }
.kite-lwh-green { color: #10b981; }
.kite-lwh-cyan  { color: #06b6d4; }
.kite-lwh-sky   { color: #38bdf8; }
.kite-lwh-stat-l { font-size: .68rem; color: rgba(255,255,255,.45); margin: 0; white-space: nowrap; }

/* ── LW Layer bar (v1.1.1 overrides) ──────────────────────── */
.kite-lw-layer-bar { background: rgba(255,255,255,.97) !important; border-bottom: 1px solid #e2e8f0 !important; box-shadow: 0 2px 8px rgba(0,0,0,.05) !important; }
.kite-lwlb-inner { padding: 10px 24px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 8px; direction: rtl; }
.kite-lwlb-layers { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; }
.kite-lwlb-lbl { font-size: .72rem; color: #94a3b8; font-weight: 700; letter-spacing: .06em; white-space: nowrap; }
.kite-lwlb-actions { display: flex; gap: 8px; align-items: center; }
.kite-lwlb-report-btn { background: #06b6d4 !important; color: #fff !important; border: none !important; border-radius: 10px !important; padding: 8px 16px; font-size: .8rem !important; font-weight: 700 !important; cursor: pointer !important; font-family: var(--kite-font) !important; transition: background .2s; text-decoration: none !important; }
.kite-lwlb-report-btn:hover, .kite-lwlb-report-btn:focus { background: #0891b2 !important; color: #fff !important; text-decoration: none !important; }
.kite-fr-cta-row { margin-top: 20px; text-align: center; }
.kite-fr-cta-btn { display: inline-flex; align-items: center; gap: 6px; text-decoration: none; }
.kite-fr-cta-row .kite-fr-cta-btn {
  background: #06b6d4 !important;
  color: #fff !important;
  border: none !important;
  border-radius: 10px !important;
  padding: 8px 20px !important;
  font-size: .85rem !important;
  font-weight: 700 !important;
  font-family: var(--kite-font) !important;
  cursor: pointer !important;
  text-decoration: none !important;
}
.kite-fr-cta-row .kite-fr-cta-btn:hover,
.kite-fr-cta-row .kite-fr-cta-btn:focus {
  background: #0891b2 !important;
  color: #fff !important;
  text-decoration: none !important;
}
.kite-form-close-btn { display: inline-block !important; margin-top: 12px !important; background: #0891b2 !important; color: #fff !important; border: none !important; padding: 9px 22px; border-radius: 10px; font-size: .85rem; font-weight: 700; cursor: pointer; font-family: var(--kite-font); transition: background .2s; text-decoration: none !important; }
.kite-form-close-btn:hover { background: #0e7490 !important; color: #fff !important; }
.kite-msg-success-block { text-align: center !important; }
.kite-form-success-text { margin: 0 0 4px; font-weight: 600; }
.kite-lwlb-alert-btn { background: #fff; color: #475569; border: 1px solid #e2e8f0; padding: 8px 14px; border-radius: 10px; font-size: .8rem; font-weight: 600; cursor: pointer; font-family: var(--kite-font); transition: all .2s; }
.kite-lwlb-alert-btn:hover { background: #f8fafc; border-color: #94a3b8; }
.kite-layer-btn { padding: 7px 12px; border-radius: 10px; font-size: .78rem; font-weight: 600; border: 1px solid #e2e8f0; background: #fff; color: #475569; cursor: pointer; font-family: var(--kite-font); transition: all .2s; white-space: nowrap; }
.kite-layer-btn:hover { border-color: #94a3b8; background: #f8fafc; }
.kite-layer-btn.kite-layer-on { background: #1e293b; color: #fff; border-color: transparent; box-shadow: 0 1px 4px rgba(0,0,0,.15); }
.kite-layer-btn:not(.kite-layer-on) { background: #fff !important; color: #475569 !important; border-color: #e2e8f0 !important; box-shadow: none !important; }
.kite-layer-btn:not(.kite-layer-on):hover { background: #f8fafc !important; border-color: #94a3b8 !important; }
.kite-layer-btn:not(.kite-layer-on):active, .kite-layer-btn:not(.kite-layer-on):focus { background: #f1f5f9 !important; outline: none !important; }

/* ── LW map+panel layout (flex override) ──────────────────── */
.kite-lw-layout { display: flex !important; flex-direction: row !important; direction: rtl; width: 100%; grid-template-columns: none !important; }
.kite-lw-map-wrap { flex: 3 !important; min-width: 0; position: relative; order: 1 !important; }
.kite-lw-spots-panel { flex: 0 0 320px !important; max-width: 320px !important; order: 2 !important; }

/* ── LW Disclaimer card ────────────────────────────────────── */
.kite-lw-disc-wrap { max-width: 1280px; margin: 0 auto; padding: 4px 24px 24px; direction: rtl; }
.kite-lw-disc-card { background: #fffbeb; border: 1px solid #fde68a; border-radius: 16px; padding: 16px 20px; display: flex; align-items: flex-start; gap: 12px; }
.kite-lw-disc-icon { font-size: 1.125rem; flex-shrink: 0; margin-top: 2px; }
.kite-lw-disc-text { font-size: .8125rem; color: #92400e; margin: 0; line-height: 1.6; }

/* ── v1.1.1 Mobile overrides ───────────────────────────────── */
@media (max-width: 768px) {
  .kite-sph-inner { flex-direction: column; align-items: flex-start; padding: 20px 16px 16px; }
  .kite-sph-modes { display: none; }
  .kite-spots-split { flex-direction: column; }
  .kite-splits-map-el { height: 320px !important; }
  .kite-splits-list { flex: unset; max-width: 100%; max-height: 380px; border-right: none; border-top: 1px solid #e2e8f0; }
  .kite-lwh-inner { padding: 16px; }
  .kite-lw-layout { flex-direction: column !important; }
  .kite-lw-map-wrap { flex: unset !important; }
  .kite-lw-spots-panel { flex: unset !important; max-width: 100% !important; max-height: 300px; }
  .kite-lwlb-inner { flex-direction: column; align-items: flex-start; gap: 8px; }
  .kite-lwlb-layers { overflow-x: auto; width: 100%; flex-wrap: nowrap; }
  .kite-lwlb-actions { width: 100%; }
  .kite-sfb-row { flex-wrap: nowrap; overflow-x: auto; padding: 10px 16px; }
  .kite-sfb-chip { flex-shrink: 0; }
  .kite-sfb-count { display: none; }
}

/* ============================================================
   v1.1.2 — Spots height fix, custom scrollbars
   ============================================================ */

/* ── Spots split: balanced height + internal list scroll ─── */
.kite-spots-split { height: clamp(540px, 72vh, 820px); align-items: stretch; }
.kite-splits-map { height: 100%; }
.kite-splits-map-el { height: 100% !important; }
.kite-splits-list { height: 100%; overflow: hidden; }
.kite-splits-scroll { flex: 1 1 0; min-height: 0; overflow-y: auto; }

/* ── Custom scrollbars (Spots list + LW active-spots list) ── */
.kite-splits-scroll,
.kite-lw-sp-list {
  scrollbar-width: thin;
  scrollbar-color: rgba(34,211,238,0.45) rgba(15,23,42,0.18);
}
.kite-splits-scroll::-webkit-scrollbar,
.kite-lw-sp-list::-webkit-scrollbar { width: 6px; }
.kite-splits-scroll::-webkit-scrollbar-track,
.kite-lw-sp-list::-webkit-scrollbar-track { background: rgba(15,23,42,0.12); border-radius: 999px; }
.kite-splits-scroll::-webkit-scrollbar-thumb,
.kite-lw-sp-list::-webkit-scrollbar-thumb { background: rgba(34,211,238,0.45); border-radius: 999px; }
.kite-splits-scroll::-webkit-scrollbar-thumb:hover,
.kite-lw-sp-list::-webkit-scrollbar-thumb:hover { background: rgba(34,211,238,0.7); }

/* ── v1.1.2 Mobile reset ─────────────────────────────────── */
@media (max-width: 768px) {
  .kite-spots-split { height: auto; }
  .kite-splits-map { height: auto; min-height: 400px; }
  .kite-splits-map-el { height: 400px !important; }
  .kite-splits-list { height: auto; max-height: 380px; overflow: hidden; }
  .kite-splits-scroll { flex: unset; min-height: 0; }
}

/* ============================================================
   v1.2.0 — Used Gear page parity pass
   ============================================================ */

/* Elementor zero-padding overrides */
.kite-gear-hero-section.elementor-section,
.kite-gear-fb-section.elementor-section,
.kite-gear-listings-section.elementor-section,
.kite-gear-cta-section.elementor-section { padding: 0 !important; margin: 0 !important; }
.kite-gear-hero-section .elementor-container,
.kite-gear-fb-section .elementor-container,
.kite-gear-listings-section .elementor-container,
.kite-gear-cta-section .elementor-container { max-width: 100% !important; padding: 0 !important; }
.kite-gear-hero-section .elementor-column-gap-default > .elementor-column > .elementor-element-populated,
.kite-gear-fb-section .elementor-column-gap-default > .elementor-column > .elementor-element-populated,
.kite-gear-listings-section .elementor-column-gap-default > .elementor-column > .elementor-element-populated,
.kite-gear-cta-section .elementor-column-gap-default > .elementor-column > .elementor-element-populated { padding: 0 !important; }
.kite-gear-hero-section .elementor-widget-container,
.kite-gear-fb-section .elementor-widget-container,
.kite-gear-listings-section .elementor-widget-container,
.kite-gear-cta-section .elementor-widget-container { padding: 0 !important; margin: 0 !important; }

/* ── Gear Hero ───────────────────────────────────────────── */
.kite-gear-hero {
  position: relative;
  background: linear-gradient(135deg, #0a2540 0%, #145280 60%, #1a6fa0 100%);
  overflow: hidden;
  min-height: 280px;
  display: flex;
  align-items: flex-end;
}
.kite-gear-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 35%;
  opacity: .15;
}
.kite-gear-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 60px 32px 36px;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  direction: rtl;
}
.kite-gear-hero-label {
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #22d3ee;
  margin: 0 0 10px;
}
.kite-gear-hero-title {
  font-size: clamp(1.75rem, 4vw, 2.6rem);
  font-weight: 900;
  color: #fff;
  margin: 0 0 8px;
  line-height: 1.1;
  font-family: var(--kite-font);
}
.kite-gear-hero-sub { color: rgba(255,255,255,.55); font-size: .9375rem; margin: 0; }
.kite-gear-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  color: #0369a1;
  font-weight: 800;
  font-size: .9rem;
  padding: 12px 24px;
  border-radius: 14px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(0,0,0,.25);
  transition: background .2s, transform .15s;
  font-family: var(--kite-font);
  flex-shrink: 0;
}
.kite-gear-hero-btn:hover { background: rgba(255,255,255,.9); transform: translateY(-2px); }

/* ── Gear Filter Bar ─────────────────────────────────────── */
.kite-gear-fb {
  position: sticky;
  top: var(--kite-nav-h, 64px);
  z-index: 28;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid #e2e8f0;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
}
.kite-gear-fb-row {
  max-width: 1280px;
  margin: 0 auto;
  padding: 10px 32px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  direction: rtl;
}
.kite-gear-search-wrap {
  position: relative;
  display: flex;
  align-items: center;
  flex: 1;
  min-width: 160px;
  max-width: 260px;
}
.kite-gear-search-icon {
  position: absolute;
  right: 10px;
  font-size: .8rem;
  pointer-events: none;
  z-index: 1;
  line-height: 1;
}
#kite-gear-search {
  width: 100%;
  padding: 7px 32px 7px 12px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #f8fafc;
  font-size: .8rem;
  font-family: var(--kite-font);
  color: #1e293b;
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  direction: rtl;
}
#kite-gear-search:focus { border-color: #06b6d4; box-shadow: 0 0 0 3px rgba(6,182,212,.12); }
#kite-gear-search::placeholder { color: #94a3b8; }
.kite-gear-type-chips { display: flex; gap: 5px; flex-wrap: wrap; align-items: center; }
.kite-gear-type-chip,
.kite-gear-reg-chip {
  padding: 5px 12px;
  border-radius: 10px;
  font-size: .75rem;
  font-weight: 700;
  border: 1px solid #e2e8f0;
  background: #fff;
  color: #475569;
  cursor: pointer;
  font-family: var(--kite-font);
  transition: all .18s;
  white-space: nowrap;
  line-height: 1.4;
}
.kite-gear-type-chip:hover { border-color: #94a3b8; }
.kite-gear-reg-chip:hover  { border-color: #06b6d4; }
.kite-gear-chip-active {
  background: #0f172a !important;
  color: #fff !important;
  border-color: transparent !important;
  box-shadow: 0 2px 6px rgba(0,0,0,.18);
}
.kite-gear-type-chip.kite-gear-chip-active[data-type]:not([data-type="all"]) {
  background: linear-gradient(135deg, #0891b2, #0369a1) !important;
}
.kite-gear-reg-chip.kite-gear-chip-active[data-region]:not([data-region="all"]) {
  background: #0891b2 !important;
}
.kite-gear-fb-sep { width: 1px; height: 20px; background: #e2e8f0; flex-shrink: 0; margin: 0 2px; }
.kite-gear-adv-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #06b6d4;
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  margin-right: 4px;
}
.kite-gear-fb-right {
  margin-inline-start: auto;
  display: flex;
  align-items: center;
  gap: 8px;
}
.kite-gear-count-lbl { font-size: .72rem; color: #94a3b8; white-space: nowrap; }
.kite-gear-select-wrap { position: relative; }
#kite-gear-sort {
  height: 32px;
  padding: 0 28px 0 12px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  background: #f8fafc;
  font-size: .75rem;
  font-weight: 600;
  color: #475569;
  font-family: var(--kite-font);
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  outline: none;
}
.kite-gear-select-chevron {
  position: absolute;
  left: 8px;
  top: 50%;
  transform: translateY(-50%);
  font-size: .6rem;
  color: #94a3b8;
  pointer-events: none;
}
/* Advanced panel */
.kite-gear-adv-panel {
  overflow: hidden;
  max-height: 0;
  transition: max-height .28s ease;
  border-top: 0 solid #f1f5f9;
  background: #f8fafc;
}
.kite-gear-adv-panel.kite-gear-adv-open { max-height: 220px; border-top-width: 1px; }
.kite-gear-adv-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  direction: rtl;
}
.kite-gear-adv-group { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.kite-gear-adv-lbl { font-size: .72rem; font-weight: 700; color: #64748b; white-space: nowrap; }
.kite-gear-price-wrap { position: relative; display: flex; align-items: center; }
.kite-gear-price-sym { position: absolute; right: 8px; font-size: .72rem; color: #94a3b8; pointer-events: none; }
#kite-gear-max-price {
  width: 90px;
  padding: 5px 24px 5px 10px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  background: #fff;
  font-size: .72rem;
  font-family: var(--kite-font);
  outline: none;
  direction: rtl;
}
#kite-gear-max-price:focus { border-color: #06b6d4; }
.kite-gear-adv-clear {
  font-size: .72rem;
  color: #94a3b8;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px 8px;
  font-family: var(--kite-font);
  transition: color .15s;
}
.kite-gear-adv-clear:hover { color: #475569; }

/* ── Gear Listings wrapper ───────────────────────────────── */
.kite-gear-page { background: #f8fafc; min-height: 400px; }

/* Section headers */
.kite-gear-section-hdr {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 28px 32px 12px;
  direction: rtl;
  max-width: 1280px;
  margin: 0 auto;
}
.kite-gear-section-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.kite-gear-dot-amber { background: #f59e0b; }
.kite-gear-dot-slate { background: #94a3b8; }
.kite-gear-section-title {
  font-size: .75rem;
  font-weight: 700;
  color: #1e293b;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin: 0;
}

/* Featured grid — 2 cols, larger cards */
.kite-gear-featured-section { padding-bottom: 4px; }
.kite-gear-featured-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px 24px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  direction: rtl;
}

/* All listings grid — 4 cols */
.kite-gear-all-section { padding-bottom: 48px; }
.kite-gear-all-grid {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 32px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  direction: rtl;
}

/* ── Gear Card upgrades (v1.2.0 overrides) ──────────────── */
.kite-gear-card {
  border-radius: 16px;
  border: 1px solid #f1f5f9;
  box-shadow: 0 1px 4px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
}
.kite-gear-card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,.09); }
.kite-gear-card--featured {
  border: 2px solid #f59e0b !important;
  box-shadow: 0 4px 20px rgba(245,158,11,.14) !important;
}
.kite-gc-crown {
  background: linear-gradient(90deg, #f59e0b, #f97316);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  padding: 6px 14px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.kite-gc-img-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #f8fafc;
  z-index: 1;
}
.kite-gc-img-placeholder::before {
  content: '\1F4F7';
  font-size: 1.9rem;
  opacity: .3;
  margin-bottom: 5px;
}
.kite-gc-no-img-text {
  font-size: .75rem;
  color: #94a3b8;
  font-weight: 500;
}
.kite-gc-size { font-weight: 600; color: #475569; }

/* Empty state */
.kite-gear-empty-state {
  text-align: center;
  padding: 80px 24px;
  direction: rtl;
}
.kite-gear-empty-icon  { font-size: 3rem; margin-bottom: 14px; }
.kite-gear-empty-title { font-size: .9375rem; font-weight: 700; color: #1e293b; margin: 0 0 6px; }
.kite-gear-empty-sub   { font-size: .875rem; color: #64748b; margin: 0 0 16px; }
.kite-gear-reset-btn   { font-size: .78rem; font-weight: 700; color: #06b6d4; background: none; border: none; cursor: pointer; font-family: var(--kite-font); }

/* ── Gear Bottom CTA ─────────────────────────────────────── */
.kite-gear-cta { background: #fff; border-top: 1px solid #f1f5f9; }
.kite-gear-cta-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  direction: rtl;
}
.kite-gear-cta-title { font-size: 1rem; font-weight: 800; color: #1e293b; margin: 0 0 4px; }
.kite-gear-cta-sub   { font-size: .875rem; color: #64748b; margin: 0; }
.kite-gear-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: #06b6d4;
  color: #fff;
  font-weight: 800;
  font-size: .875rem;
  padding: 12px 24px;
  border-radius: 12px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 3px 12px rgba(6,182,212,.28);
  font-family: var(--kite-font);
  transition: background .2s, transform .15s;
  flex-shrink: 0;
}
.kite-gear-cta-btn:hover { background: #0891b2; transform: translateY(-1px); }

/* ── v1.2.0 Mobile ───────────────────────────────────────── */
@media (max-width: 1024px) {
  .kite-gear-all-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
  .kite-gear-hero-inner { flex-direction: column; align-items: flex-start; padding: 40px 20px 28px; }
  .kite-gear-hero-btn   { align-self: flex-start; }
  .kite-gear-fb-row     { padding: 8px 16px; }
  .kite-gear-adv-inner  { padding: 10px 16px; }
  .kite-gear-section-hdr { padding-left: 16px; padding-right: 16px; }
  .kite-gear-featured-grid { grid-template-columns: 1fr; padding-left: 16px; padding-right: 16px; }
  .kite-gear-all-grid   { grid-template-columns: repeat(2, 1fr); padding-left: 16px; padding-right: 16px; }
  .kite-gear-cta-inner  { padding: 24px 16px; }
  .kite-gear-fb-right   { width: 100%; justify-content: space-between; }
  .kite-gear-search-wrap { max-width: 100%; }
}
@media (max-width: 480px) {
  .kite-gear-all-grid { grid-template-columns: 1fr; }
  .kite-gear-featured-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   v1.2.1 — Clickable gear cards
   ═══════════════════════════════════════════════════════════════════════════ */

.kite-gear-card { position: relative; }

.kite-gc-card-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
}

.kite-gc-footer { position: relative; z-index: 2; }
.kite-gc-detail-link { position: relative; z-index: 2; }
.kite-gc-crown { position: relative; z-index: 2; }

.kite-gear-card:focus-within {
  outline: 2px solid var(--kite-sky);
  outline-offset: 2px;
}

/* ═══════════════════════════════════════════════════════════════════════════
   v1.2.1 — Post Ad 3-step wizard
   ═══════════════════════════════════════════════════════════════════════════ */

.kite-post-ad-page { direction: rtl; }

.kite-pa-hero {
  background: linear-gradient(135deg, #023e8a 0%, #0077b6 100%);
  padding: 60px 24px 50px;
  text-align: center;
  color: #fff;
}
.kite-pa-hero-label {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #90e0ef;
  margin: 0 0 8px;
}
.kite-pa-hero-title { font-size: 2rem; font-weight: 900; margin: 0 0 10px; }
.kite-pa-hero-sub { font-size: 1rem; color: #caf0f8; margin: 0; }

.kite-pa-success {
  max-width: 480px;
  margin: 80px auto;
  text-align: center;
  padding: 48px 32px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0,0,0,.1);
}
.kite-pa-success-icon {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--kite-emerald); color: #fff;
  font-size: 2rem; line-height: 72px;
  margin: 0 auto 20px;
}
.kite-pa-success-title { font-size: 1.6rem; font-weight: 800; margin: 0 0 12px; color: var(--kite-navy); }
.kite-pa-success-sub   { color: var(--kite-muted); margin: 0 0 28px; }
.kite-pa-success-btn {
  display: inline-block;
  background: var(--kite-navy);
  color: #fff;
  padding: 12px 32px;
  border-radius: 12px;
  font-weight: 700;
  text-decoration: none;
}
.kite-pa-success-btn:hover { background: var(--kite-sky); }

.kite-pa-wrap { background: #f8fafc; padding: 48px 16px 72px; }

.kite-pa-inner {
  max-width: 680px;
  margin: 0 auto;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(0,0,0,.08);
  padding: 40px 40px 32px;
}

/* Steps */
.kite-pa-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  gap: 0;
}
.kite-pa-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  cursor: default;
}
.kite-pa-step-num {
  width: 36px; height: 36px; border-radius: 50%;
  border: 2px solid #cbd5e1;
  color: #94a3b8;
  font-weight: 700; font-size: .9rem;
  display: flex; align-items: center; justify-content: center;
  transition: all .25s;
}
.kite-pa-step-lbl {
  font-size: .75rem;
  color: #94a3b8;
  white-space: nowrap;
  transition: color .25s;
}
.kite-pa-step-line {
  flex: 1;
  height: 2px;
  background: #e2e8f0;
  margin: 0 8px;
  margin-bottom: 22px;
  min-width: 40px;
  transition: background .25s;
}
.kite-pa-step.kite-pa-step-active .kite-pa-step-num {
  background: var(--kite-navy);
  border-color: var(--kite-navy);
  color: #fff;
}
.kite-pa-step.kite-pa-step-active .kite-pa-step-lbl { color: var(--kite-navy); font-weight: 700; }
.kite-pa-step.kite-pa-step-done .kite-pa-step-num {
  background: var(--kite-emerald);
  border-color: var(--kite-emerald);
  color: #fff;
}
.kite-pa-step.kite-pa-step-done + .kite-pa-step-line { background: var(--kite-emerald); }
.kite-pa-step.kite-pa-step-done .kite-pa-step-lbl { color: var(--kite-emerald); }

/* Tip */
.kite-pa-tip {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #eff6ff;
  border-right: 4px solid var(--kite-sky);
  padding: 12px 16px;
  border-radius: 10px;
  margin-bottom: 28px;
  font-size: .9rem;
  color: #1e40af;
}
.kite-pa-tip-icon { font-size: 1.2rem; flex-shrink: 0; }

/* Form fields */
.kite-pa-panel-title {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--kite-navy);
  margin: 0 0 24px;
}
.kite-pa-field { margin-bottom: 18px; }
.kite-pa-label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--kite-navy);
  margin-bottom: 6px;
}
.kite-pa-input,
.kite-pa-select,
.kite-pa-textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  font-family: inherit;
  font-size: .95rem;
  color: var(--kite-dark);
  background: #fff;
  outline: none;
  box-sizing: border-box;
  transition: border-color .2s;
  direction: rtl;
}
.kite-pa-input:focus,
.kite-pa-select:focus,
.kite-pa-textarea:focus { border-color: var(--kite-sky); }
.kite-pa-input.kite-pa-invalid,
.kite-pa-select.kite-pa-invalid,
.kite-pa-textarea.kite-pa-invalid { border-color: #ef4444; background: #fff5f5; }
.kite-pa-textarea { resize: vertical; min-height: 100px; }

.kite-pa-grid2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.kite-pa-field--span2 { grid-column: 1 / -1; }

.kite-pa-price-wrap { position: relative; }
.kite-pa-price-sym {
  position: absolute;
  right: 14px; top: 50%; transform: translateY(-50%);
  color: var(--kite-muted); font-weight: 700; pointer-events: none;
}
.kite-pa-input--price { padding-right: 32px; }

.kite-pa-hint { font-size: .8rem; color: var(--kite-muted); margin: 4px 0 0; }

.kite-pa-market-tips {
  background: #f8fafc;
  border-radius: 12px;
  padding: 16px;
  margin-top: 8px;
}
.kite-pa-market-title { font-size: .8rem; font-weight: 700; color: var(--kite-muted); margin: 0 0 10px; }
.kite-pa-market-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 6px 0; border-bottom: 1px solid #e2e8f0; font-size: .88rem;
}
.kite-pa-market-row:last-child { border-bottom: none; }
.kite-pa-market-row strong { color: var(--kite-sky); }

/* Image upload */
.kite-pa-upload-area {
  border: 2px dashed #cbd5e1;
  border-radius: 12px;
  padding: 16px;
  min-height: 80px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  background: #f8fafc;
  transition: border-color .2s;
}
.kite-pa-upload-area:hover { border-color: var(--kite-sky); }
.kite-pa-upload-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  background: var(--kite-navy);
  color: #fff;
  border-radius: 8px;
  font-size: .88rem;
  font-weight: 600;
  cursor: pointer;
  flex-shrink: 0;
}
.kite-pa-upload-btn:hover { background: var(--kite-sky); }
.kite-pa-preview { display: flex; flex-wrap: wrap; gap: 8px; }
.kite-pa-thumb {
  width: 72px; height: 72px; border-radius: 8px; overflow: hidden;
  border: 2px solid #e2e8f0; position: relative; flex-shrink: 0;
  background: #f1f5f9;
  display: flex; align-items: center; justify-content: center; font-size: 1.4rem;
}
.kite-pa-thumb img { width: 100%; height: 100%; object-fit: cover; }
.kite-pa-thumb-loading { animation: kite-pulse .8s infinite alternate; }
@keyframes kite-pulse { from { opacity: 1; } to { opacity: .4; } }
.kite-pa-thumb-del {
  position: absolute; top: 2px; left: 2px;
  width: 20px; height: 20px; border-radius: 50%;
  background: rgba(0,0,0,.6); color: #fff; border: none;
  font-size: .7rem; cursor: pointer; display: flex; align-items: center; justify-content: center;
  line-height: 1;
}

/* Summary */
.kite-pa-summary {
  background: #f0fdf4; border-radius: 12px; padding: 16px;
  border-right: 4px solid var(--kite-emerald); margin-top: 20px;
}
.kite-pa-sum-hdr { font-size: .78rem; font-weight: 700; color: var(--kite-muted); margin: 0 0 6px; text-transform: uppercase; letter-spacing: .1em; }
.kite-pa-sum-title { font-size: 1.1rem; font-weight: 800; color: var(--kite-navy); margin: 0 0 4px; }
.kite-pa-sum-price { font-size: 1.4rem; font-weight: 900; color: var(--kite-sky); margin: 0; }

/* Nav buttons */
.kite-pa-nav {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid #e2e8f0;
}
.kite-pa-btn {
  padding: 12px 28px;
  border-radius: 12px;
  font-family: inherit;
  font-size: .95rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: all .2s;
}
.kite-pa-btn-back {
  background: transparent;
  color: var(--kite-muted);
  border: 1.5px solid #e2e8f0;
  margin-left: auto;
}
.kite-pa-btn-back:hover { border-color: var(--kite-navy); color: var(--kite-navy); }
.kite-pa-btn-next,
.kite-pa-btn-submit {
  background: var(--kite-navy);
  color: #fff;
}
.kite-pa-btn-next:hover,
.kite-pa-btn-submit:hover { background: var(--kite-sky); }
.kite-pa-btn:disabled { opacity: .6; cursor: not-allowed; }

/* Post-ad responsive */
@media (max-width: 680px) {
  .kite-pa-inner { padding: 24px 20px 20px; border-radius: 0; }
  .kite-pa-grid2 { grid-template-columns: 1fr; }
  .kite-pa-field--span2 { grid-column: 1; }
  .kite-pa-step-lbl { display: none; }
  .kite-pa-hero-title { font-size: 1.5rem; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   v1.2.1 — Single Gear Listing page
   ═══════════════════════════════════════════════════════════════════════════ */

.kite-gsl-page {
  direction: rtl;
  background: #f8fafc;
  min-height: 60vh;
  padding-bottom: 80px;
}
.kite-gsl-container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Breadcrumb */
.kite-gsl-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 20px 0 24px;
  font-size: .875rem;
  color: var(--kite-muted);
}
.kite-gsl-back {
  color: var(--kite-sky);
  text-decoration: none;
  font-weight: 600;
}
.kite-gsl-back:hover { text-decoration: underline; }
.kite-gsl-bc-sep { color: #cbd5e1; }
.kite-gsl-bc-cur { color: var(--kite-muted); overflow: hidden; white-space: nowrap; text-overflow: ellipsis; max-width: 300px; }

/* Main grid */
.kite-gsl-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 32px;
  align-items: start;
}

/* Gallery */
.kite-gsl-gallery { margin-bottom: 28px; }
.kite-gsl-main-img-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #f1f5f9;
  aspect-ratio: 4/3;
}
.kite-gsl-main-img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.kite-gsl-img-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  background: #f8fafc;
}
.kite-gsl-img-placeholder::before {
  content: '\1F4F7';
  font-size: 3rem;
  opacity: .25;
  margin-bottom: 10px;
}
.kite-gsl-no-img-text {
  font-size: .95rem; color: #94a3b8; font-weight: 500;
}
.kite-gsl-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.4) 0%, transparent 55%);
  pointer-events: none;
}
.kite-gsl-cond-badge {
  position: absolute; top: 14px; right: 14px;
  padding: 4px 12px; border-radius: 8px;
  font-size: .8rem; font-weight: 700; color: #fff;
}
.kite-gsl-price-float {
  position: absolute; bottom: 16px; right: 16px;
  background: rgba(0,0,0,.65); color: #fff;
  padding: 6px 14px; border-radius: 10px;
  font-size: 1.2rem; font-weight: 800;
}
.kite-gsl-thumbs {
  display: flex; gap: 8px; margin-top: 10px; flex-wrap: wrap;
}
.kite-gsl-thumb {
  width: 72px; height: 60px; border-radius: 8px; overflow: hidden;
  border: 2px solid transparent; cursor: pointer; padding: 0;
  background: #f1f5f9; flex-shrink: 0; transition: border-color .2s;
}
.kite-gsl-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.kite-gsl-thumb:hover,
.kite-gsl-thumb-active { border-color: var(--kite-sky); }

/* Header */
.kite-gsl-header { margin-bottom: 24px; }
.kite-gsl-eyebrow { font-size: .82rem; font-weight: 700; color: var(--kite-sky); text-transform: uppercase; letter-spacing: .08em; margin: 0 0 6px; }
.kite-gsl-title { font-size: 1.7rem; font-weight: 900; color: var(--kite-navy); margin: 0 0 12px; }
.kite-gsl-meta-row { display: flex; flex-wrap: wrap; gap: 16px; }
.kite-gsl-meta-item { font-size: .875rem; color: var(--kite-muted); }

/* Specs */
.kite-gsl-specs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 28px;
}
.kite-gsl-spec-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 12px 14px;
}
.kite-gsl-spec-lbl { font-size: .75rem; color: var(--kite-muted); margin: 0 0 4px; font-weight: 600; }
.kite-gsl-spec-val { font-size: .95rem; font-weight: 700; color: var(--kite-navy); margin: 0; }

/* Description */
.kite-gsl-desc { margin-bottom: 28px; }
.kite-gsl-section-title { font-size: 1.15rem; font-weight: 800; color: var(--kite-navy); margin: 0 0 12px; }
.kite-gsl-desc-body {
  background: #fff; border-radius: 12px; padding: 20px;
  border: 1px solid #e2e8f0; line-height: 1.7; color: var(--kite-dark); font-size: .95rem;
}

/* Safe tips */
.kite-gsl-tips {
  background: #fff7ed;
  border-radius: 12px;
  padding: 20px;
  border: 1px solid #fed7aa;
  margin-bottom: 8px;
}
.kite-gsl-tips-hdr { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.kite-gsl-tips-icon { font-size: 1.3rem; }
.kite-gsl-tips-title { font-size: 1rem; font-weight: 800; color: #7c2d12; margin: 0; }
.kite-gsl-tips-list {
  margin: 0; padding: 0 20px 0 0; list-style: none; display: flex; flex-direction: column; gap: 8px;
}
.kite-gsl-tips-list li {
  font-size: .9rem; color: #9a3412;
  padding-right: 20px; position: relative;
}
.kite-gsl-tips-list li::before {
  content: '✓';
  position: absolute; right: 0; top: 0;
  color: #ea580c; font-weight: 700;
}

/* Sidebar */
.kite-gsl-sidebar { position: sticky; top: 90px; }
.kite-gsl-sidebar-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 20px rgba(0,0,0,.08);
  padding: 24px;
}
.kite-gsl-sidebar-price {
  font-size: 2rem; font-weight: 900;
  color: var(--kite-navy); margin-bottom: 18px;
}
.kite-gsl-seller {
  display: flex; align-items: center; gap: 12px;
  padding: 16px 0; border-top: 1px solid #e2e8f0; border-bottom: 1px solid #e2e8f0;
  margin-bottom: 16px;
}
.kite-gsl-seller-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--kite-navy); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; font-weight: 700; flex-shrink: 0;
}
.kite-gsl-seller-name { font-size: .95rem; font-weight: 700; color: var(--kite-dark); margin: 0 0 2px; }
.kite-gsl-seller-badge { font-size: .78rem; color: var(--kite-emerald); margin: 0; font-weight: 600; }
.kite-gsl-trust {
  display: flex; gap: 8px; margin-bottom: 20px;
}
.kite-gsl-trust-stat {
  flex: 1; background: #f8fafc; border-radius: 10px; padding: 10px;
  text-align: center; border: 1px solid #e2e8f0;
}
.kite-gsl-trust-val { font-size: 1.1rem; font-weight: 800; color: var(--kite-navy); margin: 0 0 2px; }
.kite-gsl-trust-lbl { font-size: .72rem; color: var(--kite-muted); margin: 0; }
.kite-gsl-ctas { display: flex; flex-direction: column; gap: 10px; margin-bottom: 16px; }
.kite-gsl-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px; border-radius: 12px; font-family: inherit;
  font-size: .95rem; font-weight: 700; text-decoration: none;
  text-align: center; cursor: pointer; transition: all .2s;
}
.kite-gsl-btn-wa { background: #25d366; color: #fff; }
.kite-gsl-btn-wa:hover { background: #128c4e; }
.kite-gsl-btn-call { background: var(--kite-navy); color: #fff; }
.kite-gsl-btn-call:hover { background: var(--kite-sky); }
.kite-gsl-btn-secondary {
  background: #f1f5f9; color: var(--kite-navy);
  border: 1.5px solid #e2e8f0;
  font-size: .88rem;
}
.kite-gsl-btn-secondary:hover { background: #e2e8f0; }
.kite-gsl-report-btn {
  width: 100%; background: none; border: none;
  color: var(--kite-muted); font-size: .8rem; cursor: pointer;
  text-align: center; padding: 4px; font-family: inherit;
}
.kite-gsl-report-btn:hover { color: #ef4444; text-decoration: underline; }

/* Related */
.kite-gsl-related { margin-top: 48px; }
.kite-gsl-related-hdr {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px;
}
.kite-gsl-related-title { font-size: 1.3rem; font-weight: 800; color: var(--kite-navy); margin: 0; }
.kite-gsl-related-all { color: var(--kite-sky); text-decoration: none; font-size: .9rem; font-weight: 600; }
.kite-gsl-related-all:hover { text-decoration: underline; }
.kite-gsl-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

/* Single listing responsive */
@media (max-width: 900px) {
  .kite-gsl-grid { grid-template-columns: 1fr; }
  .kite-gsl-sidebar { position: static; }
  .kite-gsl-specs { grid-template-columns: repeat(2, 1fr); }
  .kite-gsl-related-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
  .kite-gsl-specs { grid-template-columns: repeat(2, 1fr); }
  .kite-gsl-title { font-size: 1.3rem; }
  .kite-gsl-related-grid { grid-template-columns: 1fr; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   v1.2.2 — Post Ad polish pass
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Hero: image-based, consistent with inner pages ── */
.kite-pa-hero {
  position: relative !important;
  min-height: 260px !important;
  display: flex !important;
  align-items: flex-end !important;
  overflow: hidden !important;
  background: linear-gradient(135deg, #0a2540 0%, #145280 60%, #1a6fa0 100%) !important;
  padding: 0 !important;
}
.kite-pa-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 40%;
  opacity: .28;
}
.kite-pa-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(10,37,64,.88) 0%, rgba(10,37,64,.5) 55%, rgba(10,37,64,.18) 100%);
  pointer-events: none;
}
.kite-pa-hero-inner {
  position: relative;
  z-index: 2;
  padding: 60px 32px 36px;
  direction: rtl;
  text-align: right;
  width: 100%;
}
.kite-pa-hero-eyebrow {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #22d3ee;
  margin: 0 0 10px;
}
.kite-pa-hero-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem) !important;
  font-weight: 900 !important;
  color: #fff !important;
  margin: 0 0 8px !important;
  line-height: 1.15 !important;
}
.kite-pa-hero-sub {
  font-size: .95rem !important;
  color: rgba(255,255,255,.75) !important;
  margin: 0 !important;
}
.kite-pa-hero-label { display: none !important; } /* removed — replaced by eyebrow */

/* ── Approval note ── */
.kite-pa-note {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: .875rem;
  color: #1d4ed8;
  margin-bottom: 20px;
}

/* ── Step indicator — fix undefined --kite-navy var ── */
.kite-pa-step-num {
  background: #fff !important;
  border: 2px solid #cbd5e1 !important;
  color: #94a3b8 !important;
}
.kite-pa-step.kite-pa-step-active .kite-pa-step-num {
  background: #06b6d4 !important;
  border-color: #06b6d4 !important;
  color: #fff !important;
  box-shadow: 0 0 0 4px rgba(6,182,212,.2) !important;
}
.kite-pa-step.kite-pa-step-active .kite-pa-step-lbl {
  color: #0284c7 !important;
  font-weight: 700 !important;
}
.kite-pa-step.kite-pa-step-done .kite-pa-step-num {
  background: #10b981 !important;
  border-color: #10b981 !important;
  color: #fff !important;
}
.kite-pa-step.kite-pa-step-done .kite-pa-step-lbl { color: #10b981 !important; }
.kite-pa-step.kite-pa-step-done + .kite-pa-step-line { background: #10b981 !important; }

/* ── Form fields — rounded, polished ── */
.kite-pa-panel-title { color: #0a2540 !important; }
.kite-pa-label       { color: #0f172a !important; }

.kite-pa-input,
.kite-pa-select,
.kite-pa-textarea {
  border-radius: 14px !important;
  padding: 11px 16px !important;
  border: 1.5px solid #e2e8f0 !important;
  background: #f8fafc !important;
  color: #1e293b !important;
  font-size: .95rem !important;
  transition: border-color .2s, background .2s, box-shadow .2s !important;
  outline: none !important;
}
.kite-pa-input:focus,
.kite-pa-select:focus,
.kite-pa-textarea:focus {
  background: #fff !important;
  border-color: #06b6d4 !important;
  box-shadow: 0 0 0 3px rgba(6,182,212,.15) !important;
}
.kite-pa-input.kite-pa-invalid,
.kite-pa-select.kite-pa-invalid,
.kite-pa-textarea.kite-pa-invalid {
  border-color: #ef4444 !important;
  background: #fff5f5 !important;
  box-shadow: 0 0 0 3px rgba(239,68,68,.1) !important;
}

/* ── Price field ₪ — no overlap ── */
.kite-pa-price-sym {
  position: absolute !important;
  right: 14px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  color: #64748b !important;
  font-weight: 700 !important;
  pointer-events: none !important;
  font-size: .95rem !important;
  z-index: 1 !important;
  line-height: 1 !important;
}
.kite-pa-input--price {
  padding-right: 42px !important;
  direction: rtl !important;
}

/* ── Buttons — site cyan/ocean colors, no red ── */
.kite-pa-btn {
  border-radius: 14px !important;
  font-weight: 700 !important;
  font-size: .95rem !important;
  padding: 12px 28px !important;
  transition: all .2s !important;
  cursor: pointer !important;
  font-family: inherit !important;
  border: none !important;
}
.kite-pa-btn-next,
.kite-pa-btn-submit {
  background: linear-gradient(135deg, #0891b2 0%, #06b6d4 100%) !important;
  color: #fff !important;
  box-shadow: 0 4px 12px rgba(6,182,212,.35) !important;
}
.kite-pa-btn-next:hover,
.kite-pa-btn-submit:hover {
  background: linear-gradient(135deg, #0e7490 0%, #0891b2 100%) !important;
  box-shadow: 0 6px 18px rgba(6,182,212,.45) !important;
  transform: translateY(-1px) !important;
}
.kite-pa-btn-back {
  background: transparent !important;
  color: #64748b !important;
  border: 1.5px solid #e2e8f0 !important;
  margin-left: auto !important;
  box-shadow: none !important;
}
.kite-pa-btn-back:hover {
  border-color: #0a2540 !important;
  color: #0a2540 !important;
  background: transparent !important;
  transform: none !important;
}
.kite-pa-btn:disabled {
  opacity: .55 !important;
  cursor: not-allowed !important;
  transform: none !important;
  box-shadow: none !important;
}

/* ── Image upload — 3-slot grid ── */
.kite-pa-img-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 10px;
  margin-bottom: 8px;
}
.kite-pa-img-slot {
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  border: 2px dashed #cbd5e1;
  overflow: hidden;
  position: relative;
  transition: border-color .2s, background .2s;
  background: #f8fafc;
  cursor: pointer;
}
.kite-pa-img-slot--main {
  border-color: #67e8f9;
  background: #ecfeff;
}
.kite-pa-img-slot:hover { border-color: #06b6d4; background: #f0fdff; }
.kite-pa-slot-lbl {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  cursor: pointer;
  padding: 8px;
  gap: 6px;
  box-sizing: border-box;
}
.kite-pa-slot-icon {
  font-size: 1.3rem;
  color: #94a3b8;
  line-height: 1;
}
.kite-pa-img-slot--main .kite-pa-slot-icon { color: #22d3ee; font-size: 1.5rem; }
.kite-pa-slot-text {
  font-size: .72rem;
  font-weight: 600;
  color: #94a3b8;
  text-align: center;
  white-space: nowrap;
}
.kite-pa-img-slot--main .kite-pa-slot-text { color: #0891b2; }
.kite-pa-img-slot.kite-pa-slot-filled { border-style: solid; border-color: #06b6d4; }
.kite-pa-slot-preview {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.kite-pa-slot-loading {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  animation: kite-pulse .8s infinite alternate;
}
.kite-pa-slot-del {
  position: absolute; top: 4px; left: 4px;
  width: 22px; height: 22px; border-radius: 50%;
  background: rgba(0,0,0,.65); color: #fff;
  border: none; font-size: .72rem; cursor: pointer; z-index: 3;
  display: flex; align-items: center; justify-content: center; line-height: 1;
}

/* ── Success state — two CTAs ── */
.kite-pa-success {
  background: #f8fafc !important;
  padding: 60px 16px !important;
  box-shadow: none !important;
  border-radius: 0 !important;
  max-width: 100% !important;
  margin: 0 !important;
}
.kite-pa-success-inner {
  max-width: 480px;
  margin: 0 auto;
  background: #fff;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,.1);
  padding: 48px 32px;
  text-align: center;
}
.kite-pa-success-title { color: #0a2540 !important; }
.kite-pa-success-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  margin-top: 8px;
}
.kite-pa-success-btn {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  max-width: 320px !important;
  padding: 13px 24px !important;
  border-radius: 14px !important;
  font-weight: 700 !important;
  font-size: .95rem !important;
  text-decoration: none !important;
  transition: all .2s !important;
  box-sizing: border-box !important;
}
.kite-pa-success-btn-primary {
  background: linear-gradient(135deg, #0891b2 0%, #06b6d4 100%) !important;
  color: #fff !important;
  box-shadow: 0 4px 12px rgba(6,182,212,.3) !important;
}
.kite-pa-success-btn-primary:hover {
  background: linear-gradient(135deg, #0e7490 0%, #0891b2 100%) !important;
}
.kite-pa-success-btn-secondary {
  background: #f1f5f9 !important;
  color: #0a2540 !important;
  border: 1.5px solid #e2e8f0 !important;
}
.kite-pa-success-btn-secondary:hover { background: #e2e8f0 !important; }

/* ── Mobile ── */
@media (max-width: 680px) {
  .kite-pa-hero-inner { padding: 40px 20px 28px !important; }
  .kite-pa-hero-title { font-size: 1.5rem !important; }
  .kite-pa-inner { padding: 20px 16px 20px !important; border-radius: 0 !important; }
  .kite-pa-grid2 { grid-template-columns: 1fr !important; }
  .kite-pa-field--span2 { grid-column: 1 !important; }
  .kite-pa-step-lbl { display: none !important; }
  .kite-pa-img-grid { grid-template-columns: 1fr 1fr 1fr !important; }
  .kite-pa-success-inner { padding: 32px 20px !important; }
  .kite-pa-btn { padding: 13px 20px !important; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   v1.2.3 — Post Ad hero full-width + drag-drop
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Full-width Elementor section overrides ── */
.kite-pa-section.elementor-section { padding: 0 !important; margin: 0 !important; }
.kite-pa-section.elementor-section > .elementor-container { max-width: 100% !important; padding: 0 !important; }
.kite-pa-section .elementor-column-gap-default > .elementor-column > .elementor-element-populated { padding: 0 !important; }
.kite-pa-section .elementor-widget-container { padding: 0 !important; margin: 0 !important; }

/* ── Drag-and-drop slot highlight ── */
.kite-pa-img-slot.kite-pa-slot-dragover {
  border-color: #06b6d4 !important;
  border-style: solid !important;
  background: #e0f9ff !important;
  box-shadow: inset 0 0 0 2px rgba(6,182,212,.25);
}

/* ═══════════════════════════════════════════════════════════════════════════
   v1.2.4 — Post Ad hero inner container alignment
   ═══════════════════════════════════════════════════════════════════════════ */

/* Match other inner-page heroes: full-width bg, text inside max-width container */
.kite-pa-hero-inner {
  max-width: 1280px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* ═══════════════════════════════════════════════════════════════════════════
   v1.3.0 — Shops & Services page + single shop template
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Shared inner container ── */
.kite-shops-page-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Shops Hero ── */
.kite-shops-hero {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: linear-gradient(135deg, #1e1b4b 0%, #312e81 45%, #4c1d95 100%);
  direction: rtl;
}
.kite-shops-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .18;
}
.kite-shops-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(30,27,75,.72) 0%, rgba(30,27,75,.38) 60%, rgba(30,27,75,.08) 100%);
  pointer-events: none;
}
.kite-shops-hero-inner {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
  padding: 60px 32px 36px;
  text-align: right;
}
.kite-shops-hero-eyebrow {
  font-size: .72rem; font-weight: 700; letter-spacing: .18em;
  text-transform: uppercase; color: #c4b5fd; margin: 0 0 10px;
}
.kite-shops-hero-title {
  font-size: 2.25rem; font-weight: 900; color: #fff;
  margin: 0 0 10px; line-height: 1.05; font-family: var(--kite-font);
}
@media (min-width: 768px) { .kite-shops-hero-title { font-size: 3rem; } }
.kite-shops-hero-sub { font-size: 1rem; color: rgba(255,255,255,.65); margin: 0; }

/* ── Shops Filter Bar ── */
.kite-shops-filter-bar {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid #f1f5f9;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
  direction: rtl;
  position: sticky;
  top: var(--kite-nav-h, 64px);
  z-index: 30;
}
.kite-shops-filter-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 10px 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.kite-shops-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.kite-shops-chip {
  padding: 6px 16px;
  border-radius: 9999px;
  border: 1.5px solid #e2e8f0;
  background: #fff;
  font-size: .8125rem;
  font-weight: 600;
  color: #475569;
  cursor: pointer;
  transition: all .18s;
  font-family: var(--kite-font);
}
.kite-shops-chip:hover { border-color: #a78bfa; color: #7c3aed; }
.kite-shops-chip--active {
  background: #7c3aed !important;
  border-color: #7c3aed !important;
  color: #fff !important;
}
.kite-shops-region-sel {
  padding: 7px 14px;
  border-radius: 9999px;
  border: 1.5px solid #e2e8f0;
  background: #fff;
  font-size: .8125rem;
  color: #475569;
  cursor: pointer;
  font-family: var(--kite-font);
  min-width: 130px;
}
.kite-shops-region-sel:focus { outline: none; border-color: #a78bfa; }
.kite-shops-search-wrap { position: relative; flex: 1; min-width: 140px; max-width: 220px; }
.kite-shops-search-icon { position: absolute; right: 10px; top: 50%; transform: translateY(-50%); pointer-events: none; font-size: .85rem; }
.kite-shops-search-input {
  width: 100%;
  padding: 7px 32px 7px 14px;
  border-radius: 9999px;
  border: 1.5px solid #e2e8f0;
  background: #fff;
  font-size: .8125rem;
  font-family: var(--kite-font);
  direction: rtl;
}
.kite-shops-search-input:focus { outline: none; border-color: #a78bfa; }

/* ── Shops Page sections ── */
.kite-shops-page { direction: rtl; }
.kite-shops-promoted-section {
  background: linear-gradient(135deg, #faf5ff 0%, #ede9fe 100%);
  padding: 48px 0;
  border-bottom: 1px solid #ede9fe;
}
.kite-shops-all-section { background: #f8fafc; padding: 48px 0 72px; }
.kite-shops-section-hdr { display: flex; align-items: center; gap: 12px; margin: 0 0 24px; }
.kite-shops-section-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.kite-shops-dot-violet { background: #7c3aed; box-shadow: 0 0 0 3px rgba(124,58,237,.2); }
.kite-shops-dot-slate  { background: #64748b; }
.kite-shops-section-title { font-size: 1.25rem; font-weight: 800; color: #1e293b; margin: 0; }
.kite-shops-promoted-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}
.kite-shops-all-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.kite-shops-empty { padding: 40px; text-align: center; }
.kite-shops-empty-text { color: #94a3b8; font-size: .9375rem; }

/* ── Shop card ── */
.kite-shops-card {
  position: relative;
  background: #fff;
  border-radius: 16px;
  border: 1.5px solid #f1f5f9;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.kite-shops-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,.12); }
.kite-shops-card--promoted {
  border-color: #a78bfa;
  box-shadow: 0 4px 20px rgba(124,58,237,.15);
}
.kite-shops-card--promoted:hover { box-shadow: 0 16px 40px rgba(124,58,237,.22); }
.kite-shops-card-overlay {
  position: absolute; inset: 0; z-index: 1; border-radius: inherit;
}
.kite-shops-card-crown {
  position: absolute; top: 10px; right: 10px; z-index: 3;
  background: #7c3aed; color: #fff;
  font-size: .7rem; font-weight: 700;
  padding: 3px 10px; border-radius: 9999px;
  box-shadow: 0 2px 8px rgba(124,58,237,.4);
}
.kite-shops-card-img {
  position: relative;
  height: 180px;
  overflow: hidden;
  background: #f1f5f9;
  flex-shrink: 0;
}
.kite-shops-card--promoted .kite-shops-card-img { height: 200px; }
.kite-shops-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.kite-shops-card:hover .kite-shops-card-img img { transform: scale(1.04); }
.kite-shops-card-img-placeholder {
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.5rem; background: #f8fafc;
}
.kite-shops-card-cat {
  position: absolute; bottom: 10px; right: 10px; z-index: 2;
  background: rgba(255,255,255,.92); color: #7c3aed;
  font-size: .68rem; font-weight: 700;
  padding: 3px 8px; border-radius: 8px;
}
.kite-shops-card-body { padding: 16px 18px 18px; flex: 1; display: flex; flex-direction: column; gap: 6px; position: relative; z-index: 2; }
.kite-shops-card-title { font-size: .9375rem; font-weight: 800; color: #0f172a; margin: 0; line-height: 1.3; }
.kite-shops-card-region { font-size: .75rem; color: #64748b; margin: 0; }
.kite-shops-card-desc { font-size: .8125rem; color: #475569; margin: 0; line-height: 1.5; display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.kite-shops-card-brands { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 2px; }
.kite-shops-card-brand-tag {
  font-size: .68rem; font-weight: 600;
  background: #f1f5f9; color: #475569;
  padding: 2px 8px; border-radius: 6px;
  border: 1px solid #e2e8f0;
}
.kite-shops-card-footer { display: flex; align-items: center; gap: 8px; margin-top: auto; padding-top: 10px; }
.kite-shops-card-wa {
  display: inline-flex; align-items: center; gap: 4px;
  background: #25d366; color: #fff;
  font-size: .75rem; font-weight: 700;
  padding: 6px 14px; border-radius: 9999px;
  text-decoration: none; transition: background .18s;
  position: relative; z-index: 2;
}
.kite-shops-card-wa:hover { background: #1ebe5d; }
.kite-shops-card-details {
  margin-right: auto;
  font-size: .8125rem; font-weight: 700; color: #7c3aed;
  text-decoration: none; transition: color .18s;
  position: relative; z-index: 2;
}
.kite-shops-card-details:hover { color: #5b21b6; }

/* ── Business CTA ── */
.kite-shops-cta-section { background: #fff; padding: 48px 0 64px; }
.kite-shops-cta-card {
  background: linear-gradient(135deg, #faf5ff 0%, #ede9fe 60%, #ddd6fe 100%);
  border: 1.5px solid #c4b5fd;
  border-radius: 20px;
  padding: 32px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.kite-shops-cta-text { flex: 1; min-width: 200px; }
.kite-shops-cta-title { font-size: 1.125rem; font-weight: 900; color: #1e293b; margin: 0 0 6px; }
.kite-shops-cta-sub { font-size: .875rem; color: #64748b; margin: 0; }
.kite-shops-cta-btn {
  display: inline-flex; align-items: center;
  background: #7c3aed; color: #fff;
  font-size: .9rem; font-weight: 700;
  padding: 12px 28px; border-radius: 12px;
  text-decoration: none; white-space: nowrap;
  transition: background .18s, box-shadow .18s;
  box-shadow: 0 4px 16px rgba(124,58,237,.3);
  flex-shrink: 0;
}
.kite-shops-cta-btn:hover { background: #6d28d9; box-shadow: 0 8px 24px rgba(124,58,237,.4); }

/* ═══════════════════════════════════════════════════════════════════════════
   Single Shop / Service page  (.kite-ssp-*)
   ═══════════════════════════════════════════════════════════════════════════ */

.kite-ssp-page { direction: rtl; background: #f8fafc; min-height: 80vh; }

/* Hero */
.kite-ssp-hero {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: linear-gradient(135deg, #1e1b4b 0%, #312e81 60%, #4c1d95 100%);
}
.kite-ssp-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center center;
  opacity: .55;
}
.kite-ssp-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(30,27,75,.88) 0%, rgba(30,27,75,.4) 60%, transparent 100%);
}
.kite-ssp-hero-inner {
  position: relative; z-index: 2;
  max-width: 1280px; margin: 0 auto; width: 100%;
  padding: 40px 32px 32px;
  text-align: right;
}
.kite-ssp-cat-badge {
  display: inline-block;
  background: rgba(167,139,250,.25);
  border: 1px solid rgba(167,139,250,.5);
  color: #e9d5ff;
  font-size: .72rem; font-weight: 700; letter-spacing: .08em;
  padding: 4px 12px; border-radius: 9999px; margin: 0 0 10px;
}
.kite-ssp-title { font-size: 2rem; font-weight: 900; color: #fff; margin: 0 0 8px; line-height: 1.1; font-family: var(--kite-font); }
@media (min-width: 768px) { .kite-ssp-title { font-size: 2.75rem; } }
.kite-ssp-location { font-size: .9rem; color: rgba(255,255,255,.75); margin: 0; }

/* Body layout */
.kite-ssp-body {
  max-width: 1280px; margin: 0 auto;
  padding: 40px 24px 80px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media (min-width: 900px) { .kite-ssp-body { grid-template-columns: 1fr 300px; } }

/* Cards */
.kite-ssp-card {
  background: #fff;
  border-radius: 16px;
  border: 1.5px solid #f1f5f9;
  padding: 24px 28px;
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
  margin-bottom: 20px;
}
.kite-ssp-card-title { font-size: 1.0625rem; font-weight: 800; color: #1e293b; margin: 0 0 16px; }
.kite-ssp-about-text { color: #475569; line-height: 1.7; font-size: .9375rem; }

/* Info grid */
.kite-ssp-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (max-width: 640px) { .kite-ssp-info-grid { grid-template-columns: 1fr; } }

/* Tags */
.kite-ssp-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.kite-ssp-tag {
  font-size: .8125rem; font-weight: 600;
  padding: 5px 14px; border-radius: 9999px;
}
.kite-ssp-tag-svc  { background: #ede9fe; color: #5b21b6; border: 1px solid #c4b5fd; }
.kite-ssp-tag-brand { background: #f1f5f9; color: #334155; border: 1px solid #e2e8f0; }

/* Gallery */
.kite-ssp-gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 10px; }
.kite-ssp-gallery-item { border-radius: 10px; overflow: hidden; aspect-ratio: 4/3; }
.kite-ssp-gallery-item img { width: 100%; height: 100%; object-fit: cover; }

/* Breadcrumb */
.kite-ssp-breadcrumb { display: flex; align-items: center; gap: 6px; font-size: .8125rem; color: #94a3b8; margin-bottom: 20px; }
.kite-ssp-back { color: #7c3aed; text-decoration: none; font-weight: 600; }
.kite-ssp-back:hover { color: #5b21b6; }
.kite-ssp-bc-sep { color: #cbd5e1; }
.kite-ssp-bc-cur { color: #64748b; }

/* Sidebar */
.kite-ssp-sidebar { display: flex; flex-direction: column; gap: 16px; }
.kite-ssp-contact-card {
  background: #fff; border-radius: 16px;
  border: 1.5px solid #f1f5f9; padding: 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
  display: flex; flex-direction: column; gap: 10px;
}
.kite-ssp-contact-title { font-size: 1rem; font-weight: 800; color: #1e293b; margin: 0 0 8px; }
.kite-ssp-btn {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 20px; border-radius: 12px;
  font-size: .875rem; font-weight: 700; text-decoration: none;
  text-align: center; transition: opacity .18s;
}
.kite-ssp-btn:hover { opacity: .88; }
.kite-ssp-btn-wa    { background: #25d366; color: #fff; }
.kite-ssp-btn-phone { background: #f1f5f9; color: #1e293b; border: 1.5px solid #e2e8f0; }
.kite-ssp-no-contact { font-size: .8125rem; color: #94a3b8; margin: 0; text-align: center; }
.kite-ssp-info-card {
  background: #fff; border-radius: 12px;
  border: 1.5px solid #f1f5f9; padding: 16px 20px;
  display: flex; flex-direction: column; gap: 10px;
}
.kite-ssp-info-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 8px; font-size: .8125rem; }
.kite-ssp-info-label { color: #94a3b8; font-weight: 500; }
.kite-ssp-info-val   { color: #1e293b; font-weight: 700; text-align: left; flex: 1; min-width: 0; }
.kite-ssp-back-link { font-size: .8125rem; color: #7c3aed; text-decoration: none; font-weight: 600; text-align: center; }
.kite-ssp-back-link:hover { color: #5b21b6; }

/* ── Mobile ── */
@media (max-width: 680px) {
  .kite-shops-hero-inner { padding: 40px 20px 28px; }
  .kite-shops-hero-title { font-size: 1.6rem; }
  .kite-shops-filter-inner { padding: 10px 16px; }
  .kite-shops-page-inner { padding: 0 16px; }
  .kite-shops-cta-card { flex-direction: column; padding: 24px 20px; align-items: flex-start; }
  .kite-shops-cta-btn { width: 100%; justify-content: center; }
  .kite-shops-promoted-section, .kite-shops-all-section { padding: 32px 0; }
  .kite-ssp-hero-inner { padding: 32px 20px 24px; }
  .kite-ssp-title { font-size: 1.5rem; }
  .kite-ssp-body { padding: 24px 16px 60px; }
  .kite-ssp-card { padding: 18px 16px; }
}

/* ═══════════════════════════════════════════════════════════════════════════
   v1.3.1 — Shops filter bar polish + card button restyling
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── Filter bar: match site chip/input language ── */

/* Chips: rounded-rectangle (12px) matching .kite-sfb-chip on Schools/Spots */
.kite-shops-chip {
  padding: 7px 14px;
  border-radius: 12px;
  border-width: 1px;
  font-size: .8rem;
}
.kite-shops-chip--active {
  border-width: 1px !important;
}
.kite-shops-chip:hover {
  background: #f5f3ff;
}

/* Region select: auto-width, never full-width, flex-shrink:0 */
.kite-shops-region-sel {
  flex-shrink: 0;
  width: auto;
  max-width: 160px;
  border-radius: 12px;
  border-width: 1px;
  padding: 7px 12px;
  height: auto;
  line-height: 1.4;
}

/* Search wrap: constrained flex item, auto width */
.kite-shops-search-wrap {
  flex: 1 0 150px;
  max-width: 210px;
  min-width: 130px;
}

/* Search input: pill shape, explicit RTL padding so icon never overlaps */
.kite-shops-search-input {
  padding: 7px 42px 7px 12px !important;
  border-radius: 9999px !important;
  border: 1.5px solid #e2e8f0 !important;
  background: #fff;
  font-size: .8125rem;
  direction: rtl;
}

/* Search icon: pinned right, clear of text area */
.kite-shops-search-icon {
  position: absolute !important;
  right: 14px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  pointer-events: none;
  font-size: .85rem;
  line-height: 1;
}

/* Filter inner: flex row, single-line on desktop */
.kite-shops-filter-inner {
  flex-wrap: nowrap;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  gap: 8px;
  padding: 10px 24px;
}
.kite-shops-filter-inner::-webkit-scrollbar { display: none; }

/* Chips group: no wrapping, flex-shrink so they don't push others off */
.kite-shops-chips {
  flex-wrap: nowrap;
  flex-shrink: 0;
  gap: 6px;
}

/* Mobile: allow chips to scroll, keep single row */
@media (max-width: 680px) {
  .kite-shops-filter-inner { padding: 8px 16px; gap: 6px; }
  .kite-shops-search-wrap  { min-width: 110px; max-width: 150px; }
  .kite-shops-region-sel   { max-width: 120px; font-size: .75rem; }
  .kite-shops-chip         { padding: 6px 12px; font-size: .75rem; }
}

/* ── Card buttons: match .kite-btn site language ── */

/* Base button — shared by all three variants */
.kite-shops-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 7px 12px;
  border-radius: 8px;
  font-family: var(--kite-font);
  font-size: .75rem;
  font-weight: 700;
  text-decoration: none !important;
  white-space: nowrap;
  cursor: pointer;
  transition: all .18s;
  position: relative;
  z-index: 2;
  border: 1.5px solid transparent;
  line-height: 1;
}

/* WhatsApp button — site green (#ecfdf5 / #065f46 / #a7f3d0) */
.kite-shops-card-btn-wa {
  background: #ecfdf5;
  color: #065f46 !important;
  border-color: #a7f3d0;
}
.kite-shops-card-btn-wa:hover {
  background: #d1fae5;
  color: #065f46 !important;
}

/* Phone button — muted teal variant */
.kite-shops-card-btn-phone {
  background: #f0fdf4;
  color: #065f46 !important;
  border-color: #bbf7d0;
}
.kite-shops-card-btn-phone:hover {
  background: #dcfce7;
  color: #065f46 !important;
}

/* Details button — outlined violet */
.kite-shops-card-btn-details {
  background: transparent;
  color: #7c3aed !important;
  border-color: #c4b5fd;
  margin-right: auto;
}
.kite-shops-card-btn-details:hover {
  background: #ede9fe;
  color: #5b21b6 !important;
  border-color: #a78bfa;
}

/* Footer layout: align items center, push details to far left (RTL) */
.kite-shops-card-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 12px;
  flex-wrap: wrap;
}

/* Nullify old .kite-shops-card-wa and .kite-shops-card-details so they don't conflict */
.kite-shops-card-wa    { all: unset; }
.kite-shops-card-details { all: unset; }

/* ═══════════════════════════════════════════════════════════════════════════
   v1.3.2 — Single shop page: new contact button variants
   ═══════════════════════════════════════════════════════════════════════════ */

.kite-ssp-btn-web {
  background: #eff6ff;
  color: #1d4ed8 !important;
  border-color: #bfdbfe;
}
.kite-ssp-btn-web:hover {
  background: #dbeafe;
  color: #1e40af !important;
}

.kite-ssp-btn-email {
  background: #fefce8;
  color: #854d0e !important;
  border-color: #fde68a;
  word-break: break-all;
}
.kite-ssp-btn-email:hover {
  background: #fef9c3;
  color: #713f12 !important;
}

.kite-ssp-btn-social {
  background: #f5f3ff;
  color: #6d28d9 !important;
  border-color: #ddd6fe;
}
.kite-ssp-btn-social:hover {
  background: #ede9fe;
  color: #5b21b6 !important;
}

/* Navigation button */
.kite-ssp-btn-nav {
  background: #ecfdf5;
  color: #065f46 !important;
  border-color: #a7f3d0;
}
.kite-ssp-btn-nav:hover {
  background: #d1fae5;
  color: #064e3b !important;
}

/* Short description intro */
.kite-ssp-intro {
  font-size: 1.05rem;
  color: #374151;
  line-height: 1.7;
  margin: 0 0 20px;
  padding: 14px 18px;
  background: #f8fafc;
  border-right: 3px solid #3b82f6;
  border-radius: 4px;
}

/* Gallery item cursor */
.kite-ssp-gallery-item {
  cursor: pointer;
  display: block;
  overflow: hidden;
  border-radius: 6px;
}
.kite-ssp-gallery-item img {
  transition: transform 0.25s ease;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.kite-ssp-gallery-item:hover img {
  transform: scale(1.06);
}

/* Gallery lightbox overlay */
.kite-lb-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.92);
  z-index: 999999;
  align-items: center;
  justify-content: center;
}
.kite-lb-overlay.is-open {
  display: flex;
}
.kite-lb-img {
  max-width: 94vw;
  max-height: 88vh;
  width: auto;
  height: auto;
  border-radius: 6px;
  object-fit: contain;
  box-shadow: 0 20px 60px rgba(0,0,0,.6);
}
.kite-lb-close {
  position: absolute;
  top: 14px;
  right: 20px;
  font-size: 40px;
  line-height: 1;
  color: #fff;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  opacity: .8;
  transition: opacity .2s;
}
.kite-lb-close:hover {
  opacity: 1;
}

/* Lightbox prev/next buttons */
.kite-lb-prev,
.kite-lb-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,.15);
  border: none;
  color: #fff;
  font-size: 36px;
  line-height: 1;
  padding: 8px 14px;
  cursor: pointer;
  border-radius: 4px;
  transition: background .2s;
  z-index: 1;
}
.kite-lb-prev:hover,
.kite-lb-next:hover {
  background: rgba(255,255,255,.3);
}
/* Force physical positions regardless of page direction */
.kite-lb-overlay { direction: ltr; }
.kite-lb-prev { left: 16px !important; right: auto !important; }
.kite-lb-next { right: 16px !important; left: auto !important; }

/* Business logo in hero */
.kite-ssp-logo-wrap {
  margin-bottom: 12px;
}
.kite-ssp-logo {
  width: 90px;
  height: 90px;
  border-radius: 12px;
  object-fit: contain;
  background: rgba(255,255,255,.9);
  padding: 6px;
  box-shadow: 0 2px 12px rgba(0,0,0,.25);
}

/* Announcements card */
.kite-ssp-announcements .kite-ssp-card-title {
  color: #92400e;
}
.kite-ssp-announce-text {
  font-size: .97rem;
  line-height: 1.7;
  color: #374151;
}
.kite-ssp-announce-text p { margin: 0 0 10px; }

/* Video section */
.kite-ssp-video-embed {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 8px;
}
.kite-ssp-video-embed iframe,
.kite-ssp-video-embed embed,
.kite-ssp-video-embed object {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  border: 0;
}
.kite-ssp-btn-video {
  display: inline-block;
  background: #1e293b;
  color: #fff !important;
  border-color: #334155;
  font-size: .95rem;
}
.kite-ssp-btn-video:hover {
  background: #334155;
  color: #fff !important;
}

/* Form section headers */
.kite-form-section {
  margin-bottom: 28px;
  padding: 20px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
}
.kite-form-section-title {
  font-size: 1rem;
  font-weight: 700;
  color: #1e40af;
  margin: 0 0 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid #dbeafe;
}
.kite-form-consents .kite-form-section-title {
  color: #065f46;
  border-color: #a7f3d0;
}
.kite-form-consents {
  background: #f0fdf4;
  border-color: #a7f3d0;
}

/* ══════════════════════════════════════════════════════════════════════════
   ADD BUSINESS MULTI-STEP WIZARD  (v1.3.5)
══════════════════════════════════════════════════════════════════════════ */
.kite-biz-wizard {
  max-width: 720px;
  margin: 0 auto;
  font-family: inherit;
  direction: rtl;
}

/* ── Step indicator ──────────────────────────────────────────────────────── */
.kite-wizard-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  gap: 0;
}
.kite-wizard-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  position: relative;
  flex: 1;
}
.kite-wizard-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 18px;
  left: -50%;
  width: 100%;
  height: 2px;
  background: #e2e8f0;
  z-index: 0;
}
.kite-wizard-step.is-done::after,
.kite-wizard-step.is-active::after { background: #6d28d9; }
.kite-wiz-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #e2e8f0;
  color: #64748b;
  font-weight: 700;
  font-size: .9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  transition: background .25s, color .25s;
}
.kite-wizard-step.is-active .kite-wiz-num {
  background: #6d28d9;
  color: #fff;
  box-shadow: 0 0 0 4px rgba(109,40,217,.18);
}
.kite-wizard-step.is-done .kite-wiz-num {
  background: #059669;
  color: #fff;
}
.kite-wiz-lbl {
  font-size: .72rem;
  color: #94a3b8;
  text-align: center;
  white-space: nowrap;
}
.kite-wizard-step.is-active .kite-wiz-lbl { color: #6d28d9; font-weight: 600; }
.kite-wizard-step.is-done  .kite-wiz-lbl { color: #059669; }
@media (max-width: 480px) { .kite-wiz-lbl { display: none; } }

/* ── Panel container ─────────────────────────────────────────────────────── */
.kite-biz-form {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 28px 28px 20px;
  box-shadow: 0 2px 16px rgba(0,0,0,.06);
}
@media (max-width: 600px) { .kite-biz-form { padding: 18px 14px 16px; } }

/* ── Panel header ─────────────────────────────────────────────────────────── */
.kite-panel-hdr {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 2px solid #ede9fe;
}
.kite-panel-icon { font-size: 2rem; line-height: 1; }
.kite-panel-hdr h3 { margin: 0 0 2px; font-size: 1.15rem; color: #1e1b4b; }
.kite-panel-hdr p  { margin: 0; font-size: .85rem; color: #64748b; }

/* ── Form rows ───────────────────────────────────────────────────────────── */
.kite-biz-form .kite-form-row {
  margin-bottom: 16px;
}
.kite-biz-form .kite-label {
  display: block;
  font-size: .82rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 5px;
}
.kite-biz-form .kite-label small { font-weight: 400; color: #94a3b8; }
.kite-biz-form .kite-input,
.kite-biz-form .kite-select,
.kite-biz-form .kite-textarea {
  width: 100%;
  padding: 9px 12px;
  font-size: .9rem;
  border: 1.5px solid #d1d5db;
  border-radius: 7px;
  background: #f9fafb;
  color: #111827;
  box-sizing: border-box;
  transition: border-color .2s, box-shadow .2s;
}
.kite-biz-form .kite-input:focus,
.kite-biz-form .kite-select:focus,
.kite-biz-form .kite-textarea:focus {
  outline: none;
  border-color: #7c3aed;
  box-shadow: 0 0 0 3px rgba(124,58,237,.12);
  background: #fff;
}
.kite-biz-form .kite-field-error,
.kite-form .kite-field-error {
  border-color: #ef4444 !important;
  box-shadow: 0 0 0 3px rgba(239,68,68,.1) !important;
}
.kite-biz-form .kite-textarea { resize: vertical; min-height: 80px; }
.kite-biz-form .kite-hint { font-size: .76rem; color: #6b7280; margin-top: 3px; display: block; }
.kite-biz-form .kite-req { color: #ef4444; margin-right: 1px; }

/* 2-col grid */
.kite-form-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 14px;
}
@media (max-width: 520px) { .kite-form-2col { grid-template-columns: 1fr; } }

/* Checkboxes */
.kite-biz-form .kite-checkbox-row label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: .88rem;
  line-height: 1.5;
  cursor: pointer;
  color: #374151;
}
.kite-biz-form .kite-checkbox-row input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: #6d28d9;
}

/* ── Navigation bar ───────────────────────────────────────────────────────── */
.kite-wizard-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid #e2e8f0;
  gap: 12px;
  flex-wrap: wrap;
}
.kite-wizard-progress {
  font-size: .8rem;
  color: #6b7280;
  flex: 1;
  text-align: center;
}
.kite-biz-form .kite-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: .9rem;
  font-weight: 600;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background .2s, border-color .2s, transform .1s;
  text-decoration: none;
}
.kite-biz-form .kite-btn:active { transform: scale(.97); }
.kite-btn-primary {
  background: #6d28d9;
  color: #fff !important;
  border-color: #6d28d9;
}
.kite-btn-primary:hover { background: #5b21b6; border-color: #5b21b6; }
.kite-btn-outline {
  background: #fff;
  color: #6d28d9 !important;
  border-color: #c4b5fd;
}
.kite-btn-outline:hover { background: #ede9fe; }
.kite-btn-success {
  background: #059669;
  color: #fff !important;
  border-color: #059669;
}
.kite-btn-success:hover { background: #047857; border-color: #047857; }
.kite-btn-success:disabled {
  background: #9ca3af;
  border-color: #9ca3af;
  cursor: not-allowed;
}

/* ── Error message ─────────────────────────────────────────────────────────── */
.kite-biz-form .kite-form-msg {
  margin-top: 14px;
  padding: 12px 16px;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 8px;
  color: #b91c1c;
  font-size: .9rem;
  direction: rtl;
  text-align: right;
}

/* ── File upload UI ───────────────────────────────────────────────────────── */
.kite-upload-field {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.kite-upload-trigger {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px;
  background: #ede9fe;
  color: #5b21b6;
  border: 1.5px dashed #a78bfa;
  border-radius: 8px;
  cursor: pointer;
  font-size: .85rem;
  font-weight: 600;
  transition: background .2s;
  white-space: nowrap;
}
.kite-upload-trigger:hover { background: #ddd6fe; }
.kite-upload-trigger input[type="file"] {
  position: absolute;
  width: 0;
  height: 0;
  opacity: 0;
  pointer-events: none;
}
.kite-upload-fname {
  font-size: .8rem;
  color: #6b7280;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.kite-upload-preview {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid #e2e8f0;
}
.kite-gallery-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 8px;
}
.kite-gallery-thumb-sm {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid #e2e8f0;
}

/* ── Rich text editor ─────────────────────────────────────────────────────── */
.kite-richtext-wrap {
  border: 1.5px solid #d1d5db;
  border-radius: 7px;
  overflow: hidden;
  background: #f9fafb;
  transition: border-color .2s;
}
.kite-richtext-wrap:focus-within {
  border-color: #7c3aed;
  box-shadow: 0 0 0 3px rgba(124,58,237,.12);
  background: #fff;
}
.kite-richtext-toolbar {
  display: flex;
  gap: 2px;
  padding: 5px 8px;
  background: #f1f5f9;
  border-bottom: 1px solid #e2e8f0;
}
.kite-rt-btn {
  padding: 4px 10px;
  border: 1px solid #cbd5e1;
  border-radius: 4px;
  background: #fff;
  cursor: pointer;
  font-size: .85rem;
  line-height: 1.4;
  color: #374151;
  transition: background .15s;
}
.kite-rt-btn:hover { background: #ede9fe; border-color: #a78bfa; }
.kite-richtext {
  min-height: 100px;
  padding: 10px 12px;
  outline: none;
  font-size: .9rem;
  line-height: 1.65;
  color: #111827;
  direction: rtl;
  text-align: right;
}
.kite-richtext:empty::before {
  content: attr(data-placeholder);
  color: #9ca3af;
  pointer-events: none;
}
.kite-richtext ul { padding-right: 20px; padding-left: 0; }
.kite-richtext-hidden { display: none !important; }

/* ── Summary box (step 5) ─────────────────────────────────────────────────── */
.kite-wizard-summary {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  padding: 14px 16px;
  margin-bottom: 20px;
}
.kite-summary-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 16px;
  font-size: .88rem;
  color: #374151;
}
@media (max-width: 480px) { .kite-summary-grid { grid-template-columns: 1fr; } }

/* ── Success state ───────────────────────────────────────────────────────── */
.kite-biz-success {
  text-align: center;
  padding: 48px 24px;
  background: #f0fdf4;
  border: 1px solid #a7f3d0;
  border-radius: 12px;
}
.kite-biz-success-icon { font-size: 3rem; margin-bottom: 12px; }
.kite-biz-success h3 { color: #065f46; margin: 0 0 8px; font-size: 1.3rem; }
.kite-biz-success p  { color: #374151; margin: 0; font-size: .95rem; }
.kite-biz-success-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 20px;
}
.kite-suc-btn {
  display: inline-flex;
  align-items: center;
  padding: 10px 22px;
  border-radius: 8px;
  font-size: .9rem;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s;
}
.kite-suc-btn-primary { background: #6d28d9; color: #fff !important; }
.kite-suc-btn-primary:hover { background: #5b21b6; }
.kite-suc-btn-outline { background: #fff; color: #6d28d9 !important; border: 2px solid #c4b5fd; }
.kite-suc-btn-outline:hover { background: #ede9fe; }

/* ── Wizard button overrides (ensure visibility) ───────────────────────── */
.kite-biz-wizard .kite-btn,
#kite-biz-wizard .kite-btn {
  opacity: 1 !important;
  visibility: visible !important;
}
.kite-biz-wizard .kite-btn-primary,
#kite-biz-wizard .kite-wizard-next {
  background: linear-gradient(135deg,#6d28d9 0%,#0891b2 100%) !important;
  color: #fff !important;
  border-color: #6d28d9 !important;
}
.kite-biz-wizard .kite-btn-primary:hover,
#kite-biz-wizard .kite-wizard-next:hover {
  background: linear-gradient(135deg,#5b21b6 0%,#0e7490 100%) !important;
}
.kite-biz-wizard .kite-btn-outline,
#kite-biz-wizard .kite-wizard-back {
  background: #fff !important;
  color: #6d28d9 !important;
  border: 2px solid #c4b5fd !important;
}
.kite-biz-wizard .kite-btn-outline:hover,
#kite-biz-wizard .kite-wizard-back:hover { background: #ede9fe !important; }
.kite-biz-wizard .kite-btn-success,
#kite-biz-wizard .kite-wizard-submit {
  background: linear-gradient(135deg,#059669 0%,#047857 100%) !important;
  color: #fff !important;
  border-color: #059669 !important;
}
.kite-biz-wizard .kite-btn-success:disabled,
#kite-biz-wizard .kite-wizard-submit:disabled {
  background: #9ca3af !important;
  border-color: #9ca3af !important;
}

/* ── Inline field error messages ───────────────────────────────────────── */
.kite-field-err-msg {
  display: block;
  color: #ef4444;
  font-size: .76rem;
  margin-top: 3px;
  min-height: 1.1em;
}
.kite-field-err-msg:empty { display: none; }

/* ── Region checkbox group ─────────────────────────────────────────────── */
.kite-region-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  padding: 8px 0 4px;
}
.kite-region-check {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .88rem;
  color: #374151;
  cursor: pointer;
}
.kite-region-check input[type="checkbox"] {
  width: 17px;
  height: 17px;
  accent-color: #6d28d9;
  cursor: pointer;
}

/* ── Consent error highlight ───────────────────────────────────────────── */
.kite-checkbox-row.kite-consent-error label { color: #b91c1c; }
.kite-checkbox-row.kite-consent-error input[type="checkbox"] {
  outline: 2px solid #ef4444;
  outline-offset: 2px;
}

/* ── Drag-and-drop upload zones ────────────────────────────────────────── */
.kite-biz-drop { position: relative; }
.kite-biz-drop .kite-file-input {
  position: absolute; width: 0; height: 0;
  opacity: 0; pointer-events: none; overflow: hidden;
}
.kite-biz-drop-area {
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 6px; padding: 22px 16px;
  border: 2px dashed #a78bfa; border-radius: 12px;
  background: #faf5ff; cursor: pointer;
  text-align: center;
  transition: border-color .2s, background .2s;
  min-height: 90px; outline: none;
}
.kite-biz-drop-area:hover,
.kite-biz-drop-area:focus,
.kite-biz-drop-area.kite-biz-dragover {
  border-color: #7c3aed; background: #ede9fe;
}
.kite-biz-drop-icon { font-size: 1.6rem; line-height: 1; }
.kite-biz-drop-text { font-size: .82rem; color: #374151; line-height: 1.5; }
.kite-biz-drop-text strong { color: #7c3aed; }
.kite-biz-drop-fname { font-size: .75rem; color: #6b7280; }
.kite-biz-drop-preview {
  width: 80px; height: 80px;
  object-fit: cover; border-radius: 8px;
  margin-top: 10px; border: 1px solid #e2e8f0;
}

/* ── Shop archive multi-category badges ────────────────────────────────── */
.kite-shops-card-cats {
  position: absolute; bottom: 10px; right: 10px; z-index: 2;
  display: flex; flex-wrap: wrap; gap: 4px;
  direction: rtl; justify-content: flex-start; align-items: flex-start;
  max-width: 75%;
}
.kite-shops-card-cats .kite-shops-card-cat { position: static; }

/* ══════════════════════════════════════════════════════════════════════════
   SINGLE SPOT PAGE (kite-spp-*)  —  v1.4.0
══════════════════════════════════════════════════════════════════════════ */

/* ── Wrap ───────────────────────────────────────────────────────────────── */
.kite-spp-wrap {
	font-family: 'Heebo', Arial, sans-serif;
	direction: rtl;
	color: #1e293b;
}

/* ── Hero ───────────────────────────────────────────────────────────────── */
.kite-spp-hero {
	position: relative;
	min-height: 460px;
	background: #0a2540 no-repeat center center / cover;
	display: flex;
	align-items: flex-end;
}
.kite-spp-hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0,0,0,.82) 0%, rgba(0,0,0,.35) 55%, rgba(0,0,0,.15) 100%);
}
.kite-spp-hero-inner {
	position: relative;
	z-index: 2;
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
	padding: 40px 24px 48px;
}
.kite-spp-hero-region {
	color: #7dd3fc;
	font-size: .88rem;
	margin: 0 0 8px;
	font-weight: 500;
}
.kite-spp-hero-title {
	color: #fff;
	font-size: clamp(1.8rem, 4vw, 2.8rem);
	font-weight: 800;
	margin: 0 0 12px;
	line-height: 1.2;
}
.kite-spp-hero-levels {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	margin-bottom: 12px;
}
.kite-spp-level-badge {
	background: rgba(255,255,255,.18);
	color: #fff;
	border: 1px solid rgba(255,255,255,.35);
	border-radius: 20px;
	padding: 4px 13px;
	font-size: .82rem;
	font-weight: 600;
	backdrop-filter: blur(4px);
}
.kite-spp-hero-desc {
	color: rgba(255,255,255,.85);
	font-size: 1rem;
	margin: 0 0 22px;
	max-width: 580px;
	line-height: 1.6;
}
.kite-spp-hero-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
}

/* ── Quick info bar ─────────────────────────────────────────────────────── */
.kite-spp-quickinfo {
	background: #fff;
	border-bottom: 1px solid #e2e8f0;
	box-shadow: 0 2px 8px rgba(0,0,0,.06);
	position: sticky;
	top: 0;
	z-index: 50;
}
.kite-spp-qi-inner {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 24px;
	display: flex;
	flex-wrap: nowrap;
	overflow-x: auto;
	scrollbar-width: none;
}
.kite-spp-qi-inner::-webkit-scrollbar { display: none; }
.kite-spp-qi-item {
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 14px 20px;
	border-left: 1px solid #f1f5f9;
	min-width: 0;
	white-space: nowrap;
	flex-shrink: 0;
}
.kite-spp-qi-item:last-child { border-left: 0; }
.kite-spp-qi-icon { font-size: 1.15rem; flex-shrink: 0; }
.kite-spp-qi-label {
	display: block;
	font-size: .66rem;
	color: #94a3b8;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: .05em;
}
.kite-spp-qi-val {
	display: block;
	font-size: .84rem;
	font-weight: 600;
	color: #1e293b;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 160px;
}

/* ── Body layout ────────────────────────────────────────────────────────── */
.kite-spp-body { background: #f8fafc; min-height: 60vh; }
.kite-spp-body-inner {
	max-width: 1100px;
	margin: 0 auto;
	padding: 28px 24px 60px;
	display: grid;
	grid-template-columns: 1fr 310px;
	gap: 24px;
}
@media (max-width: 860px) {
	.kite-spp-body-inner { grid-template-columns: 1fr; }
	.kite-spp-sidebar { order: -1; }
}

/* ── Section cards ──────────────────────────────────────────────────────── */
.kite-spp-section {
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	padding: 22px 24px;
	margin-bottom: 18px;
}
.kite-spp-section:last-child { margin-bottom: 0; }
.kite-spp-section-title {
	font-size: 1rem;
	font-weight: 700;
	color: #1e40af;
	margin: 0 0 14px;
	padding-bottom: 10px;
	border-bottom: 2px solid #dbeafe;
}
.kite-spp-content-text {
	font-size: .97rem;
	line-height: 1.8;
	color: #374151;
}
.kite-spp-content-text p { margin: 0 0 12px; }
.kite-spp-content-text p:last-child { margin-bottom: 0; }

/* ── Breadcrumb ─────────────────────────────────────────────────────────── */
.kite-ssp-breadcrumb {
	font-size: .83rem;
	color: #64748b;
	margin-bottom: 16px;
}
.kite-ssp-breadcrumb a { color: #3b82f6; text-decoration: none; }
.kite-ssp-breadcrumb a:hover { text-decoration: underline; }
.kite-ssp-bc-sep { margin: 0 4px; }

/* ── Safety section ─────────────────────────────────────────────────────── */
.kite-spp-safety-section .kite-spp-section-title { color: #b91c1c; border-color: #fecaca; }
.kite-spp-safety-badge {
	display: inline-block;
	padding: 8px 16px;
	border-radius: 8px;
	border: 2px solid currentColor;
	font-weight: 700;
	font-size: .92rem;
	margin-bottom: 14px;
}
.kite-spp-hazards { margin-bottom: 14px; font-size: .9rem; }
.kite-spp-hazard-list {
	list-style: none;
	padding: 0;
	margin: 8px 0 0;
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}
.kite-spp-hazard-list li {
	background: #fef2f2;
	color: #991b1b;
	padding: 4px 10px;
	border-radius: 6px;
	font-size: .84rem;
	border: 1px solid #fecaca;
}
.kite-spp-safety-notes {
	margin-top: 12px;
	font-size: .9rem;
	line-height: 1.7;
	color: #374151;
}
.kite-spp-safety-notes p { margin: 4px 0 0; }

/* ── Wind conditions ────────────────────────────────────────────────────── */
.kite-spp-wind-group { margin-bottom: 14px; }
.kite-spp-wind-label {
	display: block;
	font-size: .78rem;
	font-weight: 600;
	color: #64748b;
	margin-bottom: 7px;
}
.kite-spp-wind-suitable-label { color: #065f46; }
.kite-spp-wind-hazardous-label { color: #991b1b; }
.kite-spp-wind-badges { display: flex; flex-wrap: wrap; gap: 6px; }
.kite-spp-wind-badge {
	padding: 5px 12px;
	border-radius: 20px;
	font-size: .82rem;
	font-weight: 600;
}
.kite-spp-wind-suitable  { background: #dcfce7; color: #166534; border: 1px solid #bbf7d0; }
.kite-spp-wind-hazardous { background: #fee2e2; color: #991b1b; border: 1px solid #fecaca; }
.kite-spp-wind-range { margin: 10px 0; }
.kite-spp-wind-range-badge {
	background: #dbeafe;
	color: #1e40af;
	padding: 6px 16px;
	border-radius: 20px;
	font-size: .88rem;
	font-weight: 700;
	display: inline-block;
}
.kite-spp-wind-gust-notes { font-size: .85rem; color: #64748b; margin: 8px 0 0; }

/* ── Tips grid ──────────────────────────────────────────────────────────── */
.kite-spp-tips-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
@media (max-width: 600px) { .kite-spp-tips-grid { grid-template-columns: 1fr; } }
.kite-spp-tip-card {
	background: #f8fafc;
	border: 1px solid #e2e8f0;
	border-radius: 8px;
	padding: 14px;
}
.kite-spp-tip-header {
	font-size: .88rem;
	margin-bottom: 6px;
	display: flex;
	align-items: center;
	gap: 6px;
}
.kite-spp-tip-icon { font-size: 1rem; }
.kite-spp-tip-text { font-size: .87rem; line-height: 1.65; color: #475569; margin: 0; }

/* ── Facilities ─────────────────────────────────────────────────────────── */
.kite-spp-facilities { display: flex; flex-wrap: wrap; gap: 8px; }
.kite-spp-facility-tag {
	background: #f0fdf4;
	color: #166534;
	border: 1px solid #bbf7d0;
	padding: 5px 12px;
	border-radius: 20px;
	font-size: .85rem;
	font-weight: 500;
}

/* ── Seasonality ────────────────────────────────────────────────────────── */
.kite-spp-months-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 6px;
	margin-bottom: 12px;
}
@media (max-width: 480px) { .kite-spp-months-grid { grid-template-columns: repeat(4, 1fr); } }
.kite-spp-month-cell {
	text-align: center;
	padding: 8px 4px;
	border-radius: 6px;
	font-size: .76rem;
	font-weight: 500;
	background: #f1f5f9;
	color: #94a3b8;
	border: 1px solid #e2e8f0;
}
.kite-spp-month-active {
	background: #dbeafe;
	color: #1e40af;
	border-color: #93c5fd;
	font-weight: 700;
}
.kite-spp-season-notes { font-size: .87rem; color: #64748b; margin: 10px 0 0; }

/* ── Forecast links ─────────────────────────────────────────────────────── */
.kite-spp-forecast-links { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 12px; }
.kite-spp-forecast-btn {
	display: inline-block;
	padding: 8px 18px;
	background: #1e293b;
	color: #fff !important;
	border-radius: 8px;
	font-size: .88rem;
	font-weight: 600;
	text-decoration: none;
	transition: background .2s;
}
.kite-spp-forecast-btn:hover { background: #334155; color: #fff !important; }
.kite-spp-forecast-notes { font-size: .87rem; color: #475569; line-height: 1.6; margin: 0; }

/* ── Live-wind CTA section ──────────────────────────────────────────────── */
.kite-spp-lw-cta {
	text-align: center;
	background: linear-gradient(135deg, #051525, #0a2540);
	border-color: transparent;
}
.kite-spp-lw-text { color: rgba(255,255,255,.85); font-size: 1rem; margin: 0 0 14px; }

/* ── Sidebar ────────────────────────────────────────────────────────────── */
.kite-spp-sidebar { display: flex; flex-direction: column; gap: 16px; }
.kite-spp-sidebar-card {
	background: #fff;
	border: 1px solid #e2e8f0;
	border-radius: 12px;
	padding: 18px;
}
.kite-spp-sidebar-title {
	font-size: .9rem;
	font-weight: 700;
	color: #1e293b;
	margin: 0 0 12px;
	padding-bottom: 8px;
	border-bottom: 1px solid #f1f5f9;
}
.kite-spp-map {
	height: 210px;
	width: 100%;
	border-radius: 8px;
	overflow: hidden;
	margin-bottom: 12px;
	background: #e2e8f0;
}
.kite-spp-nav-btn {
	display: block !important;
	width: 100%;
	text-align: center;
	margin-bottom: 10px;
	box-sizing: border-box;
}
.kite-spp-address { font-size: .84rem; color: #64748b; margin: 4px 0 0; line-height: 1.5; }
.kite-spp-water-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.kite-spp-water-tag {
	background: #eff6ff;
	color: #1e40af;
	border: 1px solid #bfdbfe;
	padding: 4px 10px;
	border-radius: 14px;
	font-size: .8rem;
	font-weight: 500;
}

/* ── Spot page buttons ───────────────────────────────────────────────────── */
.kite-ssp-btn {
	display: inline-block;
	padding: 10px 20px;
	border-radius: 8px;
	font-size: .9rem;
	font-weight: 600;
	text-decoration: none;
	cursor: pointer;
	transition: background .2s, opacity .2s;
	white-space: nowrap;
}
.kite-ssp-btn-nav {
	background: #1e40af;
	color: #fff !important;
}
.kite-ssp-btn-nav:hover { background: #1d4ed8; color: #fff !important; }
.kite-ssp-btn-web {
	background: #0891b2;
	color: #fff !important;
}
.kite-ssp-btn-web:hover { background: #0e7490; color: #fff !important; }
.kite-ssp-btn-back {
	background: rgba(255,255,255,.15);
	color: rgba(255,255,255,.9) !important;
	border: 1px solid rgba(255,255,255,.3);
	backdrop-filter: blur(4px);
}
.kite-ssp-btn-back:hover { background: rgba(255,255,255,.22); }
.kite-ssp-back-link {
	display: block;
	text-align: center;
	color: #3b82f6;
	font-size: .88rem;
	text-decoration: none;
	padding: 8px 0;
}
.kite-ssp-back-link:hover { text-decoration: underline; }

/* ── Single-spot gallery grid ────────────────────────────────────────────── */
.kite-ssp-gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
	gap: 8px;
}
.kite-ssp-gallery-item {
	display: block;
	aspect-ratio: 4 / 3;
	overflow: hidden;
	border-radius: 8px;
	background: #f1f5f9;
	cursor: pointer;
}
.kite-ssp-gallery-item img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .3s;
}
.kite-ssp-gallery-item:hover img { transform: scale(1.05); }

/* ═══════════════════════════════════════════════════════════════════════════
   v1.4.2 — FORECAST MODULE
   ═══════════════════════════════════════════════════════════════════════════ */

/* ── 3-column Spots dashboard (forecast | map | list) ───────────────────── */
.kite-spots-dashboard { display: flex; flex-direction: row; align-items: stretch; direction: rtl; width: 100%; background: #0f172a; }
.kite-spots-dashboard .kite-spots-split { flex: 1; min-width: 0; }

/* ── Quick Forecast Panel (right column) ────────────────────────────────── */
.kite-forecast-panel {
  flex: 0 0 300px; width: 300px;
  background: linear-gradient(160deg,#0f2744 0%,#0a1f38 100%);
  color: #e2e8f0; direction: rtl;
  display: flex; flex-direction: column; overflow: hidden;
  border-left: 1px solid rgba(255,255,255,.07);
}
.kite-fcp-header { display: flex; align-items: center; justify-content: space-between; padding: 14px 16px 10px; border-bottom: 1px solid rgba(255,255,255,.07); flex-shrink: 0; }
.kite-fcp-title { font-size: .82rem; font-weight: 800; color: #f1f5f9; letter-spacing: .02em; }
.kite-fcp-all { font-size: .72rem; color: #38bdf8; text-decoration: none; white-space: nowrap; }
.kite-fcp-all:hover { color: #7dd3fc; }
.kite-fcp-cards { flex: 1; overflow-y: auto; padding: 6px 0; }
.kite-fcp-empty { padding: 20px 16px; color: #94a3b8; font-size: .82rem; }
.kite-fcp-card { padding: 12px 16px; border-bottom: 1px solid rgba(255,255,255,.05); transition: background .15s; }
.kite-fcp-card:hover { background: rgba(255,255,255,.04); }
.kite-fcp-card-top { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 7px; }
.kite-fcp-region-icon { font-size: 1.5rem; flex-shrink: 0; line-height: 1; }
.kite-fcp-region-info { display: flex; flex-direction: column; gap: 3px; }
.kite-fcp-region-name { font-size: .88rem; font-weight: 700; color: #f8fafc; }
.kite-fcp-rec-badge { display: inline-block; font-size: .68rem; font-weight: 700; padding: 2px 7px; border-radius: 999px; white-space: nowrap; }
.kite-fc-rec  { background: #064e3b; color: #6ee7b7; }
.kite-fc-bdr  { background: #78350f; color: #fcd34d; }
.kite-fc-exp  { background: #7f1d1d; color: #fca5a5; }
.kite-fc-nrec { background: #1e293b; color: #94a3b8; }
.kite-fc-default { background: #1e293b; color: #94a3b8; }
.kite-fcp-wind-row { display: flex; align-items: center; gap: 6px; margin-bottom: 5px; flex-wrap: wrap; }
.kite-fcp-dir   { font-size: .75rem; font-weight: 700; color: #38bdf8; background: rgba(56,189,248,.12); padding: 2px 7px; border-radius: 6px; }
.kite-fcp-knots { font-size: .82rem; font-weight: 800; color: #f1f5f9; }
.kite-fcp-gusts { font-size: .7rem; color: #fb7185; font-weight: 700; background: rgba(251,113,133,.1); padding: 1px 5px; border-radius: 4px; }
.kite-fcp-hours { font-size: .72rem; color: #94a3b8; margin-bottom: 4px; }
.kite-fcp-summary { font-size: .75rem; color: #94a3b8; line-height: 1.45; margin: 0 0 4px; }
.kite-fcp-updated { font-size: .68rem; color: #475569; }
.kite-fcp-footer { flex-shrink: 0; padding: 12px 16px; border-top: 1px solid rgba(255,255,255,.07); }
.kite-fcp-livewind-btn { display: block; text-align: center; background: linear-gradient(90deg,#0ea5e9,#06b6d4); color: #fff; text-decoration: none; padding: 9px 14px; border-radius: 10px; font-size: .78rem; font-weight: 700; transition: opacity .2s; }
.kite-fcp-livewind-btn:hover { opacity: .88; color: #fff; }
.kite-fcp-ext-link { display: inline-block; color: #38bdf8; text-decoration: none; font-size: .78rem; margin-top: 6px; }

/* ── Detailed Forecast Section ──────────────────────────────────────────── */
.kite-forecast-detail { background: #f8fafc; direction: rtl; }
.kite-fdr-inner { max-width: 1200px; margin: 0 auto; padding: 52px 24px 60px; }
.kite-fdr-header { text-align: center; margin-bottom: 28px; }
.kite-fdr-title { font-size: 1.55rem; font-weight: 800; color: #0f172a; margin: 0 0 6px; }
.kite-fdr-subtitle { font-size: .82rem; color: #64748b; margin: 0; }
.kite-fdr-wind-alert-wrap { margin-bottom: 24px; }
/* Accordion */
.kite-fdr-accordion { display: flex; flex-direction: column; gap: 8px; }
.kite-fdr-acc-item { background: #fff; border: 1px solid #e2e8f0; border-radius: 14px; overflow: hidden; box-shadow: 0 1px 3px rgba(0,0,0,.04); }
.kite-fdr-acc-item.kite-fdr-open .kite-fdr-acc-chevron { transform: rotate(180deg); }
.kite-fdr-acc-head { width: 100%; display: flex; align-items: center; gap: 10px; padding: 16px 20px; background: none; border: none; cursor: pointer; text-align: right; font-family: var(--kite-font); }
.kite-fdr-acc-head:hover { background: #f8fafc; }
.kite-fdr-acc-head:focus,
.kite-fdr-acc-head:active { outline: none; box-shadow: none; background: none; }
.kite-fdr-acc-head:focus-visible { outline: 2px solid var(--kite-cyan); outline-offset: -2px; box-shadow: none; }
.kite-fdr-acc-icon { font-size: 1.3rem; flex-shrink: 0; }
.kite-fdr-acc-name { font-size: 1rem; font-weight: 700; color: #0f172a; flex: 1; min-width: 0; }
.kite-fdr-acc-badge { font-size: .7rem; font-weight: 700; padding: 3px 9px; border-radius: 999px; flex-shrink: 0; white-space: nowrap; }
.kite-fdr-acc-wind { font-size: .78rem; font-weight: 600; color: #0369a1; background: #e0f2fe; padding: 3px 9px; border-radius: 8px; flex-shrink: 0; white-space: nowrap; }
.kite-fdr-acc-chevron { color: #94a3b8; font-size: .85rem; flex-shrink: 0; transition: transform .22s; }
.kite-fdr-acc-body { display: none; padding: 0 20px 20px; }
.kite-fdr-open .kite-fdr-acc-body { display: block; }
.kite-fdr-acc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 16px; }
.kite-fdr-sec-title { font-size: .82rem; font-weight: 800; color: #475569; margin: 0 0 10px; text-transform: uppercase; letter-spacing: .05em; }
.kite-fdr-row { display: flex; gap: 8px; margin-bottom: 6px; font-size: .84rem; align-items: baseline; }
.kite-fdr-lbl { font-weight: 600; color: #64748b; flex-shrink: 0; white-space: nowrap; }
.kite-fdr-knots { font-weight: 800; color: #0369a1; }
.kite-fdr-gusts { font-weight: 700; color: #dc2626; }
.kite-fdr-notes, .kite-fdr-safety { font-size: .8rem; color: #64748b; line-height: 1.5; margin: 8px 0 0; }
.kite-fdr-fulltext { font-size: .88rem; color: #334155; line-height: 1.65; background: #f8fafc; border-radius: 8px; padding: 14px 16px; margin: 12px 0; border-right: 3px solid #06b6d4; }
.kite-fdr-meta-row { display: flex; gap: 16px; flex-wrap: wrap; margin: 10px 0; }
.kite-fdr-meta-item { font-size: .75rem; color: #94a3b8; }
.kite-fdr-ext-links { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-top: 12px; padding-top: 12px; border-top: 1px solid #f1f5f9; }
.kite-fdr-ext-label { font-size: .72rem; color: #94a3b8; font-weight: 600; }
.kite-fdr-ext-btn { display: inline-block; padding: 5px 12px; border: 1px solid #e2e8f0; border-radius: 8px; font-size: .75rem; font-weight: 600; color: #0369a1; text-decoration: none; background: #f0f9ff; transition: all .15s; }
.kite-fdr-ext-btn:hover { background: #0369a1; color: #fff; border-color: #0369a1; }

/* ── Wind Alert CTA ─────────────────────────────────────────────────────── */
.kite-wind-alert-cta { background: linear-gradient(90deg,#0f2744 0%,#0a3060 100%); border-radius: 14px; padding: 16px 20px; }
.kite-wac-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.kite-wac-text { display: flex; align-items: center; gap: 12px; }
.kite-wac-icon { font-size: 1.4rem; }
.kite-wac-title { font-size: .92rem; font-weight: 700; color: #f1f5f9; margin: 0; }
.kite-wac-sub { font-size: .75rem; color: #94a3b8; margin: 2px 0 0; }
.kite-wac-btn { background: linear-gradient(90deg,#f59e0b,#f97316); color: #fff; border: none; border-radius: 10px; padding: 10px 20px; font-size: .82rem; font-weight: 700; cursor: pointer; font-family: var(--kite-font); white-space: nowrap; transition: opacity .2s; }
.kite-wac-btn:hover { opacity: .88; }

/* ── Wind Alert Modal ───────────────────────────────────────────────────── */
.kite-modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,.55); z-index: 9999; display: flex; align-items: center; justify-content: center; padding: 20px; }
.kite-modal-box { background: #fff; border-radius: 20px; position: relative; max-width: 420px; width: 100%; box-shadow: 0 20px 60px rgba(0,0,0,.25); }
.kite-modal-close { position: absolute; top: 14px; left: 16px; background: none; border: none; font-size: 1.3rem; cursor: pointer; color: #94a3b8; line-height: 1; padding: 4px; }
.kite-modal-close:hover { color: #475569; }
.kite-wam-box { overflow: hidden; }
.kite-wam-inner { padding: 36px 28px 28px; text-align: center; direction: rtl; }
.kite-wam-icon { font-size: 2.5rem; margin-bottom: 12px; }
.kite-wam-title { font-size: 1.15rem; font-weight: 800; color: #0f172a; margin: 0 0 10px; }
.kite-wam-desc { font-size: .88rem; color: #475569; line-height: 1.6; margin: 0 0 18px; }
.kite-wam-features { display: flex; flex-direction: column; gap: 8px; text-align: right; margin: 0 0 18px; }
.kite-wam-feature { display: flex; align-items: center; gap: 8px; font-size: .84rem; color: #334155; }
.kite-wam-note { font-size: .78rem; color: #94a3b8; margin: 0 0 20px; }
.kite-wam-close-btn { background: linear-gradient(90deg,#06b6d4,#0369a1); color: #fff; border: none; border-radius: 10px; padding: 11px 28px; font-size: .88rem; font-weight: 700; cursor: pointer; font-family: var(--kite-font); width: 100%; transition: opacity .2s; }
.kite-wam-close-btn:hover { opacity: .88; }

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .kite-forecast-panel { flex: 0 0 260px; width: 260px; }
}
@media (max-width: 860px) {
  /* Stack: forecast on top, then map+list */
  .kite-spots-dashboard { flex-direction: column; }
  .kite-forecast-panel { width: 100%; flex: none; border-left: none; border-bottom: 1px solid rgba(255,255,255,.07); }
  .kite-fcp-cards { display: grid; grid-template-columns: repeat(2,1fr); }
  .kite-spots-dashboard .kite-spots-split { flex-direction: column; }
  .kite-splits-list { flex: none; max-width: 100%; border-right: none; border-top: 1px solid #e2e8f0; }
}
@media (max-width: 560px) {
  .kite-fcp-cards { grid-template-columns: 1fr; }
  .kite-fdr-acc-grid { grid-template-columns: 1fr; }
  .kite-wac-inner { flex-direction: column; align-items: flex-start; }
}

/* ── v1.4.3 additions ─────────────────────────────────────────────────────── */
/* Hero mode button SVG icons */
.kite-sph-icon { width:15px; height:15px; vertical-align:middle; margin-inline-end:5px; flex-shrink:0; }
.kite-sph-mode-btn { display:inline-flex; align-items:center; }

/* Forecast detail — empty states */
.kite-fdr-empty { padding:32px 0; text-align:center; }
.kite-fdr-admin-empty,
.kite-fdr-visitor-empty { font-size:15px; color:#64748b; margin:0; }
.kite-fdr-admin-empty a { color:#0ea5e9; text-decoration:underline; }

/* Forecast embed */
.kite-fdr-embed-wrap { margin-top:16px; }
.kite-fdr-embed-container { width:100%; overflow:hidden; border-radius:6px; }
.kite-fdr-embed-container iframe { max-width:100%; display:block; border:none; }
.kite-fdr-embed-blocked { font-size:12px; color:#ef4444; margin:8px 0 0; }

/* ── v1.4.4 additions ─────────────────────────────────────────────────────── */

/* SVG status icons */
.kite-fc-si { width:20px; height:20px; vertical-align:middle; flex-shrink:0; }

/* Wind direction arrows */
.kite-wind-dir { display:inline-flex; align-items:center; gap:3px; }
.kite-dir-txt  { font-size:inherit; }
.kite-dir-arrow { font-size:14px; line-height:1; transition:transform 0s; }

/* Validity badges */
.kite-validity-badge {
  display:inline-block; font-size:11px; font-weight:600;
  padding:1px 7px; border-radius:10px; vertical-align:middle;
}
.kite-validity-ok  { background:#dcfce7; color:#166534; }
.kite-validity-exp { background:#fee2e2; color:#991b1b; }

/* Quick panel foot */
.kite-fcp-foot { display:flex; align-items:center; gap:6px; flex-wrap:wrap; margin-top:6px; font-size:11px; color:#64748b; }
.kite-fcp-updated { font-size:11px; color:#94a3b8; }

/* Detailed forecast: day sections */
.kite-fdr-day-section { margin-top:16px; }
.kite-fdr-day-head {
  font-size:13px; font-weight:700; color:#0f172a;
  margin:0 0 8px; padding-bottom:4px;
  border-bottom:2px solid #e2e8f0;
}
.kite-fdr-periods-grid {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:8px;
}
.kite-fdr-period-cell {
  background:#f8fafc; border:1px solid #e2e8f0;
  border-radius:8px; padding:10px;
  font-size:12px; display:flex; flex-direction:column; gap:4px;
}
.kite-fdr-period-name { font-weight:700; font-size:12px; color:#334155; }
.kite-fdr-period-dir  { color:#475569; }
.kite-fdr-period-wind { font-weight:600; color:#0f172a; }
.kite-fdr-period-gust { font-size:11px; color:#64748b; }
.kite-fdr-period-badge { font-size:10px; font-weight:600; padding:1px 6px; border-radius:8px; }
.kite-fdr-period-notes { font-size:11px; color:#64748b; }

/* Weekly summary */
.kite-fdr-week-section { margin-top:14px; }
.kite-fdr-week-text { font-size:13px; color:#475569; margin:0; line-height:1.6; }

@media (max-width:560px) {
  .kite-fdr-periods-grid { grid-template-columns:1fr; }
}

/* ── v1.5.0 Wind Station — delayed / offline states ────────────── */
.kite-ws-dot.kite-ws-offline  { background:#94a3b8; box-shadow:none; }
.kite-ws-dot.kite-ws-delayed  { background:#f59e0b; }
.kite-ws-status-badge.kite-ws-offline  { background:#f1f5f9; color:#475569; }
.kite-ws-status-badge.kite-ws-delayed  { background:#fef3c7; color:#92400e; }

/* ── v1.5.0 Live Cameras grid ───────────────────────────────────── */
.kite-cam-grid {
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(280px,1fr));
  gap:20px;
  padding:0;
  list-style:none;
}
.kite-cam-card {
  background:#fff;
  border:1px solid var(--kite-border,#e2e8f0);
  border-radius:var(--kite-radius,14px);
  overflow:hidden;
  box-shadow:var(--kite-shadow,0 2px 12px rgba(0,0,0,.06));
  display:flex; flex-direction:column;
}
.kite-cam-card-hdr {
  display:flex; align-items:center; gap:10px;
  padding:14px 16px;
  border-bottom:1px solid var(--kite-border,#e2e8f0);
}
.kite-cam-icon { font-size:22px; flex-shrink:0; }
.kite-cam-hdr-text { flex:1; min-width:0; }
.kite-cam-name { margin:0; font-size:14px; font-weight:700; color:#0f172a; white-space:nowrap; overflow:hidden; text-overflow:ellipsis; }
.kite-cam-region { margin:0; font-size:12px; color:#64748b; }
.kite-cam-status-badge { font-size:11px; font-weight:600; padding:2px 8px; border-radius:20px; white-space:nowrap; }
.kite-cam-active  { background:#dcfce7; color:#166534; }
.kite-cam-offline { background:#fee2e2; color:#991b1b; }
.kite-cam-soon    { background:#fef9c3; color:#854d0e; }
.kite-cam-card-body { padding:14px 16px; flex:1; display:flex; flex-direction:column; gap:8px; }
.kite-cam-embed-wrap { width:100%; }
.kite-cam-embed-wrap iframe { width:100%; border-radius:8px; display:block; }
.kite-cam-link {
  display:inline-flex; align-items:center; gap:6px;
  padding:8px 16px; border-radius:8px;
  background:var(--kite-sky,#0284c7); color:#fff;
  font-size:13px; font-weight:600; text-decoration:none;
  transition:background .2s;
}
.kite-cam-link:hover { background:#0369a1; }
.kite-cam-soon-msg, .kite-cam-offline-msg { font-size:13px; color:#94a3b8; margin:0; }
.kite-cam-note { font-size:12px; color:#64748b; margin:0; }

/* ── v1.5.0 Camera map popup embed ──────────────────────────────── */
.kite-cam-embed iframe { max-width:100%; border-radius:6px; }

/* ── v1.5.2 Station dot — freshness/status (replaces wind-strength dot colors) */
.kite-ws-dot.kite-ws-dot-fresh {
  background: #10b981;
  box-shadow: 0 0 0 3px rgba(16,185,129,.2);
}
.kite-ws-dot.kite-ws-dot-aging {
  background: #f59e0b;
  box-shadow: 0 0 0 3px rgba(245,158,11,.15);
}
.kite-ws-dot.kite-ws-dot-stale {
  background: #94a3b8;
  box-shadow: none;
}

/* ── v1.5.2 Station updated-time freshness colors ─────────────── */
.kite-ws-updated.kite-ws-time-fresh { color: #10b981; }
.kite-ws-updated.kite-ws-time-aging { color: #94a3b8; }
.kite-ws-updated.kite-ws-time-stale { color: #f59e0b; }

/* ── v1.5.1 Legend freshness note ───────────────────────────────── */
.kite-lw-legend-note {
  margin:6px 0 0;
  font-size:10px;
  color:#94a3b8;
  line-height:1.3;
}

/* ── v1.5.1 Station popup time label ────────────────────────────── */
.kite-st-time      { color:#64748b; }
.kite-st-time-warn { color:#f59e0b; font-weight:600; }

/* ── v1.8.5/1.8.6 Gusty state + expand/collapse ─────────────────── */
.kite-lw-leg-dot.low                            { background: #94a3b8; }
.kite-ws-status-badge.kite-ws-badge-gusty       { outline: 2px solid #f59e0b; outline-offset: 2px; }
.kite-ws-card-extra                             { display: none; }
.kite-ws-grid.kite-ws-expanded .kite-ws-card-extra { display: block; }
.kite-ws-expand-row {
  text-align: center;
  margin-top: 16px;
}
.kite-ws-expand-btn {
  background: #ecfeff !important;
  border: 1px solid #06b6d4 !important;
  border-radius: 8px !important;
  color: #0e7490 !important;
  cursor: pointer !important;
  font-family: var(--kite-font) !important;
  font-size: .85rem !important;
  font-weight: 600 !important;
  padding: 8px 24px !important;
  transition: background .15s, border-color .15s;
}
.kite-ws-expand-btn:hover,
.kite-ws-expand-btn:focus,
.kite-ws-expand-btn:active,
.kite-ws-grid.kite-ws-expanded .kite-ws-expand-btn {
  background: #cffafe !important;
  border-color: #0891b2 !important;
  color: #0e7490 !important;
  outline: none !important;
}

/* ── v1.5.1 Live Wind — mobile layout ───────────────────────────── */
@media (max-width: 768px) {
  .kite-lw-layout {
    flex-direction: column;
  }
  .kite-lw-map-wrap {
    width: 100%;
    min-width: 0;
  }
  .kite-map.kite-lw-map {
    height: 320px !important;
  }
  .kite-lw-legend {
    display: none;
  }
  .kite-lw-spots-panel {
    width: 100%;
    max-height: 280px;
    overflow-y: auto;
  }
  .kite-lwlb-inner {
    flex-wrap: wrap;
    gap: 8px;
  }
  .kite-lwlb-layers {
    flex-wrap: wrap;
  }
  .kite-layer-btn {
    font-size: 12px;
    padding: 5px 10px;
  }
  .kite-lwlb-actions {
    gap: 8px;
  }
  .kite-lw-layout {
    overflow-x: hidden;
  }
  .kite-ws-grid {
    grid-template-columns: 1fr;
  }
}

/* ── v1.5.9 Add Business heading alignment (CSS, no reimport) ── */
[data-id="bz_w3"] .elementor-heading-title,
[data-id="bz_s2"] .elementor-heading-title { text-align: center !important; direction: rtl; }

/* ── v1.5.8/9/10 Mobile hamburger states — no red ─────────── */
.kite-mobile-toggle:focus { background: transparent !important; outline: 2px solid #06b6d4; outline-offset: 2px; box-shadow: none !important; }
.kite-mobile-toggle:focus:not(:focus-visible) { outline: none; background: transparent !important; }
.kite-mobile-toggle:active { background: #e0f2fe !important; box-shadow: none !important; }
button.kite-mobile-toggle { -webkit-tap-highlight-color: transparent; }

#kite-mobile-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
#kite-mobile-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; transform: scaleX(0); }
#kite-mobile-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── v1.5.11 Spots mobile filter accordion — BASE STYLES (display:none default) ── */
/* Bar: white bg, cyan accent border; height ~42px; no red anywhere */
.kite-sfb-mob { display: none; direction: rtl; background: #fff !important; border-top: 1px solid #e2e8f0 !important; border-bottom: 2px solid #06b6d4 !important; width: 100%; max-width: 100%; box-sizing: border-box; }
.kite-sfb-mob-toggle { width: 100% !important; display: flex !important; align-items: center; justify-content: space-between; flex-wrap: nowrap; padding: 10px 16px; min-height: 42px; background: #fff !important; border: none !important; box-shadow: none !important; outline: none; cursor: pointer; font-family: var(--kite-font); gap: 8px; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }
.kite-sfb-mob-toggle:hover { background: #f0fdfe !important; }
.kite-sfb-mob-toggle:focus { outline: none !important; box-shadow: none !important; background: #f0fdfe !important; }
.kite-sfb-mob-toggle:active { background: #e0f7fc !important; box-shadow: none !important; }
.kite-sfb-mob-label { display: flex; align-items: center; gap: 7px; font-size: .85rem; font-weight: 700; color: #0f172a; }
.kite-sfb-mob-icon { color: #06b6d4; flex-shrink: 0; }
.kite-sfb-mob-end { display: flex; align-items: center; gap: 6px; }
.kite-sfb-mob-count { font-size: .78rem; font-weight: 600; color: #0284c7; white-space: nowrap; }
.kite-sfb-mob-arr { flex-shrink: 0; transition: transform .22s; color: #94a3b8; }
.kite-sfb-mob-arr.kite-sfb-mob-open { transform: rotate(180deg); }
/* Panel: display:none/block — avoids max-height cascade override; border only when open */
.kite-sfb-mob-panel { display: none; background: #f8fafc; }
.kite-sfb-mob-panel.kite-sfb-mob-open { display: block; border-top: 1px solid #e2e8f0; }
.kite-sfb-mob-row { padding: 10px 16px 6px; display: flex; flex-wrap: wrap; gap: 6px; align-items: center; }
.kite-sfb-mob-lbl { font-size: .72rem; font-weight: 700; color: #64748b; white-space: nowrap; min-width: 36px; }
/* Chips: desktop-style — inactive: white/gray-border; active: cyan gradient */
.kite-sfb-mob-chip { padding: 5px 12px; border-radius: 20px; font-size: .78rem; font-weight: 600; border: 1px solid #cbd5e1 !important; background: #fff !important; color: #475569 !important; cursor: pointer; font-family: var(--kite-font); transition: background .15s, border-color .15s, color .15s; -webkit-tap-highlight-color: transparent; }
.kite-sfb-mob-chip:hover { background: #f1f5f9 !important; border-color: #94a3b8 !important; color: #1e293b !important; }
.kite-sfb-mob-chip:focus { outline: none !important; box-shadow: none !important; }
.kite-sfb-mob-chip:active { background: #e2e8f0 !important; }
.kite-sfb-mob-chip.kite-sfb-mob-active { background: linear-gradient(135deg,#06b6d4,#0284c7) !important; color: #fff !important; border-color: transparent !important; }
.kite-sfb-mob-footer { padding: 4px 16px 10px; display: flex; justify-content: flex-start; }
.kite-sfb-mob-clear { font-size: .73rem; color: #94a3b8; background: none !important; border: none !important; cursor: pointer; font-family: var(--kite-font); padding: 4px 6px; -webkit-tap-highlight-color: transparent; }
.kite-sfb-mob-clear:hover { color: #0284c7 !important; }

/* ── v1.5.8/9 Mobile layout overrides (AFTER base — correct cascade order) ── */
@media (max-width: 768px) {
  /* Nav: hamburger visible, desktop items hidden */
  .kite-nav-links   { display: none !important; }
  .kite-nav-actions { display: none !important; }
  .kite-mobile-toggle { display: flex; }
  .kite-nav-inner { justify-content: space-between; }

  /* Mobile menu panel: explicit full-viewport dimensions to avoid Safari backdrop-filter clipping */
  .kite-mobile-menu.kite-menu-open {
    position: fixed !important;
    top: var(--kite-nav-h) !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: calc(100vh - var(--kite-nav-h)) !important;
    padding: 16px;
    gap: 4px;
    overflow-y: auto;
    z-index: 99998;
  }
  .kite-mobile-link { font-size: 1rem; padding: 14px 16px; }

  /* Quicklinks: 2-col grid */
  .kite-ql-grid { grid-template-columns: repeat(2,1fr); padding: 24px 16px; gap: 10px; }
  .kite-ql-item { padding: 18px 12px; }

  /* Spots: hide sticky desktop filter bar, show mobile accordion */
  .kite-sfb-bar { display: none !important; }
  .kite-sfb-mob { display: block !important; width: 100% !important; max-width: none !important; align-self: stretch; box-sizing: border-box; }

  /* Spots dashboard: column layout, transparent bg to remove dark bleed */
  .kite-spots-dashboard { flex-direction: column; background: transparent; }
  .kite-spots-dashboard .kite-spots-split { flex: 0 0 auto !important; min-height: 0 !important; }
  .kite-forecast-panel { flex: none; width: 100%; max-width: 100%; border-left: none; border-bottom: 1px solid rgba(255,255,255,.1); }
  .kite-fcp-cards { max-height: 240px; }

  /* Spots split: stack map + list vertically */
  .kite-spots-split { flex-direction: column; }
  .kite-splits-map { width: 100%; min-width: 0; min-height: 0; }
  .kite-splits-list { flex: none; max-width: 100%; max-height: 420px; overflow-y: auto; border-right: none; border-top: 1px solid #e2e8f0; }
  .kite-splits-scroll { max-height: none; overflow: visible; }
  .kite-map.kite-splits-map-el { height: 300px !important; }
}

/* ── v1.6.3 Schools promoted section + card styles ── */
.kite-schools-page { direction: rtl; }
.kite-badge-promoted { background: #7c3aed; color: #fff; font-size: .7rem; font-weight: 700; padding: 3px 8px; border-radius: 8px; }
.kite-school-card--promoted { border: 2px solid #a78bfa; box-shadow: 0 4px 20px rgba(124,58,237,.15); }
.kite-school-card--promoted:hover { box-shadow: 0 16px 40px rgba(124,58,237,.22); }

/* ── v1.6.4 School reviews ── */
.kite-ssp-reviews { max-width: 1280px; margin: 0 auto; padding: 32px 20px 48px; direction: rtl; }
.kite-rv-wrapper { }
.kite-rv-summary { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid #e2e8f0; }
.kite-rv-avg { font-size: 3rem; font-weight: 800; color: #0f172a; line-height: 1; }
.kite-rv-stars { display: flex; gap: 2px; }
.kite-rv-star { color: #fbbf24; font-size: 1.25rem; }
.kite-rv-star--empty { color: #d1d5db; font-size: 1.25rem; }
.kite-rv-count { font-size: .9rem; color: #6b7280; margin-top: 4px; }
.kite-rv-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
.kite-rv-item { background: #f8fafc; border-radius: 10px; padding: 16px; }
.kite-rv-item-header { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-bottom: 8px; }
.kite-rv-author { font-weight: 700; font-size: .95rem; }
.kite-rv-date { font-size: .8rem; color: #9ca3af; margin-right: auto; }
.kite-rv-item-stars { display: flex; gap: 2px; }
.kite-rv-item-stars .kite-rv-star,
.kite-rv-item-stars .kite-rv-star--empty { font-size: .9rem; }
.kite-rv-text { color: #374151; font-size: .925rem; line-height: 1.65; margin: 0; }
.kite-rv-empty { color: #9ca3af; font-style: italic; text-align: center; padding: 16px 0 8px; margin: 0; }
.kite-rv-form-wrap { border-top: 1px solid #e2e8f0; margin-top: 24px; padding-top: 24px; }
.kite-rv-form-title { font-size: 1.05rem; font-weight: 700; margin: 0 0 16px; color: #0f172a; }
.kite-rv-star-picker { display: flex; flex-direction: row-reverse; gap: 2px; direction: ltr; }
.kite-rv-star-picker input[type="radio"] { display: none; }
.kite-rv-star-picker label { font-size: 2rem; color: #d1d5db; cursor: pointer; transition: color .15s; line-height: 1; }
.kite-rv-star-picker input:checked ~ label,
.kite-rv-star-picker label:hover,
.kite-rv-star-picker label:hover ~ label { color: #fbbf24; }
.kite-rv-login-msg { background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 10px; padding: 16px 20px; text-align: center; color: #374151; margin-top: 16px; }
.kite-rv-login-msg a { color: #7c3aed; text-decoration: underline; }
.kite-rv-submitted-notice { background: #ecfdf5; border: 1px solid #6ee7b7; border-radius: 10px; color: #065f46; padding: 14px 18px; font-weight: 600; margin-bottom: 20px; direction: rtl; }

/* ── v1.7.0 User identity ── */
.kite-rv-avatar { display: flex; align-items: center; }
.kite-rv-avatar img, .kite-rv-avatar-img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.kite-rv-badge-reg { font-size: .65rem; font-weight: 700; background: #0e7490; color: #fff; border-radius: 6px; padding: 2px 7px; white-space: nowrap; }
.kite-fr-user--reg { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.kite-fr-avatar, .kite-fr-user--reg img { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.kite-fr-badge-reg { font-size: .6rem; font-weight: 700; background: #0e7490; color: #fff; border-radius: 5px; padding: 2px 6px; white-space: nowrap; }
.kite-account-guest { background: #f8fafc; border: 1px solid #e2e8f0; border-radius: 12px; padding: 24px; text-align: center; direction: rtl; }
.kite-account-guest a { color: #7c3aed; text-decoration: underline; }
.kite-account-wrap { max-width: 560px; margin: 32px auto; }

/* ── v1.7.1 Navbar auth/user links ── */
.kite-nav-auth { display: flex; align-items: center; gap: 6px; }
.kite-nav-user { display: flex; align-items: center; gap: 10px; }
.kite-nav-login,
.kite-nav-register,
.kite-nav-user-link,
.kite-nav-logout { text-decoration: none; white-space: nowrap; font-family: var(--kite-font); }
.kite-nav-login { font-size: .875rem; font-weight: 600; color: #0f172a; padding: 6px 12px; border-radius: 8px; }
.kite-nav-login:hover { background: rgba(0,0,0,.06); color: #0f172a; }
.kite-nav-register { font-size: .875rem; font-weight: 600; color: #fff; background: #0891b2; padding: 6px 14px; border-radius: 8px; }
.kite-nav-register:hover { background: #0e7490; color: #fff; }
.kite-nav-user-link { font-size: .875rem; font-weight: 600; color: #0f172a; padding: 6px 10px; border-radius: 8px; max-width: 130px; overflow: hidden; text-overflow: ellipsis; display: inline-block; }
.kite-nav-user-link:hover { background: rgba(0,0,0,.06); color: #0f172a; }
.kite-nav-logout { font-size: .8rem; color: #64748b; padding: 4px 8px; border-radius: 6px; }
.kite-nav-logout:hover { color: #ef4444; background: rgba(239,68,68,.08); }

/* ── v1.7.2 Account dropdown ── */
.kite-nav-account { position: relative; display: flex; align-items: center; }
.kite-nav-account-btn {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(0,0,0,.06); border: none; cursor: pointer;
  padding: 0; color: #0f172a; transition: background .2s; flex-shrink: 0;
}
.kite-nav-account-btn:hover,
.kite-nav-account-btn.kite-account-open { background: rgba(0,0,0,.12); }
.kite-nav-avatar-img { width: 32px; height: 32px; border-radius: 50%; object-fit: cover; display: block; }
.kite-nav-user-icon { display: block; }
.kite-nav-account-dd {
  display: none; position: absolute; top: calc(100% + 8px); right: 0;
  min-width: 180px; background: #fff; border: 1px solid #e2e8f0;
  border-radius: 12px; box-shadow: 0 8px 32px rgba(0,0,0,.12);
  padding: 6px; z-index: 9999; direction: rtl;
}
.kite-nav-account-dd.kite-account-open { display: block; }
.kite-nav-dd-name {
  display: block; font-size: .78rem; font-weight: 600; color: #94a3b8;
  padding: 8px 10px 4px; white-space: nowrap; overflow: hidden;
  text-overflow: ellipsis; max-width: 168px;
}
.kite-nav-dd-item {
  display: block; padding: 8px 10px; border-radius: 8px;
  font-size: .875rem; font-weight: 500; color: #0f172a;
  text-decoration: none; white-space: nowrap;
  transition: background .15s, color .15s; font-family: var(--kite-font);
}
.kite-nav-dd-item:hover { background: #f8fafc; color: #0f172a; }
.kite-nav-dd-sep { height: 1px; background: #e2e8f0; margin: 4px 0; }
.kite-nav-dd-logout { color: #ef4444; }
.kite-nav-dd-logout:hover { background: rgba(239,68,68,.06); color: #dc2626; }
.kite-nav-dd-register { background: #0891b2; color: #fff !important; margin-top: 2px; text-align: center; }
.kite-nav-dd-register:hover { background: #0e7490 !important; color: #fff !important; }
.kite-mobile-account-block { border-top: 1px solid rgba(255,255,255,.1); padding-top: 4px; margin-top: 4px; }

/* ── v1.8.15 UX polish ─────────────────────────────────────── */

/* Reports section header CTA — cyan button override (desktop ≥640px) */
.kite-lw-reports-section .kite-sh-viewall {
  background: #06b6d4 !important;
  color: #fff !important;
  border-color: #06b6d4 !important;
}
.kite-lw-reports-section .kite-sh-viewall:hover,
.kite-lw-reports-section .kite-sh-viewall:focus {
  background: #0891b2 !important;
  border-color: #0891b2 !important;
  color: #fff !important;
}

/* Mobile CTA below field reports grid — hidden by default everywhere */
.kite-fr-mobile-cta-row { display: none; }

/* Show only inside reports section on mobile (<640px) */
@media (max-width: 639px) {
  .kite-lw-reports-section .kite-fr-mobile-cta-row {
    display: flex;
    justify-content: center;
    margin-top: 20px;
  }
}

.kite-fr-mobile-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #06b6d4 !important;
  color: #fff !important;
  text-decoration: none;
  padding: 11px 24px;
  border-radius: 10px;
  font-size: .875rem;
  font-weight: 700;
  font-family: var(--kite-font);
  border: none;
  cursor: pointer;
  transition: background .2s;
}
.kite-fr-mobile-cta-btn:hover,
.kite-fr-mobile-cta-btn:focus {
  background: #0891b2 !important;
  color: #fff !important;
  text-decoration: none;
}

/* Wind station source credit */
.kite-ws-source {
  font-size: .7rem;
  color: #94a3b8;
  padding: 6px 16px 10px;
  border-top: 1px solid #f1f5f9;
  line-height: 1.4;
}
.kite-ws-source a {
  color: #0891b2;
  text-decoration: none;
}
.kite-ws-source a:hover { text-decoration: underline; }

/* ── v1.9.0 IMS Sea Forecast Fallback ─────────────────────────── */
.kite-ims-fallback {
  padding: 16px 20px 12px;
  direction: rtl;
}
.kite-ims-fb-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 8px;
  padding: 5px 12px;
  font-size: .78rem;
  font-weight: 700;
  color: #1e40af;
  margin-bottom: 16px;
}
.kite-ims-fb-region { margin-bottom: 14px; }
.kite-ims-fb-region:last-child { margin-bottom: 6px; }
.kite-ims-fb-region-name {
  font-size: .8rem;
  font-weight: 700;
  color: #334155;
  margin: 0 0 6px;
}
.kite-ims-fb-period {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  border-top: 1px solid #f1f5f9;
  font-size: .82rem;
  color: #475569;
}
.kite-ims-fb-time {
  font-size: .75rem;
  font-weight: 700;
  color: #94a3b8;
  min-width: 80px;
  flex-shrink: 0;
  direction: ltr;
  display: inline-block;
}
.kite-ims-fb-wind { font-weight: 600; color: #0f172a; }
.kite-ims-fb-wave { color: #0e7490; }
.kite-ims-fb-temp { color: #6b7280; font-size: .78rem; }
.kite-ims-fb-meta {
  font-size: .7rem;
  color: #94a3b8;
  margin: 10px 0 4px;
  direction: ltr;
  text-align: right;
}
.kite-ims-fb-disclaimer {
  font-size: .7rem;
  color: #d97706;
  margin: 0;
  line-height: 1.5;
}
@media (max-width: 600px) {
  .kite-ims-fb-period { flex-direction: column; align-items: flex-start; gap: 4px; }
  .kite-ims-fb-time   { min-width: unset; }
}

/* ── v1.9.3 Quick-panel IMS compact card (dark-bg readable) ── */
.kite-fcp-card-ims { border-top: 2px solid #0ea5e9; }
.kite-fcp-ims-badge {
  background: rgba(14,165,233,.18);
  color: #7dd3fc;
  border: 1px solid rgba(14,165,233,.3);
}
.kite-fcp-ims-regions { padding: 4px 0 2px; }
.kite-fcp-ims-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 6px;
  font-size: .78rem;
  padding: 3px 0;
  border-top: 1px solid rgba(255,255,255,.07);
  direction: rtl;
}
.kite-fcp-ims-row:first-child { border-top: none; }
.kite-fcp-ims-region { color: #cbd5e1; font-weight: 600; flex-shrink: 0; }
.kite-fcp-ims-wind   { color: #f1f5f9; font-size: .75rem; text-align: left; direction: ltr; }
.kite-fcp-ims-src    { color: #64748b; font-size: .68rem; }

/* ── v2.0.0 Field Report — auth notice + reporter display ─────────────── */
.kite-fr-anon-notice {
  background: #eff6ff;
  border: 1px solid #bfdbfe;
  border-radius: 10px;
  padding: 14px 16px 12px;
  margin-bottom: 16px;
  direction: rtl;
}
.kite-fr-anon-notice-msg {
  font-size: .85rem;
  color: #1e40af;
  margin: 0 0 12px;
  line-height: 1.55;
}
.kite-fr-anon-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.kite-fr-auth-btn {
  font-size: .8rem;
  padding: 7px 14px;
}
.kite-fr-skip-btn {
  background: transparent;
  color: #64748b;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  padding: 6px 12px;
  font-size: .78rem;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--kite-font);
  transition: all .2s;
}
.kite-fr-skip-btn:hover { background: #f1f5f9; color: #334155; }
.kite-fr-logged-note {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 8px;
  padding: 8px 12px;
  margin-bottom: 12px;
  font-size: .82rem;
  color: #166534;
  direction: rtl;
}
.kite-fr-logged-lbl { font-weight: 500; }
.kite-fr-anon-icon { font-style: normal; margin-left: 4px; }
@media (max-width: 480px) {
  .kite-fr-anon-btns { flex-direction: column; align-items: stretch; }
  .kite-fr-auth-btn, .kite-fr-skip-btn { text-align: center; }
}

/* ── v2.1.0 Account Dashboard ─────────────────────────────────────────── */
.kite-dash { max-width: 720px; margin: 0 auto; padding: 24px 16px; direction: rtl; }

.kite-dash-profile {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 20px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.kite-dash-avatar-wrap { flex-shrink: 0; }
.kite-dash-avatar-img { width: 64px; height: 64px; border-radius: 50%; object-fit: cover; display: block; }
.kite-dash-profile-info { flex: 1; min-width: 0; }
.kite-dash-greeting { font-size: 1.2rem; font-weight: 700; color: #0f172a; margin: 0 0 10px; }
.kite-dash-meta { display: flex; flex-wrap: wrap; gap: 8px; }
.kite-dash-meta-item { font-size: .8rem; color: #475569; background: #e2e8f0; border-radius: 20px; padding: 3px 10px; }
.kite-dash-meta-item a { color: #0891b2; text-decoration: none; }
.kite-dash-meta-item a:hover { text-decoration: underline; }
.kite-dash-edit-btn { align-self: flex-start; white-space: nowrap; font-size: .82rem !important; padding: 7px 14px !important; }

.kite-dash-section { margin-bottom: 28px; }
.kite-dash-section-title { font-size: .95rem; font-weight: 700; color: #0f172a; margin: 0 0 12px; padding-bottom: 8px; border-bottom: 2px solid #e2e8f0; }

.kite-dash-empty { color: #94a3b8; font-size: .875rem; padding: 10px 0; margin: 0; }

.kite-dash-list { display: flex; flex-direction: column; gap: 8px; }
.kite-dash-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: .82rem;
  direction: rtl;
}
.kite-dash-row-date { color: #94a3b8; font-size: .73rem; flex-shrink: 0; }
.kite-dash-row-spot { font-weight: 600; color: #0f172a; }
.kite-dash-row-meta { color: #475569; }
.kite-dash-row-note { color: #64748b; font-style: italic; flex-basis: 100%; margin-top: 2px; }
.kite-dash-stars { color: #f59e0b; letter-spacing: 1px; }

.kite-dash-badge { font-size: .67rem; font-weight: 700; border-radius: 6px; padding: 2px 8px; white-space: nowrap; }
.kite-dash-badge--publish { background: #dcfce7; color: #166534; }
.kite-dash-badge--pending { background: #fef9c3; color: #92400e; }
.kite-dash-badge--draft   { background: #f1f5f9; color: #64748b; }

@media (max-width: 600px) {
  .kite-dash-profile { flex-direction: column; }
  .kite-dash-edit-btn { width: 100%; text-align: center !important; }
}

/* ── v2.3.0 Guides Hub ────────────────────────────────────────────────── */
.kite-guides-hub { direction: rtl; }

.kite-gh-filters {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 28px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 16px 20px;
}
.kite-gh-filter-group { display: flex; align-items: flex-start; gap: 10px; flex-wrap: wrap; }
.kite-gh-filter-label { font-size: .8rem; font-weight: 700; color: #475569; padding-top: 4px; flex-shrink: 0; min-width: 36px; }
.kite-gh-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.kite-gh-chip {
  display: inline-block;
  padding: 5px 13px;
  border-radius: 20px;
  border: 1px solid #cbd5e1;
  background: #fff;
  color: #475569;
  font-size: .8rem;
  font-weight: 600;
  text-decoration: none !important;
  transition: all .15s;
  white-space: nowrap;
}
.kite-gh-chip:hover { border-color: #0891b2; color: #0891b2; }
.kite-gh-chip--active { background: #0891b2; border-color: #0891b2; color: #fff !important; }

.kite-gh-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1080px;
  margin-inline: auto;
  padding: 16px 24px 32px;
  box-sizing: border-box;
}
@media (max-width: 900px) {
  .kite-gh-grid { grid-template-columns: repeat(2, 1fr); }
}
.kite-gh-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s, transform .2s;
}
.kite-gh-card:hover { box-shadow: 0 6px 20px rgba(0,0,0,.1); transform: translateY(-2px); }
.kite-gh-card-img-wrap { aspect-ratio: 16/9; overflow: hidden; }
.kite-gh-card-img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .3s; }
.kite-gh-card:hover .kite-gh-card-img { transform: scale(1.04); }
.kite-gh-card-body { padding: 16px 18px 18px; display: flex; flex-direction: column; flex: 1; }
.kite-gh-card-chips { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 10px; align-items: center; }
.kite-gh-chip-sm { font-size: .68rem; font-weight: 700; border-radius: 6px; padding: 2px 8px; white-space: nowrap; }
.kite-gh-chip-cat { background: #eff6ff; color: #1e40af; }
.kite-gh-chip-lvl { background: #f0fdf4; color: #166534; }
.kite-gh-read-time { font-size: .72rem; color: #94a3b8; }
.kite-gh-card-title { font-size: .975rem; font-weight: 700; color: #0f172a; margin: 0 0 8px; line-height: 1.35; }
.kite-gh-card-excerpt { font-size: .82rem; color: #475569; line-height: 1.55; margin: 0 0 14px; flex: 1; }
.kite-gh-card-cta { display: inline-block; font-size: .82rem; font-weight: 700; color: #0891b2; text-decoration: none !important; margin-top: auto; }
.kite-gh-card-cta:hover { color: #0e7490; }
.kite-gh-empty { color: #94a3b8; font-size: .9rem; padding: 20px 0; }
.kite-gh-empty a { color: #0891b2; }

@media (max-width: 640px) {
  .kite-gh-grid { grid-template-columns: 1fr; padding: 12px 16px 20px; }
  .kite-gh-filter-group { flex-direction: column; gap: 6px; }
}

/* ── v2.3.0 Single Guide Article ──────────────────────────────────────── */
.kite-guide-page { background: #f8fafc; min-height: 80vh; direction: rtl; }

.kite-guide-hero {
  background: #0f172a;
  min-height: 280px;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
}
.kite-guide-hero--img { min-height: 360px; }
.kite-guide-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .45;
}
.kite-guide-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,23,42,.9) 0%, rgba(15,23,42,.3) 100%);
}
.kite-guide-hero-inner { position: relative; z-index: 1; padding: 32px 24px 36px; max-width: 1120px; margin: 0 auto; width: 100%; }
.kite-guide-back-link { display: inline-block; color: #94a3b8; font-size: .8rem; text-decoration: none; margin-bottom: 14px; transition: color .15s; }
.kite-guide-back-link:hover { color: #7dd3fc; }
.kite-guide-title { font-size: clamp(1.5rem, 4vw, 2.25rem); font-weight: 800; color: #fff; margin: 0 0 16px; line-height: 1.2; }
.kite-guide-meta-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.kite-guide-chip { font-size: .75rem; font-weight: 600; border-radius: 20px; padding: 3px 12px; white-space: nowrap; }
.kite-guide-chip--cat  { background: rgba(14,165,233,.25); color: #7dd3fc; }
.kite-guide-chip--lvl  { background: rgba(34,197,94,.2); color: #86efac; }
.kite-guide-chip--time { background: rgba(255,255,255,.1); color: #cbd5e1; }

.kite-guide-wrap { max-width: 1120px; margin: 0 auto; padding: 36px 24px 60px; }
.kite-guide-intro { font-size: 1.05rem; color: #475569; line-height: 1.7; margin: 0 0 28px; border-right: 3px solid #0891b2; padding-right: 16px; }

/* Styled article body */
.kite-prose { font-size: .975rem; color: #334155; line-height: 1.8; }
.kite-prose h2 { font-size: 1.35rem; font-weight: 800; color: #0f172a; margin: 2em 0 .75em; padding-bottom: .4em; border-bottom: 2px solid #e2e8f0; }
.kite-prose h3 { font-size: 1.1rem; font-weight: 700; color: #1e293b; margin: 1.6em 0 .6em; }
.kite-prose p { margin: 0 0 1.2em; }
.kite-prose ul, .kite-prose ol { margin: 0 0 1.2em; padding-right: 1.4em; }
.kite-prose li { margin-bottom: .4em; }
.kite-prose strong { color: #0f172a; }
.kite-prose a { color: #0891b2; text-decoration: underline; }
.kite-prose img { max-width: 100%; height: auto; border-radius: 10px; margin: 1em 0; }
.kite-prose blockquote { border-right: 4px solid #0891b2; margin: 1.5em 0; padding: .75em 1.25em; background: #eff6ff; color: #1e40af; border-radius: 0 8px 8px 0; }

/* Callout boxes */
.kite-guide-tip, .kite-guide-info, .kite-guide-warning {
  border-radius: 10px;
  padding: 14px 18px;
  margin: 1.5em 0;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  font-size: .9rem;
  line-height: 1.6;
}
.kite-guide-tip::before    { content: '💡'; font-size: 1.1rem; flex-shrink: 0; }
.kite-guide-info::before   { content: 'ℹ️'; font-size: 1.1rem; flex-shrink: 0; }
.kite-guide-warning::before{ content: '⚠️'; font-size: 1.1rem; flex-shrink: 0; }
.kite-guide-tip     { background: #fefce8; color: #854d0e; border: 1px solid #fde68a; }
.kite-guide-info    { background: #eff6ff; color: #1e40af; border: 1px solid #bfdbfe; }
.kite-guide-warning { background: #fef2f2; color: #991b1b; border: 1px solid #fca5a5; }

/* Related guides */
.kite-guide-related { margin-top: 48px; border-top: 2px solid #e2e8f0; padding-top: 32px; }
.kite-guide-related-title { font-size: 1.05rem; font-weight: 800; color: #0f172a; margin: 0 0 18px; }
.kite-guide-related-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 14px; }
.kite-guide-related-card { display: block; background: #fff; border: 1px solid #e2e8f0; border-radius: 10px; overflow: hidden; text-decoration: none !important; transition: box-shadow .2s; }
.kite-guide-related-card:hover { box-shadow: 0 4px 12px rgba(0,0,0,.1); }
.kite-guide-related-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; display: block; }
.kite-guide-related-body { padding: 10px 12px 12px; }
.kite-guide-related-name { font-size: .85rem; font-weight: 700; color: #0f172a; margin: 6px 0 6px; line-height: 1.3; }

/* CTA block */
.kite-guide-cta-block { margin-top: 48px; background: #0f172a; border-radius: 14px; padding: 28px 24px; text-align: center; }
.kite-guide-cta-title { color: #fff; font-size: 1.05rem; font-weight: 700; margin: 0 0 18px; }
.kite-guide-cta-row { display: flex; justify-content: center; flex-wrap: wrap; gap: 12px; }
.kite-guide-cta-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 10px;
  color: #f1f5f9 !important;
  font-size: .875rem;
  font-weight: 600;
  text-decoration: none !important;
  transition: background .2s;
}
.kite-guide-cta-btn:hover { background: rgba(255,255,255,.15); }
.kite-guide-cta-icon { font-size: 1.1rem; }

@media (max-width: 600px) {
  .kite-guide-hero-inner { padding: 24px 16px 28px; }
  .kite-guide-wrap { padding: 24px 16px 48px; }
  .kite-guide-related-grid { grid-template-columns: 1fr 1fr; }
  .kite-guide-cta-row { flex-direction: column; align-items: stretch; }
}

/* ── v2.3.1 Guides hub search + filter bar ────────────────────────────── */
.kite-gh-filter-bar {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 16px 20px;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.kite-gh-search-form { margin: 0; }
.kite-gh-search-wrap {
  display: flex;
  align-items: center;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 0 12px;
  gap: 8px;
}
.kite-gh-search-icon { font-style: normal; color: #94a3b8; flex-shrink: 0; }
.kite-gh-search-input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 10px 0;
  font-size: .9rem;
  color: #0f172a;
  font-family: var(--kite-font);
  direction: rtl;
  outline: none;
}
.kite-gh-search-input::placeholder { color: #94a3b8; }
.kite-gh-search-btn {
  background: #0891b2;
  color: #fff;
  border: none;
  border-radius: 7px;
  padding: 6px 14px;
  font-size: .82rem;
  font-weight: 700;
  cursor: pointer;
  font-family: var(--kite-font);
  white-space: nowrap;
  transition: background .15s;
}
.kite-gh-search-btn:hover { background: #0e7490; }

/* Replace old kite-gh-filters with kite-gh-filter-bar above */
.kite-gh-filters { display: none; }

/* Guides hero background (v2.3.1) */
.kite-ph-bg-guides {
  background: linear-gradient(135deg, #0c4a6e 0%, #0891b2 60%, #0e7490 100%);
  opacity: .9;
}

/* ── v2.3.1 Single guide: subtitle + video ────────────────────────────── */
.kite-guide-subtitle-hero {
  font-size: 1.05rem;
  color: rgba(255,255,255,.8);
  margin: 8px 0 14px;
  line-height: 1.5;
  font-weight: 400;
}
.kite-guide-video {
  margin: 0 0 28px;
  border-radius: 12px;
  overflow: hidden;
  background: #0f172a;
}
.kite-guide-video-inner { position: relative; padding-bottom: 56.25%; height: 0; overflow: hidden; }
.kite-guide-video-inner iframe,
.kite-guide-video-inner embed,
.kite-guide-video-inner object { position: absolute; top: 0; right: 0; width: 100%; height: 100%; border: 0; }
.kite-guide-video-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 20px;
  background: #0891b2;
  color: #fff !important;
  border-radius: 10px;
  font-weight: 700;
  font-size: .9rem;
  text-decoration: none !important;
  transition: background .15s;
}
.kite-guide-video-link:hover { background: #0e7490; }

@media (max-width: 640px) {
  .kite-gh-filter-bar { padding: 12px 14px; }
  .kite-gh-search-wrap { padding: 0 10px; }
}

/* ── v2.3.5 Guides hub filter bar — full-bleed strip ──────────────────── */
/* Classic Elementor (sections): zero section/container/column padding */
.elementor-section:has(.kite-guides-filter-bar) {
  padding: 0 !important;
  margin-top: 0 !important;
}
.elementor-section:has(.kite-guides-filter-bar) > .elementor-container {
  max-width: 100% !important;
  padding: 0 !important;
}
.elementor-section:has(.kite-guides-filter-bar) .elementor-column,
.elementor-section:has(.kite-guides-filter-bar) .elementor-widget-wrap,
.elementor-section:has(.kite-guides-filter-bar) .elementor-widget-container {
  padding: 0 !important;
  overflow: visible !important;
}
/* New Elementor (Flexbox Container / .e-con): same treatment */
.e-con:has(.kite-guides-filter-bar) {
  padding: 0 !important;
  margin-top: 0 !important;
}
.e-con:has(.kite-guides-filter-bar) > .e-con-inner {
  max-width: 100% !important;
  padding: 0 !important;
  overflow: visible !important;
}
/* Hub wrapper: no extra margin; allow full-bleed filter bar to visually escape */
.kite-guides-hub { margin: 0 !important; overflow: visible !important; }
/* Guides filter bar: full-bleed sticky strip.
   width: 100vw + margin-left: calc(50% - 50vw) breaks the element out of any
   parent container, making it span the full viewport — exactly like Schools. */
.kite-guides-filter-bar {
  position: sticky !important;
  top: var(--kite-nav-h) !important;
  z-index: 30 !important;
  width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-bottom: 0;
  border-radius: 0;
  border-left: none;
  border-right: none;
  border-top: none;
}
/* Form element as flex row — prevent theme button/form colour contamination */
.kite-gh-sfb-form { margin: 0; }
/* Force correct colours/shape on the level filter toggle */
.kite-guides-filter-bar .kite-sfb-adv-toggle {
  -webkit-appearance: none;
  appearance: none;
  border-radius: 12px !important;
  background: #fff !important;
  color: #475569 !important;
  border: 1px solid #e2e8f0 !important;
}
.kite-guides-filter-bar .kite-sfb-adv-toggle:hover {
  border-color: #94a3b8 !important;
  background: #f8fafc !important;
  color: #1e293b !important;
}
.kite-guides-filter-bar .kite-sfb-adv-toggle.kite-adv-open {
  background: #1e293b !important;
  color: #fff !important;
  border-color: transparent !important;
}
/* Clear filters link */
.kite-gh-clear-link {
  display: inline-flex; align-items: center; gap: 4px;
  font-size: .73rem; font-weight: 600; color: #64748b;
  text-decoration: none !important; white-space: nowrap;
  padding: 5px 10px; border-radius: 10px; border: 1px solid #e2e8f0;
  background: #fff; transition: all .15s; font-family: var(--kite-font);
}
.kite-gh-clear-link:hover { color: #0891b2 !important; border-color: #0891b2; }
/* Card clickable: stretched overlay */
.kite-gh-card { position: relative; }
.kite-gh-card-overlay { position: absolute; inset: 0; z-index: 1; border-radius: inherit; display: block; }
.kite-gh-card-cta { position: relative; z-index: 2; }
/* Card image: relative position for badge overlay */
.kite-gh-card-img-wrap { position: relative; }
/* Level badge overlay on card image */
.kite-gh-lvl-badge {
  position: absolute; top: 10px; right: 10px; z-index: 2;
  font-size: .68rem; font-weight: 700; padding: 3px 9px; border-radius: 20px;
  white-space: nowrap; line-height: 1.4;
}
.kite-gh-lvl-beginners    { background: #10b981; color: #fff; }
.kite-gh-lvl-advanced     { background: #0369a1; color: #fff; }
.kite-gh-lvl-professional { background: #7c3aed; color: #fff; }
/* Filter active count badge on the level filter button */
.kite-sfb-adv-badge {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 16px; height: 16px; border-radius: 50%; padding: 0 3px;
  background: #06b6d4; color: #fff; font-size: .65rem; font-weight: 700; line-height: 1;
  margin-right: 2px;
}
@media (max-width: 640px) {
  .kite-guides-filter-bar .kite-sfb-inner { flex-wrap: wrap; }
  .kite-guides-filter-bar .kite-sfb-chips { order: 2; flex-wrap: wrap; }
}

/* ============================================================
   v2.4.0 — Homepage hero full-bleed + section CTA polish
   ============================================================ */

/* Task 1a — Hero full-bleed: strip Elementor wrapper padding/max-width
   for any Elementor section that contains .kite-home-hero.
   :has() supported Chromium 105+, Safari 15.4+, Firefox 121+;
   no-ops gracefully in older engines. */
.elementor-section:has(.kite-home-hero),
.elementor-section:has(.kite-home-hero) > .elementor-container {
  max-width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  width: 100% !important;
}
.elementor-section:has(.kite-home-hero) .elementor-column,
.elementor-section:has(.kite-home-hero) .elementor-widget-container {
  padding: 0 !important;
  max-width: 100% !important;
  width: 100% !important;
}

/* Task 1b — Canonical hero height (overrides v1.0.7/v1.0.8/v1.0.9 conflicts).
   svh accounts for collapsible mobile browser chrome; fallback 68px matches
   --kite-nav-h default so it works even before the CSS var is resolved. */
.kite-home-hero {
  min-height: calc(100svh - var(--kite-nav-h, 68px));
}

/* Task 7 — Section CTA buttons: cyan outline, rounder corners, better hover */
.kite-sh-viewall {
  border-radius: 20px;
}
.kite-sh-viewall.light {
  color: #0891b2;
  border-color: #a5f3fc;
  background: transparent;
}
.kite-sh-viewall.light:hover {
  background: #ecfeff;
  color: #0369a1;
  border-color: #22d3ee;
}

/* ============================================================
   v2.4.1 — Hero/stats separation + homepage polish
   ============================================================ */

/* Hero: no longer contains the stats strip; keep flex-column
   justify-end so content/CTAs sit near the bottom of the image. */
.kite-home-hero {
  min-height: calc(100svh - var(--kite-nav-h, 68px));
  justify-content: flex-end;
}

/* Stats strip: now a sibling BELOW the hero, not inside it.
   Dark solid background replaces the former backdrop-filter. */
.kite-hero-stats {
  background: #020d1c;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-top: none;
  border-bottom: 1px solid rgba(255,255,255,.06);
}

/* 4-button CTA: 2x2 grid on narrow screens */
@media (max-width: 600px) {
  .kite-hero-ctas {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
  .kite-btn-hero-primary,
  .kite-btn-hero-ghost {
    justify-content: center;
    text-align: center;
  }
}

/* Conditions card: update timestamp */
.kite-hc-updated {
  font-size: .7rem;
  color: #94a3b8;
  padding: 0 24px 14px;
  margin: 0;
}
/* Conditions card: station/source caption below wind reading */
.kite-hc-source {
  font-size: .68rem;
  color: #94a3b8;
  margin-top: 5px;
  line-height: 1.3;
}

/* Section + card reveal animation (v2.7.1)
   Safe .kite-js pattern: content always visible without JS.
   JS adds kite-js to body before any hiding rules take effect. */

/* Section-level entrance: fade + slide up */
.kite-reveal {
  transition: opacity 750ms cubic-bezier(0.22, 1, 0.36, 1),
              transform 750ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}
.kite-js .kite-reveal:not(.kite-revealed) {
  opacity: 0;
  transform: translateY(32px);
}
.kite-reveal.kite-revealed {
  opacity: 1;
  transform: none;
}

/* Card-level stagger: uses --kite-reveal-delay CSS var set by JS */
.kite-reveal-card {
  transition: opacity 600ms cubic-bezier(0.22, 1, 0.36, 1) var(--kite-reveal-delay, 0ms),
              transform 600ms cubic-bezier(0.22, 1, 0.36, 1) var(--kite-reveal-delay, 0ms);
  will-change: opacity, transform;
}
.kite-js .kite-reveal-card:not(.kite-reveal-card--revealed) {
  opacity: 0;
  transform: translateY(20px);
}
.kite-reveal-card--revealed {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .kite-reveal,
  .kite-reveal-card { transition: none; will-change: auto; }
  .kite-js .kite-reveal:not(.kite-revealed),
  .kite-js .kite-reveal-card:not(.kite-reveal-card--revealed) { opacity: 1; transform: none; }
}

/* ============================================================
   v2.5.0 — Internal page hero height normalization (Phase 1)
   CSS-only. No PHP/Elementor changes.
   Homepage hero (.kite-home-hero) is not touched.
   ============================================================ */

/* Base page-hero system (schools, guides archives): 260px → 300px */
.kite-page-hero { min-height: 300px; }

/* Spots archive hero: wrap has no min-height (only padding-top inline).
   Add 300px to make it consistent with other archive heroes. */
.kite-sph-wrap { min-height: 300px; }

/* Live Wind archive hero: wrap has no min-height (only padding-top inline).
   Slightly taller than others to accommodate badges + stats row. */
.kite-lwh-wrap { min-height: 320px; }

/* Gear archive hero: 280px → 300px */
.kite-gear-hero { min-height: 300px; }

/* Shops archive hero: already 300px, rule is a no-op / future-proofing */
.kite-shops-hero { min-height: 300px; }

/* Single guide article hero: base 280px → 300px.
   Re-declare the --img variant so it remains taller when a photo exists. */
.kite-guide-hero { min-height: 300px; }
.kite-guide-hero--img { min-height: 360px; }

/* Single spot page (.kite-spp-hero, 460px) — intentionally not changed;
   it needs full height for title + badges + description + actions. */

/* Mobile: all internal page hero types → ~240px
   Breakpoint matches the existing pattern used elsewhere in this file. */
@media (max-width: 768px) {
  .kite-page-hero,
  .kite-sph-wrap,
  .kite-lwh-wrap,
  .kite-gear-hero,
  .kite-shops-hero,
  .kite-guide-hero,
  .kite-guide-hero--img { min-height: 240px; }
}

/* ============================================================
   v2.5.1 — Hero content vertical alignment + Guides hero fix
   CSS-only. Homepage hero untouched.
   ============================================================ */

/* Spots archive hero: content was sitting near the top after the min-height
   increase. The wrap had no flex layout. Adding flex-column with
   justify-content:flex-end pins content to the bottom of the hero area.
   padding-bottom gives visual breathing room above the filter bar. */
.kite-sph-wrap {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 24px;
}

/* Live Wind archive hero: same root cause as Spots — wrap had no flex
   layout to push content downward after the min-height was applied. */
.kite-lwh-wrap {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 24px;
}

/* Guides archive hero: explicit guard on the guides modifier class
   so it wins regardless of cascade order, and fix text alignment.
   The .kite-page-hero base already provides display:flex;align-items:flex-end. */
.kite-guides-hero { min-height: 300px; }
.kite-guides-hero .kite-ph-content { text-align: right; direction: rtl; }
.kite-guides-hero .kite-ph-content p,
.kite-guides-hero .kite-ph-content h1 { text-align: right; }
.kite-guides-hero .kite-ph-badges { justify-content: flex-start; }

/* Mobile: smaller bottom padding on narrow screens */
@media (max-width: 768px) {
  .kite-sph-wrap  { padding-bottom: 16px; }
  .kite-lwh-wrap  { padding-bottom: 16px; }
  .kite-guides-hero { min-height: 240px; }
}

/* ============================================================
   v2.5.2 — Restore Spots/LW horizontal layout + Guides fix
   ============================================================ */

/* Spots archive hero: v2.5.1 set flex-direction:column which collapsed
   the inner div's width, breaking justify-content:space-between that
   separates the text group from the mode-tab group.
   Restore row direction so the inner div fills full width and
   space-between puts text (right/RTL-start) vs tabs (left/RTL-end).
   align-items:flex-end keeps the inner content at the bottom of the hero. */
.kite-sph-wrap {
  flex-direction: row;
  align-items: flex-end;
  justify-content: flex-start;
}
.kite-sph-inner { flex: 1; }

/* Live Wind hero: same root cause and same fix as Spots. */
.kite-lwh-wrap {
  flex-direction: row;
  align-items: flex-end;
  justify-content: flex-start;
}
.kite-lwh-inner { flex: 1; }

/* Guides archive hero: this is a NATIVE Elementor section (id: gu_s1),
   not a plugin shortcode. All previous .kite-guides-hero rules had
   no effect because that class never appears on the /guides/ page.
   Target the Elementor element class directly.
   The heading and text widgets are set to align:center in JSON,
   so explicit !important overrides are required. */
.elementor-element-gu_s1.elementor-section { min-height: 300px; }
.elementor-element-gu_w1 .elementor-heading-title { text-align: right !important; }
.elementor-element-gu_s1 p { text-align: right !important; }

@media (max-width: 768px) {
  .elementor-element-gu_s1.elementor-section { min-height: 240px; }
}

/* ============================================================
   v2.5.3 — LW hero height + Guides vertical alignment
   ============================================================ */

/* Live Wind hero: reduce from 320px to 300px so it matches other
   archive heroes visually. Content already sits at the bottom
   via align-items:flex-end set in v2.5.2. */
.kite-lwh-wrap { min-height: 300px; }

/* Guides archive hero: content is vertically too centred.
   Make the section a flex-column container and push the inner
   Elementor container to the bottom — same pattern as .kite-page-hero.
   padding-bottom:40px on the container gives breathing room. */
.elementor-element-gu_s1.elementor-section {
  display: flex !important;
  flex-direction: column;
  justify-content: flex-end;
}
.elementor-element-gu_s1 > .elementor-container { padding-bottom: 40px; }

/* ============================================================
   v2.5.4 — Guides vertical alignment + archive title unification
   CSS-only. Homepage hero (.kite-home-hero) not touched.
   ============================================================ */

/* ── Guides archive hero: push text block lower ────────────────────── */

/* Shortcode variant (.kite-page-hero.kite-guides-hero):
   Remove inherited top padding so align-items:flex-end (already set on
   .kite-page-hero) pins content firmly to the hero bottom.
   Bottom padding (48px) is inherited from .kite-page-hero and kept. */
.kite-guides-hero.kite-page-hero { padding-top: 0; }

/* Elementor native section variant (gu_s1):
   Increase bottom breathing room and clear Elementor column top-padding. */
.elementor-element-gu_s1 > .elementor-container { padding-bottom: 60px; }
.elementor-element-gu_s1 .elementor-column { padding-top: 0 !important; }

@media (max-width: 768px) {
  .kite-guides-hero.kite-page-hero { padding-top: 0; }
  .elementor-element-gu_s1 > .elementor-container { padding-bottom: 40px; }
}

/* ── Internal archive hero title unification ────────────────────────── */
/* Reference: .kite-sph-title (Spots/Forecast page).
   Place at file-end so these rules override earlier flat-size / @media bumps.
   Homepage hero (.kite-home-hero / .kite-hero-title) deliberately excluded. */
.kite-ph-title,
.kite-lwh-title,
.kite-gear-hero-title,
.kite-shops-hero-title {
  font-size: clamp(1.5rem, 4vw, 2.5rem);
  font-weight: 900;
  line-height: 1.1;
  font-family: var(--kite-font);
  color: #fff;
}

/* Guides archive Elementor heading widget (gu_w1): match reference size */
.elementor-element-gu_w1 .elementor-heading-title {
  font-size: clamp(1.5rem, 4vw, 2.5rem) !important;
  font-weight: 900 !important;
  line-height: 1.1 !important;
  font-family: var(--kite-font) !important;
  color: #fff !important;
}

/* ============================================================
   v2.6.0 — Editable hero images + Guides vertical alignment
   ============================================================ */

/* Guides archive hero (shortcode variant): use flex-column so
   justify-content:flex-end reliably pins content to the bottom
   regardless of the Elementor section height.
   Overrides the row-flex + align-items:flex-end from v2.5.x. */
.kite-guides-hero.kite-page-hero {
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-end !important;
  align-items: flex-start !important;
  padding-top: 0 !important;
  padding-bottom: 48px !important;
}

/* Guides archive hero (Elementor native section gu_s1):
   same column-flex pattern; push the inner container fully down. */
.elementor-element-gu_s1.elementor-section {
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-end !important;
}
.elementor-element-gu_s1 > .elementor-container {
  padding-bottom: 48px !important;
  margin-top: auto !important;
}
.elementor-element-gu_s1 .elementor-column {
  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-end !important;
}
.elementor-element-gu_s1 .elementor-widget-wrap {
  justify-content: flex-end !important;
}
.elementor-element-gu_s1 .elementor-column { padding-top: 0 !important; }

@media (max-width: 768px) {
  .kite-guides-hero.kite-page-hero { padding-bottom: 32px !important; }
  .elementor-element-gu_s1 > .elementor-container { padding-bottom: 32px !important; }
}

/* ============================================================
   v2.7.0 — Content Components
   FAQ accordion, Info boxes, CTA grid, Step cards
   All shortcode-rendered, work inside Elementor Shortcode widget.
   ============================================================ */

/* ── FAQ Accordion ────────────────────────────────────────── */
.kite-faq {
  display: flex;
  flex-direction: column;
  gap: 6px;
  direction: rtl;
}
.kite-faq-item {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  transition: box-shadow .2s;
}
.kite-faq-item:hover { box-shadow: 0 2px 12px rgba(0,0,0,.06); }
.kite-faq-item.kite-open {
  box-shadow: 0 4px 20px rgba(8,145,178,.1);
  border-color: #a5f3fc;
}
.kite-faq-q {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: .9375rem;
  font-weight: 600;
  color: #0f172a;
  text-align: right;
  direction: rtl;
  font-family: var(--kite-font, sans-serif);
  gap: 12px;
  transition: background .15s;
}
.kite-faq-q:hover { background: #f8fafc; }
.kite-faq-q-text { flex: 1; }
.kite-faq-chevron {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid #cbd5e1;
  flex-shrink: 0;
  position: relative;
  transition: border-color .2s, background .2s;
}
.kite-faq-chevron::before,
.kite-faq-chevron::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: #64748b;
  border-radius: 2px;
  transition: transform .25s ease, opacity .25s ease, background .2s;
}
.kite-faq-chevron::before {
  width: 8px;
  height: 2px;
  transform: translate(-50%, -50%);
}
.kite-faq-chevron::after {
  width: 2px;
  height: 8px;
  transform: translate(-50%, -50%);
}
.kite-faq-item.kite-open .kite-faq-chevron {
  border-color: #0891b2;
  background: #0891b2;
}
.kite-faq-item.kite-open .kite-faq-chevron::before,
.kite-faq-item.kite-open .kite-faq-chevron::after { background: #fff; }
.kite-faq-item.kite-open .kite-faq-chevron::after { opacity: 0; }
/* Answer hidden only when JS is active */
.kite-js .kite-faq-a { display: none; }
.kite-js .kite-faq-item.kite-open .kite-faq-a { display: block; }
.kite-faq-a {
  padding: 2px 20px 20px;
  color: #475569;
  line-height: 1.75;
  font-size: .9375rem;
  text-align: right;
  direction: rtl;
}
.kite-faq-a p:first-child { margin-top: 0; }
.kite-faq-a p:last-child  { margin-bottom: 0; }

/* ── Info Box ──────────────────────────────────────────────── */
.kite-info-box {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 16px 18px;
  border-radius: 12px;
  border-right: 4px solid;
  margin: 16px 0;
  direction: rtl;
  text-align: right;
}
.kite-info-box--info    { background: #eff6ff; border-color: #3b82f6; }
.kite-info-box--tip     { background: #f0fdf4; border-color: #22c55e; }
.kite-info-box--warning { background: #fffbeb; border-color: #f59e0b; }
.kite-info-box--safety  { background: #fef2f2; border-color: #ef4444; }
.kite-ib-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  flex-shrink: 0;
  line-height: 1;
}
.kite-ib-icon::before { content: 'i'; font-style: italic; }
.kite-info-box--info .kite-ib-icon    { background: #dbeafe; color: #1e40af; }
.kite-info-box--tip .kite-ib-icon     { background: #dcfce7; color: #166534; }
.kite-info-box--warning .kite-ib-icon { background: #fef9c3; color: #854d0e; }
.kite-info-box--safety .kite-ib-icon  { background: #fee2e2; color: #991b1b; }
.kite-info-box--tip .kite-ib-icon::before     { content: '\2713'; font-style: normal; }
.kite-info-box--warning .kite-ib-icon::before { content: '!'; font-style: normal; }
.kite-info-box--safety .kite-ib-icon::before  { content: '!'; font-style: normal; font-weight: 900; }
.kite-ib-body { flex: 1; min-width: 0; }
.kite-ib-title {
  font-weight: 700;
  margin: 0 0 6px;
  font-size: .9375rem;
  color: #0f172a;
  font-family: var(--kite-font, sans-serif);
}
.kite-ib-content { font-size: .9375rem; color: #374151; line-height: 1.7; }
.kite-ib-content p { margin: 0 0 8px; }
.kite-ib-content p:last-child { margin-bottom: 0; }

/* ── CTA Card Grid ────────────────────────────────────────── */
.kite-cta-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
  direction: rtl;
}
.kite-cta-card-wrap {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 26px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: right;
  transition: box-shadow .2s, transform .2s;
}
.kite-cta-card-wrap:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,.08);
  transform: translateY(-3px);
}
.kite-cta-card-title {
  font-size: 1.0625rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
  font-family: var(--kite-font, sans-serif);
}
.kite-cta-card-text {
  font-size: .875rem;
  color: #64748b;
  line-height: 1.65;
  margin: 0;
  flex: 1;
}
.kite-cta-card-btn {
  display: inline-flex;
  align-items: center;
  padding: 9px 18px;
  background: #0891b2;
  color: #fff !important;
  border-radius: 10px;
  font-size: .875rem;
  font-weight: 600;
  text-decoration: none !important;
  transition: background .15s;
  align-self: flex-start;
}
.kite-cta-card-btn:hover { background: #0e7490; }

/* ── Step Cards ───────────────────────────────────────────── */
.kite-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
  direction: rtl;
}
.kite-step-card {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 22px 20px;
  text-align: right;
  direction: rtl;
}
.kite-step-num {
  width: 38px;
  height: 38px;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, #0891b2 0%, #0369a1 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 800;
  font-family: var(--kite-font, sans-serif);
}
.kite-step-body { flex: 1; min-width: 0; }
.kite-step-title {
  font-size: .9375rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0 0 8px;
  font-family: var(--kite-font, sans-serif);
}
.kite-step-content { font-size: .9375rem; color: #475569; line-height: 1.7; }
.kite-step-content p { margin: 0 0 6px; }
.kite-step-content p:last-child { margin-bottom: 0; }

@media (max-width: 480px) {
  .kite-step-card { gap: 14px; padding: 16px; }
  .kite-step-num  { width: 32px; height: 32px; font-size: .875rem; }
  .kite-cta-grid  { grid-template-columns: 1fr; }
}

/* ── Price Grid (v2.8.0) ──────────────────────────────────── */
.kite-price-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  direction: rtl;
}
.kite-price-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-top: 3px solid #0891b2;
  border-radius: 14px;
  padding: 24px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: right;
  transition: box-shadow .2s, transform .2s;
}
.kite-price-card:hover {
  box-shadow: 0 8px 28px rgba(8, 145, 178, .12);
  transform: translateY(-3px);
}
.kite-pc-title {
  font-size: .9375rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
  font-family: var(--kite-font, sans-serif);
}
.kite-pc-price {
  font-size: 1.375rem;
  font-weight: 800;
  color: #0891b2;
  margin: 0;
  font-family: var(--kite-font, sans-serif);
  line-height: 1.25;
}
.kite-pc-body {
  font-size: .875rem;
  color: #64748b;
  line-height: 1.65;
  flex: 1;
  margin-top: 4px;
}
.kite-pc-body p { margin: 0 0 6px; }
.kite-pc-body p:last-child { margin-bottom: 0; }
@media (max-width: 480px) {
  .kite-price-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   v2.9.0 — Launch polish fixes
   ============================================================ */

/* ── Footer legal links ──────────────────────────────────── */
.kite-footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 6px 20px;
  padding: 12px 24px 4px;
  direction: rtl;
}
.kite-footer-legal a {
  font-size: .75rem;
  color: rgba(255,255,255,.45);
  text-decoration: none;
  transition: color .15s;
}
.kite-footer-legal a:hover { color: rgba(255,255,255,.8); text-decoration: underline; }

/* ── FAQ: fix browser-default button color states ────────── */
/* Explicit color on all interactive states prevents OS-theme red/system colors */
.kite-faq-q { color: #0f172a; -webkit-tap-highlight-color: transparent; }
.kite-faq-q:hover { background: #f8fafc; color: #0f172a; }
.kite-faq-q:active { background: #e0f2fe; color: #0c4a6e; outline: none; }
.kite-faq-q:focus { outline: none; color: #0f172a; }
.kite-faq-q:focus-visible {
  outline: 2px solid #0891b2;
  outline-offset: -2px;
  background: #f0f9ff;
  color: #0f172a;
}

/* ── FAQ: tighten item spacing and suppress wpautop empty <p> ── */
.kite-faq { gap: 3px; }
.kite-faq-item { margin: 0; }
.kite-faq-q { padding: 14px 18px; }
/* wpautop may inject bare <p> tags between shortcode items */
.kite-faq > p { display: none; }

/* ── Gear ad submission hero: standardize height to 300/240px ── */
.kite-pa-hero { min-height: 300px !important; }
@media (max-width: 768px) {
  .kite-pa-hero { min-height: 240px !important; }
}

/* ── Guide meta chips: wrap on multi-tag guides ─────────────── */
.kite-guide-meta-chips { flex-wrap: wrap; gap: 6px; }

/* ============================================================
   v2.9.1 — Guide badge stacking, Schools hero, FAQ color fix
   ============================================================ */

/* ── Guide card level badges: absolute container, flex column inside ── */
/* Each badge was position:absolute at same top/right, causing overlap.
   New approach: one positioned container, badges stack inside via flex. */
.kite-gh-lvl-badges {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}
/* Remove individual badge absolute positioning — parent container handles it */
.kite-gh-lvl-badges .kite-gh-lvl-badge {
  position: static;
}

/* ── FAQ: comprehensive color reset — defeats theme/Elementor button overrides ── */
/* Using .kite-faq parent prefix for specificity (0,2,0) + !important for theme safety */
.kite-faq .kite-faq-q,
.kite-faq .kite-faq-q:link,
.kite-faq .kite-faq-q:visited,
.kite-faq .kite-faq-q:hover,
.kite-faq .kite-faq-q:active,
.kite-faq .kite-faq-q:focus,
.kite-faq .kite-faq-q[aria-expanded="true"],
.kite-faq .kite-faq-item.kite-open .kite-faq-q {
  color: #0f172a !important;
  -webkit-text-fill-color: #0f172a !important;
  background-image: none !important;
  border-color: transparent !important;
  box-shadow: none !important;
  text-decoration: none !important;
  -webkit-tap-highlight-color: transparent;
}
.kite-faq .kite-faq-q:hover  { background-color: #f8fafc !important; }
.kite-faq .kite-faq-q:active { background-color: #e0f2fe !important; outline: none !important; }
.kite-faq .kite-faq-q:focus  { background-color: transparent !important; outline: none !important; }
.kite-faq .kite-faq-q:focus-visible {
  outline: 2px solid #0891b2 !important;
  outline-offset: -2px;
  background-color: #f0f9ff !important;
}

/* ============================================================
   v2.9.5 — Shop sidebar value alignment + homepage hero overflow
   ============================================================ */

/* Homepage hero: Elementor's .elementor-widget-wrap has default padding (10px)
   that is not covered by the existing :has(.kite-home-hero) overrides.
   This extra padding makes the section wider than the viewport on mobile,
   causing horizontal scroll. Force it to zero and clip overflow. */
.elementor-section:has(.kite-home-hero) .elementor-widget-wrap {
  padding: 0 !important;
  overflow: hidden !important;
  max-width: 100% !important;
  width: 100% !important;
}

/* ============================================================
   v3.0.2 — Phone and email inputs: LTR alignment in lead and contact forms
   Scoped to these two forms only; labels and overall layout unchanged.
   ============================================================ */
#kite-lead-form [name="phone"],
#kite-lead-form [name="email"],
#kite-contact-form [name="phone"],
#kite-contact-form [name="email"] {
  direction: ltr;
  text-align: left;
}

/* ============================================================
   v3.1.0 — Account dashboard: gear listings section
   ============================================================ */
.kite-dash-gear-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.kite-dash-gear-row {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--kite-card-bg, #fff);
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 10px 14px;
  direction: rtl;
}
.kite-dash-gear-thumb {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  border-radius: 8px;
  overflow: hidden;
  background: #f1f5f9;
}
.kite-dash-gear-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.kite-dash-gear-no-img {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #cbd5e1;
}
.kite-dash-gear-info {
  flex: 1;
  min-width: 0;
}
.kite-dash-gear-title {
  font-weight: 600;
  font-size: .9rem;
  color: var(--kite-text, #1e293b);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.kite-dash-gear-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
  font-size: .78rem;
  color: #64748b;
}
.kite-dash-gear-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.kite-dash-gear-pending-link {
  font-size: .78rem;
  color: #94a3b8;
}
.kite-dash-gear-new {
  margin-top: 12px;
}
.kite-dash-new-ad-btn {
  font-size: .85rem;
}
.kite-btn-xs {
  padding: 4px 10px;
  font-size: .78rem;
  border-radius: 6px;
}
.kite-btn-sold {
  background: #f1f5f9;
  color: #475569;
  border: 1px solid #cbd5e1;
  font-size: .78rem;
  padding: 4px 10px;
  border-radius: 6px;
  cursor: pointer;
  transition: background .15s;
}
.kite-btn-sold:hover { background: #e2e8f0; }
.kite-btn-sold:disabled { opacity: .5; cursor: not-allowed; }
.kite-dash-badge--sold {
  background: #e2e8f0;
  color: #64748b;
}
@media (max-width: 480px) {
  .kite-dash-gear-row { flex-wrap: wrap; }
  .kite-dash-gear-actions { width: 100%; }
}

/* ============================================================
   v3.1.2 — Sold state, placeholder & seller identity
   ============================================================ */

/* Gear card sold ribbon (inside .kite-gc-img-wrap) */
.kite-gc-sold-ribbon {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 3;
  background: rgba(51,65,85,.82);
  color: #f1f5f9;
  text-align: center;
  padding: 6px 0;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .07em;
  pointer-events: none;
}

/* Sold card muted appearance */
.kite-gear-card--sold { opacity: .72; }
.kite-gear-card--sold:hover { transform: none !important; box-shadow: 0 1px 4px rgba(0,0,0,.06) !important; }

/* Sold label in card footer */
.kite-gc-sold-lbl {
  font-size: .75rem;
  font-weight: 700;
  color: #94a3b8;
}

/* Single listing: sold notice banner */
.kite-gsl-sold-notice {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f8fafc;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  padding: 12px 18px;
  margin-bottom: 20px;
  direction: rtl;
}
.kite-gsl-sold-badge {
  background: #334155;
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  padding: 3px 12px;
  border-radius: 6px;
  white-space: nowrap;
  flex-shrink: 0;
}
.kite-gsl-sold-msg {
  font-size: .9rem;
  color: #475569;
}

/* Single listing: sold CTA placeholder */
.kite-gsl-sold-cta-notice {
  background: #f1f5f9;
  border-radius: 10px;
  padding: 14px;
  text-align: center;
  font-size: .9rem;
  color: #64748b;
  font-weight: 500;
  margin-bottom: 10px;
}

/* Single listing: registered seller avatar image */
.kite-gsl-seller-avatar-img {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

/* Single listing: seller label (non-approved / guest) */
.kite-gsl-seller-label {
  font-size: .78rem;
  color: #94a3b8;
  margin: 0;
}

/* ============================================================
   v3.1.5 — Account dashboard tabs (chip style) & future block
   ============================================================ */

/* Tab nav — chip row, no underline, wraps on mobile */
.kite-dash-tabs-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  direction: rtl;
}

/* Tab button — matches site .kite-sfb-chip pill pattern */
.kite-dash-tab-btn {
  -webkit-appearance: none;
  appearance: none;
  display: inline-flex;
  align-items: center;
  background: #fff;
  color: #475569;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  box-shadow: none;
  padding: 8px 18px;
  font-family: var(--kite-font, inherit);
  font-size: .875rem;
  font-weight: 700;
  cursor: pointer;
  transition: background .18s, color .18s, border-color .18s, box-shadow .18s;
  white-space: nowrap;
  text-decoration: none;
}

/* Hover — cyan border + text tint, very light bg */
.kite-dash-tab-btn:hover {
  border-color: #06b6d4;
  color: #0369a1;
  background: rgba(6,182,212,.06);
}

/* Keyboard focus — cyan outline, matches site pattern */
.kite-dash-tab-btn:focus-visible {
  outline: 2px solid #06b6d4;
  outline-offset: 2px;
}

/* Active tab — solid cyan fill, white text; same as .kite-sfb-adv-chip.kite-sfb-active */
.kite-dash-tab-active,
.kite-dash-tab-active:hover {
  background: #06b6d4 !important;
  color: #fff !important;
  border-color: transparent !important;
  box-shadow: 0 2px 8px rgba(6,182,212,.30) !important;
}

/* Future-features block */
.kite-dash-future {
  margin-top: 28px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 20px 24px;
}
.kite-dash-future-title {
  font-size: 1rem;
  font-weight: 700;
  color: #334155;
  margin: 0 0 14px;
}
.kite-dash-future-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.kite-dash-future-list li {
  font-size: .9rem;
  color: #475569;
}

@media (max-width: 600px) {
  .kite-dash-tab-btn { padding: 7px 14px; font-size: .82rem; }
  .kite-dash-future { padding: 16px; }
}

/* ============================================================
   v3.1.15 — Shops filter: inline more-button + chip-matched styling
   ============================================================ */

/* Override v1.3.1 single-line nowrap */
.kite-shops-filter-inner {
  flex-wrap: wrap;
  overflow-x: visible;
  -webkit-overflow-scrolling: unset;
  scrollbar-width: auto;
}
.kite-shops-filter-inner::-webkit-scrollbar { display: revert; }

/* Chips: wrap, full-width row — more-button is last inline flex item */
.kite-shops-chips {
  flex-wrap: wrap;
  flex-shrink: 1;
  width: 100%;
}

/* Extra chips (index > 6): hidden by default, shown when open */
.kite-shops-chip--extra { display: none; }
.kite-shops-chips--open .kite-shops-chip--extra { display: inline-flex; }

/* More button — matches .kite-shops-chip visual style */
.kite-shops-chips-more {
  display: none; /* shown by JS as inline-flex when extra chips exist */
  padding: 7px 14px !important;
  border-radius: 12px !important;
  border: 1px solid #e2e8f0 !important;
  background: #fff !important;
  font-size: .8rem !important;
  font-weight: 600 !important;
  color: #475569 !important;
  cursor: pointer;
  font-family: var(--kite-font);
  transition: all .18s;
  white-space: nowrap;
  line-height: 1;
  box-shadow: none !important;
  text-decoration: none !important;
}
.kite-shops-chips-more:hover {
  border-color: #a78bfa !important;
  color: #7c3aed !important;
  background: #fff !important;
  box-shadow: none !important;
}
.kite-shops-chips-more:focus,
.kite-shops-chips-more:active {
  outline: none !important;
  box-shadow: none !important;
  background: #fff !important;
  color: #475569 !important;
  border-color: #e2e8f0 !important;
}
.kite-shops-chips-more:focus-visible {
  outline: 2px solid #a78bfa !important;
  outline-offset: 2px;
  box-shadow: none !important;
}
.kite-shops-chips--open .kite-shops-chips-more {
  background: #f5f3ff !important;
  border-color: #a78bfa !important;
  color: #7c3aed !important;
}

/* Card image overlay: "+N" extra chip count badge */
.kite-shops-card-cat--more {
  background: rgba(15,23,42,.55) !important;
  color: #fff !important;
  font-weight: 700;
  letter-spacing: .02em;
}
