/* ============================================================
   EXPLORE OKINAWA – Main Stylesheet
   ============================================================ */

/* ── CSS Custom Properties ── */
:root {
  --purple:       #6B55D8;
  --purple-dark:  #5843C8;
  --orange:       #FF7A2F;
  --orange-hover: #e86a22;
  --text-dark:    #1a1a2e;
  --text-mid:     #4a4a6a;
  --text-light:   #888aaa;
  --border:       #e4e6f0;
  --bg-light:     #f7f8fc;
  --bg-white:     #ffffff;
  --hero-bg:      #9b9db0;
  --card-radius:  14px;
  --chip-radius:  999px;
  --shadow-sm:    0 2px 8px rgba(0,0,0,0.07);
  --shadow-md:    0 6px 24px rgba(0,0,0,0.10);
  --shadow-lg:    0 12px 40px rgba(0,0,0,0.14);
  --transition:   0.22s ease;
  --font:         'Poppins', 'Inter', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font);
  color: var(--text-dark);
  background: var(--bg-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: var(--font); }
img { display: block; width: 100%; object-fit: cover; }
ul { list-style: none; }

/* Hide native clear "x" on search inputs */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
  appearance: none;
}

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Language banner removed */

/* ============================================================
   LANGUAGE BANNER
   ============================================================ */
.lang-banner {
  background: #6B55D8;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 10px 24px;
  font-size: 0.875rem;
  font-weight: 400;
  position: relative;
  z-index: 200;
  flex-wrap: wrap;
}

.lang-banner__text {
  flex: 1;
  min-width: 200px;
  text-align: center;
}

.lang-banner__controls {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.lang-banner__select {
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.5);
  color: #fff;
  border-radius: 8px;
  padding: 5px 32px 5px 12px;
  font-size: 0.875rem;
  font-family: var(--font);
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='white' stroke-width='1.8' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  cursor: pointer;
  min-width: 120px;
}
.lang-banner__select option { color: #1a1a2e; background: #fff; }

.lang-banner__go {
  background: #fff;
  color: #1a1a2e;
  border: none;
  border-radius: 8px;
  padding: 6px 18px;
  font-size: 0.875rem;
  font-weight: 600;
  font-family: var(--font);
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.lang-banner__go:hover { opacity: 0.85; }

.lang-banner__close {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 1rem;
  line-height: 1;
  padding: 4px 6px;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s ease;
}
.lang-banner__close:hover { background: rgba(255,255,255,0.18); }

.lang-banner.hidden { display: none; }



/* ============================================================
   NAVIGATION
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--bg-white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.navbar {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-bottom: 0;
  gap: 8px;
}

/* Logo */
.navbar__logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  margin-right: 12px;
  transition: opacity var(--transition);
  overflow: hidden;
  height: 44px;
}
.navbar__logo:hover { opacity: 0.8; }
.navbar__logo-img {
  height: 44px;
  width: auto;
  display: block;
  object-fit: contain;
  transform: translateY(10px);
}

/* Nav links */
.navbar__links {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  flex-shrink: 0;
  height: 100%;
  padding-bottom: 0;
}

.navbar__item { position: relative; }

.navbar__btn {
  background: none;
  border: none;
  color: #5a5a5b;
  font-size: 0.9rem;
  font-weight: 500;
  padding: 8px 14px 10px;
  border-radius: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  position: relative;
  transition: color var(--transition);
}

/* Animated orange underline */
.navbar__btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2.5px;
  background: var(--orange);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: width 0.25s ease;
}
.navbar__btn:hover { color: #1a1a2e; background: none; }
.navbar__btn:hover::after { width: calc(100% - 28px); }

.navbar__caret {
  font-size: 0.65rem;
  transition: transform var(--transition);
}
.navbar__item.open .navbar__caret { transform: rotate(180deg); }

/* Dropdown */
.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  min-width: 200px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
  z-index: 300;
}
.navbar__item.open .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown__item {
  display: block;
  padding: 10px 20px;
  font-size: 0.875rem;
  color: var(--text-mid);
  transition: background var(--transition), color var(--transition);
}
.dropdown__item:hover { background: var(--bg-light); color: var(--purple); }

