  :root {
      --color-brand: #0F4C5C;
      --color-brand-light: #1B6072;
      --color-brand-dark: #093642;
      --color-gold: #E2C044;
      --color-surface: #F8F9FA;
    }

    body {
      font-family: 'Inter', sans-serif;
      color: #334155;
      overflow-x: hidden;
    }

    .font-serif {
      font-family: 'Playfair Display', serif;
    }

    .text-brand {
      color: var(--color-brand) !important;
    }

    .text-brand-dark {
      color: var(--color-brand-dark) !important;
    }

    .text-gold {
      color: var(--color-gold) !important;
    }

    .bg-surface {
      background-color: var(--color-surface) !important;
    }

    .object-cover {
      object-fit: cover;
    }

    /* ── MAP ─── */
    .map-wrapper {
      position: relative;
      width: 100%;
      border-radius: 1.25rem;
      overflow: hidden;
      background: #def0fb;
      box-shadow: 0 20px 40px rgba(9, 54, 66, .12);
    }

    #world-svg {
      width: 100%;
      height: 100%;
      display: block;
      cursor: grab;
    }

    #world-svg:active {
      cursor: grabbing;
    }

    .country-path {
      fill: #9ac5d5;
      stroke: #fff;
      stroke-width: .35px;
      transition: fill .18s ease;
      cursor: pointer;
    }

    .country-path:hover {
      fill: #3a7d8d;
    }

    .country-path.active {
      fill: var(--color-brand);
    }

    .country-path.has-itinerary {
      fill: #7cb8c8;
    }

    .country-path.has-itinerary:hover {
      fill: #2f6e7e;
    }

    .country-path.has-itinerary.active {
      fill: var(--color-brand);
    }

    /* continent filter buttons */
    .cont-btn {
      padding: .45rem 1.1rem;
      border-radius: 50rem;
      border: 1.5px solid rgba(15, 76, 92, .2);
      background: white;
      color: #475569;
      font-size: .82rem;
      font-weight: 500;
      cursor: pointer;
      transition: all .2s ease;
      white-space: nowrap;
    }

    .cont-btn:hover,
    .cont-btn.active {
      background: var(--color-brand);
      color: white;
      border-color: var(--color-brand);
    }

    /* map country panel */
    #country-panel {
      position: absolute;
      top: 0;
      right: -340px;
      width: 320px;
      height: 100%;
      background: white;
      z-index: 200;
      display: flex;
      flex-direction: column;
      box-shadow: -6px 0 24px rgba(0, 0, 0, .12);
      transition: right .35s cubic-bezier(.16, 1, .3, 1);
    }

    #country-panel.open {
      right: 0;
    }

    #panel-img {
      height: 160px;
      object-fit: cover;
      width: 100%;
      display: block;
    }

    .panel-body {
      padding: 1.25rem;
      flex: 1;
      overflow-y: auto;
    }

    .dur-btn {
      flex: 1;
      padding: .6rem .5rem;
      border-radius: .625rem;
      border: 1.5px solid rgba(15, 76, 92, .15);
      background: white;
      color: var(--color-brand);
      font-size: .78rem;
      font-weight: 600;
      cursor: pointer;
      transition: all .2s ease;
      text-align: center;
      text-decoration: none;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 2px;
    }

    .dur-btn:hover {
      background: var(--color-brand);
      color: white;
      border-color: var(--color-brand);
    }

    .dur-btn span.days {
      font-size: 1.3rem;
      font-family: 'Playfair Display', serif;
      font-weight: 700;
    }

    #map-tooltip {
      position: absolute;
      background: rgba(9, 54, 66, .92);
      color: white;
      padding: 6px 12px;
      border-radius: 6px;
      pointer-events: none;
      z-index: 100;
      font-size: .8rem;
      font-weight: 500;
      transform: translate(-50%, -100%);
      margin-top: -12px;
      display: none;
      white-space: nowrap;
    }

    #reset-btn {
      position: absolute;
      top: 14px;
      left: 14px;
      z-index: 150;
      padding: 8px 14px;
      background: white;
      border: 1.5px solid rgba(15, 76, 92, .15);
      color: var(--color-brand);
      border-radius: 8px;
      cursor: pointer;
      font-size: .78rem;
      font-weight: 600;
      transition: all .2s;
      box-shadow: 0 2px 8px rgba(0, 0, 0, .08);
    }

    #reset-btn:hover {
      background: var(--color-brand);
      color: white;
    }

    #map-loading {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      font-size: 1rem;
      color: #475569;
      background: rgba(255, 255, 255, .9);
      padding: 1rem 1.5rem;
      border-radius: .75rem;
    }

    /* ── DESTINATION CARDS ── */
    .dest-card {
      border-radius: 1rem;
      overflow: hidden;
      position: relative;
      cursor: pointer;
      transition: transform .25s cubic-bezier(.16, 1, .3, 1), box-shadow .25s ease;
    }

    .dest-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 20px 40px rgba(9, 54, 66, .15);
    }

    .dest-card img {
      transition: transform .6s ease;
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .dest-card:hover img {
      transform: scale(1.04);
    }

    /* ── SEASON TAGS ── */
    .season-tag {
      display: inline-flex;
      align-items: center;
      gap: .35rem;
      padding: .3rem .75rem;
      border-radius: 50rem;
      font-size: .72rem;
      font-weight: 600;
      letter-spacing: .04em;
    }

    /* ── DURATION TABS ── */
    .dur-tab {
      padding: .5rem 1.5rem;
      border-radius: 50rem;
      border: 1.5px solid rgba(15, 76, 92, .18);
      background: white;
      color: #475569;
      font-size: .85rem;
      font-weight: 500;
      cursor: pointer;
      transition: all .2s;
    }

    .dur-tab.active,
    .dur-tab:hover {
      background: var(--color-brand);
      color: white;
      border-color: var(--color-brand);
    }

    .dur-content {
      display: none;
    }

    .dur-content.active {
      display: block;
    }