/* ==========================================================================
   Wellbeing Lebanon - style_home.css
   ========================================================================== */

:root {
  --wb-olive: #686F57;
  --wb-olive-dark: #545a46;
  --wb-sage: #A3A576;
  --wb-sand: #DDBA94;
  --wb-sand-soft: #f0e2d3;
  --wb-shell: #E9E4DD;
  --wb-shell-soft: #f6f4f0;

  --wb-ink: #1d2118;
  --wb-body: #4a4f45;
  --wb-muted: #7b8175;
  --wb-line: #e6e3dc;
  --wb-line-strong: #d5d1c7;

  --wb-whatsapp: #25D366;
  --wb-whatsapp-dark: #1da851;
  --wb-star: #e8a33d;
  --wb-success: #3f7d55;
  --wb-danger: #b3453b;

  --wb-max: 1240px;
  --wb-radius: 12px;
  --wb-radius-sm: 8px;
  --wb-shadow-sm: 0 2px 8px rgba(29, 33, 24, .05);
  --wb-shadow: 0 6px 20px rgba(29, 33, 24, .07);
  --wb-shadow-lg: 0 16px 40px rgba(29, 33, 24, .10);

  --font-ui: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-display: "Cormorant Garamond", Georgia, serif;

  --ease: cubic-bezier(.4, 0, .2, 1);
}

* { box-sizing: border-box; }

body {
  font-family: var(--font-ui);
  color: var(--wb-body);
  background: #fff;
  font-size: .925rem;
  line-height: 1.65;
  margin: 0;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--wb-ink);
  font-weight: 600;
  letter-spacing: -.015em;
  line-height: 1.15;
  margin: 0;
}

h1 { font-size: clamp(2.1rem, 4.6vw, 3.3rem); }
h2 { font-size: clamp(1.55rem, 3vw, 2.05rem); }
h3 { font-size: 1.25rem; }

p { margin: 0; }
img { max-width: 100%; display: block; }
ul { margin: 0; padding: 0; list-style: none; }

a { color: var(--wb-olive); text-decoration: none; transition: color .18s var(--ease); }
a:hover { color: var(--wb-olive-dark); }

:focus-visible { outline: 2px solid var(--wb-olive); outline-offset: 2px; border-radius: 4px; }

.wb-container { width: 100%; max-width: var(--wb-max); margin: 0 auto; padding: 0 20px; }
@media (max-width: 575.98px) { .wb-container { padding: 0 16px; } }