/* Saved places panel (navbar) */
.navbar__action-btn { position: relative; }
.oki-saved-count {
  position: absolute;
  top: 2px;
  right: 2px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: var(--purple);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  line-height: 16px;
  text-align: center;
}
.oki-saved-backdrop {
  position: fixed;
  inset: 0;
  z-index: 850;
  background: rgba(15, 23, 42, 0.25);
}
.oki-saved-panel {
  position: fixed;
  z-index: 900;
  background: var(--bg-white);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: var(--shadow-lg);
  max-height: min(420px, calc(100vh - 100px));
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.oki-saved-panel[hidden],
.oki-saved-backdrop[hidden] { display: none !important; }
.oki-saved-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px 8px;
  border-bottom: 1px solid var(--border);
}
.oki-saved-panel__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}
.oki-saved-panel__title i { color: #ef4444; font-size: 14px; }
.oki-saved-panel__close {
  background: none;
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  color: var(--text-mid);
  cursor: pointer;
  font-size: 16px;
}
.oki-saved-panel__close:hover { background: var(--bg-light); color: var(--text-dark); }
.oki-saved-panel__list {
  overflow-y: auto;
  padding: 0 8px 12px;
  flex: 1;
}
.oki-saved-loading {
  text-align: center;
  padding: 24px;
  color: var(--text-light);
  font-size: 14px;
}
.oki-saved-empty {
  text-align: center;
  padding: 32px 16px;
  color: var(--text-mid);
}
.oki-saved-empty i {
  font-size: 2rem;
  color: #cbd5e1;
  margin-bottom: 12px;
  display: block;
}
.oki-saved-empty p { font-weight: 600; color: var(--text-dark); margin-bottom: 6px; }
.oki-saved-empty span { font-size: 13px; color: var(--text-light); }
.oki-saved-item {
  display: flex;
  align-items: center;
  gap: 8px;
  border-radius: 10px;
  transition: background var(--transition);
}
.oki-saved-item:hover { background: var(--bg-light); }
.oki-saved-item__link {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px;
  text-decoration: none;
  color: inherit;
  min-width: 0;
}
.oki-saved-item__img {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
  background: var(--bg-light);
}
.oki-saved-item__img--ph {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  font-size: 1.1rem;
}
.oki-saved-item__body { min-width: 0; }
.oki-saved-item__name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0 0 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.oki-saved-item__area {
  font-size: 12px;
  color: var(--text-light);
  margin: 0;
}
.oki-saved-item__remove {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  margin-right: 4px;
  border: none;
  background: none;
  color: #ef4444;
  cursor: pointer;
  border-radius: 8px;
  font-size: 15px;
}
.oki-saved-item__remove:hover { background: #fef2f2; }

/* Nav actions */
/* Sticky navbar search — hidden by default, shown on scroll */
.navbar__search-form {
  display: none;
  align-items: center;
  background: var(--bg-light);
  border: 1.5px solid var(--border);
  border-radius: 999px;
  padding: 0 8px 0 14px;
  height: 38px;
  gap: 6px;
  width: 280px;
  flex-shrink: 1;
  margin: 0 16px 0 auto;
}

.navbar__search-form.visible {
  display: flex;
}

.navbar__search-icon {
  color: var(--text-light);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.navbar__search-input {
  border: none;
  background: transparent;
  outline: none;
  font-size: 0.88rem;
  color: var(--text-dark);
  font-family: var(--font);
  width: 100%;
}

.navbar__search-input::placeholder { color: var(--text-light); transition: opacity 0.22s ease; }
.navbar__search-input.search-ph-out::placeholder { opacity: 0; }

.navbar__search-btn {
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 4px 14px;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font);
  white-space: nowrap;
  transition: background var(--transition);
  flex-shrink: 0;
}

.navbar__search-btn:hover { background: var(--orange-hover); }

.navbar__actions {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}

.navbar__action-btn {
  background: none;
  border: none;
  color: var(--text-mid);
  font-size: 0.78rem;
  font-weight: 500;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  padding: 6px 10px;
  border-radius: 8px;
  transition: background var(--transition), color var(--transition);
  min-width: 52px;
}
.navbar__action-btn i { font-size: 1.15rem; }
.navbar__action-btn:hover { background: var(--bg-light); color: var(--purple); }

/* ============================================================
   HERO SECTION – CAROUSEL
   ============================================================ */
.hero {
  position: relative;
  width: 100%;
  height: 345px;
  overflow: hidden;
  text-align: center;
  /* Dark fallback so there's no grey flash before the first slide image loads */
  background-color: #1a1a2e;
}

/* ── Slide track ── */
.hero__slides {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero__slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* Slide translation for left-slide effect */
  transform: translateX(100%);
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  z-index: 0;
}

.hero__slide.active {
  transform: translateX(0);
  z-index: 1;
}

.hero__slide.prev {
  transform: translateX(-100%);
  z-index: 1;
}

/* ── Dark overlay ── */
.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.28) 0%,
    rgba(0,0,0,0.45) 60%,
    rgba(0,0,0,0.55) 100%
  );
  z-index: 1;
  pointer-events: none;
}

