:root {
    --green-dark: #23433f;
    --green-mid: #5f8f79;
    --green-light: #dce7e5;
    --green-btn: #5e8f7a;
    --icon-bg: #e4edeb;
    --text-label: #23433f;
    --text-val: #6c7f7c;
    --white: #ffffff;
    --shadow: 0 8px 32px rgba(35,67,63,0.10);
  }

  .main-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(32px, 5vw, 58px);
    line-height: 1.15;
    color: var(--green-dark);
    max-width: 1100px;
    margin: 0 auto 50px;
    font-weight: 500;
  }

  /* ===== SEARCH BAR ===== */
  .search-wrapper {
    max-width: 1100px;
    margin: auto;
    background: var(--white);
    padding: 10px 10px 10px 28px;
    border-radius: 60px;
    display: flex;
    align-items: center;
    box-shadow: var(--shadow);
    gap: 0;
    position: relative;
  }

  .theme-hostaway-search-bar .search-btn {
    width: max-content;
    border-radius: 50px;
  }

  .theme-hostaway-search-bar .search-item:not(:first-of-type) {
    padding-left: 15px;
  }

  .search-wrapper.theme-hostaway-search-bar {
    margin-bottom: 35px;
  }

  .search-item {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
    padding: 10px 20px 10px 0;
    cursor: pointer;
    position: relative;
    border-right: 1.5px solid #e4edeb;
    min-width: 0;
  }

  .search-item:last-of-type {
    border-right: none;
    padding-right: 24px;
  }

  .icon-circle {
    width: 44px;
    height: 44px;
    min-width: 44px;
    border-radius: 50%;
    background: var(--icon-bg);
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .icon-circle svg {
    width: 20px;
    height: 20px;
    stroke: var(--green-mid);
    fill: none;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
  }

  .item-text { text-align: left; min-width: 0; }

  .item-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-label);
    letter-spacing: .5px;
    text-transform: uppercase;
    margin-bottom: 2px;
  }

  .item-value {
    font-size: 14px;
    color: var(--text-val);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .item-value.selected { color: var(--green-dark); font-weight: 500; }

  /* ===== SEARCH BTN ===== */
  .search-btn {
    background: var(--green-btn);
    color: #fff;
    border: none;
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
    transition: background .25s, transform .15s;
    white-space: nowrap;
    margin-left: 16px;
    text-decoration: none;
    display: inline-block;
  }
  .search-btn:hover { background: #4e7b67; transform: scale(1.02); }

  /* ===== DROPDOWN PANEL ===== */
  .theme-hostaway-search-bar .dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 12px 40px rgba(35,67,63,0.14);
    z-index: 100;
    min-width: 300px;
    padding: 24px;
    animation: fadeDown .18s ease;
  }
  .theme-hostaway-search-bar .dropdown.open { display: block; }

  @keyframes fadeDown {
    from { opacity:0; transform:translateY(-6px); }
    to   { opacity:1; transform:translateY(0); }
  }

  /* ===== CALENDAR ===== */
  .cal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
  }
  .cal-header span {
    font-size: 15px;
    font-weight: 600;
    color: var(--green-dark);
  }
  .cal-nav {
    background: var(--icon-bg);
    border: none;
    width: 32px; height: 32px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 16px;
    color: var(--green-dark);
    display: flex; align-items: center; justify-content: center;
    transition: background .2s;
  }
  .cal-nav:hover { background: var(--green-light); }

  .cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 4px;
  }

  .cal-day-name {
    font-size: 11px;
    font-weight: 600;
    color: var(--text-val);
    text-align: center;
    padding: 4px 0 8px;
    letter-spacing: .4px;
  }

  .cal-day {
    aspect-ratio: 1;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%;
    font-size: 13px;
    cursor: pointer;
    color: var(--green-dark);
    transition: background .15s, color .15s;
    position: relative;
  }
  .cal-day:hover:not(.empty):not(.disabled) { background: var(--green-light); }
  .cal-day.disabled { color: #c5d1cf; cursor: default; pointer-events: none; }
  .cal-day.empty { pointer-events: none; }
  .cal-day.selected { background: var(--green-btn); color: #fff; }
  .cal-day.in-range { background: #d6ede6; border-radius: 0; }
  .cal-day.range-start { background: var(--green-btn); color: #fff; border-radius: 50% 0 0 50%; }
  .cal-day.range-end   { background: var(--green-btn); color: #fff; border-radius: 0 50% 50% 0; }
  .cal-day.range-start.range-end { border-radius: 50%; }

  /* ===== GUEST PICKER ===== */
  .guest-picker { min-width: 240px; }
  .guest-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid #f0f3f2;
  }
  .guest-row:last-child { border-bottom: none; }
  .guest-info-label { font-size: 14px; font-weight: 600; color: var(--green-dark); }
  .guest-info-sub   { font-size: 12px; color: var(--text-val); margin-top: 2px; }
  .guest-controls { display: flex; align-items: center; gap: 12px; }
  .guest-btn {
    width: 32px; height: 32px; border-radius: 50%;
    border: 1.5px solid var(--green-light);
    background: #fff; cursor: pointer;
    font-size: 18px; color: var(--green-dark);
    display: flex; align-items: center; justify-content: center;
    transition: all .2s;
  }
  .guest-btn:hover { background: var(--green-light); border-color: var(--green-mid); }
  .guest-btn:disabled { opacity: .35; cursor: default; }
  .guest-count { font-size: 15px; font-weight: 600; color: var(--green-dark); min-width: 20px; text-align: center; }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 1540px){
    .search-wrapper.theme-hostaway-search-bar {
      margin-bottom: 28px;
    }
  }

  @media (max-width: 900px) {
    .search-wrapper {
      flex-direction: column;
      border-radius: 24px;
      padding: 16px;
      gap: 4px;
    }
    .search-item {
      width: 100%;
      border-right: none;
      border-bottom: 1.5px solid #e4edeb;
      padding: 14px 8px;
    }
    .search-item:last-of-type { border-bottom: none; }
    .search-btn { width: 100%; margin: 10px 0 0; text-align: center; }
    .dropdown { left: 0; right: 0; min-width: unset; }
  }