    :root {
      --brand-primary: #1B81E1;
      --brand-primary-dark: #03418B;
      --brand-accent: #25A6EF;
      --brand-accent-dark: #0472C0;
      --brand-light: #E8F4FD;
      --brand-light-mid: #C5E4FA;
      --brand-gradient: linear-gradient(135deg, #25A6EF 0%, #1B81E1 50%, #0472C0 100%);
      --brand-gradient-deep: linear-gradient(135deg, #1B81E1 0%, #03418B 100%);
      --text-primary: #0a2540;
      --text-secondary: #3d5a73;
      --text-muted: #6b8499;
      --bg-page: #f0f6fc;
      --bg-white: #ffffff;
      --border: #d4e5f5;
      --shadow-sm: 0 2px 8px rgba(3, 65, 139, 0.08);
      --shadow-md: 0 4px 24px rgba(3, 65, 139, 0.14);
      --radius: 12px;
      --radius-lg: 16px;
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }

    html {
      -webkit-text-size-adjust: 100%;
      overflow-x: hidden;
    }

    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
      color: var(--text-primary);
      background: var(--bg-page);
      line-height: 1.5;
      overflow-x: hidden;
    }

    img { max-width: 100%; height: auto; }

    /* Yapım aşaması — orta overlay (arkada scroll serbest) */
    .coming-soon-overlay {
      position: fixed;
      inset: 0;
      z-index: 9999;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 32px 24px;
      background: rgba(240, 246, 252, 0.42);
      backdrop-filter: blur(4px);
      -webkit-backdrop-filter: blur(4px);
      pointer-events: none;
    }

    .coming-soon-card {
      position: relative;
      text-align: center;
      max-width: 520px;
      width: 100%;
      padding: 0 0 44px;
      background: #ffffff;
      border: 1px solid rgba(212, 229, 245, 0.9);
      border-radius: 24px;
      box-shadow:
        0 4px 6px rgba(3, 65, 139, 0.04),
        0 24px 48px rgba(3, 65, 139, 0.1);
      overflow: hidden;
      pointer-events: auto;
    }

    .coming-soon-accent {
      height: 4px;
      background: var(--brand-gradient);
    }

    .coming-soon-logo-wrap {
      margin: 40px auto 28px;
      padding: 20px 28px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(180deg, #f8fbfe 0%, var(--brand-light) 100%);
      border-radius: 16px;
      border: 1px solid var(--border);
    }

    .coming-soon-logo {
      height: 64px;
      width: auto;
      max-width: 220px;
      display: block;
      object-fit: contain;
    }

    .coming-soon-card h1 {
      font-size: 1.3125rem;
      font-weight: 600;
      color: var(--brand-primary-dark);
      line-height: 1.5;
      letter-spacing: -0.02em;
      padding: 0 40px;
      margin-bottom: 0;
    }

    .coming-soon-divider {
      width: 48px;
      height: 3px;
      margin: 24px auto;
      border-radius: 3px;
      background: var(--brand-gradient);
      opacity: 0.85;
    }

    .coming-soon-subtitle {
      font-size: 1.125rem;
      font-weight: 500;
      color: var(--brand-accent-dark);
      line-height: 1.5;
      padding: 0 40px;
      margin: 0;
    }

    .coming-soon-status {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      margin-top: 28px;
    }

    .coming-soon-status span {
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--brand-accent);
      animation: comingSoonPulse 1.4s ease-in-out infinite;
    }

    .coming-soon-status span:nth-child(2) { animation-delay: 0.2s; }
    .coming-soon-status span:nth-child(3) { animation-delay: 0.4s; }

    @keyframes comingSoonPulse {
      0%, 80%, 100% { opacity: 0.35; transform: scale(0.9); }
      40% { opacity: 1; transform: scale(1); }
    }

    a { color: inherit; text-decoration: none; }
    button { font-family: inherit; cursor: pointer; border: none; }

    /* Header */
    .header {
      background: var(--bg-white);
      border-bottom: 1px solid var(--border);
      position: sticky;
      top: 0;
      z-index: 100;
    }

    .header-inner {
      max-width: 1200px;
      margin: 0 auto;
      padding: 12px 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .logo {
      display: flex;
      align-items: center;
      flex-shrink: 0;
    }

    .logo img {
      height: 56px;
      width: auto;
      max-width: min(200px, 42vw);
      display: block;
      object-fit: contain;
      object-position: left center;
    }

    .nav-actions {
      display: flex;
      align-items: center;
      gap: 16px;
    }

    .nav-link {
      font-size: 0.875rem;
      font-weight: 500;
      color: var(--text-secondary);
      padding: 8px 12px;
      border-radius: 8px;
      transition: background .2s;
    }

    .nav-link:hover { background: var(--brand-light); }

    .btn-login {
      background: transparent;
      border: 1px solid var(--border);
      padding: 8px 20px;
      border-radius: 24px;
      font-size: 0.875rem;
      font-weight: 600;
    }

    .btn-login:hover {
      border-color: var(--brand-primary);
      color: var(--brand-primary-dark);
      background: var(--brand-light);
    }

    /* Language switcher */
    .lang-switcher { position: relative; }
    .lang-btn {
      display: flex;
      align-items: center;
      gap: 6px;
      padding: 8px 12px;
      border-radius: 8px;
      font-size: 0.875rem;
      font-weight: 600;
      background: transparent;
      border: 1px solid var(--border);
      color: var(--text-secondary);
    }
    .lang-btn:hover { background: var(--brand-light); }
    .lang-dropdown {
      display: none;
      position: absolute;
      top: calc(100% + 8px);
      right: 0;
      min-width: 200px;
      background: var(--bg-white);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      box-shadow: var(--shadow-md);
      z-index: 200;
      overflow: hidden;
    }
    .lang-dropdown.open { display: block; }
    .lang-option {
      display: flex;
      align-items: center;
      gap: 10px;
      width: 100%;
      padding: 12px 16px;
      text-align: left;
      font-size: 0.875rem;
      background: transparent;
      border: none;
      color: var(--text-primary);
    }
    .lang-option:hover { background: var(--brand-light); }
    .lang-option.active { background: var(--brand-light); color: var(--brand-primary); font-weight: 600; }

    /* Popovers */
    .popover-overlay {
      display: none;
      position: fixed;
      inset: 0;
      z-index: 150;
    }
    .popover-overlay.open { display: block; }
    .popover {
      display: none;
      position: absolute;
      top: calc(100% + 8px);
      left: 0;
      background: var(--bg-white);
      border: 1px solid var(--border);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-md);
      z-index: 160;
      min-width: 320px;
    }
    .popover.open { display: block; }
    .search-field.has-popover { z-index: 10; }
    .search-field.has-popover.popover-open { z-index: 170; }

    /* Date picker */
    .datepicker { padding: 20px; width: min(680px, 95vw); }
    .datepicker-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 16px;
    }
    .datepicker-header h4 { font-size: 1rem; font-weight: 700; }
    .datepicker-nav {
      display: flex;
      gap: 8px;
    }
    .datepicker-nav button {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      border: 1px solid var(--border);
      background: var(--bg-white);
      font-size: 1.25rem;
      color: var(--text-secondary);
    }
    .datepicker-nav button:hover { border-color: var(--brand-primary); color: var(--brand-primary); }
    .datepicker-months {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 24px;
    }
    @media (max-width: 600px) {
      .datepicker-months { grid-template-columns: 1fr; }
      .popover.date-popover { left: 50%; transform: translateX(-50%); }
    }
    .month-grid { text-align: center; }
    .month-title {
      font-size: 0.875rem;
      font-weight: 700;
      margin-bottom: 12px;
      color: var(--text-primary);
    }
    .weekdays {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      gap: 2px;
      margin-bottom: 8px;
    }
    .weekday {
      font-size: 0.7rem;
      font-weight: 600;
      color: var(--text-muted);
      padding: 4px;
    }
    .days {
      display: grid;
      grid-template-columns: repeat(7, 1fr);
      gap: 2px;
    }
    .day {
      aspect-ratio: 1;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.8125rem;
      font-weight: 500;
      border-radius: 50%;
      cursor: pointer;
      border: none;
      background: transparent;
      color: var(--text-primary);
    }
    .day:hover:not(:disabled) { background: var(--brand-light); }
    .day.other-month { color: #ccc; }
    .day:disabled { color: #ddd; cursor: not-allowed; }
    .day.in-range { background: var(--brand-light-mid); border-radius: 0; }
    .day.range-start, .day.range-end {
      background: var(--brand-primary);
      color: white;
      border-radius: 50%;
    }
    .day.range-start { border-radius: 50% 0 0 50%; }
    .day.range-end { border-radius: 0 50% 50% 0; }
    .day.range-start.range-end { border-radius: 50%; }
    .datepicker-footer {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-top: 16px;
      padding-top: 16px;
      border-top: 1px solid var(--border);
    }
    .datepicker-summary { font-size: 0.875rem; color: var(--text-secondary); }
    .btn-apply {
      background: var(--brand-gradient-deep);
      color: white;
      padding: 10px 24px;
      border-radius: 8px;
      font-weight: 700;
      font-size: 0.875rem;
    }
    .btn-apply:disabled { opacity: 0.5; cursor: not-allowed; }
    .btn-clear {
      background: transparent;
      color: var(--brand-accent-dark);
      font-size: 0.875rem;
      font-weight: 600;
      padding: 8px;
    }

    /* Guests picker */
    .guests-picker { padding: 20px; min-width: 300px; }
    .guests-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 12px 0;
      border-bottom: 1px solid var(--border);
    }
    .guests-row:last-child { border-bottom: none; }
    .guests-label span { display: block; font-size: 0.75rem; color: var(--text-muted); }
    .guests-label strong { font-size: 0.9375rem; }
    .counter {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .counter button {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      border: 1px solid var(--border);
      background: var(--bg-white);
      font-size: 1.25rem;
      line-height: 1;
      color: var(--text-secondary);
    }
    .counter button:hover:not(:disabled) { border-color: var(--brand-primary); color: var(--brand-primary); }
    .counter button:disabled { opacity: 0.4; cursor: not-allowed; }
    .counter span { font-weight: 700; min-width: 24px; text-align: center; }
    .guests-picker .btn-apply { width: 100%; margin-top: 16px; }

    /* Destination suggestions */
    .suggestions { padding: 8px 0; max-height: 280px; overflow-y: auto; }
    .suggestion-item {
      display: flex;
      align-items: center;
      gap: 12px;
      width: 100%;
      padding: 12px 16px;
      text-align: left;
      background: transparent;
      border: none;
      font-size: 0.9375rem;
      color: var(--text-primary);
    }
    .suggestion-item:hover { background: var(--brand-light); }
    .suggestion-icon { font-size: 1.25rem; }
    .suggestion-text strong { display: block; }
    .suggestion-text span { font-size: 0.75rem; color: var(--text-muted); }

    /* Search results */
    .search-results {
      display: none;
      max-width: 1200px;
      margin: 0 auto 64px;
      padding: 0 24px;
    }
    .search-results.visible { display: block; }
    .results-header {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      margin-bottom: 24px;
    }
    .results-header h2 { font-size: 1.25rem; font-weight: 700; }
    .results-meta { font-size: 0.875rem; color: var(--text-secondary); }
    .results-sort select {
      padding: 8px 12px;
      border: 1px solid var(--border);
      border-radius: 8px;
      font-size: 0.875rem;
      font-family: inherit;
    }
    .hotel-list { display: flex; flex-direction: column; gap: 16px; }
    .hotel-card {
      display: grid;
      grid-template-columns: 200px 1fr auto;
      gap: 20px;
      background: var(--bg-white);
      border-radius: var(--radius-lg);
      overflow: hidden;
      border: 1px solid var(--border);
      box-shadow: var(--shadow-sm);
    }
    .hotel-card-img {
      height: 160px;
      background-size: cover;
      background-position: center;
    }
    .hotel-card-body { padding: 16px 0; }
    .hotel-card-body h3 { font-size: 1.125rem; margin-bottom: 4px; }
    .hotel-stars { color: var(--brand-primary); font-size: 0.875rem; margin-bottom: 8px; }
    .hotel-location { font-size: 0.8125rem; color: var(--text-secondary); margin-bottom: 8px; }
    .hotel-rating {
      display: inline-block;
      background: var(--brand-accent);
      color: white;
      font-weight: 700;
      padding: 4px 8px;
      border-radius: 6px 6px 6px 0;
      font-size: 0.875rem;
    }
    .hotel-prices { padding: 16px; text-align: right; min-width: 180px; }
    .hotel-from { font-size: 0.75rem; color: var(--text-muted); }
    .hotel-price { font-size: 1.5rem; font-weight: 700; color: var(--brand-primary); }
    .btn-view-deal {
      display: block;
      margin-top: 12px;
      background: var(--brand-gradient-deep);
      color: white;
      padding: 10px 20px;
      border-radius: 8px;
      font-weight: 700;
      font-size: 0.875rem;
      text-align: center;
    }
    .btn-view-deal:hover { background: #0472C0; }

    /* Login modal */
    .modal-overlay {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,.5);
      z-index: 300;
      align-items: center;
      justify-content: center;
      padding: 24px;
    }
    .modal-overlay.open { display: flex; }
    .modal {
      background: var(--bg-white);
      border-radius: var(--radius-lg);
      padding: 32px;
      max-width: 400px;
      width: 100%;
      position: relative;
    }
    .modal-close {
      position: absolute;
      top: 16px;
      right: 16px;
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: #f0f0f0;
      font-size: 1.25rem;
      line-height: 1;
      color: var(--text-secondary);
    }
    .modal h3 { font-size: 1.25rem; margin-bottom: 8px; }
    .modal p { font-size: 0.875rem; color: var(--text-secondary); margin-bottom: 20px; }
    .modal input {
      width: 100%;
      padding: 12px 16px;
      border: 1px solid var(--border);
      border-radius: 8px;
      font-size: 1rem;
      margin-bottom: 12px;
      font-family: inherit;
    }
    .modal .btn-apply { width: 100%; }
    .modal-divider { text-align: center; margin: 16px 0; font-size: 0.75rem; color: var(--text-muted); }
    .btn-social {
      width: 100%;
      padding: 12px;
      border: 1px solid var(--border);
      border-radius: 8px;
      font-weight: 600;
      font-size: 0.875rem;
      background: var(--bg-white);
      margin-bottom: 8px;
    }

    /* App promo */
    .app-promo {
      background: var(--brand-gradient-deep);
      color: white;
      padding: 48px 24px;
      margin: 48px 0;
    }
    .app-promo-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }
    .app-promo h3 { font-size: 1.5rem; margin-bottom: 8px; }
    .app-promo p { opacity: 0.9; font-size: 0.9375rem; }
    .app-badges { display: flex; gap: 12px; flex-wrap: wrap; }
    .app-badge {
      background: rgba(0,0,0,.2);
      padding: 12px 24px;
      border-radius: 8px;
      font-weight: 700;
      font-size: 0.875rem;
    }

    /* Hero */
    .hero {
      background: linear-gradient(180deg, #e8f4fd 0%, #fff 40%, var(--bg-page) 100%);
      padding: 48px 24px 64px;
      text-align: center;
    }

    .hero-inner { max-width: 900px; margin: 0 auto; }

    .hero h1 {
      font-size: clamp(1.75rem, 4vw, 2.5rem);
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 12px;
      color: var(--text-primary);
    }

    .hero h1 .highlight { color: var(--brand-primary); }

    .hero-sub {
      font-size: 1.125rem;
      color: var(--text-secondary);
      margin-bottom: 32px;
      font-weight: 500;
    }

    /* Search box */
    .search-box {
      background: var(--bg-white);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-md);
      padding: 8px;
      display: flex;
      flex-wrap: wrap;
      gap: 0;
      max-width: 960px;
      margin: 0 auto;
      border: 1px solid var(--border);
    }

    .search-field {
      flex: 1;
      min-width: 180px;
      padding: 16px 20px;
      text-align: left;
      border-right: 1px solid var(--border);
      position: relative;
    }

    .search-field:last-of-type { border-right: none; }

    .search-field label {
      display: block;
      font-size: 0.7rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.04em;
      color: var(--text-muted);
      margin-bottom: 4px;
    }

    .search-field input,
    .search-field .field-value {
      width: 100%;
      border: none;
      font-size: 1rem;
      font-weight: 600;
      color: var(--text-primary);
      background: transparent;
      outline: none;
    }

    .search-field .field-value {
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .search-field .field-value svg {
      width: 18px;
      height: 18px;
      color: var(--text-muted);
      flex-shrink: 0;
    }

    .btn-search {
      background: var(--brand-gradient-deep);
      color: white;
      font-size: 1rem;
      font-weight: 700;
      padding: 0 40px;
      border-radius: var(--radius);
      margin: 4px;
      min-height: 56px;
      transition: background .2s, transform .1s;
      align-self: stretch;
    }

    .btn-search:hover {
      background: linear-gradient(135deg, #0472C0 0%, #03418B 100%);
      transform: scale(1.02);
    }

    /* Partners */
    .partners {
      max-width: 960px;
      margin: 32px auto 0;
      padding: 0 24px;
    }

    .partners-label {
      font-size: 0.75rem;
      color: var(--text-muted);
      text-align: center;
      margin-bottom: 16px;
    }

    .partners-logos {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: 24px 32px;
      opacity: 0.7;
    }

    .partner-logo {
      font-size: 0.875rem;
      font-weight: 700;
      color: var(--text-secondary);
      padding: 8px 16px;
      background: var(--bg-white);
      border-radius: 8px;
      border: 1px solid var(--border);
    }

    .partner-more {
      font-size: 0.875rem;
      font-weight: 600;
      color: var(--brand-accent-dark);
    }

    /* Price comparison */
    .section {
      max-width: 1200px;
      margin: 0 auto 64px;
      padding: 0 24px;
    }

    .section-title {
      font-size: 1.5rem;
      font-weight: 700;
      text-align: center;
      margin-bottom: 32px;
    }

    .price-cards {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
      gap: 20px;
    }

    .price-card {
      background: var(--bg-white);
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      border: 1px solid var(--border);
      transition: transform .2s, box-shadow .2s;
    }

    .price-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-md);
    }

    .price-card-img {
      height: 140px;
      background: var(--brand-gradient-deep);
      position: relative;
    }

    .price-card:nth-child(2) .price-card-img {
      background: linear-gradient(135deg, #25A6EF 0%, #0472C0 100%);
    }

    .price-card:nth-child(3) .price-card-img {
      background: linear-gradient(135deg, #1B81E1 0%, #25A6EF 100%);
    }

    .price-card:nth-child(4) .price-card-img {
      background: linear-gradient(135deg, #0472C0 0%, #03418B 100%);
    }

    .price-badge {
      position: absolute;
      top: 12px;
      left: 12px;
      background: var(--brand-accent);
      color: white;
      font-size: 0.7rem;
      font-weight: 700;
      padding: 4px 10px;
      border-radius: 20px;
    }

    .price-card-body { padding: 16px; }

    .price-site {
      font-size: 0.75rem;
      color: var(--text-muted);
      margin-bottom: 4px;
    }

    .price-amount {
      font-size: 1.25rem;
      font-weight: 700;
    }

    .price-amount span { font-size: 0.875rem; font-weight: 500; color: var(--text-secondary); }

    .price-card.highlight {
      border: 2px solid var(--brand-primary);
      position: relative;
    }

    .price-card.highlight::after {
      content: 'Best deal';
      position: absolute;
      top: 12px;
      right: 12px;
      background: var(--brand-primary);
      color: white;
      font-size: 0.65rem;
      font-weight: 700;
      padding: 4px 8px;
      border-radius: 4px;
    }

    /* City tabs */
    .city-tabs {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      justify-content: center;
      margin-bottom: 24px;
    }

    .city-tab {
      padding: 10px 20px;
      border-radius: 24px;
      font-size: 0.875rem;
      font-weight: 600;
      background: var(--bg-white);
      border: 1px solid var(--border);
      color: var(--text-secondary);
      transition: all .2s;
    }

    .city-tab:hover,
    .city-tab.active {
      background: var(--brand-primary);
      border-color: var(--brand-primary);
      color: white;
    }

    .chart-placeholder {
      background: var(--bg-white);
      border-radius: var(--radius-lg);
      padding: 48px 24px;
      text-align: center;
      border: 1px solid var(--border);
      min-height: 200px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 16px;
    }

    .chart-bars {
      display: flex;
      align-items: flex-end;
      gap: 12px;
      height: 120px;
    }

    .chart-bar {
      width: 40px;
      background: linear-gradient(180deg, var(--brand-accent), var(--brand-primary-dark));
      border-radius: 6px 6px 0 0;
      transition: height .3s;
    }

    .chart-note {
      font-size: 0.8125rem;
      color: var(--text-muted);
      margin-top: 16px;
    }

    /* Popular searches */
    .popular-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 24px;
      flex-wrap: wrap;
      gap: 16px;
    }

    .tab-group {
      display: flex;
      gap: 4px;
      background: var(--brand-light);
      padding: 4px;
      border-radius: 8px;
    }

    .tab-btn {
      padding: 8px 16px;
      border-radius: 6px;
      font-size: 0.875rem;
      font-weight: 600;
      background: transparent;
      color: var(--text-secondary);
    }

    .tab-btn.active {
      background: var(--bg-white);
      color: var(--text-primary);
      box-shadow: var(--shadow-sm);
    }

    .city-carousel {
      display: flex;
      gap: 20px;
      overflow-x: auto;
      padding-bottom: 16px;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
    }

    .city-carousel::-webkit-scrollbar { height: 6px; }
    .city-carousel::-webkit-scrollbar-thumb { background: #ccc; border-radius: 3px; }

    .city-card {
      flex: 0 0 200px;
      scroll-snap-align: start;
      background: var(--bg-white);
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      border: 1px solid var(--border);
      transition: transform .2s;
    }

    .city-card:hover { transform: scale(1.03); }

    .city-card-img {
      height: 120px;
      background-size: cover;
      background-position: center;
    }

    .city-card-body { padding: 14px; }

    .city-card h4 {
      font-size: 1rem;
      font-weight: 700;
      margin-bottom: 4px;
    }

    .city-card-meta {
      font-size: 0.8125rem;
      color: var(--text-secondary);
    }

    .carousel-nav {
      display: flex;
      gap: 8px;
      justify-content: center;
      margin-top: 16px;
    }

    .carousel-btn {
      width: 40px;
      height: 40px;
      border-radius: 50%;
      border: 1px solid var(--border);
      background: var(--bg-white);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.25rem;
      color: var(--text-secondary);
    }

    .carousel-btn:hover {
      border-color: var(--brand-primary);
      color: var(--brand-primary);
    }

    /* More searches */
    .more-searches {
      background: var(--bg-white);
      padding: 48px 24px;
      margin-top: 48px;
    }

    .tag-cloud {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: center;
    }

    .tag {
      padding: 8px 16px;
      background: var(--brand-light);
      border-radius: 20px;
      font-size: 0.875rem;
      font-weight: 500;
      color: var(--text-secondary);
      transition: all .2s;
    }

    .tag:hover {
      background: var(--brand-primary);
      color: white;
    }

    /* Footer */
    .footer {
      background: linear-gradient(180deg, #03418B 0%, #022a5c 100%);
      color: #b8d4eb;
      padding: 48px 24px 24px;
      margin-top: 48px;
    }

    .footer-inner { max-width: 1200px; margin: 0 auto; }

    .footer h4 {
      color: white;
      font-size: 1rem;
      margin-bottom: 16px;
    }

    .footer-sites {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
      gap: 8px 24px;
      margin-bottom: 32px;
    }

    .footer-sites a {
      font-size: 0.8125rem;
      color: #8eb8e0;
    }

    .footer-sites a:hover { color: white; }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,.15);
      padding-top: 24px;
      display: flex;
      flex-wrap: wrap;
      gap: 16px 24px;
      justify-content: space-between;
      font-size: 0.75rem;
    }

    .footer-links { display: flex; flex-wrap: wrap; gap: 16px; }
    .footer-links a:hover { color: white; }

    /* ——— Responsive ——— */

    @media (max-width: 1024px) {
      .section { margin-bottom: 48px; }
      .price-cards { grid-template-columns: repeat(2, 1fr); }
    }

    @media (max-width: 768px) {
      .header-inner {
        padding: 10px 16px;
        gap: 12px;
      }

      .logo img { height: 44px; max-width: 150px; }

      .nav-actions { gap: 8px; }
      .nav-link.hide-mobile { display: none; }

      .lang-btn { padding: 8px 10px; font-size: 0.8125rem; }
      .btn-login { padding: 8px 14px; font-size: 0.8125rem; }

      .coming-soon-overlay {
        padding: 20px 16px;
        padding-left: max(16px, env(safe-area-inset-left));
        padding-right: max(16px, env(safe-area-inset-right));
      }

      .hero {
        padding: 32px 16px 48px;
      }

      .hero-sub {
        font-size: 1rem;
        margin-bottom: 24px;
        padding: 0 4px;
      }

      .search-box {
        flex-direction: column;
        padding: 6px;
        border-radius: var(--radius);
      }

      .search-field {
        flex: none;
        width: 100%;
        min-width: 0;
        border-right: none;
        border-bottom: 1px solid var(--border);
        padding: 14px 16px;
      }

      .search-field:last-of-type { border-bottom: none; }

      .search-field input,
      .search-field .field-value { font-size: 0.9375rem; }

      .field-value { min-height: 44px; }

      .btn-search {
        width: calc(100% - 8px);
        margin: 6px 4px 4px;
        min-height: 48px;
        padding: 14px 24px;
      }

      .search-field.has-popover.popover-open { z-index: 200; }

      .search-field.has-popover .popover {
        position: fixed;
        left: 12px !important;
        right: 12px !important;
        top: auto !important;
        bottom: max(12px, env(safe-area-inset-bottom));
        width: auto !important;
        min-width: 0;
        max-width: none;
        transform: none !important;
        max-height: min(75vh, 520px);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
      }

      .popover.date-popover .datepicker {
        width: 100%;
        padding: 16px;
      }

      .datepicker-footer {
        flex-wrap: wrap;
        gap: 12px;
        justify-content: center;
      }

      .datepicker-summary {
        width: 100%;
        text-align: center;
        order: -1;
      }

      .guests-picker { min-width: 0; width: 100%; }

      .partners {
        padding: 0 16px;
        margin-top: 24px;
      }

      .partners-logos { gap: 12px 16px; }

      .partner-logo {
        font-size: 0.75rem;
        padding: 6px 12px;
      }

      .section,
      .search-results {
        padding: 0 16px;
        margin-bottom: 40px;
      }

      .section-title {
        font-size: 1.25rem;
        margin-bottom: 24px;
        padding: 0 4px;
      }

      .price-cards { grid-template-columns: 1fr; }

      .city-tabs {
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        margin: 0 -16px 24px;
        padding: 4px 16px 12px;
        mask-image: linear-gradient(90deg, transparent, #000 16px, #000 calc(100% - 16px), transparent);
        -webkit-mask-image: linear-gradient(90deg, transparent, #000 16px, #000 calc(100% - 16px), transparent);
      }

      .city-tabs::-webkit-scrollbar { display: none; }

      .city-tab {
        flex-shrink: 0;
        padding: 10px 16px;
        font-size: 0.8125rem;
      }

      .chart-placeholder { padding: 32px 16px; }

      .chart-bars { gap: 8px; height: 100px; }

      .chart-bar { width: 28px; }

      .popular-header {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
      }

      .popular-header .section-title {
        text-align: center;
        margin: 0;
      }

      .tab-group { width: 100%; justify-content: center; }

      .tab-btn { flex: 1; text-align: center; }

      .city-card { flex: 0 0 min(168px, 72vw); }

      .hotel-card {
        grid-template-columns: 1fr;
      }

      .hotel-card-img { height: 180px; }

      .hotel-card-body { padding: 16px 16px 0; }

      .hotel-prices {
        padding: 16px;
        text-align: left;
        border-top: 1px solid var(--border);
        min-width: 0;
      }

      .btn-view-deal { width: 100%; }

      .results-header {
        flex-direction: column;
        align-items: stretch;
      }

      .results-sort select { width: 100%; }

      .app-promo {
        padding: 36px 16px;
        margin: 32px 0;
      }

      .app-promo-inner {
        flex-direction: column;
        text-align: center;
        justify-content: center;
      }

      .app-promo h3 { font-size: 1.25rem; }

      .app-badges { justify-content: center; width: 100%; }

      .app-badge { flex: 1; min-width: 140px; text-align: center; }

      .more-searches { padding: 36px 16px; margin-top: 32px; }

      .tag { font-size: 0.8125rem; padding: 8px 14px; }

      .footer {
        padding: 36px 16px 20px;
        padding-bottom: max(20px, env(safe-area-inset-bottom));
      }

      .footer-sites {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px 16px;
      }

      .footer-bottom {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 12px;
      }

      .footer-links {
        justify-content: center;
      }

      .modal-overlay { padding: 16px; }

      .modal { padding: 28px 20px; }
    }

    @media (max-width: 480px) {
      .logo img { height: 38px; max-width: 130px; }

      #langLabel { display: none; }

      .lang-btn .lang-btn-chevron { display: none; }

      .hero h1 { font-size: 1.5rem; }

      .coming-soon-card {
        padding-bottom: 32px;
        border-radius: 18px;
        max-height: calc(100vh - 32px);
        overflow-y: auto;
      }

      .coming-soon-logo-wrap {
        margin: 28px auto 20px;
        padding: 14px 18px;
      }

      .coming-soon-logo { height: 48px; max-width: 180px; }

      .coming-soon-card h1 {
        font-size: 1.0625rem;
        padding: 0 20px;
        line-height: 1.45;
      }

      .coming-soon-subtitle {
        font-size: 0.9375rem;
        padding: 0 20px;
      }

      .coming-soon-divider { margin: 18px auto; }

      .coming-soon-status { margin-top: 22px; }

      .price-badge { font-size: 0.625rem; max-width: calc(100% - 24px); }

      .price-card.highlight::after {
        font-size: 0.6rem;
        top: 8px;
        right: 8px;
      }

      .day { font-size: 0.75rem; }

      .weekday { font-size: 0.625rem; padding: 2px; }

      .footer-sites { grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 360px) {
      .header-inner { padding: 8px 12px; }
      .btn-login { padding: 8px 12px; }
      .partner-logo { font-size: 0.6875rem; padding: 5px 10px; }
      .city-card { flex: 0 0 85vw; }
    }