/* ── Hero content (text + search) ── */
.hero__inner {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.hero__title {
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
  text-shadow: 0 2px 16px rgba(0,0,0,0.35);
}

.hero__search-wrapper {
  max-width: 660px;
  width: 100%;
}

.hero__search-form {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: var(--chip-radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  padding: 6px 6px 6px 20px;
  gap: 8px;
}

.hero__search-icon {
  color: var(--text-light);
  font-size: 1rem;
  flex-shrink: 0;
}

.hero__search-input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 1rem;
  font-family: var(--font);
  color: var(--text-dark);
  background: transparent;
  padding: 8px 0;
}
.hero__search-input::placeholder { color: var(--text-light); transition: opacity 0.22s ease; }
.hero__search-input.search-ph-out::placeholder { opacity: 0; }

.hero__search-btn {
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: var(--chip-radius);
  padding: 12px 32px;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  transition: background var(--transition), transform var(--transition);
  flex-shrink: 0;
}
.hero__search-btn:hover { background: var(--orange-hover); transform: scale(1.03); }
.hero__search-btn:active { transform: scale(0.98); }

/* ── Chevron Arrows – Klook style ── */
.hero__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: none;
  border: none;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  overflow: visible;
  transition: transform var(--transition);
}
.hero__arrow:hover { transform: translateY(-50%) scale(1.08); }
.hero__arrow:active { transform: translateY(-50%) scale(0.95); }

/* Colored blob that peeks from the edge */
.hero__arrow-blob {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1;
}
.hero__arrow-blob--prev {
  background: #FF7A2F;
  left: -56px;
  top: 50%;
  transform: translateY(-50%);
}
.hero__arrow-blob--next {
  background: #0AADA0;
  right: -56px;
  top: 50%;
  transform: translateY(-50%);
}

.hero__arrow svg {
  width: 52px;
  height: 52px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.45));
  position: relative;
  z-index: 1;
}

.hero__arrow--prev { left: 0px; }
.hero__arrow--next { right: 0px; }

/* Dots removed */

/* ============================================================
   CATEGORY CHIPS
   ============================================================ */
.categories {
  padding: 10px 0 0;
  background: var(--bg-white);
  position: sticky;
  top: 70px;
  z-index: 90;
}

.categories__row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 6px 0 8px;
}

.category-chip {
  background: var(--bg-white);
  border: 1.5px solid var(--border);
  color: var(--text-mid);
  border-radius: var(--chip-radius);
  padding: 7px 16px;
  font-size: 0.855rem;
  font-weight: 500;
  transition: background var(--transition), border-color var(--transition), color var(--transition);
  white-space: nowrap;
}

a.category-chip {
  display: inline-block;
  text-decoration: none;
  cursor: pointer;
}
button.category-chip {
  display: inline-block;
  font: inherit;
  cursor: pointer;
}
.category-chip:hover {
  background: var(--bg-light);
  border-color: #aaa;
  color: var(--text-dark);
}
/* No default highlighted state */
.category-chip.active {
  background: var(--purple);
  border-color: var(--purple);
  color: #fff;
}

.pill-results {
  padding: 8px 0 4px;
}

.pill-results.section {
  padding-top: 12px;
  padding-bottom: 8px;
}

.pill-results__group + .pill-results__group {
  margin-top: 18px;
}

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

.pill-results__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
}

.pill-results__more {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--purple);
  text-decoration: none;
}

.pill-row__scroll {
  overflow-x: auto;
  overflow-y: visible;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  overscroll-behavior-x: contain;
  overscroll-behavior-y: auto;
  scroll-snap-type: x mandatory;
  touch-action: pan-x pan-y;
}

.pill-row__scroll::-webkit-scrollbar {
  display: none;
}

.pill-row__grid {
  width: max-content;
  min-width: 100%;
  display: flex;
  flex-wrap: nowrap;
  gap: 14px;
  padding-bottom: 4px;
}

.pill-row__grid > * {
  scroll-snap-align: start;
}

.pill-row__grid > .workshop-card--pin,
.pill-row__grid > .skeleton--card,
.pill-row__grid > .pill-event-card {
  flex: 0 0 220px;
  width: 220px;
}

.pill-row__grid > .workshop-card--pin,
.pill-row__grid > .skeleton--card {
  height: 308px;
  min-height: 308px;
  max-height: 308px;
}

.pill-row__grid > .skeleton--card {
  height: 284px;
}

