/* ===========================
   ZONED — Global Styles
   =========================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --gold: #C9A84C;
  --gold-light: #E8C96A;
  --gold-glow: rgba(201, 168, 76, 0.35);
  --navy: #0A0E1A;
  --navy-mid: #111827;
  --navy-card: #161D2E;
  --navy-border: rgba(201, 168, 76, 0.2);
  --text-primary: #F5F0E8;
  --text-secondary: #9CA3AF;
  --text-muted: #6B7280;
  --working-color: rgba(201, 168, 76, 0.85);
  --off-color: rgba(255,255,255,0.06);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--navy);
  color: var(--text-primary);
  font-family: var(--font-body);
  overflow-x: hidden;
}

/* ===========================
   HERO — City Panels
   =========================== */

#hero {
  position: relative;
  width: 100%;
  height: 60vh;
  min-height: 340px;
  max-height: 560px;
  display: flex;
  overflow: hidden;
}

#panels-container {
  display: flex;
  width: 100%;
  height: 100%;
  transition: all 0.5s ease;
}

.city-panel {
  position: relative;
  flex: 1;
  overflow: hidden;
  cursor: default;
  transition: flex 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.city-panel:not(:last-child) {
  border-right: 1px solid rgba(255,255,255,0.08);
}

.city-panel .panel-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: background-image 1.5s ease;
}

.city-panel .panel-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 14, 26, 0.85) 0%,
    rgba(10, 14, 26, 0.3) 50%,
    rgba(10, 14, 26, 0.1) 100%
  );
}

.city-panel .panel-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 18px 16px;
}

.city-panel .panel-city-name {
  font-family: var(--font-display);
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.02em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.city-panel .panel-time {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 4vw, 2.4rem);
  font-weight: 400;
  color: var(--gold-light);
  letter-spacing: 0.04em;
  line-height: 1.1;
  margin-top: 2px;
}

.city-panel .panel-date {
  font-size: 0.7rem;
  color: var(--text-secondary);
  margin-top: 3px;
  font-weight: 300;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.city-panel .panel-tz {
  font-size: 0.65rem;
  color: var(--text-muted);
  margin-top: 2px;
  letter-spacing: 0.06em;
}

/* Empty panel (add city prompt) */
.city-panel.empty-panel .panel-bg {
  background: linear-gradient(135deg, #111827 0%, #1a2035 100%);
}

.city-panel.empty-panel .panel-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  top: 0;
  bottom: 0;
  text-align: center;
}

.city-panel.empty-panel .empty-prompt {
  font-size: 0.8rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.city-panel.empty-panel .empty-icon {
  font-size: 2rem;
  color: var(--gold);
  opacity: 0.5;
  margin-bottom: 8px;
}

/* Inline remove button next to city name */
.panel-name-row {
  display: flex;
  align-items: center;
  gap: 6px;
}

.remove-city-btn-inline {
  background: none;
  border: none;
  color: rgba(255,255,255,0.35);
  font-size: 0.7rem;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  transition: color 0.2s;
  flex-shrink: 0;
}

.remove-city-btn-inline:hover {
  color: rgba(220, 80, 80, 0.95);
}

/* Ghost placeholder panel */
.city-panel.ghost-panel {
  position: relative;
  transition: flex 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s;
}

.city-panel.ghost-panel:hover {
  flex: 1.15;
}

.ghost-overlay {
  background: rgba(10, 14, 26, 0.25) !important;
  /* Greyscale + slight dim — image stays visible but monotone */
  backdrop-filter: grayscale(1) brightness(0.65) contrast(0.9);
}

.ghost-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  top: 0 !important;
  text-align: center;
  gap: 4px;
}

.ghost-city-name {
  font-family: var(--font-display);
  font-size: clamp(0.85rem, 2vw, 1.2rem);
  color: rgba(245, 240, 232, 0.4);
  letter-spacing: 0.04em;
}

.ghost-time {
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 3vw, 1.8rem);
  color: rgba(201, 168, 76, 0.35);
  letter-spacing: 0.06em;
}