.wb-skip {
  position: absolute; left: -9999px; top: 0; z-index: 2000;
  background: var(--wb-olive); color: #fff; padding: 12px 20px; font-weight: 600;
}
.wb-skip:focus { left: 0; color: #fff; }

.wb-section { padding: 56px 0; }
.wb-section-shell { background: var(--wb-shell-soft); }
@media (max-width: 767.98px) { .wb-section { padding: 40px 0; } }

.wb-section-head {
  display: flex; align-items: center; justify-content: space-between;
  gap: 16px; margin-bottom: 22px;
}
.wb-view-all {
  font-size: .85rem; font-weight: 500; color: var(--wb-muted);
  display: inline-flex; align-items: center; gap: 6px; white-space: nowrap;
}
.wb-view-all:hover { color: var(--wb-olive); }
.wb-head-nav { display: flex; align-items: center; gap: 8px; }

/* ==========================================================================
   Buttons
   ========================================================================== */

.wb-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-ui); font-size: .875rem; font-weight: 500;
  padding: .6rem 1.2rem; border-radius: var(--wb-radius-sm);
  border: 1px solid transparent; cursor: pointer;
  transition: all .18s var(--ease); line-height: 1.4; text-align: center;
}
.wb-btn-primary { background: var(--wb-olive); color: #fff; border-color: var(--wb-olive); }
.wb-btn-primary:hover { background: var(--wb-olive-dark); border-color: var(--wb-olive-dark); color: #fff; }
.wb-btn-outline { background: #fff; color: var(--wb-ink); border-color: var(--wb-line-strong); }
.wb-btn-outline:hover { border-color: var(--wb-olive); color: var(--wb-olive); }
.wb-btn-outline.is-active { background: var(--wb-olive); color: #fff; border-color: var(--wb-olive); }
.wb-btn-wa { background: var(--wb-whatsapp); color: #fff; border-color: var(--wb-whatsapp); }
.wb-btn-wa:hover { background: var(--wb-whatsapp-dark); border-color: var(--wb-whatsapp-dark); color: #fff; }
.wb-btn-lg { padding: .8rem 1.7rem; font-size: .95rem; }
.wb-btn-sm { padding: .4rem .85rem; font-size: .8rem; }
.wb-btn-block { width: 100%; }
.wb-btn:disabled { opacity: .5; pointer-events: none; }

.wb-icon-btn {
  width: 36px; height: 36px; flex: 0 0 36px; padding: 0;
  border-radius: 50%; background: #fff; border: 1px solid var(--wb-line-strong);
  color: var(--wb-body); display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all .18s var(--ease); position: relative;
}
.wb-icon-btn:hover { border-color: var(--wb-olive); color: var(--wb-olive); }

/* ==========================================================================
   Header
   ========================================================================== */

.wb-header {
  position: sticky; top: 0; z-index: 1030;
  background: rgba(255,255,255,.97); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--wb-line);
}
.wb-header-inner { height: 74px; display: flex; align-items: center; gap: 26px; }

.wb-logo { display: inline-flex; align-items: center; gap: 9px; flex-shrink: 0; }
.wb-logo i { font-size: 1.7rem; color: var(--wb-olive); line-height: 1; }
.wb-logo-name {
  font-size: .92rem; font-weight: 700; letter-spacing: .1em;
  color: var(--wb-olive); text-transform: uppercase; display: block; line-height: 1.1;
}
.wb-logo-sub {
  font-size: .58rem; font-weight: 500; letter-spacing: .2em;
  color: var(--wb-muted); text-transform: uppercase; display: block;
}

.wb-nav { display: flex; align-items: center; gap: 22px; margin: 0 auto; }
.wb-nav > li > a, .wb-nav .dropdown-toggle {
  font-size: .875rem; font-weight: 500; color: var(--wb-body);
  padding: 6px 0; position: relative; display: inline-flex; align-items: center; gap: 4px;
}
.wb-nav a:hover { color: var(--wb-olive); }
.wb-nav a.is-active { color: var(--wb-ink); font-weight: 600; }
.wb-nav a.is-active::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0;
  height: 2px; background: var(--wb-olive); border-radius: 2px;
}
.wb-nav .dropdown-toggle::after { display: none; }

.wb-header-end { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }

.wb-fav-count {
  position: absolute; top: -4px; right: -4px; min-width: 17px; height: 17px;
  background: var(--wb-olive); color: #fff; border-radius: 999px;
  font-size: .62rem; font-weight: 700; display: flex; align-items: center;
  justify-content: center; padding: 0 4px;
}

.wb-mega { padding: 14px; border: 1px solid var(--wb-line); border-radius: var(--wb-radius); box-shadow: var(--wb-shadow-lg); min-width: 440px; }
.wb-mega-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; }
.wb-mega-grid a {
  display: flex; align-items: center; gap: 10px; padding: 10px 12px;
  border-radius: var(--wb-radius-sm); color: var(--wb-body); font-size: .87rem;
}
.wb-mega-grid a:hover { background: var(--wb-shell-soft); color: var(--wb-ink); }
.wb-mega-grid i { color: var(--wb-olive); font-size: 1.05rem; }
.wb-mega-all {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  margin-top: 8px; padding-top: 12px; border-top: 1px solid var(--wb-line);
  font-size: .85rem; font-weight: 500;
}

.wb-burger { display: none; background: none; border: none; color: var(--wb-ink); font-size: 1.5rem; padding: 4px; cursor: pointer; }

@media (max-width: 991.98px) {
  .wb-nav, .wb-desktop-only { display: none !important; }
  .wb-burger { display: inline-flex; }
  .wb-header-inner { justify-content: space-between; gap: 12px; }
}

/* Offcanvas mobile menu */
.wb-offcanvas { width: 320px; max-width: 88vw; }
.wb-offcanvas .offcanvas-header { border-bottom: 1px solid var(--wb-line); padding: 18px 20px; }
.wb-offcanvas .offcanvas-body { padding: 8px 20px 20px; display: flex; flex-direction: column; }
.wb-side-nav li a {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 0; font-size: 1rem; font-weight: 500;
  color: var(--wb-ink); border-bottom: 1px solid var(--wb-line);
}
.wb-side-nav li a:hover { color: var(--wb-olive); }
.wb-side-actions { display: grid; gap: 10px; margin-top: 22px; }

/* ==========================================================================
   Hero
   ========================================================================== */

.wb-hero { position: relative; z-index: 3; background: var(--wb-shell-soft); overflow: visible; }
.wb-hero-grid { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 40px; min-height: 480px; }
.wb-hero-copy { position: relative; z-index: 4; padding: 56px 0; max-width: 560px; }
.wb-eyebrow {
  font-size: .8rem; font-weight: 500; color: var(--wb-olive);
  display: inline-flex; align-items: center; gap: 8px; margin-bottom: 14px;
}
.wb-hero h1 { margin-bottom: 16px; }
.wb-hero-lead { font-size: 1rem; color: var(--wb-body); margin-bottom: 26px; max-width: 480px; }

.wb-searchbar {
  display: flex; align-items: center; gap: 6px; background: #fff;
  border: 1px solid var(--wb-line); border-radius: var(--wb-radius);
  padding: 7px; box-shadow: var(--wb-shadow-sm); margin-bottom: 18px;
}
.wb-searchbar .wb-field { flex: 1; display: flex; align-items: center; gap: 8px; padding: 0 12px; min-width: 0; }
.wb-searchbar .wb-field i { color: var(--wb-muted); font-size: 1rem; flex-shrink: 0; }
.wb-searchbar input, .wb-searchbar select {
  border: 0; outline: 0; font-size: .875rem; font-family: var(--font-ui);
  color: var(--wb-ink); background: none; width: 100%; padding: 10px 0;
}
.wb-searchbar .wb-field-divider { width: 1px; height: 26px; background: var(--wb-line); flex-shrink: 0; }
.wb-searchbar .wb-btn { flex-shrink: 0; }

/* --------------------------------------------------------------------------
   Location selector — custom listbox replacing the native <select>
   Shares the date picker's shell so both hero popups read as one system.
   -------------------------------------------------------------------------- */
.wb-searchbar .wb-field-loc {
  flex: 0 0 218px;
  padding: 0;
  position: relative;
}
.wb-searchbar .wb-field-loc::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: var(--wb-radius-sm);
  background: transparent;
  transition: background .18s var(--ease);
  pointer-events: none;
}
.wb-searchbar .wb-field-loc:hover::before { background: var(--wb-shell-soft); }

.wb-loc-trigger {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 12px;
  border: 0;
  border-radius: var(--wb-radius-sm);
  background: transparent;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-ui);
  color: var(--wb-ink);
  transition: color .18s var(--ease);
}
.wb-loc-trigger > .bi-geo-alt {
  font-size: 1rem;
  color: var(--wb-muted);
  flex-shrink: 0;
  transition: color .18s var(--ease);
}
.wb-loc-trigger:hover > .bi-geo-alt,
.wb-loc-trigger[aria-expanded="true"] > .bi-geo-alt { color: var(--wb-olive); }

.wb-loc-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
  min-width: 0;
  flex: 1;
}
.wb-loc-label {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--wb-muted);
  line-height: 1.2;
}
.wb-loc-value {
  font-size: .875rem;
  font-weight: 500;
  color: var(--wb-ink);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.wb-loc-value.is-placeholder { color: var(--wb-body); font-weight: 400; }

.wb-loc-caret {
  font-size: .8rem;
  color: var(--wb-muted);
  flex-shrink: 0;
  transition: transform .2s var(--ease), color .18s var(--ease);
}
.wb-loc-trigger[aria-expanded="true"] .wb-loc-caret {
  transform: rotate(180deg);
  color: var(--wb-olive);
}
.wb-loc-trigger:focus-visible {
  outline: 2px solid var(--wb-olive);
  outline-offset: 2px;
}

/* Panel — fixed to body, positioned by JS, same shell as the date picker */
.wb-loc-menu {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2000;
  width: 292px;
  max-width: calc(100vw - 24px);
  isolation: isolate;
}
.wb-loc-menu[hidden] { display: none !important; }
.wb-loc-menu-inner {
  background: #fff;
  border: 1px solid var(--wb-line);
  border-radius: 14px;
  box-shadow: 0 18px 48px rgba(29, 33, 24, .14);
  padding: 8px;
  animation: wbLocIn .16s var(--ease);
}
@keyframes wbLocIn {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
@media (prefers-reduced-motion: reduce) {
  .wb-loc-menu-inner { animation: none; }
  .wb-loc-caret { transition: none; }
}

.wb-loc-menu-head {
  font-family: var(--font-ui);
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--wb-muted);
  margin: 0;
  padding: 8px 10px 10px;
}

.wb-loc-list {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 320px;
  overflow-y: auto;
}
.wb-loc-list:focus { outline: 0; }

.wb-loc-opt {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 9px;
  cursor: pointer;
  transition: background .15s var(--ease);
}
.wb-loc-opt + .wb-loc-opt { margin-top: 1px; }
.wb-loc-opt:hover,
.wb-loc-opt.is-active { background: var(--wb-shell-soft); }

.wb-loc-opt-name {
  flex: 1;
  min-width: 0;
  font-family: var(--font-ui);
  font-size: .875rem;
  font-weight: 500;
  color: var(--wb-ink);
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.wb-loc-opt-check {
  font-size: .95rem;
  color: var(--wb-olive);
  flex-shrink: 0;
  opacity: 0;
  transform: scale(.7);
  transition: opacity .15s var(--ease), transform .15s var(--ease);
}
.wb-loc-opt.is-selected .wb-loc-opt-check { opacity: 1; transform: scale(1); }
.wb-loc-opt.is-selected .wb-loc-opt-name { color: var(--wb-olive); font-weight: 600; }

@media (max-width: 767.98px) {
  .wb-searchbar .wb-field-loc { flex: 1 1 100%; }
  .wb-loc-menu { width: calc(100vw - 24px); }
}

.wb-quick-dates-wrap { position: relative; z-index: 5; margin-bottom: 26px; }
.wb-quick-dates { display: flex; gap: 10px; flex-wrap: wrap; }

/* Custom date picker — fixed to body so it never sits under page sections */
.wb-date-picker {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2000;
  width: 312px;
  max-width: calc(100vw - 24px);
  /* Own stacking context so nothing on the page can paint over the popup. */
  isolation: isolate;
}
.wb-date-picker[hidden] { display: none !important; }
.wb-date-picker-inner {
  background: #fff;
  border: 1px solid var(--wb-line);
  border-radius: 14px;
  box-shadow: 0 18px 48px rgba(29, 33, 24, .14);
  padding: 16px;
}
.wb-date-picker-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 14px;
}
.wb-date-picker-title {
  flex: 1;
  text-align: center;
  font-family: var(--font-ui);
  font-size: .95rem;
  font-weight: 600;
  color: var(--wb-ink);
  margin: 0;
  line-height: 1.2;
}
.wb-date-picker-head .wb-icon-btn {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 50%;
  border: 1px solid var(--wb-line-strong);
  background: #fff;
  color: var(--wb-body);
}
.wb-date-picker-head .wb-icon-btn:hover {
  border-color: var(--wb-olive);
  color: var(--wb-olive);
  background: var(--wb-shell-soft);
}

.wb-date-picker-dows,
.wb-date-picker-grid {
  display: grid !important;
  grid-template-columns: repeat(7, 1fr) !important;
  gap: 4px;
  width: 100%;
}
.wb-date-picker-dows {
  margin-bottom: 6px;
}
.wb-date-picker-dows span {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  font-size: .7rem;
  font-weight: 600;
  color: var(--wb-muted);
  text-transform: uppercase;
  letter-spacing: .04em;
}

.wb-cal-empty {
  display: block;
  width: 100%;
  height: 36px;
  visibility: hidden;
  pointer-events: none;
}

.wb-cal-day {
  -webkit-appearance: none;
  appearance: none;
  box-sizing: border-box;
  width: 100%;
  height: 36px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  box-shadow: none;
  font-family: var(--font-ui);
  font-size: .84rem;
  font-weight: 500;
  color: var(--wb-ink);
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .15s var(--ease), color .15s var(--ease), box-shadow .15s var(--ease);
}
.wb-cal-day:hover:not(:disabled) {
  background: var(--wb-shell-soft);
  color: var(--wb-olive);
}
.wb-cal-day.is-today {
  box-shadow: inset 0 0 0 1.5px var(--wb-olive);
  font-weight: 700;
}
.wb-cal-day.is-pending,
.wb-cal-day.is-selected {
  background: var(--wb-olive);
  color: #fff;
  font-weight: 700;
  box-shadow: none;
}
.wb-cal-day.is-pending:hover,
.wb-cal-day.is-selected:hover {
  background: var(--wb-olive-dark);
  color: #fff;
}
.wb-cal-day.is-past,
.wb-cal-day:disabled {
  color: #c5c8bf;
  background: transparent;
  cursor: default;
  opacity: 1;
}

.wb-date-picker-foot {
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--wb-line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}
.wb-date-picker-selected {
  font-size: .82rem;
  font-weight: 500;
  color: var(--wb-ink);
  margin: 0;
}
.wb-date-picker-actions {
  display: flex;
  gap: 8px;
  margin-left: auto;
}

@media (max-width: 575.98px) {
  .wb-date-picker { width: calc(100vw - 24px); }
}

.wb-hero-stats {
  display: flex; gap: 26px; background: rgba(255,255,255,.92);
  border-radius: var(--wb-radius); padding: 14px 20px; width: fit-content;
  box-shadow: var(--wb-shadow-sm); flex-wrap: wrap;
}
.wb-hero-stats div { display: flex; align-items: center; gap: 8px; font-size: .82rem; color: var(--wb-body); }
.wb-hero-stats i { color: var(--wb-olive); font-size: 1rem; }
.wb-hero-stats strong { color: var(--wb-ink); font-weight: 700; }

.wb-hero-media { position: relative; z-index: 1; height: 100%; min-height: 480px; overflow: hidden; }
.wb-hero-media > img { width: 100%; height: 100%; object-fit: cover; }
.wb-hero-float {
  position: absolute; border-radius: var(--wb-radius); overflow: hidden;
  box-shadow: var(--wb-shadow-lg); border: 3px solid #fff;
}
.wb-hero-float img { width: 100%; height: 100%; object-fit: cover; }
.wb-hero-float-1 { width: 150px; height: 190px; bottom: 90px; left: -40px; }
.wb-hero-float-2 { width: 168px; height: 124px; bottom: 34px; right: 44px; }
.wb-hero-badge {
  position: absolute; top: 40px; right: 34px; width: 106px; height: 106px;
  border-radius: 50%; background: rgba(255,255,255,.95); backdrop-filter: blur(6px);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; font-size: .68rem; color: var(--wb-body);
  line-height: 1.3; padding: 12px; box-shadow: var(--wb-shadow);
}
.wb-hero-badge i { color: var(--wb-olive); font-size: 1.1rem; margin-top: 4px; }

@media (max-width: 991.98px) {
  .wb-hero-grid { grid-template-columns: 1fr; gap: 0; min-height: 0; }
  .wb-hero-copy { padding: 40px 0 32px; max-width: none; }
  .wb-hero-media { min-height: 300px; height: 300px; margin: 0 -20px; }
  .wb-hero-float, .wb-hero-badge { display: none; }
  .wb-searchbar { flex-wrap: wrap; }
  .wb-searchbar .wb-field { flex: 1 1 100%; }
  .wb-searchbar .wb-field-divider { display: none; }
  .wb-searchbar .wb-btn { width: 100%; }
  .wb-hero-stats { width: 100%; gap: 16px; justify-content: space-between; }
}
@media (max-width: 575.98px) {
  .wb-hero-stats { font-size: .75rem; padding: 12px 14px; }
  .wb-quick-dates .wb-btn { flex: 1; }
}

/* ==========================================================================
   Grids
   ========================================================================== */

.wb-grid { display: grid; gap: 20px; }
.wb-grid-6 { grid-template-columns: repeat(6, 1fr); gap: 14px; }
.wb-grid-5 { grid-template-columns: repeat(5, 1fr); }
.wb-grid-4 { grid-template-columns: repeat(4, 1fr); }
.wb-grid-3 { grid-template-columns: repeat(3, 1fr); }
.wb-grid-2 { grid-template-columns: repeat(2, 1fr); }

@media (max-width: 1199.98px) {
  .wb-grid-6 { grid-template-columns: repeat(4, 1fr); }
  .wb-grid-5 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 991.98px) {
  .wb-grid-4, .wb-grid-3, .wb-grid-5 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767.98px) {
  .wb-grid { gap: 14px; }
  .wb-grid-6 { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 575.98px) {
  .wb-grid-4, .wb-grid-3, .wb-grid-2, .wb-grid-5 { grid-template-columns: 1fr; }
  .wb-grid-6 { grid-template-columns: repeat(2, 1fr); }
}

/* ==========================================================================
   Category tiles
   ========================================================================== */

.wb-cat {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  gap: 10px; padding: 24px 12px; background: var(--wb-shell-soft);
  border: 1px solid transparent; border-radius: var(--wb-radius);
  color: var(--wb-ink); text-align: center; transition: all .18s var(--ease);
}
.wb-cat:hover { background: #fff; border-color: var(--wb-olive); color: var(--wb-olive); transform: translateY(-2px); }
.wb-cat i { font-size: 1.75rem; color: var(--wb-olive); line-height: 1; }
.wb-cat span { font-size: .82rem; font-weight: 500; }

/* ==========================================================================
   Activity card
   ========================================================================== */

.wb-card {
  position: relative;
  background: #fff; border: 1px solid var(--wb-line);
  border-radius: var(--wb-radius); overflow: hidden; height: 100%;
  display: flex; flex-direction: column;
  transition: box-shadow .18s var(--ease), border-color .18s var(--ease);
}
.wb-card:hover { box-shadow: var(--wb-shadow); border-color: var(--wb-line-strong); }
.wb-card-media { position: relative; aspect-ratio: 16 / 11; overflow: hidden; background: var(--wb-shell); flex-shrink: 0; }
.wb-card-media > a {
  display: block; position: absolute; inset: 0; z-index: 0;
}
.wb-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.wb-card:hover .wb-card-media img { transform: scale(1.04); }
.wb-card-body { padding: 14px; display: flex; flex-direction: column; flex: 1; position: relative; z-index: 0; }
.wb-card-title {
  font-family: var(--font-ui); font-size: .92rem; font-weight: 600;
  color: var(--wb-ink); line-height: 1.35; margin: 0 0 6px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
a:hover .wb-card-title { color: var(--wb-olive); }

/* Whole card opens activity details; fav and organizer links stay above */
.wb-card-body > a:first-child::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}
.wb-card-org {
  position: relative;
  z-index: 2;
}

.wb-card-meta {
  font-size: .78rem; color: var(--wb-muted); display: flex;
  align-items: center; gap: 5px; margin-bottom: 10px;
}
.wb-card-meta i { font-size: .85rem; flex-shrink: 0; }
.wb-card-org { display: flex; align-items: center; gap: 7px; font-size: .78rem; color: var(--wb-body); margin-bottom: 10px; }
.wb-card-org img { width: 20px; height: 20px; border-radius: 50%; object-fit: cover; flex-shrink: 0; }
.wb-card-org a { color: inherit; font-weight: 500; }
.wb-card-org a:hover { color: var(--wb-olive); }
.wb-card-foot {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 10px;
  margin-top: auto; padding-top: 11px; border-top: 1px solid var(--wb-line);
  position: relative; z-index: 0;
}

/* Price reads as one unit: a quiet "from", the figure, then the unit. */
.wb-price-block {
  display: flex;
  align-items: baseline;
  gap: 4px;
  flex-wrap: wrap;
  min-width: 0;
}
.wb-price-label,
.wb-price-unit {
  font-family: var(--font-ui);
  font-size: .7rem;
  font-weight: 500;
  color: var(--wb-muted);
  line-height: 1;
}
.wb-price-label { text-transform: uppercase; letter-spacing: .05em; }
.wb-price {
  font-family: var(--font-ui); font-size: 1.08rem; font-weight: 700;
  color: var(--wb-ink); line-height: 1;
}
.wb-price small { font-size: .7rem; font-weight: 500; color: var(--wb-muted); }

/* Reads as the card's action without being a second tab stop —
   the whole card is already the link. */
.wb-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
  font-family: var(--font-ui);
  font-size: .76rem;
  font-weight: 600;
  color: var(--wb-olive);
  line-height: 1;
  white-space: nowrap;
  opacity: .78;
  transition: opacity .18s var(--ease), gap .18s var(--ease);
}
.wb-card-cta i {
  font-size: .8rem;
  transition: transform .18s var(--ease);
}
.wb-card:hover .wb-card-cta { opacity: 1; }
.wb-card:hover .wb-card-cta i { transform: translateX(3px); }

@media (prefers-reduced-motion: reduce) {
  .wb-card-cta, .wb-card-cta i { transition: none; }
  .wb-card:hover .wb-card-cta i { transform: none; }
}

/* Media overlays */
.wb-chip-date {
  position: absolute; top: 11px; left: 11px; background: #fff;
  border-radius: var(--wb-radius-sm); padding: 6px 9px; text-align: center;
  box-shadow: var(--wb-shadow-sm); line-height: 1.1; min-width: 44px;
  z-index: 1; pointer-events: none;
}
.wb-chip-date .m { font-size: .58rem; font-weight: 700; letter-spacing: .06em; color: var(--wb-olive); display: block; }
.wb-chip-date .d { font-size: .95rem; font-weight: 700; color: var(--wb-ink); display: block; }

.wb-chip-rating {
  position: absolute; top: 11px; left: 11px; background: rgba(255,255,255,.95);
  border-radius: 999px; padding: 3px 9px; font-size: .73rem; font-weight: 600;
  color: var(--wb-ink); display: inline-flex; align-items: center; gap: 3px;
  box-shadow: var(--wb-shadow-sm);
  z-index: 1; pointer-events: none;
}
.wb-chip-rating i { color: var(--wb-star); font-size: .72rem; }

.wb-chip-tag {
  position: absolute; top: 11px; left: 11px; background: rgba(255,255,255,.95);
  border-radius: 999px; padding: 3px 11px; font-size: .72rem; font-weight: 600;
  color: var(--wb-ink); box-shadow: var(--wb-shadow-sm);
  z-index: 1; pointer-events: none;
}
.wb-chip-new {
  position: absolute; top: 11px; left: 11px; background: var(--wb-olive); color: #fff;
  border-radius: var(--wb-radius-sm); padding: 3px 9px; font-size: .62rem;
  font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
  z-index: 1; pointer-events: none;
}

.wb-fav {
  position: absolute; top: 11px; right: 11px; width: 30px; height: 30px;
  border-radius: 50%; background: rgba(255,255,255,.93); border: none;
  color: var(--wb-body); display: inline-flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all .18s var(--ease); box-shadow: var(--wb-shadow-sm);
  font-size: .95rem; padding: 0; z-index: 2;
}
.wb-fav:hover { background: #fff; color: var(--wb-danger); transform: scale(1.08); }
.wb-fav.is-active { color: var(--wb-danger); }

.wb-rating { display: inline-flex; align-items: center; gap: 4px; font-size: .8rem; font-weight: 600; color: var(--wb-ink); }
.wb-rating i { color: var(--wb-star); font-size: .78rem; }
.wb-rating span { color: var(--wb-muted); font-weight: 400; }

/* ==========================================================================
   Upcoming row card
   ========================================================================== */

.wb-upcoming {
  display: flex; align-items: center; gap: 14px; padding: 13px;
  background: #fff; border: 1px solid var(--wb-line); border-radius: var(--wb-radius);
  transition: all .18s var(--ease); height: 100%;
}
.wb-upcoming:hover { box-shadow: var(--wb-shadow); border-color: var(--wb-line-strong); }
.wb-upcoming-date {
  flex-shrink: 0; width: 50px; text-align: center; background: var(--wb-shell-soft);
  border-radius: var(--wb-radius-sm); padding: 8px 4px; line-height: 1.15;
}
.wb-upcoming-date .m { font-size: .58rem; font-weight: 700; color: var(--wb-olive); display: block; letter-spacing: .05em; }
.wb-upcoming-date .d { font-size: 1.05rem; font-weight: 700; color: var(--wb-ink); display: block; }
.wb-upcoming-date .wd { font-size: .55rem; color: var(--wb-muted); display: block; letter-spacing: .05em; }
.wb-upcoming-body { flex: 1; min-width: 0; }
.wb-upcoming-body .wb-card-title { margin-bottom: 4px; }
.wb-upcoming-body .wb-card-meta { margin-bottom: 2px; font-size: .74rem; }

/* ==========================================================================
   Organizer card
   ========================================================================== */

.wb-org-card {
  background: #fff; border: 1px solid var(--wb-line); border-radius: var(--wb-radius);
  padding: 18px 14px; text-align: center; transition: all .18s var(--ease); height: 100%;
  display: flex; flex-direction: column; align-items: center;
}
.wb-org-card:hover { box-shadow: var(--wb-shadow); border-color: var(--wb-line-strong); }
.wb-org-logo {
  width: 54px; height: 54px; border-radius: 50%; object-fit: cover;
  border: 1px solid var(--wb-line); margin-bottom: 11px;
}
.wb-org-name { font-family: var(--font-ui); font-size: .88rem; font-weight: 600; color: var(--wb-ink); margin: 0 0 3px; }
.wb-org-tag { font-size: .74rem; color: var(--wb-muted); margin-bottom: 8px; }
.wb-org-card .wb-btn { margin-top: auto; }

/* ==========================================================================
   Trust bar + footer
   ========================================================================== */

.wb-trust { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; padding: 36px 0; }
.wb-trust-item { display: flex; gap: 12px; align-items: flex-start; }
.wb-trust-item i { color: var(--wb-olive); font-size: 1.3rem; line-height: 1.2; flex-shrink: 0; }
.wb-trust-item h4 { font-family: var(--font-ui); font-size: .87rem; font-weight: 600; margin: 0 0 2px; color: var(--wb-ink); }
.wb-trust-item p { font-size: .78rem; color: var(--wb-muted); line-height: 1.5; }
@media (max-width: 767.98px) { .wb-trust { grid-template-columns: repeat(2, 1fr); gap: 20px; } }
@media (max-width: 479.98px) { .wb-trust { grid-template-columns: 1fr; } }

.wb-footer { background: var(--wb-shell-soft); border-top: 1px solid var(--wb-line); }
.wb-footer-main { padding: 52px 0 34px; }
.wb-footer-grid { display: grid; grid-template-columns: 1.7fr repeat(3, 1fr) 1.5fr; gap: 32px; }
.wb-footer-brand p { font-size: .84rem; color: var(--wb-muted); margin: 14px 0 16px; max-width: 250px; }
.wb-footer h4 {
  font-family: var(--font-ui); font-size: .78rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em; color: var(--wb-ink); margin: 0 0 14px;
}
.wb-footer ul li { margin-bottom: 10px; }
.wb-footer ul a { font-size: .85rem; color: var(--wb-body); }
.wb-footer ul a:hover { color: var(--wb-olive); }
.wb-social { display: flex; gap: 10px; }
.wb-social a {
  width: 33px; height: 33px; border-radius: 50%; background: #fff;
  border: 1px solid var(--wb-line); display: inline-flex; align-items: center;
  justify-content: center; color: var(--wb-body); transition: all .18s var(--ease);
}
.wb-social a:hover { background: var(--wb-olive); border-color: var(--wb-olive); color: #fff; }

.wb-news-form { display: flex; gap: 8px; }
.wb-news-form input {
  flex: 1; min-width: 0; border: 1px solid var(--wb-line-strong);
  border-radius: var(--wb-radius-sm); padding: .55rem .8rem;
  font-size: .85rem; font-family: var(--font-ui); outline: 0;
}
.wb-news-form input:focus { border-color: var(--wb-olive); }

.wb-footer-bottom {
  border-top: 1px solid var(--wb-line-strong); padding: 18px 0;
  display: flex; align-items: center; justify-content: space-between;
  gap: 14px; font-size: .8rem; color: var(--wb-muted); flex-wrap: wrap;
}

@media (max-width: 991.98px) {
  .wb-footer-grid { grid-template-columns: repeat(2, 1fr); gap: 30px 24px; }
  .wb-footer-brand, .wb-footer-news { grid-column: 1 / -1; }
}
@media (max-width: 575.98px) {
  .wb-footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .wb-footer-bottom { flex-direction: column; text-align: center; }
}