/* Place cards (places-category style) in horizontal pill rows */
.pill-row__grid > .place-card {
  flex: 0 0 280px;
  width: 280px;
  flex-shrink: 0;
}

#pill-places-grid > .skeleton--card {
  flex: 0 0 280px;
  width: 280px;
  height: 280px;
  border-radius: 14px;
}

.place-card {
  background: white;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  transition: transform 0.18s, box-shadow 0.18s;
  display: block;
  text-decoration: none;
  color: inherit;
  contain: layout;
}

.place-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
}

.place-card__img-wrap {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #e2e8f0;
  position: relative;
  flex-shrink: 0;
}

.place-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s;
  display: block;
}

.place-card:hover .place-card__img {
  transform: scale(1.04);
}

.place-card__heart {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #64748b;
  font-size: 0.8rem;
  cursor: pointer;
  border: none;
  transition: color 0.15s, transform 0.15s;
}

.place-card__heart:hover {
  color: #ef4444;
  transform: scale(1.15);
}

.place-card__heart.is-saved {
  color: #ef4444;
}

.oki-saved-section__title {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-light);
  padding: 10px 8px 4px;
  margin: 0;
}

.place-card__body {
  padding: 14px 16px 16px;
}

.place-card__meta {
  font-size: 12px;
  font-weight: 600;
  color: #475569;
  margin: 0 0 6px;
  line-height: 1.4;
}

.place-card__meta-sep {
  color: #cbd5e1;
  font-weight: 400;
  margin: 0 4px;
}

.place-card__meta-area {
  color: #94a3b8;
  text-transform: lowercase;
}

.place-card__name {
  font-size: 16px;
  font-weight: 700;
  color: #1e293b;
  line-height: 1.3;
  margin: 0 0 6px;
}

.place-card__desc {
  font-size: 13px;
  color: #64748b;
  line-height: 1.55;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.pill-results__empty {
  font-size: 0.85rem;
  color: var(--text-light);
  padding: 8px 2px;
}

.workshop-card__tag {
  display: inline-block;
  max-width: 100%;
  font-size: 11px;
  background: #f3f3f3;
  color: #8a8a8a;
  padding: 2px 8px;
  border-radius: 999px;
  margin-bottom: 6px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pill-event-card {
  background: var(--bg-white);
  border: 0.5px solid #e5e5e5;
  border-radius: 10px;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  display: block;
}

.pill-event-card__img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  display: block;
}

.pill-event-card__body {
  padding: 8px 10px 10px;
}

.pill-event-card__title {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 6px;
  color: #1a1a1a;
}

.pill-event-card__meta {
  font-size: 11px;
  color: #7b7b7b;
  margin-bottom: 3px;
}

.pill-event-card__price {
  font-size: 13px;
  font-weight: 700;
  color: #1a1a1a;
  margin-top: 5px;
}

/* ============================================================
   SECTION COMMONS
   ============================================================ */
.section {
  padding: 28px 0 24px;
}

/* Remove the top border/line that categories adds above locations */
#locations-section {
  border-top: none;
  padding-bottom: 20px;
}

.section--alt {
  background: var(--bg-light);
}

.section__title {
  font-size: 1.35rem;
  font-weight: 700;
  color: #5a5a5b;
  margin-bottom: 28px;
}

/* ============================================================
   LOCATION CARDS (horizontal scroll row)
   ============================================================ */
.locations-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.location-card {
  border-radius: var(--card-radius);
  overflow: hidden;
}

.location-card__img-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--border);
  border-radius: var(--card-radius);
  overflow: hidden;
}

.location-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.location-card__name {
  margin-top: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #5a5a5b;
  padding: 0 2px;
}

/* ============================================================
   ATTRACTION CARDS (2x2 grid)
   ============================================================ */
.attractions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.attraction-card {
  background: var(--bg-white);
  border-radius: var(--card-radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}
.attraction-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.attraction-card:focus-visible { outline: 3px solid var(--purple); outline-offset: 3px; }

.attraction-card__img-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--border);
}
.attraction-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.attraction-card:hover .attraction-card__img { transform: scale(1.06); }

.attraction-card__overlay {
  position: absolute;
  top: 12px;
  left: 12px;
}

.attraction-card__tag {
  background: rgba(255,255,255,0.92);
  color: var(--purple);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--chip-radius);
  letter-spacing: 0.02em;
  box-shadow: var(--shadow-sm);
}

.attraction-card__body {
  padding: 16px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.attraction-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
}

.attraction-card__desc {
  font-size: 0.82rem;
  color: var(--text-mid);
  line-height: 1.5;
  flex: 1;
}