.ghost-cta {
  margin-top: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  border: 1.5px solid rgba(201, 168, 76, 0.7);
  border-radius: 20px;
  padding: 7px 18px;
  background: rgba(201, 168, 76, 0.1);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
  text-shadow: 0 0 12px rgba(201, 168, 76, 0.5);
}

.ghost-cta-sub {
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.5);
  margin-top: 4px;
}

.ghost-panel:hover .ghost-cta {
  background: rgba(201, 168, 76, 0.15);
  border-color: rgba(201, 168, 76, 0.7);
  color: var(--gold-light);
}

.ghost-panel:hover .ghost-city-name {
  color: rgba(245, 240, 232, 0.65);
}

.ghost-panel:hover .ghost-time {
  color: rgba(201, 168, 76, 0.6);
}

/* Selected timeline segment */
.timeline-segment.selected-segment {
  background: rgba(255, 255, 255, 0.85) !important;
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
  position: relative;
  z-index: 3;
}

.timeline-segment:not(.selected-segment):hover {
  filter: brightness(1.3);
}

/* Timeline hint text */
#timeline-hint {
  text-align: center;
  font-size: 0.72rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  padding: 6px 0 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.hint-pulse {
  color: var(--gold);
  font-size: 0.55rem;
  animation: pulse-dot 1.8s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 0.3; transform: scale(0.8); }
  50% { opacity: 1; transform: scale(1.2); }
}

/* Share panel */
#share-panel {
  margin-top: 10px;
}

.share-inactive {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.share-btn {
  font-family: var(--font-body);
  font-size: 0.75rem;
  padding: 8px 20px;
  border-radius: 24px;
  cursor: pointer;
  letter-spacing: 0.05em;
  transition: all 0.2s;
  border: 1px solid var(--navy-border);
}

.share-btn.inactive {
  background: transparent;
  color: var(--text-muted);
  cursor: not-allowed;
  opacity: 0.5;
}

.share-btn.active {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  font-weight: 600;
}

.share-btn.active:hover {
  background: var(--gold-light);
  box-shadow: 0 0 12px var(--gold-glow);
}

.share-hint-sub {
  font-size: 0.68rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

.share-selected {
  background: var(--navy-card);
  border: 1px solid var(--gold);
  border-radius: 10px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
  box-shadow: 0 0 16px rgba(201, 168, 76, 0.12);
}

.share-times {
  font-size: 0.85rem;
  color: var(--gold-light);
  font-weight: 500;
  letter-spacing: 0.03em;
}

.share-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.share-clear {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 0.72rem;
  cursor: pointer;
  letter-spacing: 0.04em;
  padding: 4px;
  transition: color 0.2s;
}

.share-clear:hover {
  color: #F87171;
}

/* Ghost timeline row */
.timeline-row.ghost-row {
  opacity: 0.35;
  filter: grayscale(1);
  pointer-events: none;
}

.timeline-row.ghost-row .timeline-city-label {
  color: var(--text-muted);
}


/* Add city tab */
#add-city-tab {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(5, 8, 18, 0.95);
  border: 1px solid rgba(201, 168, 76, 0.4);
  border-right: none;
  border-radius: 8px 0 0 8px;
  color: var(--gold);
  padding: 12px 10px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  z-index: 10;
  transition: background 0.2s, border-color 0.2s;
  backdrop-filter: blur(12px);
  box-shadow: -3px 0 12px rgba(0,0,0,0.6);
}

#add-city-tab:hover {
  background: rgba(201, 168, 76, 0.15);
  border-color: var(--gold);
}

#add-city-tab .tab-icon {
  font-size: 1.2rem;
  font-weight: 300;
  line-height: 1;
}

#add-city-tab .tab-label {
  font-size: 0.55rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  color: rgba(255, 255, 255, 0.85);
}

