@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&display=swap');

/* === Navigation === */
.navbar__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.navbar__logo {
  width: 34px;
  height: 34px;
  display: block;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.navbar__brand:hover .navbar__logo {
  transform: rotate(45deg) scale(1.08);
}

.navbar__wordmark {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -0.02em;
  line-height: 1;
}

.navbar__tld {
  font-weight: 400;
  opacity: 0.5;
  font-size: 0.75em;
}

.navbar__link {
  position: relative;
  padding: 6px 14px;
  font-size: 14px;
  font-weight: 500;
  color: #555;
  text-decoration: none;
  transition: color 0.2s;
  border-radius: 6px;
}

.navbar__link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #f59e0b, #d97706);
  transition: width 0.3s cubic-bezier(0.22, 1, 0.36, 1), left 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  border-radius: 2px;
}

.navbar__link:hover {
  color: #1a1a1a;
}

.navbar__link:hover::after {
  width: 60%;
  left: 20%;
}

.navbar__search-form {
  display: flex;
  align-items: center;
}

.navbar__search-field {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #f5f5f4;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 0 10px;
  transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: text;
}

.navbar__search-field:focus-within {
  background: #fff;
  border-color: #f59e0b;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.08), 0 2px 8px rgba(245, 158, 11, 0.06);
}

.navbar__search-icon {
  width: 16px;
  height: 16px;
  color: #a8a29e;
  flex-shrink: 0;
  transition: color 0.2s;
}

.navbar__search-field:focus-within .navbar__search-icon {
  color: #f59e0b;
}

.navbar__search-input {
  border: none;
  background: transparent;
  padding: 7px 0;
  font-size: 13px;
  color: #1c1917;
  width: 120px;
  outline: none;
  font-family: inherit;
}

.navbar__search-input::placeholder {
  color: #a8a29e;
}

.navbar__search-expand {
  display: flex;
  align-items: center;
  gap: 4px;
  overflow: hidden;
  max-width: 0;
  opacity: 0;
  transition: max-width 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.25s ease, margin 0.3s ease;
  margin: 0;
}

.navbar__search-field:focus-within .navbar__search-expand,
.navbar__search-expand--active {
  max-width: 260px;
  opacity: 1;
  margin-left: 4px;
}

.navbar__search-select {
  padding: 5px 8px;
  border: 1px solid #e7e5e4;
  border-radius: 6px;
  font-size: 12px;
  background: #fff;
  color: #444;
  cursor: pointer;
  outline: none;
  transition: border-color 0.2s;
  max-width: 110px;
  font-family: inherit;
}

.navbar__search-select:focus {
  border-color: #f59e0b;
}

/* Hamburger */
.navbar__hamburger {
  width: 36px;
  height: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.2s;
  padding: 0;
}

.navbar__hamburger:hover {
  background: #f5f5f4;
}

.navbar__hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: #555;
  border-radius: 2px;
  transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  transform-origin: center;
}

.navbar__hamburger.is-active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.navbar__hamburger.is-active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.navbar__hamburger.is-active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.navbar__mobile {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease;
  opacity: 0;
  background: rgba(255, 255, 255, 0.98);
  border-top: 1px solid #f0f0f0;
  backdrop-filter: blur(12px);
}

.navbar__mobile.is-open {
  max-height: 400px;
  opacity: 1;
}

.navbar__mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 12px 16px 8px;
  gap: 2px;
}

.navbar__mobile-link {
  padding: 10px 12px;
  font-size: 15px;
  font-weight: 500;
  color: #444;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.2s;
}

.navbar__mobile-link:hover {
  background: #f5f5f4;
  color: #1a1a1a;
}

.navbar__mobile-search {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 8px 16px 16px;
}

.navbar__mobile-input {
  padding: 10px 14px;
  border: 1px solid #e7e5e4;
  border-radius: 8px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
  font-family: inherit;
}

.navbar__mobile-input:focus {
  border-color: #f59e0b;
}

.navbar__mobile-select {
  padding: 9px 12px;
  border: 1px solid #e7e5e4;
  border-radius: 8px;
  font-size: 13px;
  background: #fff;
  outline: none;
  cursor: pointer;
  font-family: inherit;
}

.navbar__mobile-select:focus {
  border-color: #f59e0b;
}

.navbar__mobile-btn {
  padding: 10px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.navbar__mobile-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

/* Scroll state */
.navbar.navbar-scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 1px 20px rgba(0, 0, 0, 0.06);
}

/* === Review Search Results === */
.review-search-section {
    padding: 2rem 0;
    min-height: 60vh;
}

.review-search-header {
    text-align: center;
    margin-bottom: 2rem;
}

.review-search-header__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 2rem;
    font-weight: 600;
    color: #78350f;
    margin-bottom: 0.5rem;
}

.review-search-header__desc {
    color: #8a7560;
    font-size: 1rem;
}

.review-search-grid {
    display: grid;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.review-search-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 1.5rem;
    background: #fff;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 1px 3px rgba(217, 119, 6, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #fef3c7;
}

.review-search-card:hover {
    box-shadow: 0 8px 20px rgba(217, 119, 6, 0.12);
    transform: translateY(-2px);
}

.review-search-card__tour {
    border-right: 1px solid #e5e7eb;
    padding-right: 1.5rem;
}

.review-search-card__tour-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 0.5rem;
    margin-bottom: 0.75rem;
}

.review-search-card__tour-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
    display: block;
    text-decoration: none;
}

.review-search-card__tour-title:hover {
    color: #d97706;
}

.review-search-card__tour-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: #6b7280;
}