.attraction-card__meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 8px;
  font-size: 0.8rem;
  color: var(--text-mid);
}

.attraction-card__rating { color: var(--orange); font-weight: 600; }
.attraction-card__rating i { color: var(--orange); }
.attraction-card__location i { color: var(--purple); }

/* ============================================================
   EVENT CARDS
   ============================================================ */
.events-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.event-card {
  background: var(--bg-white);
  border-radius: var(--card-radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: flex-start;
  gap: 18px;
  padding: 20px;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
}
.event-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.event-card:focus-visible { outline: 3px solid var(--purple); outline-offset: 3px; }

.event-card__date-badge {
  background: var(--purple);
  color: #fff;
  border-radius: 10px;
  min-width: 52px;
  text-align: center;
  padding: 8px 10px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.event-card__date-badge--orange { background: var(--orange); }
.event-card__date-badge--green  { background: #27ae60; }

.event-card__month {
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.85;
}
.event-card__day {
  font-size: 1.6rem;
  font-weight: 800;
  line-height: 1;
}

.event-card__body { flex: 1; }

.event-card__category {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--purple);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
  margin-bottom: 4px;
}

.event-card__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.event-card__detail {
  font-size: 0.82rem;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 4px;
}
.event-card__detail i { color: var(--purple); width: 12px; text-align: center; }

.event-card__price {
  margin-top: 10px;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--orange);
}

/* Event card image (optional — shown when image_url is present) */
.event-card__img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 10px;
  display: block;
}

/* Image-on-top layout (matches homepage workshop / pill event cards) */
.event-card--with-img {
  flex-direction: column;
  align-items: stretch;
  padding: 0;
  overflow: hidden;
}

.event-card__media {
  position: relative;
}

.event-card--with-img .event-card__img {
  height: 168px;
  margin-bottom: 0;
  border-radius: 0;
}

.event-card--with-img .event-card__date-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
}

.event-card--with-img .event-card__body {
  padding: 16px 20px 20px;
}

/* Clickable title link */
.event-card__title-link {
  color: inherit;
  text-decoration: none;
}
.event-card__title-link:hover {
  color: var(--purple);
  text-decoration: underline;
}

/* ============================================================
   WORKSHOPS GRID
   ============================================================ */
/* workshops row — horizontal scroll + “see all” arrow */
.workshops-row {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-top: 28px;
}

.workshops-scroll {
  flex: 1;
  min-width: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  overscroll-behavior-x: contain;
  overscroll-behavior-y: auto;
}

.workshops-scroll::-webkit-scrollbar {
  display: none;
}

.workshops-grid {
  display: flex;
  flex-wrap: nowrap;
  gap: 16px;
  width: max-content;
  min-width: 100%;
  padding-bottom: 4px;
}

.workshops-grid > .workshop-card--pin,
.workshops-grid > .skeleton--card {
  flex: 0 0 220px;
  width: 220px;
  height: 308px;
  min-height: 308px;
  max-height: 308px;
}

.workshops-grid > .workshop-card--listing {
  flex: 0 0 192px;
  width: 192px;
  height: 284px;
  min-height: 284px;
  max-height: 284px;
}

.workshops-loading,
.workshops-empty {
  flex: 1 0 100%;
  width: 100%;
  min-width: 200px;
  text-align: center;
  padding: 40px;
}

.workshops-loading {
  color: var(--text-mid);
  font-size: 1rem;
}

.workshops-empty {
  color: var(--text-light);
}

.workshop-card {
  background: var(--color-background-primary, #fff);
  border: 0.5px solid #e8eaed;
  border-radius: 10px;
  overflow: hidden;
  transition: border-color 0.15s, box-shadow 0.15s;
  display: flex;
  flex-direction: column;
  color: inherit;
  box-sizing: border-box;
  flex-shrink: 0;
}

.workshop-card--pin {
  height: 308px;
  min-height: 308px;
  max-height: 308px;
  border-radius: 16px;
  box-shadow: 0 2px 14px rgba(15, 23, 42, 0.08);
}

.workshop-card--pin:hover {
  border-color: #d8dee6;
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.1);
}

.workshop-card--listing {
  height: 284px;
  min-height: 284px;
  max-height: 284px;
}

.workshop-card--listing:hover {
  border-color: #ccc;
}

.workshop-card__link {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
  height: 100%;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}

/* ── Pin layout (homepage) ── */
.workshop-card--pin .workshop-card__media {
  position: relative;
  flex-shrink: 0;
}