/* When 2+ cities active, keep the tab but make it slightly less prominent */
#add-city-tab.compact {
  opacity: 0.75;
  padding: 10px 8px;
}

/* ===========================
   TIMELINE SECTION
   =========================== */

#timeline-section {
  background: var(--navy-mid);
  padding: 28px 24px 32px;
  border-top: 1px solid var(--navy-border);
}

#timeline-container {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.timeline-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.timeline-row-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 2px;
  padding-left: 2px;
}

.timeline-city-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.timeline-city-label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-secondary);
}

/* The bar track */
.timeline-track {
  position: relative;
  height: 28px;
  background: var(--off-color);
  border-radius: 4px;
  overflow: visible;
}

/* Hour segments inside the track */
.timeline-segments {
  display: flex;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  overflow: hidden;
}

.timeline-segment {
  flex: 1;
  height: 100%;
  background: #2a3f5f;
  transition: background 0.3s;
}



/* Hourly tick marks on the bar */
.timeline-tick {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.30);
  pointer-events: none;
  z-index: 3;
}

/* Hour labels below each bar */
.timeline-labels {
  display: flex;
  width: 100%;
  position: relative;
  height: 16px;
}

.timeline-label {
  position: absolute;
  font-size: 0.5rem;
  color: var(--text-muted);
  transform: translateX(-50%);
  white-space: nowrap;
  letter-spacing: 0.02em;
}

.timeline-label.current-marker {
  color: rgba(255, 255, 255, 0.95);
  font-weight: 600;
}

/* Vertical cursor line on hover */
.timeline-cursor {
  position: absolute;
  top: -4px;
  bottom: -4px;
  width: 1px;
  background: rgba(255,255,255,0.4);
  pointer-events: none;
  z-index: 3;
  display: none;
}

#timeline-container:hover .timeline-cursor {
  display: block;
}

/* Overlap summary */
#overlap-summary {
  margin-top: 8px;
  padding: 12px 16px;
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

#overlap-summary.no-overlap {
  border-color: rgba(239, 68, 68, 0.3);
}

.overlap-text {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

.overlap-text strong {
  color: var(--gold-light);
  font-weight: 600;
}

.overlap-text.no-overlap-text {
  color: #F87171;
}

#copy-btn {
  background: transparent;
  border: 1px solid var(--navy-border);
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.72rem;
  padding: 6px 14px;
  border-radius: 20px;
  cursor: pointer;
  letter-spacing: 0.05em;
  transition: background 0.2s, border-color 0.2s;
  white-space: nowrap;
}

#copy-btn:hover {
  background: var(--gold-glow);
  border-color: var(--gold);
}

/* ===========================
   AD SECTION
   =========================== */

#ad-section {
  padding: 16px 24px;
  background: var(--navy-mid);
  border-top: 1px solid rgba(255,255,255,0.04);
}

.ad-native-card {
  max-width: 960px;
  margin: 0 auto;
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: 10px;
  padding: 14px 18px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ad-label {
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  position: absolute;
  top: 8px;
  right: 12px;
}

.ad-content {
  display: flex;
  align-items: center;
  gap: 14px;
}

.ad-icon {
  font-size: 1.6rem;
  opacity: 0.6;
}

.ad-title {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-primary);
}

.ad-desc {
  font-size: 0.72rem;
  color: var(--text-secondary);
  margin-top: 2px;
}

/* ===========================
   FOOTER
   =========================== */

#footer {
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 20px 24px;
}

.footer-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold);
  letter-spacing: 0.05em;
}

.footer-tagline {
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.06em;
  flex: 1;
}

.footer-ad-box {
  border: 1px dashed rgba(255,255,255,0.1);
  border-radius: 4px;
  padding: 8px 20px;
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  min-width: 120px;
  text-align: center;
}

/* ===========================
   SIDEBAR
   =========================== */

#sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 40;
  backdrop-filter: blur(2px);
  transition: opacity 0.3s;
}