.review-search-card__review {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.review-search-card__review-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.review-search-card__review-stars {
    display: flex;
    gap: 2px;
}

.review-search-card__review-stars .star {
    color: #fbbf24;
    font-size: 1rem;
}

.review-search-card__review-author {
    font-weight: 600;
    color: #374151;
    font-size: 0.875rem;
}

.review-search-card__review-text {
    color: #4b5563;
    line-height: 1.6;
    font-size: 0.95rem;
}

.review-search-card__review-text mark {
    background: #fef3c7;
    color: #92400e;
    padding: 0 2px;
    border-radius: 2px;
}

/* Responsive */
@media (max-width: 768px) {
    .review-search-card {
        grid-template-columns: 1fr;
    }

    .review-search-card__tour {
        border-right: none;
        border-bottom: 1px solid #e5e7eb;
        padding-right: 0;
        padding-bottom: 1rem;
    }
}

.card-section {
  background: #fff;
  border-radius: 1.5rem;
  box-shadow: 0 10px 15px -3px rgba(217, 119, 6, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  animation: slideUp 0.5s ease-out both;
}

.card-section--delay-1 { animation-delay: 0.1s; }
.card-section--delay-2 { animation-delay: 0.2s; }
.card-section--delay-3 { animation-delay: 0.25s; }

/* === Tour Hero === */
.tour-hero {
  position: relative;
  height: 18rem;
  background: linear-gradient(to bottom right, #fffbeb, #fef3c7);
}

/* === Group Formats === */
.group-formats {
  margin-top: 1.5rem;
  padding: 1.25rem;
  background: linear-gradient(135deg, #fefce8 0%, #fef3c7 100%);
  border-radius: 1rem;
  border: 1px solid #fde68a;
}

.group-formats__title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #92400e;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.group-formats__icon {
  font-size: 1.25rem;
}

.group-formats__desc {
  font-size: 0.875rem;
  color: #a16207;
  margin-bottom: 0.75rem;
}

.group-formats__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.group-format {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.5rem 0.875rem;
  background: #fff;
  border-radius: 9999px;
  border: 1px solid #fde047;
  font-size: 0.875rem;
  font-weight: 500;
  color: #78350f;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.group-format__icon {
  font-size: 1rem;
}

.group-format__text {
  color: #451a03;
}

.photo-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.5rem;
  margin-top: 1rem;
}

.photo-gallery-item {
  aspect-ratio: 4/3;
  border-radius: 0.5rem;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
}

.photo-gallery-item:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.photo-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-gallery-more {
  aspect-ratio: 4/3;
  border-radius: 0.5rem;
  background: linear-gradient(135deg, #fde047, #fbbf24);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: #78350f;
  cursor: pointer;
}

@media (min-width: 640px) {
  .tour-hero { height: 20rem; }
}

/* === Hero Section === */
.hero-section {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: linear-gradient(180deg, #fffbeb 0%, #fef3c7 30%, #ffedd5 60%, #fff 100%);
  position: relative;
}

/* Hero cities widget positioning */
.hero-section .admin-gallery {
  position: absolute;
  inset: 0;
  background: transparent;
  padding: 0;
  border-radius: 0;
  pointer-events: none;
}

.hero-section .admin-gallery .gallery-hero-cities-wrapper {
  pointer-events: auto;
}

.hero-cities-bg__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: blur(3px);
}

/* Hero cities wrapper - full width at bottom */
.hero-cities-wrapper {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  height: 180px;
  z-index: 10;
  padding: 0 3.5rem;
}

.hero-pattern {
  background-image:
    radial-gradient(circle at 25% 25%, rgba(251, 191, 36, .08) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(245, 158, 11, .06) 0%, transparent 50%);
}

/* === Hero Container === */
.hero-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 56rem;
  width: 100%;
  padding: 0 1rem;
  text-align: center;
  position: relative;
  z-index: 20;
}



/* === Typography === */
.hero-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: #78350f;
  margin-bottom: 1rem;
  animation: slideUp 0.6s ease-out;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

.hero-title__accent {
  background: linear-gradient(135deg, #fbbf24, #f59e0b, #d97706);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.125rem, 2.5vw, 1.35rem);
  color: #78716c;
  margin-bottom: 2.5rem;
  animation: slideUp 0.6s ease-out 0.1s both;
  line-height: 1.6;
  font-style: italic;
  font-weight: 400;
}

.hero-subtitle strong {
  color: #92400e;
  font-weight: 600;
}

/* === City Search === */
.city-search {
  position: relative;
  max-width: 42rem;
  margin: 0 auto 2rem;
  animation: slideUp 0.6s ease-out 0.2s both;
}

.screen-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 42rem;
  padding: 0 1rem;
  z-index: 30;
}

.city-search__glow {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #fbbf24, #f59e0b);
  border-radius: 1rem;
  filter: blur(8px);
  opacity: 0.15;
  transition: opacity 0.3s;
}

.city-search:hover .city-search__glow { opacity: 0.25; }

.city-search__wrapper {
  position: relative;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 20px 25px -5px rgba(217,119,6,.08);
  border: 1px solid #fef3c7;
  overflow: hidden;
}

.city-search__inner { display: flex; align-items: center; }
.city-search__icon { padding-left: 1.25rem; color: #f59e0b; }
.city-search__icon svg { width: 1.5rem; height: 1.5rem; }

.city-search__input {
  flex: 1;
  padding: 1.25rem 1rem;
  font-size: 1.125rem;
  color: #1f2937;
  border: none;
  outline: none;
  background: transparent;
}

.city-search__clear {
  padding-right: 1.25rem;
  background: none;
  border: none;
  color: #9ca3af;
  cursor: pointer;
  transition: color 0.2s;
}
.city-search__clear:hover { color: #4b5563; }
.city-search__clear svg { width: 1.25rem; height: 1.25rem; }

.city-search__dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0,0,0,.15);
  border: 1px solid #f3f4f6;
  z-index: 100;
}
.city-search__dropdown--open { display: block; }

/* === Unified Search (Traveler's Desk) === */
.unified-search {
  max-width: 42rem;
  margin: 0 auto 2.5rem;
  background: #faf6ed;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 8px 30px rgba(120, 80, 40, 0.08), 0 0 0 1px rgba(180, 140, 80, 0.12);
  animation: slideUp 0.6s ease-out 0.2s both;
}

.unified-search__tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(180, 140, 80, 0.15);
  padding-bottom: 16px;
}

.unified-search__tab {
  flex: 1;
  padding: 10px 20px;
  border: 1.5px solid rgba(180, 140, 80, 0.2);
  border-radius: 9999px;
  background: transparent;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: #8a7560;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.unified-search__tab:hover {
  border-color: #d97706;
  color: #92400e;
}

.unified-search__tab--active {
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #fff;
  border-color: transparent;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.25);
}

.unified-search__tab--active:hover {
  color: #fff;
  transform: translateY(-1px);
}

.unified-search__panel {
  display: none;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.unified-search__panel--active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

.unified-search .city-search {
  margin-bottom: 0;
  animation: none;
}

.unified-search__form {
  width: 100%;
}

.unified-search__filters {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.unified-search__input {
  flex: 1;
  min-width: 180px;
  padding: 12px 16px;
  border: 1px solid rgba(180, 140, 80, 0.2);
  border-radius: 12px;
  font-size: 0.95rem;
  background: #fff;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: inherit;
}

.unified-search__input:focus {
  border-color: #f59e0b;
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.08);
}

.unified-search__select {
  padding: 12px 14px;
  border: 1px solid rgba(180, 140, 80, 0.2);
  border-radius: 12px;
  font-size: 0.9rem;
  background: #fff;
  outline: none;
  cursor: pointer;
  font-family: inherit;
  min-width: 140px;
  color: #444;
}

.unified-search__select:focus {
  border-color: #f59e0b;
}

.unified-search__submit {
  padding: 12px 24px;
  background: linear-gradient(135deg, #f59e0b, #d97706);
  color: #fff;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.2);
  font-family: inherit;
  white-space: nowrap;
}

.unified-search__submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(245, 158, 11, 0.3);
}

/* === Geo Label (subtle) === */
.hero-geo-label {
  display: block;
  font-size: 0.8rem;
  color: #a89880;
  margin-top: -1.5rem;
  margin-bottom: 2rem;
  animation: slideUp 0.6s ease-out 0.15s both;
}

.tours-grid--road {
  display: flex;
  flex-direction: row;
  gap: 0;
  padding: 1.5rem 0;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
  /* Дорога - асфальт */
  background: #374151;
  position: relative;
}

/* Центральная разметка */
.tours-grid--road::before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 2px;
  background: repeating-linear-gradient(
    to right,
    #fff 0,
    #fff 30px,
    transparent 30px,
    transparent 60px
  );
  transform: translateY(-50%);
  pointer-events: none;
  opacity: 0.5;
}

/* Боковые рельсы */
.tours-grid--road::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  border-top: 4px solid #fbbf24;
  border-bottom: 4px solid #fbbf24;
  pointer-events: none;
}

.tours-grid--road::-webkit-scrollbar {
  display: none;
}

