/* صفحه انتخاب نوع تور */
.page-tours-menu main {
  background: linear-gradient(180deg, #e8f4ff 0%, #f0f9ff 38%, #fef9f3 100%);
}

.tours-menu-section {
  padding-top: 16px;
  padding-bottom: 28px;
}

.tours-menu-panel {
  padding: 10px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(30, 86, 160, 0.1);
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.tours-menu-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tours-menu-tile {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 14px 14px 12px;
  border-radius: 16px;
  text-decoration: none;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, 0.06);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.tours-menu-tile:hover,
.tours-menu-tile.is-active {
  transform: translateY(-2px);
  border-color: rgba(30, 86, 160, 0.18);
  box-shadow: 0 10px 24px rgba(30, 86, 160, 0.12);
}

.tours-menu-tile__icon {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  font-size: 1.2rem;
  color: #fff;
}

.tours-menu-tile--blue .tours-menu-tile__icon {
  background: linear-gradient(145deg, #1e56a0 0%, #3b82f6 100%);
  box-shadow: 0 8px 18px rgba(30, 86, 160, 0.28);
}

.tours-menu-tile--sea .tours-menu-tile__icon {
  background: linear-gradient(145deg, #0284c7 0%, #38bdf8 100%);
  box-shadow: 0 8px 18px rgba(14, 165, 233, 0.28);
}

.tours-menu-tile--amber .tours-menu-tile__icon {
  background: linear-gradient(145deg, #d97706 0%, #fbbf24 100%);
  box-shadow: 0 8px 18px rgba(245, 158, 11, 0.28);
}

.tours-menu-tile--rose .tours-menu-tile__icon {
  background: linear-gradient(145deg, #dc2626 0%, #f87171 100%);
  box-shadow: 0 8px 18px rgba(220, 38, 38, 0.24);
}

.tours-menu-tile--violet .tours-menu-tile__icon {
  background: linear-gradient(145deg, #5b21b6 0%, #8b5cf6 100%);
  box-shadow: 0 8px 18px rgba(91, 33, 182, 0.24);
}

.tours-menu-tile__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.tours-menu-tile__label {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text);
  line-height: 1.35;
}

.tours-menu-tile__hint {
  font-size: 0.76rem;
  line-height: 1.4;
  color: var(--text-muted);
}

.tours-menu-tile__arrow {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(30, 86, 160, 0.06);
  color: var(--primary);
  font-size: 0.95rem;
  transition: background 0.2s ease, color 0.2s ease;
}

.tours-menu-tile:hover .tours-menu-tile__arrow,
.tours-menu-tile.is-active .tours-menu-tile__arrow {
  background: var(--primary);
  color: #fff;
}

.tours-menu-empty {
  padding: 24px 16px;
  text-align: center;
  color: var(--text-muted);
  font-size: 0.9rem;
}

@media (min-width: 768px) {
  .tours-menu-grid {
    gap: 10px;
  }

  .tours-menu-tile {
    padding: 16px 18px;
  }
}

@media (max-width: 1100px) {
  .tours-menu-section .container {
    padding-inline: 14px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .tours-menu-tile {
    transition: none;
  }

  .tours-menu-tile:hover,
  .tours-menu-tile.is-active {
    transform: none;
  }
}