.workshop-card--pin .workshop-card__img,
.workshop-card--pin .workshop-card__img-placeholder {
  height: 152px;
  min-height: 152px;
  max-height: 152px;
  border-radius: 0;
}

.workshop-card--pin .workshop-card__price-badge {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  background: #fff;
  color: #1e293b;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  padding: 7px 14px;
  border-radius: 999px;
  box-shadow: 0 2px 10px rgba(15, 23, 42, 0.14);
  white-space: nowrap;
}

.workshop-card--pin .workshop-card__body {
  flex: 1;
  min-height: 0;
  display: flex;
  flex-direction: column;
  padding: 12px 14px 14px;
}

.workshop-card--pin .workshop-card__category {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7a9aad;
  margin-bottom: 6px;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.workshop-card--pin .workshop-card__title {
  font-size: 15px;
  font-weight: 700;
  color: #1a1a2e;
  line-height: 1.35;
  margin-bottom: 10px;
  min-width: 0;
  max-height: none;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  overflow-wrap: break-word;
}

.workshop-card--pin .workshop-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 14px;
  margin-top: auto;
  min-width: 0;
}

.workshop-card--pin .workshop-card__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11px;
  font-weight: 500;
  color: #7a9aad;
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.workshop-card--pin .workshop-card__meta-item i {
  font-size: 12px;
  flex-shrink: 0;
  opacity: 0.85;
}

.workshop-card__img {
  width: 100%;
  height: 168px;
  min-height: 168px;
  max-height: 168px;
  flex-shrink: 0;
  object-fit: cover;
  display: block;
}

.workshop-card__img-placeholder {
  width: 100%;
  height: 168px;
  min-height: 168px;
  max-height: 168px;
  flex-shrink: 0;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.workshop-card__img-placeholder i {
  font-size: 28px;
  color: #bbb;
}

.workshop-card--listing .workshop-card__body {
  flex: 1;
  min-height: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 7px 10px 3px;
}

.workshop-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  flex-shrink: 0;
  padding: 0 10px 8px;
  margin-top: auto;
}

.workshop-card__price-col {
  min-width: 0;
}

.workshop-card__book-btn {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  font-size: 11px;
  font-weight: 600;
  color: #fff;
  background: var(--orange);
  border: 1px solid rgba(255,255,255,0.95);
  border-radius: 6px;
  text-decoration: none;
  transition: background 0.15s;
}

.workshop-card__book-btn:hover {
  background: var(--orange-hover);
}

.workshop-card--listing .workshop-card__title {
  font-size: 13px;
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.3;
  margin-bottom: 4px;
  min-width: 0;
  max-height: 2.6em;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  overflow-wrap: break-word;
}

.workshop-card__stars {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 3px;
  margin-bottom: 5px;
  min-width: 0;
  overflow: hidden;
  white-space: nowrap;
}

.workshop-card__stars i {
  font-size: 12px;
  color: #bbb;
}

.workshop-card__stars .rating-num {
  font-size: 12px;
  font-weight: 500;
  color: #666;
  margin-left: 2px;
  flex-shrink: 0;
}