.tours-grid--road .tours-grid__scroll-hint {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255,255,255,0.7);
  font-size: 0.875rem;
  font-weight: 600;
  pointer-events: none;
  animation: scroll-hint-pulse 2s infinite;
}

@keyframes scroll-hint-pulse {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

/* Road Tour Card - большая карточка дороги */
.tour-card--road {
  flex-shrink: 0;
  width: 480px;
  height: 360px;
  background: #1f2937;
  border-radius: 0.5rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
  border: 1px solid #4b5563;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  cursor: pointer;
  margin: 0;
}

.tour-card--road:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 40px rgba(251,191,36,0.3);
  border-color: #fbbf24;
}

.tour-card--road__image {
  height: 200px;
  background: linear-gradient(135deg, #374151, #1f2937);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.tour-card--road__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tour-card--road__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: #fbbf24;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #1f2937;
}

.tour-card--road__badge--light {
  border-radius: 0.75rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #92400e;
  box-shadow: 0 2px 8px rgba(217,119,6,0.1);
}

.tour-card--road__body {
  flex: 1;
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  background: #fff;
}

.tour-card--road__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f2937;
  line-height: 1.3;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: auto;
}

.tour-card--road__title a {
  color: inherit;
  text-decoration: none;
}

.tour-card--road__title a:hover {
  color: #f59e0b;
}

.tour-card--road__price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #f59e0b;
  margin-top: 0.75rem;
}

.tour-card--road__category {
  font-size: 0.75rem;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.5rem;
}

/* City Tours View All */
.city-tours__view-all {
  text-align: center;
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid #f3f4f6;
}

.city-tours__view-all-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #fff;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 0.75rem;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(245,158,11,0.3);
}

.city-tours__view-all-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(245,158,11,0.4);
}

.city-search__item {
  padding: 0.875rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  transition: background 0.2s;
  position: relative;
}
.city-search__item-main {
  flex: 1;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
}