#sidebar-overlay.hidden { display: none; }

#add-city-sidebar {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 300px;
  background: var(--navy-card);
  border-left: 1px solid var(--navy-border);
  z-index: 50;
  display: flex;
  flex-direction: column;
  padding: 24px 20px;
  gap: 20px;
  transform: translateX(0);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#add-city-sidebar.hidden {
  transform: translateX(100%);
  display: flex; /* keep in DOM but off-screen */
}

.sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.sidebar-header h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--gold-light);
  font-weight: 400;
}

#close-sidebar {
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1rem;
  cursor: pointer;
  padding: 4px;
  transition: color 0.2s;
}

#close-sidebar:hover { color: var(--text-primary); }

.sidebar-search {
  position: relative;
}

#city-search-input {
  width: 100%;
  background: var(--navy-mid);
  border: 1px solid var(--navy-border);
  border-radius: 8px;
  padding: 10px 14px;
  color: var(--text-primary);
  font-family: var(--font-body);
  font-size: 0.85rem;
  outline: none;
  transition: border-color 0.2s;
}

#city-search-input:focus {
  border-color: var(--gold);
}

#city-search-input::placeholder {
  color: var(--text-muted);
}

#city-suggestions {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: var(--navy-card);
  border: 1px solid var(--navy-border);
  border-radius: 8px;
  list-style: none;
  max-height: 220px;
  overflow-y: auto;
  z-index: 60;
}

#city-suggestions li {
  padding: 10px 14px;
  font-size: 0.82rem;
  cursor: pointer;
  transition: background 0.15s;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

#city-suggestions li:last-child { border-bottom: none; }

#city-suggestions li:hover {
  background: rgba(201, 168, 76, 0.1);
  color: var(--gold-light);
}

#city-suggestions li .suggestion-tz {
  font-size: 0.68rem;
  color: var(--text-muted);
  margin-left: 6px;
}

.sidebar-current h4 {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}

#current-cities-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

#current-cities-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--navy-mid);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 6px;
  padding: 8px 12px;
  font-size: 0.82rem;
}

#current-cities-list li .city-remove {
  background: transparent;
  border: none;
  color: var(--text-muted);
  cursor: pointer;
  font-size: 0.8rem;
  padding: 2px 4px;
  transition: color 0.2s;
}

#current-cities-list li .city-remove:hover { color: #F87171; }

/* ===========================
   RESPONSIVE
   =========================== */

/* ---- Tablet (641–900px) ---- */
@media (max-width: 900px) {
  #hero {
    height: auto;
    max-height: none;
    min-height: 0;
  }

  #panels-container {
    flex-direction: column;
  }

  .city-panel {
    width: 100%;
    height: 52vw;
    min-height: 180px;
    max-height: 320px;
    flex: none;
    border-right: none !important;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .city-panel:last-child {
    border-bottom: none;
  }

  .city-panel.ghost-panel:hover {
    flex: none;
  }

  #add-city-tab {
    display: none;
  }

  /* Ghost panel CTA — show as bottom bar on tablet */
  .city-panel.ghost-panel .ghost-info {
    flex-direction: row;
    justify-content: center;
    gap: 12px;
  }
}