.workshop-card__stars .rating-count {
  font-size: 11px;
  color: #bbb;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.workshop-card--listing .workshop-card__location {
  font-size: 11px;
  color: #bbb;
  margin-bottom: 0;
  margin-top: auto;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.workshop-card--listing .workshop-card__location i {
  font-size: 13px;
  margin-right: 2px;
}

.workshop-card--listing .workshop-card__img,
.workshop-card--listing .workshop-card__img-placeholder {
  height: 168px;
  min-height: 168px;
  max-height: 168px;
}

.workshop-card__price {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a1a;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.workshop-card__price-sub {
  font-size: 10px;
  color: #bbb;
  margin-top: 0;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.workshops-more-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 52px;
  width: 52px;
  align-self: flex-start;
  min-height: 308px;
  background: var(--bg-white);
  border: 2px solid var(--border);
  border-radius: 10px;
  color: var(--purple);
  font-size: 1.3rem;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.workshops-more-btn:hover {
  background: var(--purple);
  border-color: var(--purple);
  color: #fff;
  transform: translateX(3px);
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--purple) 0%, #8b74f0 100%);
  padding: 60px 24px;
  color: #fff;
}

.cta-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.cta-banner__text { flex: 1; min-width: 200px; }

.cta-banner__title {
  font-size: 1.7rem;
  font-weight: 800;
  margin-bottom: 8px;
}

.cta-banner__sub {
  font-size: 0.95rem;
  opacity: 0.88;
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 520px;
}

.cta-banner__form {
  display: flex;
  align-items: center;
  gap: 0;
  max-width: 420px;
  background: rgba(255, 255, 255, 0.95);
  border-radius: 999px;
  padding: 5px 5px 5px 18px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

.cta-banner__input {
  flex: 1;
  min-width: 0;
  border: none;
  outline: none;
  background: transparent;
  font-size: 14px;
  font-family: 'Inter', sans-serif;
  color: #1e293b;
  padding: 10px 8px 10px 0;
}

.cta-banner__input::placeholder { color: #94a3b8; }

.cta-banner__btn {
  flex-shrink: 0;
  border: none;
  background: var(--orange);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  padding: 10px 18px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.15s;
}

.cta-banner__btn:hover { background: #e85a20; }

/* Store badges */
.cta-banner__badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cta-store-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(255,255,255,0.15);
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: 10px;
  padding: 8px 16px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}
.cta-store-badge i { font-size: 1.1rem; }

/* QR Code block */
.cta-qr {
  flex-shrink: 0;
}

.cta-qr__frame {
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  width: 180px;
}

.cta-qr__visual {
  position: relative;
  width: 140px;
  height: 140px;
}

.cta-qr__svg,
.cta-qr__img {
  width: 140px;
  height: 140px;
  display: block;
  border-radius: 8px;
}
  filter: blur(2.5px);
}

.cta-qr__label {
  font-size: 0.78rem;
  font-weight: 600;
  color: #1a1a2e;
  text-align: center;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* Newsletter signup — logo teardrop wisps (1 → 2 → 3) */
.oki-celebration {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 10000;
  overflow: hidden;
}

.oki-wisp {
  position: fixed;
  width: var(--size, 32px);
  height: calc(var(--size, 32px) * 1.85);
  margin-left: calc(var(--size, 32px) / -2);
  margin-top: calc(var(--size, 32px) * 1.85 / -2);
  opacity: 0;
  animation: oki-wisp-shoot 1.35s cubic-bezier(0.25, 0.46, 0.25, 1) forwards;
  animation-delay: var(--delay, 0ms);
  will-change: transform, opacity;
}

.oki-wisp svg {
  display: block;
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 2px 10px rgba(255, 255, 255, 0.35));
}

.oki-wisp__trail {
  position: absolute;
  left: 50%;
  top: 55%;
  width: 4px;
  height: 22px;
  margin-left: -2px;
  border-radius: 999px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.55), transparent);
  opacity: 0;
  animation: oki-wisp-trail 1.35s ease-out forwards;
  animation-delay: var(--delay, 0ms);
  transform-origin: center top;
}

@keyframes oki-wisp-shoot {
  0% {
    opacity: 0;
    transform: translate(0, 12px) rotate(var(--start-rot)) scale(0.35);
  }
  12% {
    opacity: 1;
    transform: translate(0, 0) rotate(var(--start-rot)) scale(1.05);
  }
  45% {
    opacity: 0.92;
    transform:
      translate(calc(var(--tx) * 0.42), calc(var(--ty) * 0.38))
      rotate(calc((var(--start-rot) + var(--end-rot)) / 2))
      scale(0.92);
  }
  100% {
    opacity: 0;
    transform:
      translate(var(--tx), var(--ty))
      rotate(var(--end-rot))
      scale(0.45);
    filter: blur(1.5px);
  }
}

@keyframes oki-wisp-trail {
  0%, 8% { opacity: 0; transform: scaleY(0.2); }
  25% { opacity: 0.7; transform: scaleY(1); }
  100% { opacity: 0; transform: scaleY(1.6) translateY(-18px); }
}

@media (prefers-reduced-motion: reduce) {
  .oki-celebration { display: none; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: #0f0f1a;
  color: rgba(255,255,255,0.75);
  padding: 60px 0 32px;
  font-size: 0.875rem;
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__logo-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 14px;
}
.footer__logo-img {
  height: 40px;
  width: auto;
  display: block;
  object-fit: contain;
}

.footer__tagline {
  font-size: 0.875rem;
  opacity: 0.7;
  line-height: 1.6;
  margin-bottom: 20px;
}

.footer__social {
  display: flex;
  gap: 14px;
}

.footer__social a {
  color: rgba(255,255,255,0.55);
  font-size: 1.2rem;
  transition: color var(--transition);
}
.footer__social a:hover { color: #fff; }

.footer__nav-title {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 16px;
}

.footer__nav ul { display: flex; flex-direction: column; gap: 10px; }

.footer__nav a {
  color: rgba(255,255,255,0.62);
  font-size: 0.875rem;
  transition: color var(--transition);
}
.footer__nav a:hover { color: #fff; }

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  font-size: 0.8rem;
  opacity: 0.5;
  flex-wrap: wrap;
  gap: 8px;
}

/* ============================================================
   SEARCH RESULTS OVERLAY
   ============================================================ */
.search-toast {
  position: fixed;
  top: 80px;
  left: 50%;
  transform: translateX(-50%) translateY(-20px);
  background: var(--text-dark);
  color: #fff;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 500;
  box-shadow: var(--shadow-lg);
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
  max-width: 90vw;
  text-align: center;
}
.search-toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .attractions-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
  .locations-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 720px) {
  .navbar__links { display: none; }
  .navbar__action-btn span { display: none; }
  .navbar__action-btn { min-width: auto; padding: 8px; }
  .hero { height: 260px; }
  .hero__arrow { width: 36px; height: 44px; }
  .hero__arrow svg { width: 18px; height: 18px; }
  .hero__arrow--prev { left: 10px; }
  .hero__arrow--next { right: 10px; }

  .workshops-grid > .workshop-card--pin,
  .workshops-grid > .skeleton--card {
    flex: 0 0 min(220px, 72vw);
    width: min(220px, 72vw);
    height: 308px;
    min-height: 308px;
    max-height: 308px;
  }

  .workshops-more-btn {
    flex: 0 0 44px;
    width: 44px;
    min-height: 308px;
  }

  /* Attractions: one row, two columns */
  .attractions-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .attraction-card:nth-child(n+3) {
    display: none;
  }

  /* Events: single column, up to four */
  .events-grid { grid-template-columns: 1fr; }
  .event-card:nth-child(n+5) {
    display: none;
  }

  .cta-banner__inner { flex-direction: column; text-align: center; }
  .cta-banner__form { margin: 0 auto; width: 100%; max-width: 420px; }
  .cta-banner__input { width: 100%; }
}

@media (max-width: 560px) {
  .locations-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer__grid {
    grid-template-columns: 1fr;
  }
  .footer__bottom { flex-direction: column; text-align: center; }
  .categories__row { justify-content: flex-start; overflow-x: auto; flex-wrap: nowrap; padding-bottom: 14px; }
}

/* ============================================================
   MOBILE NAV HAMBURGER (hidden on desktop)
   ============================================================ */
.navbar__hamburger {
  display: none;
  background: none;
  border: none;
  color: var(--text-dark);
  font-size: 1.4rem;
  padding: 6px;
  margin-left: 8px;
}

@media (max-width: 720px) {
  .navbar__hamburger { display: flex; align-items: center; }
}

/* mobile nav overlay */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(15,15,26,0.96);
  z-index: 500;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 40px;
}
.mobile-nav.open { display: flex; }

.mobile-nav a, .mobile-nav button {
  color: #fff;
  font-size: 1.3rem;
  font-weight: 600;
  background: none;
  border: none;
  text-align: center;
  transition: color var(--transition);
}
.mobile-nav a:hover, .mobile-nav button:hover { color: var(--orange); }

.mobile-nav__close {
  position: absolute;
  top: 20px;
  right: 24px;
  color: rgba(255,255,255,0.7);
  font-size: 1.5rem;
  background: none;
  border: none;
}

/* ── Book Workshops Nearby (pin / event detail) ─────────────────── */
.nearby-workshops {
  margin-top: 36px;
  padding-top: 8px;
  width: 100%;
  box-sizing: border-box;
}

.nearby-workshops__heading {
  margin-bottom: 14px;
  margin-left: 0;
  padding-left: 0;
  text-align: left;
  width: 100%;
}

.nearby-workshops__heading--bar {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
}

.nearby-workshops__heading--bar::before {
  content: '';
  display: inline-block;
  width: 4px;
  height: 22px;
  border-radius: 4px;
  background: #cbd5e1;
  flex-shrink: 0;
}

.nearby-workshops__heading-text {
  min-width: 0;
}

.nearby-workshops__scroll {
  margin: 0;
  padding: 0 0 10px;
  width: 100%;
  scroll-padding-inline: 0;
}

.nearby-workshops .workshops-grid.pill-row__grid.nearby-workshops__grid {
  min-width: 0;
  width: max-content;
  margin: 0;
  padding: 0 0 4px;
  justify-content: flex-start;
}

.nearby-workshops__grid > .nearby-ws__empty,
.nearby-workshops__grid > .pill-results__empty {
  flex: 1 0 100%;
  min-width: 100%;
}

.nearby-ws__empty {
  font-size: 14px;
  color: #94a3b8;
  text-align: center;
  padding: 16px 8px;
  line-height: 1.55;
  margin: 0;
}
