/* Raus am Wochenende — raw-components.css
   Wiederverwendbare UI-Komponenten: Karten, Buttons, Badges, Suchleiste */

@layer components {

  /* ---- Buttons ---- */
  .wb-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 44px;
    padding: 0.7rem 1.35rem;
    border-radius: var(--wb-radius-pill);
    font-weight: 700;
    font-size: 0.95rem;
    border: 1px solid transparent;
    transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease;
  }

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

  .wb-btn--solid {
    background: var(--wb-forest);
    color: var(--wb-cream);
  }

  .wb-btn--solid:hover {
    background: var(--wb-ink-soft);
  }

  .wb-btn--accent {
    background: var(--wb-orange);
    color: var(--wb-white);
  }

  .wb-btn--accent:hover {
    background: var(--wb-orange-dark);
  }

  .wb-btn--outline {
    background: transparent;
    border: 1px solid var(--wb-ink, #446762);
    border-radius: 8px;
    color: var(--wb-ink, #446762);
    font-weight: 700;
    padding: 0.65rem 1.35rem;
    font-family: var(--wb-font-display);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, transform 0.15s ease, border-color 0.2s ease;
  }

  .wb-btn--outline:hover {
    background: rgba(59, 42, 34, 0.08);
    transform: translateY(-1px);
  }

  .wb-btn--ghost {
    background: transparent;
    color: var(--wb-forest);
    text-decoration: underline;
    padding-inline: 0.2rem;
  }

  .wb-btn--block {
    width: 100%;
  }

  /* ---- Header Wishlist Button ---- */
  .nb-wishlist-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.55rem 1.25rem;
    border-radius: 12px;
    background: #D7C7B3;
    color: #446762 !important;
    font-family: var(--wb-font-body, "Mona Sans", sans-serif);
    font-size: 1.05rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    text-decoration: none;
    border: 1px solid rgba(59, 42, 34, 0.12);
    box-shadow: 0 2px 6px rgba(59, 42, 34, 0.08);
    transition: background-color 0.2s ease, transform 0.18s ease, box-shadow 0.2s ease;
    line-height: 1.2;
    cursor: pointer;
    user-select: none;
  }

  .nb-wishlist-btn:hover {
    background: #CBB9A3;
    color: #2E2019 !important;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 42, 34, 0.14);
  }

  .nb-wishlist-btn:active {
    transform: translateY(0) scale(0.98);
  }

  .nb-wishlist-btn__count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-inline-size: 1.25rem;
    block-size: 1.25rem;
    padding-inline: 0.35rem;
    border-radius: 999px;
    background: #446762;
    color: #F6EFED;
    font-size: 0.72rem;
    font-weight: 700;
    line-height: 1;
  }

  .nb-wishlist-btn__count[hidden] {
    display: none !important;
  }

  /* ---- Card shell ---- */
  .wb-card {
    background: #EDE6DC;
    border: 1px solid #D8D0C3;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 18px rgba(45, 30, 22, 0.05);
  }

  .wb-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(45, 30, 22, 0.12);
  }

  .wb-card__media {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9.6;
    background: #DFCBB5;
    overflow: hidden;
  }

  .wb-card__media img {
    inline-size: 100%;
    block-size: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
  }

  .wb-card:hover .wb-card__media img {
    transform: scale(1.025);
  }

  .wb-card__body {
    padding: 1.25rem 1.45rem 1.55rem;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    flex: 1;
    background: #EDE6DC;
  }

  .wb-card__body h3 {
    font-family: var(--wb-font-display);
    font-size: 1.38rem;
    font-weight: 700;
    color: #446762;
    margin: 0;
    line-height: 1.22;
  }

  .wb-card__meta {
    font-size: 0.86rem;
    color: #526058;
    font-weight: 500;
    margin: -0.2rem 0 0 0;
  }

  .wb-card__desc {
    font-size: 0.92rem;
    color: #554438;
    line-height: 1.45;
    margin: 0;
  }

  .wb-card__price-tag,
  .wb-card__price {
    font-family: var(--wb-font-display);
    font-size: 1.18rem;
    font-weight: 800;
    color: #446762;
    margin-top: 0.35rem;
    padding-top: 0;
    letter-spacing: -0.01em;
  }

  .wb-card__actions {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-top: 0.2rem;
  }

  .wb-card__actions .wb-btn {
    flex: 1;
  }

  .wb-heart {
    inline-size: 42px;
    block-size: 42px;
    border-radius: 50%;
    border: 1px solid #D0C9B8;
    background: var(--wb-white);
    display: inline-grid;
    place-items: center;
    color: #446762;
    flex-shrink: 0;
    cursor: pointer;
    transition: all 0.18s ease;
  }

  .wb-heart:hover {
    background: #F5F1E8;
    border-color: #446762;
    color: #E54817;
  }

  .wb-heart[aria-pressed="true"] {
    background: #E54817;
    color: var(--wb-white);
    border-color: #E54817;
  }

  .wb-heart svg {
    pointer-events: none;
  }

  /* ---- Badge / tag ---- */
  .wb-tag {
    display: inline-flex;
    align-items: center;
    padding: 0.25rem 0.65rem;
    border-radius: var(--wb-radius-pill);
    background: var(--wb-mint);
    color: var(--wb-ink-soft);
    font-size: 0.78rem;
    font-weight: 700;
  }

  .wb-tag--orange {
    background: rgba(232, 87, 31, 0.14);
    color: var(--wb-orange-dark);
  }

  /* ---- Numbered step tile (Wie Ihr deutscher Kurzurlaub zustande kommt) ---- */
  .wb-step {
    background: #f7f0ea;
    border: 1px solid #ddd4cc;
    border-radius: 0;
    padding: 1.75rem 1.4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.35rem;
    box-sizing: border-box;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
  }

  .wb-step:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(35, 56, 53, 0.08);
  }

  .wb-step__num {
    font-size: 0.92rem;
    font-weight: 800;
    color: #233835;
    font-family: var(--wb-font-display);
    line-height: 1;
    margin-bottom: 0.85rem;
    display: block;
    letter-spacing: 0.02em;
  }

  .wb-step h3 {
    font-family: var(--wb-font-display);
    font-size: 1.15rem;
    font-weight: 800;
    color: #233835;
    margin: 0 0 0.65rem 0;
    line-height: 1.25;
    text-align: center;
  }

  .wb-step p {
    font-size: 0.86rem;
    color: #55716c;
    line-height: 1.45;
    margin: 0;
    text-align: center;
  }

  /* ---- Theme tile (Wählen Sie Ihr deutsches Escape) ---- */
  .wb-grid--ideal {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
    width: 100%;
  }

  .wb-theme-tile {
    background: #3d5e56;
    border-radius: 0;
    padding: 1.85rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-decoration: none;
    color: #ffffff;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
    box-sizing: border-box;
  }

  .wb-theme-tile:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(35, 56, 53, 0.18);
  }

  .wb-theme-tile__icon-img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    margin-bottom: 0.85rem;
    display: block;
  }

  .wb-theme-tile h3 {
    font-family: var(--wb-font-display);
    font-size: 1.35rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0 0 0.5rem 0;
    line-height: 1.25;
    letter-spacing: -0.01em;
  }

  .wb-theme-tile p {
    font-size: 0.92rem;
    color: #d7e4e0;
    line-height: 1.48;
    margin: 0;
  }

  @media (max-width: 768px) {
    .wb-grid--ideal {
      grid-template-columns: 1fr;
      gap: 1rem;
    }

    .wb-theme-tile {
      padding: 1.5rem 1.4rem;
    }
  }

  /* ---- Testimonial (Traveller stories) ---- */
  .wb-quote {
    background: #362720;
    border-radius: 22px;
    padding: 2rem 1.4rem 2.2rem 1.4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin: 0;
    box-sizing: border-box;
    box-shadow: 0 8px 24px rgba(35, 22, 14, 0.12);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .wb-quote:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(35, 22, 14, 0.22);
  }

  .wb-quote__avatar {
    width: 76px;
    height: 76px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin: 0 auto 0.85rem auto;
  }

  .wb-quote__stars {
    color: #F6EFED;
    letter-spacing: 0.15em;
    font-size: 0.88rem;
    line-height: 1;
    margin-bottom: 0.75rem;
  }

  .wb-quote__name {
    font-family: var(--wb-font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: #F6EFED;
    margin: 0 0 0.25rem 0;
    display: block;
    line-height: 1.2;
  }

  .wb-quote__location {
    font-size: 0.82rem;
    color: #D6CAB8;
    line-height: 1.35;
    margin-bottom: 1rem;
    display: block;
  }

  .wb-quote blockquote {
    font-size: 0.86rem;
    color: #D6CAB8;
    line-height: 1.46;
    margin: 0;
    font-style: normal;
  }


  /* ---- Search / planner deck card ---- */
  .wb-deck {
    background: #446762 !important;
    border-radius: 24px;
    box-shadow: 0 18px 45px rgba(25, 14, 10, 0.28);
    padding: clamp(2rem, 3.2vw, 2.5rem) clamp(1.6rem, 2.5vw, 2.2rem);
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 1.35rem;
    border: none;
    color: #F6EFED;
  }

  .wb-deck__title {
    font-family: var(--wb-font-display, "Mona Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif);
    font-size: clamp(1.55rem, 2.3vw, 1.85rem);
    font-weight: 800;
    color: #F6EFED;
    margin: 0 0 0.2rem 0;
    line-height: 1.2;
    letter-spacing: -0.015em;
  }

  .wb-field-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem 1.15rem;
    width: 100%;
  }

  .wb-field--full {
    grid-column: 1 / -1;
  }

  .wb-field--travellers {
    grid-column: 1 / 2;
  }

  .wb-field {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    width: 100%;
  }

  .wb-field label {
    font-size: 1.02rem;
    font-weight: 700;
    color: #F6EFED;
    line-height: 1.2;
    letter-spacing: -0.01em;
  }

  .wb-input-wrap,
  .wb-select-wrap {
    position: relative;
    width: 100%;
  }

  .wb-input-wrap input,
  .wb-select-wrap select {
    width: 100%;
    height: 46px;
    border: none;
    border-radius: 10px;
    padding: 0 2.6rem 0 1rem;
    background-color: #F6EFED;
    color: #446762;
    font-size: 0.98rem;
    font-family: inherit;
    font-weight: 600;
    box-sizing: border-box;
    appearance: none;
    -webkit-appearance: none;
    transition: background-color 0.2s, box-shadow 0.2s;
  }

  .wb-input-wrap input::placeholder {
    color: #9E9388;
    font-weight: 500;
  }

  .wb-input-wrap input:focus,
  .wb-select-wrap select:focus {
    outline: none;
    background-color: #FFFFFF;
    box-shadow: 0 0 0 3px rgba(242, 234, 215, 0.45);
  }

  .wb-input-wrap input[type="date"]::-webkit-calendar-picker-indicator {
    position: absolute;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
  }

  .wb-field-icon,
  .wb-select-arrow {
    position: absolute;
    right: 0.95rem;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    color: #446762;
  }

  .wb-check-row {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    font-size: 0.98rem;
    font-weight: 600;
    color: #F6EFED;
    cursor: pointer;
    user-select: none;
    margin-top: 0.2rem;
  }

  .wb-check-row input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border: 1.5px solid rgba(242, 234, 215, 0.55);
    border-radius: 4px;
    background: transparent;
    cursor: pointer;
    display: inline-grid;
    place-content: center;
    transition: all 0.2s ease;
  }

  .wb-check-row input[type="checkbox"]:checked {
    background: #F6EFED;
    border-color: #F6EFED;
  }

  .wb-check-row input[type="checkbox"]:checked::before {
    content: "";
    width: 8px;
    height: 4px;
    border-left: 2px solid #446762;
    border-bottom: 2px solid #446762;
    transform: rotate(-45deg) translate(1px, -1px);
  }

  /* ---- Custom Select Dropdown (Discover your next escape) ---- */
  .wb-custom-select {
    position: relative;
    width: 100%;
  }

  .wb-custom-select__trigger {
    width: 100%;
    height: 46px;
    background-color: #F6EFED;
    border: none;
    border-radius: 10px;
    padding: 0 1rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 0.98rem;
    font-weight: 600;
    font-family: inherit;
    color: #446762;
    cursor: pointer;
    box-sizing: border-box;
    transition: background-color 0.2s, box-shadow 0.2s;
  }

  .wb-custom-select__trigger:hover {
    background-color: #F5EFE4;
  }

  .wb-custom-select__trigger:focus,
  .wb-custom-select.is-open .wb-custom-select__trigger {
    outline: none;
    box-shadow: 0 0 0 3px rgba(242, 234, 215, 0.45);
  }

  .wb-custom-select__arrow {
    color: #446762;
    transition: transform 0.2s ease;
    flex-shrink: 0;
  }

  .wb-custom-select.is-open .wb-custom-select__arrow {
    transform: rotate(180deg);
  }

  .wb-custom-select__dropdown {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    width: 100%;
    background: #F6EFED;
    border: none;
    border-radius: 10px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
    z-index: 120;
    display: none;
    overflow: hidden;
    padding: 0.25rem 0;
  }

  .wb-custom-select.is-open .wb-custom-select__dropdown {
    display: block;
  }

  .wb-custom-select__option {
    padding: 0.65rem 1rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #446762;
    cursor: pointer;
    transition: background 0.15s ease;
    display: flex;
    align-items: center;
  }

  .wb-custom-select__option:hover {
    background: #ECE5D8;
  }

  .wb-custom-select__option.is-selected {
    background: #C5D6D3;
    color: #446762;
    font-weight: 700;
  }

  .wb-deck-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 0.45rem;
  }

  .wb-btn-search-trips {
    height: 48px;
    background: #F6EFED;
    color: #446762;
    border: 1px solid #F6EFED;
    border-radius: 10px;
    padding: 0 1.85rem;
    font-size: 1.02rem;
    font-weight: 700;
    font-family: var(--wb-font-display, "Mona Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif);
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  }

  .wb-btn-search-trips:hover {
    background: #EAE1DE;
    border-color: #EAE1DE;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  }

  .wb-btn-explore-regions {
    height: 48px;
    background: transparent;
    border: 1px solid rgba(242, 234, 215, 0.45);
    color: #F6EFED;
    border-radius: 10px;
    padding: 0 1.85rem;
    font-size: 1.02rem;
    font-weight: 700;
    font-family: var(--wb-font-display, "Mona Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
  }

  .wb-btn-explore-regions:hover {
    background: rgba(242, 234, 215, 0.12);
    border-color: rgba(242, 234, 215, 0.75);
    transform: translateY(-1px);
  }

  @media (max-width: 900px) {
    .wb-deck {
      padding: 1.75rem 1.5rem;
      border-radius: 20px;
    }
  }

  @media (max-width: 560px) {
    .wb-deck {
      padding: 1.35rem 1.15rem;
      border-radius: 18px;
    }

    .wb-field-grid {
      grid-template-columns: 1fr;
    }

    .wb-field--travellers {
      grid-column: 1 / -1;
    }

    .wb-deck-actions {
      flex-direction: column;
      align-items: stretch;
    }

    .wb-deck-actions .wb-btn-search-trips,
    .wb-deck-actions .wb-btn-explore-regions {
      width: 100%;
    }
  }

  /* ---- Standard form ---- */
  .wb-form {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    max-width: 34rem;
  }

  .wb-form .wb-field input,
  .wb-form .wb-field select,
  .wb-form .wb-field textarea {
    border: 1px solid var(--wb-line);
    border-radius: var(--wb-radius-sm);
    padding: 0.65rem 0.75rem;
    background: var(--wb-white);
    min-height: 44px;
  }

  .wb-form .wb-field textarea {
    min-height: 110px;
    resize: vertical;
  }

  .wb-field__error {
    color: var(--wb-orange-dark);
    font-size: 0.82rem;
    font-weight: 600;
    display: none;
  }

  .wb-field[data-invalid="true"] input,
  .wb-field[data-invalid="true"] textarea {
    border-color: var(--wb-orange-dark);
  }

  .wb-field[data-invalid="true"] .wb-field__error {
    display: block;
  }

  /* ---- Newsletter panel ---- */
  .wb-newsletter {
    background: #362720;
    border-radius: 24px;
    padding: clamp(2rem, 4vw, 3.5rem) clamp(1.5rem, 3vw, 3rem);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.9rem;
    box-shadow: 0 18px 45px rgba(35, 22, 14, 0.18);
  }

  .wb-newsletter h2 {
    font-family: var(--wb-font-display);
    font-size: clamp(1.6rem, 2.5vw, 2.1rem);
    font-weight: 700;
    color: #F6EFED;
    margin: 0;
  }

  .wb-newsletter p.wb-lede {
    color: #D6CAB8;
    font-size: 0.92rem;
    line-height: 1.5;
    max-width: 620px;
    margin: 0;
  }

  .wb-newsletter form {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: 32rem;
    margin-top: 0.5rem;
  }

  .wb-newsletter input[type="email"] {
    flex: 1;
    min-width: 14rem;
    min-height: 44px;
    padding: 0.7rem 1.1rem;
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.08);
    color: #F6EFED;
    font-size: 0.92rem;
  }

  .wb-newsletter input[type="email"]::placeholder {
    color: #A39284;
  }

  .wb-newsletter input[type="email"]:focus {
    outline: none;
    border-color: #F6EFED;
    background: rgba(255, 255, 255, 0.12);
  }

  .wb-newsletter .wb-btn--newsletter {
    background: #F6EFED;
    color: #362720;
    font-weight: 700;
    border-radius: 10px;
    border: none;
    padding: 0.7rem 1.4rem;
    font-size: 0.92rem;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.2s ease;
    white-space: nowrap;
  }

  .wb-newsletter .wb-btn--newsletter:hover {
    background: #FFFFFF;
    transform: translateY(-1px);
  }

  .wb-newsletter .wb-check-row {
    justify-content: center;
    font-size: 0.82rem;
    color: #D6CAB8;
    margin-top: 0.25rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
  }

  .wb-newsletter .wb-check-row input[type="checkbox"] {
    accent-color: #446762;
  }

  /* ---- Disclosure / accordion (FAQ) ---- */
  .wb-disclosure {
    border: 1px solid var(--wb-line-soft);
    border-radius: var(--wb-radius-md);
    background: var(--wb-white);
    overflow: clip;
  }

  .wb-disclosure+.wb-disclosure {
    margin-top: 0.7rem;
  }

  .wb-disclosure__trigger {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.2rem;
    background: transparent;
    border: none;
    text-align: start;
    font-weight: 700;
    font-family: var(--wb-font-display);
    color: var(--wb-forest);
  }

  .wb-disclosure__icon {
    inline-size: 1.9rem;
    block-size: 1.9rem;
    border-radius: 50%;
    background: var(--wb-orange);
    color: var(--wb-white);
    display: grid;
    place-items: center;
    flex-shrink: 0;
    transition: transform 0.2s ease;
  }

  .wb-disclosure[data-open="true"] .wb-disclosure__icon {
    transform: rotate(45deg);
  }

  .wb-disclosure__panel {
    padding: 0 1.2rem 1.1rem;
    color: var(--wb-text-muted);
    display: none;
  }

  .wb-disclosure[data-open="true"] .wb-disclosure__panel {
    display: block;
  }

  /* ---- Consent bar (Cookie Banner) ---- */
  .wb-consent-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 9990;
    background: #446762 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0 !important;
    padding: 1.75rem 2.5rem;
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.28);
    box-sizing: border-box;
    transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
  }

  .wb-consent-bar[hidden] {
    display: none !important;
  }

  .wb-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.35rem;
  }

  .wb-consent-text,
  .wb-consent-bar p {
    color: #FAF7F2 !important;
    font-family: var(--wb-font-display, "Mona Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif);
    font-size: 1.05rem;
    line-height: 1.6;
    margin: 0;
    max-width: 100%;
  }

  .wb-consent-bar strong {
    font-weight: 700;
    color: #FFFFFF;
  }

  .wb-consent-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .wb-consent-btn-accept {
    background: #FAF7F2 !important;
    color: #2E4743 !important;
    border: 1px solid #FAF7F2 !important;
    border-radius: 0 !important;
    padding: 0.85rem 1.65rem;
    font-size: 1.02rem;
    font-weight: 700;
    font-family: var(--wb-font-display, "Mona Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif);
    cursor: pointer;
    white-space: nowrap;
    transition: opacity 0.2s ease, transform 0.15s ease;
  }

  .wb-consent-btn-accept:hover {
    opacity: 0.92;
    transform: translateY(-1px);
  }

  .wb-consent-btn-settings {
    background: #B4BEBA !important;
    color: #233835 !important;
    border: 1px solid #B4BEBA !important;
    border-radius: 0 !important;
    padding: 0.85rem 1.65rem;
    font-size: 1.02rem;
    font-weight: 700;
    font-family: var(--wb-font-display, "Mona Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif);
    cursor: pointer;
    white-space: nowrap;
    transition: opacity 0.2s ease, transform 0.15s ease;
  }

  .wb-consent-btn-settings:hover {
    opacity: 0.92;
    transform: translateY(-1px);
  }

  .wb-consent-btn-decline {
    background: transparent !important;
    color: #FAF7F2 !important;
    border: 1px solid rgba(255, 255, 255, 0.45) !important;
    border-radius: 0 !important;
    padding: 0.85rem 1.65rem;
    font-size: 1.02rem;
    font-weight: 700;
    font-family: var(--wb-font-display, "Mona Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif);
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
  }

  .wb-consent-btn-decline:hover {
    background: rgba(255, 255, 255, 0.12) !important;
    border-color: rgba(255, 255, 255, 0.75) !important;
    transform: translateY(-1px);
  }

  @media (max-width: 860px) {
    .wb-consent-bar {
      padding: 1.25rem 1.25rem;
    }

    .wb-consent-actions {
      width: 100%;
      flex-direction: column;
      align-items: stretch;
      gap: 0.75rem;
    }

    .wb-consent-btn-accept,
    .wb-consent-btn-settings,
    .wb-consent-btn-decline {
      width: 100%;
      text-align: center;
    }
  }


  .wb-consent-dialog::backdrop {
    background: rgba(15, 25, 23, 0.7);
    backdrop-filter: blur(4px);
  }

  .wb-consent-dialog {
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 0 !important;
    padding: 2.2rem;
    max-width: 34rem;
    width: min(92vw, 34rem);
    background: #446762 !important;
    color: #FAF7F2;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55);
  }

  .wb-consent-dialog h2 {
    color: #FAF7F2;
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
  }

  .wb-consent-dialog .wb-lede {
    color: #FAF7F2;
    font-size: 0.98rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
  }

  .wb-consent-option {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 1rem;
    padding-block: 0.9rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .wb-consent-option:last-of-type {
    border-bottom: none;
  }

  .wb-consent-option h4 {
    margin-bottom: 0.2rem;
    color: #FAF7F2;
    font-weight: 700;
  }

  .wb-consent-option p {
    font-size: 0.88rem;
    color: rgba(250, 247, 242, 0.8);
    line-height: 1.45;
  }

  .wb-consent-dialog .wb-btn {
    border-radius: 0 !important;
    font-weight: 700;
    padding: 0.8rem 1.6rem;
    font-family: inherit;
  }

  .wb-consent-dialog .wb-btn--solid {
    background: #FAF7F2 !important;
    color: #2E4743 !important;
    border: 1px solid #FAF7F2;
  }

  .wb-consent-dialog .wb-btn--outline {
    background: transparent !important;
    color: #FAF7F2 !important;
    border: 1px solid rgba(255, 255, 255, 0.45);
  }

  .wb-toggle {
    position: relative;
    inline-size: 3rem;
    block-size: 1.7rem;
    border-radius: var(--wb-radius-pill);
    background: rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
    border: none;
    cursor: pointer;
  }

  .wb-toggle::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    inline-size: 1.3rem;
    block-size: 1.3rem;
    border-radius: 50%;
    background: #FAF7F2;
    transition: left 0.18s ease;
  }

  .wb-toggle[aria-pressed="true"] {
    background: #FAF7F2;
  }

  .wb-toggle[aria-pressed="true"]::after {
    left: calc(100% - 1.5rem);
    background: #2E4743;
  }

  .wb-toggle[disabled] {
    opacity: 0.6;
    cursor: not-allowed;
  }

  /* ---- Empty state ---- */
  .wb-empty {
    border: 1px dashed var(--wb-line);
    border-radius: var(--wb-radius-lg);
    padding: var(--wb-space-4);
    text-align: center;
    color: var(--wb-text-muted);
    background: var(--wb-white);
  }

  /* ---- Breadcrumb ---- */
  .wb-crumb {
    display: flex;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: var(--wb-text-muted);
    flex-wrap: wrap;
  }

  .wb-crumb a {
    color: var(--wb-orange-dark);
    font-weight: 600;
  }

  /* ---- Contact Popup Modal ---- */
  .wb-contact-modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(15, 25, 23, 0.7);
    backdrop-filter: blur(4px);
    display: grid;
    place-items: center;
    padding: 1.25rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
  }

  .wb-contact-modal-backdrop[data-open="true"] {
    opacity: 1;
    visibility: visible;
  }

  .wb-contact-modal {
    position: relative;
    background: #446762 !important;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0 !important;
    padding: 3.2rem 2.8rem 2.8rem 2.8rem;
    width: min(94vw, 580px);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55);
    transform: scale(0.95) translateY(12px);
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    box-sizing: border-box;
    color: #FAF7F2;
  }

  .wb-contact-modal-backdrop[data-open="true"] .wb-contact-modal {
    transform: scale(1) translateY(0);
  }

  .wb-contact-modal__close {
    position: absolute;
    top: 1.3rem;
    right: 1.3rem;
    width: 36px;
    height: 36px;
    border-radius: 0;
    border: none;
    background: transparent;
    color: rgba(250, 247, 242, 0.6);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: color 0.18s ease, transform 0.15s ease;
  }

  .wb-contact-modal__close:hover {
    color: #FAF7F2;
    transform: scale(1.08);
  }

  .wb-contact-modal__title {
    font-family: var(--wb-font-display, "Mona Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif);
    font-size: clamp(2.3rem, 4.5vw, 2.9rem);
    font-weight: 800;
    color: #FAF7F2;
    margin: 0 0 1.1rem 0;
    line-height: 1.15;
    letter-spacing: -0.02em;
  }

  .wb-contact-modal__desc {
    font-family: inherit;
    font-size: 1.05rem;
    color: #FAF7F2;
    line-height: 1.5;
    margin: 0 0 2.2rem 0;
    max-width: 98%;
  }

  .wb-contact-modal__form {
    display: flex;
    flex-direction: column;
    gap: 1.35rem;
  }

  .wb-contact-modal__field {
    display: flex;
    flex-direction: column;
    gap: 0.55rem;
  }

  .wb-contact-modal__label {
    font-size: 1.1rem;
    font-weight: 700;
    color: #FAF7F2;
    letter-spacing: -0.01em;
  }

  .wb-contact-modal__input,
  .wb-contact-modal__textarea {
    width: 100%;
    height: 52px;
    background: #F3ECE8 !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0 1.25rem;
    font-family: inherit;
    font-size: 1.05rem;
    color: #2E4743 !important;
    box-sizing: border-box;
    transition: box-shadow 0.2s ease, background-color 0.2s ease;
  }

  .wb-contact-modal__input::placeholder,
  .wb-contact-modal__textarea::placeholder {
    color: #9B938D;
    font-weight: 500;
  }

  .wb-contact-modal__input:focus,
  .wb-contact-modal__textarea:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(250, 247, 242, 0.45);
    background-color: #FFFFFF !important;
  }

  .wb-contact-modal__actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 0.85rem;
  }

  .wb-btn-send {
    background: #FAF7F2 !important;
    color: #2E4743 !important;
    border: 1px solid #FAF7F2 !important;
    border-radius: 0 !important;
    padding: 0.95rem 1.85rem;
    font-size: 1.05rem;
    font-weight: 700;
    font-family: var(--wb-font-display, "Mona Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif);
    cursor: pointer;
    white-space: nowrap;
    transition: opacity 0.2s ease, transform 0.15s ease;
  }

  .wb-btn-send:hover {
    opacity: 0.92;
    transform: translateY(-1px);
  }

  .wb-btn-clear {
    background: transparent !important;
    color: #FAF7F2 !important;
    border: 1px solid rgba(255, 255, 255, 0.45) !important;
    border-radius: 0 !important;
    padding: 0.95rem 1.85rem;
    font-size: 1.05rem;
    font-weight: 700;
    font-family: var(--wb-font-display, "Mona Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif);
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
  }

  .wb-btn-clear:hover {
    background: rgba(255, 255, 255, 0.12) !important;
    border-color: rgba(255, 255, 255, 0.75) !important;
    transform: translateY(-1px);
  }

  .wb-contact-modal__success {
    display: none;
    background: #D9ECDF;
    color: #2B1C15;
    padding: 1rem 1.25rem;
    border-radius: 0 !important;
    font-weight: 600;
    font-size: 0.95rem;
    margin-top: 0.5rem;
    line-height: 1.45;
  }

  @media (max-width: 560px) {
    .wb-contact-modal {
      padding: 2.2rem 1.4rem;
    }

    .wb-contact-modal__title {
      font-size: 2.1rem;
    }

    .wb-contact-modal__actions {
      flex-direction: column;
      align-items: stretch;
    }

    .wb-btn-send,
    .wb-btn-clear {
      width: 100%;
      text-align: center;
    }
  }

  /* ---- Welcome Auto Popup Modal (Entry Popup) ---- */
  .wb-welcome-modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(15, 25, 23, 0.7);
    backdrop-filter: blur(4px);
    display: grid;
    place-items: center;
    padding: 1.25rem;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.25s ease, visibility 0.25s ease;
  }

  .wb-welcome-modal-backdrop[data-open="true"] {
    opacity: 1;
    visibility: visible;
  }

  .wb-welcome-modal {
    position: relative;
    background: #446762 !important;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 0 !important;
    padding: 3.5rem 3.2rem 3rem 3.2rem;
    width: min(94vw, 700px);
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.55);
    transform: scale(0.95) translateY(12px);
    transition: transform 0.25s cubic-bezier(0.16, 1, 0.3, 1);
    box-sizing: border-box;
    color: #FAF7F2;
  }

  .wb-welcome-modal-backdrop[data-open="true"] .wb-welcome-modal {
    transform: scale(1) translateY(0);
  }

  .wb-welcome-modal__close {
    position: absolute;
    top: 1.3rem;
    right: 1.3rem;
    width: 36px;
    height: 36px;
    border-radius: 0;
    border: none;
    background: transparent;
    color: rgba(250, 247, 242, 0.6);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: color 0.18s ease, transform 0.15s ease;
  }

  .wb-welcome-modal__close:hover {
    color: #FAF7F2;
    transform: scale(1.08);
  }

  .wb-welcome-modal__title {
    font-family: var(--wb-font-display, "Mona Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif);
    font-size: clamp(2.3rem, 5vw, 3.2rem);
    font-weight: 800;
    color: #FAF7F2;
    margin: 0 0 1.1rem 0;
    line-height: 1.15;
    letter-spacing: -0.02em;
    max-width: 580px;
  }

  .wb-welcome-modal__desc {
    font-family: inherit;
    font-size: 1.12rem;
    color: #FAF7F2;
    line-height: 1.45;
    margin: 0 0 2.4rem 0;
    max-width: 98%;
  }

  .wb-welcome-modal__form {
    display: flex;
    flex-direction: column;
  }

  .wb-welcome-modal__form-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    width: 100%;
  }

  .wb-welcome-modal__input {
    flex: 1;
    height: 54px;
    background: #F3ECE8 !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 0 1.25rem;
    font-family: inherit;
    font-size: 1.05rem;
    color: #2E4743 !important;
    box-sizing: border-box;
    transition: box-shadow 0.2s ease, background-color 0.2s ease;
  }

  .wb-welcome-modal__input::placeholder {
    color: #9B938D;
    font-weight: 500;
  }

  .wb-welcome-modal__input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(250, 247, 242, 0.45);
    background-color: #FFFFFF !important;
  }

  .wb-btn-send-ideas {
    height: 54px;
    background: #FAF7F2 !important;
    color: #2E4743 !important;
    border: 1px solid #FAF7F2 !important;
    border-radius: 0 !important;
    padding: 0 1.85rem;
    font-size: 1.05rem;
    font-weight: 700;
    font-family: var(--wb-font-display, "Mona Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif);
    cursor: pointer;
    white-space: nowrap;
    transition: opacity 0.2s ease, transform 0.15s ease;
  }

  .wb-btn-send-ideas:hover {
    opacity: 0.92;
    transform: translateY(-1px);
  }

  .wb-welcome-modal__actions-bottom {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
  }

  .wb-btn-maybe-later {
    background: transparent !important;
    color: #FAF7F2 !important;
    border: 1px solid rgba(255, 255, 255, 0.45) !important;
    border-radius: 0 !important;
    padding: 0.85rem 2.4rem;
    font-size: 1.05rem;
    font-weight: 700;
    font-family: var(--wb-font-display, "Mona Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif);
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
  }

  .wb-btn-maybe-later:hover {
    background: rgba(255, 255, 255, 0.12) !important;
    border-color: rgba(255, 255, 255, 0.75) !important;
    transform: translateY(-1px);
  }

  .wb-welcome-modal__success {
    display: none;
    background: #D9ECDF;
    color: #2B1C15;
    padding: 1rem 1.25rem;
    border-radius: 0 !important;
    font-weight: 600;
    font-size: 0.95rem;
    margin-top: 1rem;
    text-align: center;
    line-height: 1.45;
  }

  @media (max-width: 600px) {
    .wb-welcome-modal {
      padding: 2.2rem 1.4rem;
    }

    .wb-welcome-modal__title {
      font-size: 2.1rem;
    }

    .wb-welcome-modal__form-row {
      flex-direction: column;
      align-items: stretch;
      gap: 0.75rem;
    }

    .wb-btn-send-ideas,
    .wb-btn-maybe-later {
      width: 100%;
      text-align: center;
    }
  }

  /* ---- Destination Autocomplete Dropdown ---- */
  .wb-autocomplete-wrap {
    position: relative;
    width: 100%;
  }

  .wb-autocomplete-dropdown {
    position: absolute;
    top: calc(100% + 4px);
    left: 0;
    width: 100%;
    max-height: 290px;
    background: #F6EFED;
    border: none;
    border-radius: 10px;
    box-shadow: 0 14px 34px rgba(0, 0, 0, 0.35);
    z-index: 150;
    display: none;
    overflow-y: auto;
    padding: 0.25rem 0;
    box-sizing: border-box;
  }

  .wb-autocomplete-wrap.is-open .wb-autocomplete-dropdown {
    display: block;
  }

  .wb-autocomplete-dropdown::-webkit-scrollbar {
    width: 6px;
  }

  .wb-autocomplete-dropdown::-webkit-scrollbar-track {
    background: transparent;
  }

  .wb-autocomplete-dropdown::-webkit-scrollbar-thumb {
    background: rgba(59, 42, 34, 0.28);
    border-radius: 4px;
  }

  .wb-autocomplete-item {
    padding: 0.65rem 1rem;
    font-size: 0.95rem;
    font-weight: 600;
    color: #446762;
    cursor: pointer;
    transition: background 0.15s ease, color 0.15s ease;
    display: flex;
    align-items: center;
  }

  .wb-autocomplete-item:hover {
    background: #ECE5D8;
  }

  .wb-autocomplete-item.is-selected {
    background: #C5D6D3;
    color: #446762;
    font-weight: 700;
  }

  .wb-autocomplete-divider {
    height: 1px;
    background: #D7E3E0;
    margin: 4px 0;
  }
}