.city-search__item-name {
  font-size: 1.125rem;
  font-weight: 600;
  color: #1f2937;
}
.city-search__item-country {
  font-size: 1rem;
  color: #6b7280;
}
.city-search__item-count {
  font-size: 0.9375rem;
  color: #9ca3af;
}
.city-search__item-preview {
  display: none;
  position: absolute;
  right: -265px;
  top: -0.5rem;
  width: 250px;
  background: linear-gradient(165deg, #fffbf0 0%, #fef3c7 50%, #fde68a 100%);
  border-radius: 1rem;
  padding: 1.25rem;
  box-shadow: 
    0 4px 24px rgba(180, 140, 80, 0.2),
    0 0 0 1px rgba(251, 191, 36, 0.15),
    inset 0 1px 0 rgba(255,255,255,0.8);
  z-index: 50;
  opacity: 0;
  transform: translateX(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}
.city-search__item:hover { background: #fef3c7; position: relative; }
.city-search__item:hover > .city-search__item-preview { 
  display: block;
  opacity: 1;
  transform: translateX(0);
}

.city-search__item-preview::before {
  content: '"';
  position: absolute;
  top: 0.5rem;
  left: 1rem;
  font-size: 3.5rem;
  color: rgba(251, 191, 36, 0.3);
  font-family: Georgia, serif;
  line-height: 1;
}
.city-search__item-preview__badge {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}
.city-search__item-preview__content {
  font-size: 0.8125rem;
  color: #44403c;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 0.75rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.city-search__item-preview__author {
  font-size: 0.75rem;
  color: #a8a29e;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.375rem;
}
.city-search__item-preview__author::before {
  content: '';
  width: 1rem;
  height: 1px;
  background: #d6d3d1;
}
.city-search__item-preview__loading {
  font-size: 0.75rem;
  color: #9ca3af;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.city-search__item-preview__loading::after {
  content: '';
  width: 0.5rem;
  height: 0.5rem;
  background: #fbbf24;
  border-radius: 50%;
  animation: pulse 1s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 0.4; transform: scale(0.9); }
  50% { opacity: 1; transform: scale(1.1); }
}

/* === Selected City Chip === */
.selected-city {
  display: none;
  margin-bottom: 2.5rem;
  animation: slideUp 0.6s ease-out 0.3s both;
}
.selected-city--visible { display: inline-flex; }

.selected-city__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(90deg, #f59e0b, #d97706);
  padding: 0.75rem 1.5rem;
  border-radius: 9999px;
  box-shadow: 0 10px 15px -3px rgba(217, 119, 6, 0.2);
}
.selected-city__chip--link {
  cursor: pointer;
  transition: box-shadow 0.2s, transform 0.2s;
}
.selected-city__chip--link:hover {
  box-shadow: 0 15px 25px -5px rgba(0,0,0,.2);
  transform: translateY(-2px);
}

.selected-city__icon { width: 1.25rem; height: 1.25rem; color: #fff; }
.selected-city__name { color: #fff; font-weight: 600; font-size: 1.125rem; }

.selected-city__remove {
  margin-left: 0.5rem;
  width: 1.5rem;
  height: 1.5rem;
  background: rgba(255,255,255,.2);
  border: none;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}
.selected-city__remove:hover { background: rgba(255,255,255,.3); }
.selected-city__remove svg { width: 1rem; height: 1rem; color: #fff; }

/* === Category Section === */
.category-label {
  text-align: left;
  margin-bottom: 1.5rem;
  animation: slideUp 0.6s ease-out 0.3s both;
}
.category-label__text {
  font-size: 0.875rem;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media (min-width: 768px) { .category-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .category-grid { grid-template-columns: repeat(6, 1fr); } }

.category-card {
  background: #fff;
  border-radius: 1.25rem;
  padding: 1.25rem;
  text-align: center;
  cursor: pointer;
  border: 2px solid #fef3c7;
  transition: all 0.3s cubic-bezier(.4,0,.2,1);
}
.category-card:hover {
  box-shadow: 0 20px 25px -5px rgba(245,158,11,.15);
  transform: translateY(-4px);
  border-color: #fbbf24;
}

.category-card__icon {
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  transition: transform 0.3s;
}
.category-card:hover .category-card__icon { transform: scale(1.15); }
.category-card__icon span { font-size: 1.75rem; }

.category-card__name { font-weight: 700; color: #78350f; margin-bottom: 0.25rem; }
.category-card__count { font-size: 0.8125rem; color: #a8a29e; font-weight: 600; }
.category-card__count--empty { font-style: italic; color: #d6d3d1; }

/* === Scroll Indicator === */
.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: float 3s ease-in-out infinite;
}
.scroll-indicator__text { font-size: 0.875rem; color: #9ca3af; font-weight: 500; }
.scroll-indicator__icon { width: 1.5rem; height: 1.5rem; color: #fbbf24; }

/* === Tours Section === */
.tours-section {
    padding: 3rem 0 4rem 0;
}
.nearby-cities-section {
    padding: 3rem 0 4rem 0;
    overflow-x: hidden;
}
.tours-section--white { background: #fff; }

.tours-header { text-align: center; margin-bottom: 4rem; }
#city-tours-section .tours-header { margin-bottom: 2.5rem; }
.tours-header__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.875rem, 4vw, 2.25rem);
  font-weight: 600;
  color: #78350f;
  margin-bottom: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.tours-header__desc { color: #8a7560; max-width: 36rem; margin: 0 auto; font-size: 1.05rem; }
.tours-header__wave {
  display: block;
  width: 80px;
  height: 14px;
  margin-top: 0.5rem;
  background: url("data:image/svg+xml,%3Csvg width='80' height='12' viewBox='0 0 80 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0' y1='0' x2='1' y2='0'%3E%3Cstop offset='0%25' stop-color='%23fbbf24'/%3E%3Cstop offset='100%25' stop-color='%23d97706'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath d='M0 6 Q10 1 20 6 T40 6 T60 6 T80 6' stroke='url(%23g)' stroke-width='2.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
}

.tours-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) { .tours-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .tours-grid { grid-template-columns: repeat(3, 1fr); } }

/* === Tour Card === */
.tour-card {
  background: #fff;
  border-radius: 1.25rem;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgba(0,0,0,.08), 0 2px 4px -2px rgba(0,0,0,.05);
  transition: all 0.4s cubic-bezier(.4,0,.2,1);
  border: 1px solid rgba(0,0,0,.04);
}
.tour-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px -8px rgba(217,119,6,.2), 0 8px 16px -4px rgba(0,0,0,.06);
}

.tour-card__image {
  height: 14rem;
  position: relative;
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.tour-card__image-main {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.05);
}
.tour-card__image::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.15));
  pointer-events: none;
}

/* ── Photo collage thumbs ── */
.tour-card__image-thumb {
  position: absolute;
  z-index: 3;
  width: 3.5rem;
  height: 3.5rem;
  object-fit: cover;
  border-radius: 0.75rem;
  border: 3px solid #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,.15);
  filter: saturate(1.1) contrast(1.05);
  transition: transform 0.3s;
}
.tour-card__image-thumb--1 {
  bottom: 0.75rem;
  right: 4.5rem;
  transform: rotate(-8deg);
}
.tour-card__image-thumb--2 {
  bottom: 0.75rem;
  right: 0.75rem;
  transform: rotate(5deg);
}
.tour-card:hover .tour-card__image-thumb--1 { transform: rotate(-5deg) scale(1.05); }
.tour-card:hover .tour-card__image-thumb--2 { transform: rotate(8deg) scale(1.05); }

.tour-card__image svg { width: 3rem; height: 3rem; color: #d1d5db; }

.tour-card__title-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.5rem;
}

.tour-card__discount-badge {
  flex-shrink: 0;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: #fff;
  padding: 0.2rem 0.6rem;
  border-radius: 6px;
  font-size: 0.6875rem;
  font-weight: 700;
  line-height: 1.3;
  box-shadow: 0 2px 6px rgba(220,38,38,.3);
  margin-top: 0.15rem;
}

.tour-card__price-discount {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.tour-card__discount {
  position: absolute;
  z-index: 5;
  top: 0.75rem;
  right: 0.75rem;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  color: #fff;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.6875rem;
  font-weight: 600;
  box-shadow: 0 2px 8px rgba(220,38,38,.4);
  white-space: nowrap;
}

.tour-card__fav {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 2rem;
  height: 2rem;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(4px);
  border: none;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
  z-index: 5;
}
.tour-card__fav:hover {
  background: #fff;
  transform: scale(1.1);
}
.tour-card__fav svg { width: 1rem; height: 1rem; color: #f59e0b; }

.tour-card__body { padding: 1.5rem; }

/* ── Emotional badge ── */
.tour-card__emotion {
  display: inline-block;
  background: linear-gradient(135deg, #fef3c7, #fde68a);
  color: #92400e;
  padding: 0.375rem 0.875rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  box-shadow: 0 2px 4px rgba(251,191,36,.15);
}

.tour-card__rating { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 0.75rem; }
.tour-card__star { color: #fbbf24; width: 1rem; height: 1rem; }
.tour-card__rating-text { font-size: 0.875rem; color: #6b7280; font-weight: 600; }
.tour-card__reviews-count { font-size: 0.75rem; color: #9ca3af; margin-left: 0.25rem; }

.tour-card__title {
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 1.125rem;
  line-height: 1.4;
}
.tour-card__title a:hover { color: #f59e0b; }

/* Tour card titles on city page — Cormorant Garamond */
.tours-section .tour-card__title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.35;
    color: #3d2a10;
}
.tours-section .tour-card__title a:hover {
    color: #c9a96e;
}

.tour-card__desc {
  color: #6b7280;
  font-size: 0.875rem;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.5;
}

/* ── Review quote ── */
.tour-card__review {
  background: linear-gradient(135deg, #fefce8, #fef3c7);
  border-left: 3px solid #fbbf24;
  padding: 0.75rem 1rem;
  border-radius: 0 0.75rem 0.75rem 0;
  margin-bottom: 1rem;
}
.tour-card__review p {
  font-size: 0.8125rem;
  font-style: italic;
  color: #78716c;
  margin: 0 0 0.25rem 0;
  line-height: 1.4;
}
.tour-card__review span {
  font-size: 0.75rem;
  color: #a8a29e;
  font-weight: 500;
}

.tour-card__meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: #78716c;
}
.tour-card__meta svg { width: 1rem; height: 1rem; color: #d4d4d8; }
.tour-card__meta-sep { color: #e7e5e4; }
.tour-card__host-link { color: var(--primary); text-decoration: none; font-weight: 500; }
.tour-card__host-link:hover { text-decoration: underline; }

.tour-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid #f5f5f4;
}

.tour-card__price-block { display: flex; flex-direction: column; }
.tour-card__price { font-size: 1.5rem; font-weight: 700; color: #f59e0b; line-height: 1.2; }
.tour-card__price--old { font-size: 0.875rem; color: #a8a29e; text-decoration: line-through; margin-right: 0.5rem; }
.tour-card__savings { display: flex; flex-wrap: wrap; gap: 0.375rem; align-items: center; margin-top: 0.375rem; }
.tour-card__savings-badge { font-size: 0.6875rem; font-weight: 600; color: #16a34a; background: #f0fdf4; padding: 0.125rem 0.5rem; border-radius: 999px; }
.tour-card__savings-expiry { font-size: 0.6875rem; color: #a8a29e; }

.btn-book {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: #fff;
  padding: 0.625rem 1.25rem;
  border-radius: 0.75rem;
  font-weight: 600;
  font-size: 0.875rem;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s;
  box-shadow: 0 2px 8px rgba(245,158,11,.25);
}
.btn-book:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -4px rgba(245,158,11,.4);
}

/* === Tour Filters === */
.tour-filters { display: flex; gap: 0.5rem; flex-wrap: wrap; }

.tour-filter {
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  font-weight: 500;
  font-size: 0.875rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  background: #f3f4f6;
  color: #374151;
}
.tour-filter:hover { background: #e5e7eb; }
.tour-filter--active {
  background: #f59e0b;
  color: #fff;
}
.tour-filter--active:hover { background: #d97706; }

/* === Error Banner === */
.error-banner {
  background: #fef2f2;
  border: 1px solid #fecaca;
  padding: 1rem;
  border-radius: 0.75rem;
  margin-bottom: 2rem;
  text-align: center;
}
.error-banner__text { color: #dc2626; font-size: 0.875rem; }

/* === Empty State === */
.empty-state { text-align: center; padding: 3rem 0; }
.empty-state__text { color: #6b7280; font-size: 1.125rem; margin-bottom: 1rem; }
.empty-state__link { color: #d97706; font-weight: 500; text-decoration: none; }
.empty-state__link:hover { text-decoration: underline; color: #b45309; }

/* === CTA Button === */
.cta-button {
  display: inline-block;
  border: 2px solid #f59e0b;
  color: #f59e0b;
  font-weight: 600;
  padding: 0.75rem 2rem;
  border-radius: 0.75rem;
  text-decoration: none;
  transition: all 0.3s;
}
.cta-button:hover { background: #f59e0b; color: #fff; }

/* === Animations === */
@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}
@keyframes slideUp {
  0% { opacity: 0; transform: translateY(30px); }
  100% { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-10px); }
}

/* === Toast === */
.toast {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  padding: 0.75rem 1.25rem;
  border-radius: 0.75rem;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 500;
  z-index: 9999;
  transition: all 0.3s;
  transform: translateY(2.5rem);
  opacity: 0;
}
.toast--visible { transform: translateY(0); opacity: 1; }
.toast--success { background: #16a34a; }
.toast--error { background: #dc2626; }

/* === Filters Bar (tours page) === */
.filters-bar {
  background: #fff;
  border-bottom: 1px solid #e5e7eb;
  padding: 1.5rem 0;
}
.filters-bar__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: flex-end;
}
.filters-bar__field { flex: 1; min-width: 180px; }
.filters-bar__field--wide { flex: 2; }
.filters-bar__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: #6b7280;
  margin-bottom: 0.25rem;
}
.filters-bar__select,
.filters-bar__input {
  width: 100%;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  outline: none;
  transition: border-color 0.2s;
}
.filters-bar__select:focus,
.filters-bar__input:focus { border-color: #f59e0b; }

/* === Tour List Card (tours page horizontal) === */
.tour-list-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 10px 15px -3px rgba(217,119,6,.08);
  transition: all 0.3s cubic-bezier(.4,0,.2,1);
}
.tour-list-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(217,119,6,.12);
}
@media (min-width: 768px) { .tour-list-card { flex-direction: row; } }

.tour-list-card__image {
  position: relative;
  background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  height: 12rem;
}
@media (min-width: 768px) { .tour-list-card__image { width: 18rem; height: auto; } }
.tour-list-card__image img { width: 100%; height: 100%; object-fit: cover; }

.tour-list-card__body {
  flex: 1;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
}

.tour-list-card__footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* === Pagination === */
.pagination { display: flex; align-items: center; justify-content: center; gap: 0.5rem; margin-top: 3rem; }
.pagination__link {
  padding: 0.5rem 1rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  text-decoration: none;
  color: #374151;
  transition: background 0.2s;
}
.pagination__link:hover { background: #f9fafb; }
.pagination__link--active { background: #f59e0b; color: #fff; border-color: #f59e0b; }
.pagination__link--active:hover { background: #d97706; }
.pagination__ellipsis { color: #9ca3af; }

/* === Reviews Widget === */
.reviews-widget {
    background: #fff;
    border-radius: 1.5rem;
    padding: 1.5rem;
}

.reviews-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #f5f5f4;
}

.reviews-title h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
}

.reviews-count {
    font-size: 0.875rem;
    color: #78716c;
    margin-left: 0.5rem;
}

.reviews-search {
    position: relative;
    display: flex;
    align-items: center;
}

.reviews-search-icon {
    position: absolute;
    left: 0.75rem;
    width: 1.25rem;
    height: 1.25rem;
    color: #a8a29e;
}

.reviews-search-input {
    width: 280px;
    padding: 0.625rem 2.5rem 0.625rem 2.5rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    font-size: 0.875rem;
    transition: all 0.2s;
}

.reviews-search-input:focus {
    outline: none;
    border-color: #fbbf24;
    box-shadow: 0 0 0 3px rgba(251, 191, 36, 0.15);
}

.reviews-search-clear {
    position: absolute;
    right: 0.5rem;
    width: 1.5rem;
    height: 1.5rem;
    border: none;
    background: #f5f5f4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s;
}

.reviews-search-clear svg {
    width: 0.75rem;
    height: 0.75rem;
    color: #78716c;
}

.reviews-search-clear:hover {
    background: #e5e5e5;
}

/* Reviews List */
.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Review Card - Emotional Style */
.review-card {
    background: linear-gradient(135deg, #fefce8 0%, #fef3c7 100%);
    border-left: 4px solid #fbbf24;
    border-radius: 0 1rem 1rem 0;
    padding: 1.25rem;
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.2);
}

.review-card__header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.review-card__avatar {
    width: 2.5rem;
    height: 2.5rem;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
}

.review-card__meta {
    flex: 1;
}

.review-card__author {
    font-weight: 600;
    color: #1a1a1a;
    font-size: 0.9375rem;
    display: block;
}

.review-card__rating {
    display: flex;
    gap: 0.125rem;
    margin-top: 0.125rem;
}

.review-star {
    width: 0.875rem;
    height: 0.875rem;
    color: #fbbf24;
}

.review-card__date {
    font-size: 0.75rem;
    color: #a8a29e;
}

.review-card__content p {
    font-size: 0.9375rem;
    color: #57534e;
    line-height: 1.6;
    margin: 0;
    font-style: italic;
}

.reviews-empty {
    text-align: center;
    padding: 2rem;
    color: #a8a29e;
}

/* Pagination */
.reviews-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid #f5f5f4;
}

.pagination-info {
    font-size: 0.875rem;
    color: #78716c;
}

.reviews-pagination .pagination-btn {
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #fff;
    border: none;
    border-radius: 0.5rem;
    font-weight: 500;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s;
}

.reviews-pagination .pagination-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

/* === Tour Detail Enhancements === */
.tour-detail__emotion-badge {
    display: inline-block;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    color: #92400e;
    padding: 0.375rem 0.875rem;
    border-radius: 99px;
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    box-shadow: 0 2px 4px rgba(251, 191, 36, 0.15);
}

.tour-detail__rating-block {
    background: linear-gradient(135deg, #fefce8, #fef3c7);
    padding: 0.75rem 1.25rem;
    border-radius: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.tour-detail__rating-score {
    font-size: 1.5rem;
    font-weight: 700;
    color: #f59e0b;
}

.tour-detail__rating-stars {
    display: flex;
    gap: 0.125rem;
}

/* === City Belt Section === */
.city-belt-section {
    padding: 4rem 0;
    background: linear-gradient(180deg, #f9fafb 0%, #fff 100%);
}

.city-belt-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.city-belt-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
    color: #5a2d0c;
    margin-bottom: 0.5rem;
}

.city-belt-desc {
    color: #6b7280;
    font-size: 1.125rem;
}

.city-belt-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

@media (max-width: 640px) {
    .city-belt-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
    .city-belt-grid { grid-template-columns: repeat(4, 1fr); }
}

.city-belt-card {
    display: flex;
    flex-direction: column;
    border-radius: 1rem;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 6px -1px rgba(0,0,0,0.08), 0 2px 4px -2px rgba(0,0,0,0.05);
    text-decoration: none;
    transition: all 0.3s ease;
}

.city-belt-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px -8px rgba(245,158,11,0.2);
}

.city-belt-card__image {
    position: relative;
    aspect-ratio: 4/3;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
    overflow: hidden;
}

.city-belt-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.city-belt-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: #92400e;
    background: linear-gradient(135deg, #fef3c7, #fde68a);
}

.city-belt-card__name {
    padding: 0.75rem 1rem 0.25rem;
    font-size: 1rem;
    font-weight: 600;
    color: #111827;
}

.city-belt-card__count {
    padding: 0 1rem 0.75rem;
    font-size: 0.875rem;
    color: #6b7280;
}

/* === Cursor Review Star === */
.cursor-review-star {
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transition: opacity 0.3s;
}

.cursor-review-star__emoji {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 44px;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,0.4));
    animation: star-pulse 2s ease-in-out infinite;
}

.cursor-review-star__emoji::after {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(251,191,36,0.3) 0%, transparent 70%);
    z-index: -1;
}

.cursor-review-star__bubble {
    position: absolute;
    left: 40px;
    top: 30px;
    width: 280px;
    min-height: 60px;
    background: linear-gradient(135deg, rgba(255,250,240,0.97), rgba(255,245,230,0.95));
    border-radius: 14px;
    padding: 12px 16px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.22), 0 2px 6px rgba(0,0,0,0.12), inset 0 1px 0 rgba(255,255,255,0.8);
    border: 1px solid rgba(200,180,140,0.35);
    text-align: left;
    opacity: 0.8;
}

.cursor-review-star__text {
    font-size: 14px;
    line-height: 1.45;
    color: #3d2a10;
    font-family: 'Cormorant Garamond', Georgia, serif;
    display: block;
    word-wrap: break-word;
    text-align: left;
    white-space: pre-wrap;
}

.cursor-review-star__title {
    display: block;
    font-size: 12.75px;
    font-weight: 400;
    color: #1f2937;
    margin-bottom: 6px;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(180, 140, 80, 0.25);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 250px;
}

.cursor-review-star__title::after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 15px;
    background: #1f2937;
    margin-left: 2px;
    animation: cursor-blink 1s infinite;
    vertical-align: text-bottom;
}

.cursor-review-star__text::after {
    content: '';
    display: inline-block;
    width: 7px;
    height: 14px;
    background: #d97706;
    margin-left: 2px;
    animation: cursor-blink 1s infinite;
    vertical-align: text-bottom;
}

@keyframes cursor-blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

@keyframes star-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.12); }
}

/* === City Categories (filter chips above tours) === */
.city-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
    animation: slideUp 0.5s ease-out both;
}

.city-category {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.75rem 1.25rem;
    border-radius: 9999px;
    cursor: pointer;
    transition: all 0.25s ease;
    border: 2px solid #e5e7eb;
    background: #fff;
    user-select: none;
    font-size: 1rem;
    box-shadow: 0 1px 3px rgba(0,0,0,0.06);
}

.city-category:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.city-category--active {
    background: #fafafa;
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.city-category__emoji {
    font-size: 1.25rem;
    line-height: 1;
}

.city-category__name {
    font-weight: 700;
    font-size: 1rem;
    color: #1f2937;
}

.city-category__count {
    font-size: 0.8125rem;
    font-weight: 700;
    opacity: 0.6;
    margin-left: 0.125rem;
}

/* Color variants */
.city-category--c1 { border-color: #fca5a5; color: #dc2626; }
.city-category--c1 .city-category__name { color: #dc2626; }
.city-category--c1.city-category--active { background: #fef2f2; border-color: #dc2626; }

.city-category--c2 { border-color: #fcd34d; color: #d97706; }
.city-category--c2 .city-category__name { color: #d97706; }
.city-category--c2.city-category--active { background: #fffbeb; border-color: #d97706; }

.city-category--c3 { border-color: #fcd34d; color: #d97706; }
.city-category--c3 .city-category__name { color: #d97706; }
.city-category--c3.city-category--active { background: #fffbeb; border-color: #d97706; }

/* === Nearby Cities Widget === */
/* === Nearby Cities === */

.nearby-cities-widget {
    margin-bottom: 2rem;
    text-align: center;
}

.nearby-cities-widget__title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 26px;
    font-weight: 600;
    color: #5a2d0c;
    margin-bottom: 6px;
}

.nearby-cities-widget__icon {
    width: 20px;
    height: 20px;
    color: #f59e0b;
    flex-shrink: 0;
    margin-top: -2px;
}

.nearby-cities-widget__subtitle {
    font-size: 14px;
    color: #a28a70;
    margin-bottom: 28px;
}

.geoip-city-display {
    text-align: center;
    margin-bottom: 24px;
}

.geoip-city-name {
    display: block;
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 52px;
    font-weight: 600;
    color: #5a2d0c;
    letter-spacing: 1px;
    text-decoration: none;
    transition: opacity 0.2s;
}
.geoip-city-name:hover { opacity: 0.75; }

.geoip-city-here {
    display: block;
    font-size: 14px;
    color: #a28a70;
    margin-top: 6px;
}

.nearby-cities-wrapper {
    position: relative;
}

.nearby-cities {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 0.75rem 0;
}

.nearby-cities::-webkit-scrollbar {
    display: none;
}

.nearby-city-item {
    flex-shrink: 0;
    animation: cardFadeIn 0.5s ease-out both;
}

.nearby-city-item:nth-child(2) { animation-delay: 0.08s; }
.nearby-city-item:nth-child(3) { animation-delay: 0.16s; }
.nearby-city-item:nth-child(4) { animation-delay: 0.24s; }
.nearby-city-item:nth-child(5) { animation-delay: 0.32s; }
.nearby-city-item:nth-child(6) { animation-delay: 0.40s; }
.nearby-city-item:nth-child(7) { animation-delay: 0.48s; }

@keyframes cardFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.nearby-city-item--current {
    transform: translateY(-4px);
}

.nearby-city-card {
    display: block;
    width: 200px;
    height: 140px;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    border-radius: 14px;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease;
    box-shadow: 0 2px 8px rgba(90, 45, 12, 0.08), 0 0 0 1px rgba(180, 140, 80, 0.18);
    color: #fff;
}

.nearby-city-card--current {
    width: 250px;
    height: 170px;
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.2), 0 0 0 1.5px rgba(245, 158, 11, 0.35);
    border-radius: 16px;
}

.nearby-city-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.nearby-city-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(245, 158, 11, 0.15), 0 0 0 1px rgba(245, 158, 11, 0.3);
    z-index: 5;
}

.nearby-city-card--current:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 36px rgba(245, 158, 11, 0.28), 0 0 0 1.5px rgba(245, 158, 11, 0.5);
}

.nearby-city-label {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px 12px;
    background: linear-gradient(transparent 20%, rgba(30, 15, 5, 0.85));
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-align: left;
}

.nearby-city-label__here {
    display: inline-block;
    font-size: 10px;
    font-weight: 700;
    color: #fbbf24;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 1px;
}

.nearby-city-name {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.3;
    color: #fff;
}

.nearby-city-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.75);
    font-weight: 400;
}

.nearby-city-meta__dist {
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 3px;
}

.nearby-city-meta__dist::before {
    content: '';
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: currentColor;
}

.nearby-city-meta__dist--near { color: #fbbf24; }
.nearby-city-meta__dist--medium { color: #f59e0b; }
.nearby-city-meta__dist--far { color: #d97706; }

.nearby-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    width: 34px;
    height: 34px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(180, 140, 80, 0.25);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: all 0.2s ease;
    color: #b4a080;
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    box-shadow: 0 2px 6px rgba(90, 45, 12, 0.06);
}

.nearby-arrow:hover {
    background: #fff;
    border-color: #f59e0b;
    color: #f59e0b;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.15);
}

.nearby-arrow:active {
    transform: translateY(-50%) scale(0.92);
}

.nearby-arrow--left { left: 4px; }
.nearby-arrow--right { right: 4px; }

/* === City Hero === */
.city-hero {
    position: relative;
    height: 400px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}

.city-hero__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.city-hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.1) 100%);
}

.city-hero__placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e8e0d4 0%, #d4c4a8 100%);
}

.city-hero__content {
    position: relative;
    z-index: 1;
    padding: 40px;
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
}

.city-hero__back {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    margin-bottom: 16px;
    transition: color 0.2s;
}

.city-hero__back:hover {
    color: #fff;
}

.city-hero__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 48px;
    font-weight: 700;
    color: #fff;
    line-height: 1.1;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
    margin-bottom: 8px;
}

.city-hero__region {
    font-size: 18px;
    color: rgba(255,255,255,0.85);
    margin-bottom: 8px;
}

.city-hero__count {
    font-size: 16px;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
}

.rotate-90 {
    transform: rotate(90deg);
}

@media (max-width: 700px) {
    .city-hero {
        height: 300px;
    }
    .city-hero__content {
        padding: 24px;
    }
    .city-hero__title {
        font-size: 32px;
    }
}

/* === Tour Card Streaming === */
.tours-grid--streaming {
    min-height: 200px;
}

.tour-card--fade-in {
    animation: fadeSlideIn 0.3s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes fadeSlideIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.tours-section.loading .tours-grid {
    min-height: 200px;
    background-image: linear-gradient(90deg, #fef3c7 0%, #fde68a 50%, #fef3c7 100%);
    background-size: 200% 100%;
    animation: shimmer 1.5s ease-in-out infinite;
}
@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* === City Page: Categories === */
.city-categories-section {
    background: linear-gradient(to bottom, #ffffff 0%, #fafafa 100%);
    border-bottom: 1px solid #e5e7eb;
    padding: 1.5rem 0;
    margin-bottom: 2rem;
}

.city-categories-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.city-category {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.75rem;
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: #1f2937;
    text-decoration: none;
    border: none;
    border-radius: 9999px;
    background: transparent;
    transition: all 0.25s ease;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.city-category:hover {
    color: #000;
    background: rgba(254,243,199,.6);
    transform: translateY(-1px);
    box-shadow: 0 1px 4px rgba(0,0,0,.05);
}

.city-category__name {
    font-weight: 500;
    letter-spacing: 0.01em;
}

.city-category__count {
    font-family: 'Inter', sans-serif;
    font-size: 0.8rem;
    color: #a89880;
    font-weight: 400;
}

/* Active state (for filtering) */
.city-category--active {
    color: #000;
    background: rgba(254,243,199,.8);
    font-weight: 600;
}

.city-category--active .city-category__count {
    color: #1f2937;
    font-weight: 600;
}

/* === City Page: Sights Gallery === */
.sights-section {
    padding: 2rem 0;
    margin-bottom: 2rem;
}

.sights-header {
    text-align: center;
    margin-bottom: 2rem;
}

.sights-header__title {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 2.25rem;
    font-weight: 600;
    color: #5a2d0c;
    margin-bottom: 0.35rem;
    letter-spacing: -0.01em;
}

/* Декоративная линия под заголовком */
.sights-header__title::after {
    content: '';
    display: block;
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, #c9a96e, transparent);
    margin: 0.5rem auto 0;
}

.sights-header__desc {
    font-family: 'Cormorant Garamond', Georgia, serif;
    font-size: 1.15rem;
    font-weight: 400;
    color: #8a7560;
}

.sights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.sight-card {
    background: #ffffff;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sight-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.sight-card__image {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.sight-card__placeholder {
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f3f4f6;
    color: #9ca3af;
}

.sight-card__body {
    padding: 1.25rem;
}

.sight-card__title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.sight-card__coords {
    font-size: 0.875rem;
    color: #6b7280;
    margin-bottom: 0.75rem;
}

.sight-card__coords-link {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    color: #6b7280;
    text-decoration: none;
    transition: color 0.2s;
}

.sight-card__coords-link:hover {
    color: #d97706;
}

.sight-card__desc {
    font-size: 0.9375rem;
    color: #4b5563;
    line-height: 1.5;
}

/* === City Page: Load More === */
.city-tours__load-more {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.city-tours__load-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    background: #fef3c7;
    border: 2px solid #f59e0b;
    border-radius: 9999px;
    color: #92400e;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.city-tours__load-more-btn:hover {
    background: #fde68a;
    transform: translateY(-1px);
}

.city-tours__load-more-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.city-tours__load-more-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.5rem;
    height: 1.5rem;
    padding: 0 0.4rem;
    background: #f59e0b;
    border-radius: 9999px;
    color: #fff;
    font-size: 0.8rem;
    font-weight: 700;
}

/* === Reviews Mosaic (rmosaic) === */
.rmosaic__section {
    padding: 6rem 0;
    background: #fff;
    border-top: 1px solid rgba(245, 158, 11, 0.12);
    border-bottom: 1px solid rgba(245, 158, 11, 0.12);
}

.rmosaic__header {
    text-align: center;
    margin-bottom: 4rem;
}

.rmosaic__title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: clamp(1.875rem, 4vw, 2.25rem);
    font-weight: 700;
    color: #78350f;
    margin-bottom: 0.75rem;
    letter-spacing: -0.01em;
}

.rmosaic__desc {
    color: #92400e;
    font-size: 1.1rem;
    max-width: 36rem;
    margin: 0 auto;
    line-height: 1.6;
    font-style: italic;
}

.rmosaic {
    position: relative;
}

.rmosaic__card-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    grid-auto-flow: dense;
}

@media (min-width: 640px) {
    .rmosaic__card-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .rmosaic__card-list {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
}

.rmosaic__card-wrapper {
    display: flex;
    animation: fadeInUp 0.6s ease-out both;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

.rmosaic__card-wrapper:nth-child(1) { animation-delay: 0s; }
.rmosaic__card-wrapper:nth-child(2) { animation-delay: 0.08s; }
.rmosaic__card-wrapper:nth-child(3) { animation-delay: 0.16s; }
.rmosaic__card-wrapper:nth-child(4) { animation-delay: 0.24s; }
.rmosaic__card-wrapper:nth-child(5) { animation-delay: 0.32s; }
.rmosaic__card-wrapper:nth-child(6) { animation-delay: 0.4s; }
.rmosaic__card-wrapper:nth-child(7) { animation-delay: 0.48s; }
.rmosaic__card-wrapper:nth-child(8) { animation-delay: 0.56s; }

.rmosaic__card-wrapper--tall {
    grid-row: span 2;
}

.rmosaic__card {
    width: 100%;
    border-radius: 1.5rem;
    padding: 2.25rem;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    backdrop-filter: blur(16px);
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.rmosaic__card:hover {
    transform: translateY(-6px) scale(1.02);
}

.rmosaic__card--amber {
    background: linear-gradient(145deg, rgba(251, 191, 36, 0.28), rgba(245, 158, 11, 0.18));
    box-shadow: 0 8px 32px rgba(245, 158, 11, 0.18), 0 0 0 2px rgba(245, 158, 11, 0.25);
}

.rmosaic__card--amber:hover {
    box-shadow: 0 20px 50px rgba(245, 158, 11, 0.25), 0 0 0 2px rgba(245, 158, 11, 0.4);
}

.rmosaic__card--rose {
    background: linear-gradient(145deg, rgba(244, 63, 94, 0.22), rgba(225, 29, 72, 0.12));
    box-shadow: 0 8px 32px rgba(244, 63, 94, 0.15), 0 0 0 2px rgba(244, 63, 94, 0.2);
}

.rmosaic__card--rose:hover {
    box-shadow: 0 20px 50px rgba(244, 63, 94, 0.22), 0 0 0 2px rgba(244, 63, 94, 0.35);
}

.rmosaic__card--gold {
    background: linear-gradient(145deg, rgba(234, 179, 8, 0.22), rgba(202, 138, 4, 0.12));
    box-shadow: 0 8px 32px rgba(234, 179, 8, 0.15), 0 0 0 2px rgba(234, 179, 8, 0.2);
}

.rmosaic__card--gold:hover {
    box-shadow: 0 20px 50px rgba(234, 179, 8, 0.22), 0 0 0 2px rgba(234, 179, 8, 0.35);
}

.rmosaic__message {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.rmosaic__timestamp {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: #475569;
}

.rmosaic__emoji {
    font-size: 1.4rem;
}

.rmosaic__stars {
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    color: #f59e0b;
    font-weight: 700;
}

.rmosaic__date {
    margin-left: auto;
    font-size: 0.8125rem;
    color: #64748b;
}

.rmosaic__tour-name {
    font-size: 0.875rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 0.75rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.rmosaic__message-bubble {
    flex: 1;
    font-size: 1rem;
    line-height: 1.75;
    color: #1e293b;
    font-style: italic;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.85);
    border-radius: 1rem;
    margin-bottom: 1rem;
    position: relative;
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.rmosaic__author {
    font-size: 0.9rem;
    font-weight: 600;
    color: #475569;
    text-align: right;
    letter-spacing: 0.02em;
}

/* === Review Background Wall === */
#review-bg-wall {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  pointer-events: none;
  overflow: visible;
}

.rbw-card {
  position: absolute;
  padding: 14px 16px;
  border-radius: 10px;
  font-size: 13px;
  line-height: 1.5;
  font-family: 'Playfair Display', Georgia, serif;
  letter-spacing: 0.01em;
  will-change: transform, opacity, filter;
  border: 1px solid rgba(139, 69, 19, 0.1);
  box-shadow:
    0 4px 20px rgba(139, 69, 19, 0.1),
    0 2px 8px rgba(139, 69, 19, 0.05);
  backdrop-filter: blur(1px);
  -webkit-backdrop-filter: blur(1px);
}

.rbw-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 10px;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  opacity: 0.5;
}

.rbw-card--entering {
  animation: rbw-float-in 0.6s ease forwards;
}

@keyframes rbw-float-in {
  from {
    transform: rotate(var(--rbw-rotation, 0deg)) scale(0.92) translateY(8px);
  }
  to {
    transform: rotate(var(--rbw-rotation, 0deg)) scale(1) translateY(0);
  }
}

.rbw-card__date {
  font-size: 11px;
  font-weight: 500;
  color: #8b4513;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-family: 'Playfair Display', Georgia, serif;
}

.rbw-card__text {
  font-size: 12px;
  color: #5a3718;
  line-height: 1.55;
  font-style: italic;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  word-break: break-word;
}

.rbw-card__footer {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  font-size: 11px;
  color: #8b4513;
  border-top: 1px solid rgba(139, 69, 19, 0.15);
  padding-top: 8px;
  font-family: 'Inter', system-ui, sans-serif;
}

.rbw-card__city {
  font-weight: 600;
  color: #6b3a10;
}

.rbw-card__name {
  opacity: 0.75;
  font-weight: 400;
}

.rbw-card__name::before {
  content: '— ';
}

/* Color variants — warm, cozy palette */
.rbw-card--cream  { background: linear-gradient(145deg, #FFF8E1 0%, #FFF3D6 100%); }
.rbw-card--amber  { background: linear-gradient(145deg, #FFE0B2 0%, #FFD699 100%); }
.rbw-card--peach  { background: linear-gradient(145deg, #FFCCBC 0%, #FFB8A0 100%); }
.rbw-card--honey  { background: linear-gradient(145deg, #FFD180 0%, #FFC04D 100%); }
.rbw-card--latte  { background: linear-gradient(145deg, #D7CCC8 0%, #C8BCB0 100%); }

/* === Mobile: < 768px === */
@media (max-width: 768px) {
    .hero-section {
        min-height: auto;
        padding: 3.5rem 0 2rem;
        position: relative;
    }
    .hero-section::after {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 20% 30%, rgba(201, 169, 110, 0.06) 0%, transparent 60%),
                    radial-gradient(circle at 80% 70%, rgba(201, 169, 110, 0.04) 0%, transparent 50%);
        pointer-events: none;
        z-index: 0;
    }

    .hero-container { padding: 0 1.25rem; }
    .hero-title { margin-bottom: 0.75rem; }
    .hero-subtitle { margin-bottom: 1.25rem; }
    .hero-geo-label { margin-top: -1rem; margin-bottom: 1.25rem; font-size: 0.75rem; }
    .city-search { margin-bottom: 1.25rem; }
    .unified-search { padding: 16px; margin-bottom: 1.25rem; }
    .unified-search__tabs { flex-direction: column; gap: 6px; }
    .unified-search__tab { text-align: center; }
    .unified-search__filters { flex-direction: column; }
    .unified-search__input,
    .unified-search__select,
    .unified-search__submit { width: 100%; }
    .city-search__input { padding: 1rem; font-size: 1rem; }

    .city-search__item-preview {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        top: auto;
        width: 100%;
        max-width: 100%;
        border-radius: 1rem 1rem 0 0;
        z-index: 200;
        transform: translateY(100%);
        box-shadow: 0 -4px 24px rgba(0,0,0,0.15);
        padding: 1.25rem;
        background: linear-gradient(165deg, #fffbf0 0%, #fef3c7 50%, #fde68a 100%);
    }
    .city-search__item:hover > .city-search__item-preview {
        transform: translateY(0);
    }
    .city-search__item-preview::before { font-size: 2.5rem; top: 0.25rem; left: 0.75rem; }

    .nearby-cities-section { padding: 2rem 0 3rem; }
    .nearby-cities {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        overflow-x: visible;
        padding: 0;
    }
    .nearby-city-item { width: 100%; }
    .nearby-city-card { width: 100%; height: 120px; }
    .nearby-city-card--current { width: 100%; height: 140px; }
    .nearby-city-item--current { transform: none; }
    .nearby-arrow { display: none; }

    .rmosaic__section { padding: 3rem 0; }
    .rmosaic__card { padding: 1.25rem; }
}

@media (hover: none) and (pointer: coarse) {
    #cursor-review-star { display: none !important; }
}

@media (prefers-reduced-motion: reduce) {
    .hero-title, .hero-subtitle, .city-search, .selected-city,
    .rmosaic__card-wrapper, .tour-card, .tour-list-card,
    .card-section, .cta-button {
        animation: none !important;
        transition: none !important;
        transform: none !important;
    }
    .tour-card:hover, .tour-list-card:hover {
        transform: none !important;
    }
    * {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}