/* ---- Mobile (max 640px) ---- */
@media (max-width: 640px) {
  /* Hero: stacked vertical panels */
  #hero {
    height: auto;
    max-height: none;
    min-height: 0;
    flex-direction: column;
  }

  #panels-container {
    flex-direction: column;
  }

  .city-panel {
    width: 100%;
    height: 56vw;
    min-height: 160px;
    max-height: 260px;
    flex: none;
    border-right: none !important;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    transition: none;
  }

  /* Ghost panel shorter on mobile */
  .city-panel.ghost-panel {
    height: 36vw;
    min-height: 110px;
    max-height: 160px;
  }

  /* Ghost panel content centered on mobile */
  .ghost-info {
    flex-direction: row !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 12px !important;
    flex-wrap: wrap;
  }

  .ghost-cta-sub {
    display: none;
  }

  .city-panel:last-child {
    border-bottom: none;
  }

  .city-panel.ghost-panel:hover {
    flex: none;
  }

  /* Panel info text sizes */
  .city-panel .panel-info {
    padding: 14px 14px 12px;
  }

  .city-panel .panel-city-name {
    font-size: 1.05rem;
  }

  .city-panel .panel-time {
    font-size: 1.7rem;
  }

  .city-panel .panel-date {
    font-size: 0.68rem;
  }

  .city-panel .panel-tz {
    font-size: 0.62rem;
  }

  /* Ghost panel — row layout on mobile */
  .ghost-cta {
    font-size: 0.7rem;
    padding: 6px 14px;
  }

  /* Hide the vertical add-city tab — ghost panel handles it */
  #add-city-tab {
    display: none;
  }

  /* Timeline section */
  #timeline-section {
    padding: 16px 10px 20px;
  }

  #timeline-container {
    gap: 14px;
  }

  .timeline-row {
    gap: 4px;
  }

  .timeline-city-label {
    font-size: 0.68rem;
  }

  .timeline-track {
    height: 24px;
  }

  /* Make hour labels less dense on mobile — show every 2nd label */
  .timeline-label {
    font-size: 0.42rem;
  }

  /* Timeline hint */
  #timeline-hint {
    font-size: 0.65rem;
  }

  /* Ad section */
  #ad-section {
    padding: 12px 14px;
  }

  .ad-title {
    font-size: 0.78rem;
  }

  .ad-desc {
    font-size: 0.65rem;
  }

  /* Footer */
  #footer {
    padding: 16px 14px;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .footer-logo {
    font-size: 1rem;
  }

  .footer-tagline {
    font-size: 0.65rem;
  }

  /* Sidebar full width on mobile */
  #add-city-sidebar {
    width: 100%;
    padding: 20px 16px;
  }

  /* Bigger touch targets for timeline segments */
  .timeline-segment {
    cursor: pointer;
  }

  /* Remove button easier to tap */
  .remove-city-btn-inline {
    font-size: 0.8rem;
    padding: 2px 4px;
  }
}

/* ===========================
   RTL SUPPORT (Arabic, Hebrew, Persian)
   =========================== */

[dir="rtl"] body {
  direction: rtl;
  text-align: right;
}

[dir="rtl"] .panel-info {
  left: auto;
  right: 0;
  text-align: right;
}

[dir="rtl"] .panel-name-row {
  flex-direction: row-reverse;
}

[dir="rtl"] .remove-city-btn-inline {
  margin-left: 0;
  margin-right: auto;
}

[dir="rtl"] #add-city-tab {
  right: auto;
  left: 0;
  border-right: 1px solid rgba(201, 168, 76, 0.4);
  border-left: none;
  border-radius: 0 8px 8px 0;
}

[dir="rtl"] #add-city-sidebar {
  right: auto;
  left: 0;
  border-left: none;
  border-right: 1px solid rgba(201, 168, 76, 0.2);
}

[dir="rtl"] .sidebar-header {
  flex-direction: row-reverse;
}

[dir="rtl"] .timeline-row-header {
  flex-direction: row-reverse;
}

[dir="rtl"] .footer-inner {
  flex-direction: row-reverse;
}

[dir="rtl"] .share-selected {
  flex-direction: row-reverse;
}

[dir="rtl"] .share-actions {
  flex-direction: row-reverse;
}

[dir="rtl"] .ad-content {
  flex-direction: row-reverse;
  text-align: right;
}

[dir="rtl"] .ad-label {
  right: auto;
  left: 12px;
}

[dir="rtl"] #city-suggestions li {
  text-align: right;
}

[dir="rtl"] #current-cities-list li {
  flex-direction: row-reverse;
}

[dir="rtl"] .ghost-info {
  direction: rtl;
}
