.telegram-subscribe .pill.accent {
  background: linear-gradient(90deg, #229ed9 0%, #1f6bff 100%);
  color: #fff;
  border: none;
  border-radius: 999px;
  padding: 12px 32px;
  font-weight: 700;
  font-size: 1.08rem;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 16px rgba(34, 158, 217, 0.12);
  cursor: pointer;
  transition:
    background 0.2s,
    box-shadow 0.2s,
    transform 0.1s;
  outline: none;
  display: inline-block;
  margin-top: 12px;
  text-decoration: none;
}
.telegram-subscribe .pill.accent:hover,
.telegram-subscribe .pill.accent:focus {
  background: linear-gradient(90deg, #1f6bff 0%, #229ed9 100%);
  box-shadow: 0 6px 24px rgba(34, 158, 217, 0.18);
  transform: translateY(-2px) scale(1.03);
  text-decoration: none;
}
* {
  box-sizing: border-box;
}

:root {
  --bg: #f5f7fb;
  --card: #ffffff;
  --accent: #1f6bff;
  --accent-soft: #dbe7ff;
  --text: #1c2734;
  --muted: #6c7a8c;
  --warning: #fef5e5;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --radius: 18px;
  --font: "Manrope", "Helvetica Neue", sans-serif;
}

body {
  margin: 0;
  font-family: var(--font);
  background: radial-gradient(
    circle at 20% 20%,
    #eef3ff,
    #f8fbff 40%,
    #ffffff 70%
  );
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

.gastro-list {
  overflow: hidden;
}

.app-shell {
  max-width: 430px;
  margin: 0 auto;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 16px 16px 90px;
}

.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 0 12px;
  position: sticky;
  top: 0;
  background: linear-gradient(
    180deg,
    #f8fbff 0%,
    rgba(248, 251, 255, 0.75) 100%
  );
  z-index: 10;
  backdrop-filter: blur(6px);
}

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

.logo {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: #ffffff;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-name {
  font-weight: 700;
  color: #1f6bff;
  font-size: 16px;
}

.brand-sub {
  font-weight: 600;
  font-size: 13px;
  color: var(--text);
}

.home-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  background: var(--accent);
  color: white;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(31, 107, 255, 0.2);
}

.home-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(31, 107, 255, 0.3);
}

.home-link:active {
  transform: translateY(0);
}

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

.lang-switch {
  position: relative;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #eef2f8;
  border: none;
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 14px;
}

.lang-toggle:hover {
  background: #dce5f0;
}

.lang-toggle:active {
  background: #ffffff;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}

.lang-arrow {
  font-size: 12px;
  transition: transform 0.2s ease;
}

.lang-toggle[aria-expanded="true"] .lang-arrow {
  transform: rotate(180deg);
}

.lang-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  z-index: 100;
  min-width: 200px;
}

.lang-dropdown[hidden] {
  display: none;
}

.lang-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 12px 16px;
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--text);
  font-size: 14px;
  font-weight: 500;
  transition: background 0.2s ease;
}

.lang-option:hover {
  background: #f5f7fb;
}

.lang-option:first-child {
  border-bottom: 1px solid #eef2f8;
}

.lang-check {
  color: var(--accent);
  font-weight: 700;
  min-width: 20px;
  text-align: center;
}

/* Modal Dialog */
.modal {
  border: none;
  border-radius: 16px;
  padding: 0;
  background: #ffffff;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  max-width: 90vw;
  width: 360px;
  animation: modalSlideIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.modal::backdrop {
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  animation: backdropFadeIn 0.3s ease;
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes backdropFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.modal-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: transparent;
}

.modal-content {
  position: relative;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.modal-body {
  text-align: center;
}

.modal-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 12px;
}

.modal-text {
  font-size: 16px;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border: none;
  background: #f5f7fb;
  border-radius: 8px;
  color: var(--text);
  cursor: pointer;
  font-size: 20px;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  background: #eef2f8;
}

.modal-close:active {
  background: #dce5f0;
}

/* News Subscribe Modal */
.news-subscribe-modal .news-subscribe-content {
  max-width: 400px;
}

.news-subscribe-text {
  font-size: 15px;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 20px;
}

.news-subscribe-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.news-subscribe-btn {
  display: block;
  width: 100%;
  padding: 14px 20px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  border: none;
}

.news-subscribe-site {
  background: #f0f4f8;
  color: var(--text);
}

.news-subscribe-site:hover {
  background: #e5eaf0;
}

.news-subscribe-tg {
  background: linear-gradient(135deg, #1f6bff 0%, #0052d4 100%);
  color: #fff;
  box-shadow: 0 4px 15px rgba(31, 107, 255, 0.3);
}

.news-subscribe-tg:hover {
  background: linear-gradient(135deg, #0052d4 0%, #003ba3 100%);
  box-shadow: 0 6px 20px rgba(31, 107, 255, 0.4);
  transform: translateY(-1px);
}

.pill.ghost {
  background: #eef2f8;
  color: var(--text);
}

/* City Switch */
.city-switch {
  position: relative;
  pointer-events: auto;
}

.city-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #eef2f8;
  border: none;
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 13px;
}

.city-toggle:hover {
  background: #dce5f0;
}

.city-toggle:active {
  background: #ffffff;
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.08);
}

.city-arrow {
  font-size: 11px;
  transition: transform 0.2s ease;
}

.city-toggle[aria-expanded="true"] .city-arrow {
  transform: rotate(180deg);
}

.city-dropdown {
  position: fixed !important;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  overflow: visible;
  z-index: 10000;
  width: 280px;
  max-height: 70vh;
  overflow-y: auto;
  top: 30% !important;
  left: 53% !important;
  transform: translate(-50%, -50%) !important;
  pointer-events: auto;
}

.city-dropdown[hidden] {
  display: none;
}

/* Backdrop for city dropdown modal effect */
.city-dropdown::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(2px);
  z-index: -1;
  pointer-events: auto;
}

.city-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 12px 16px;
  border: none;
  background: transparent;
  cursor: pointer;
  color: var(--text);
  font-size: 20px;
  font-weight: 500;
  transition: background 0.2s ease;
  text-align: left;
}

.city-option:hover {
  background: #f5f7fb;
}

.city-option:first-child {
  border-bottom: 1px solid #eef2f8;
}

.city-check {
  color: var(--accent);
  font-weight: 700;
  min-width: 20px;
  text-align: center;
}

.icon-button {
  border: none;
  background: #ffffff;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: var(--muted);
  box-shadow: var(--shadow);
  cursor: pointer;
}

.tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: #e8eef7;
  border-radius: 14px;
  padding: 4px;
  gap: 4px;
  margin-bottom: 14px;
}

.tab {
  border: none;
  background: transparent;
  border-radius: 12px;
  padding: 10px 0;
  font-weight: 700;
  color: var(--muted);
  cursor: pointer;
  transition: all 0.2s ease;
  text-align: center;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.tab.active {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 10px 18px rgba(31, 107, 255, 0.25);
}

.content {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card {
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 14px;
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.events-header-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.card-header h2 {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
}

.events-date {
  font-size: 13px;
  font-weight: 600;
  color: #7c7c7c;
}

.dots {
  color: #c8d0dd;
  letter-spacing: 4px;
}

.event-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.weekend-day-header {
  margin: 8px 4px 6px;
  font-size: 13px;
  font-weight: 800;
  color: var(--text);
  padding: 6px 8px;
  background: #eef2f8;
  border-radius: 10px;
}

.event-item {
  border-radius: 12px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  overflow: hidden;
}

.event-item-hidden {
  display: none;
}

.expand-events-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 16px;
  margin-top: 12px;
  background: linear-gradient(135deg, var(--accent), #4a8bff);
  color: white;
  border: none;
  border-radius: 12px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
}

.saltVideo {
  width: 100%;
  max-width: none;
  height: auto;
  display: block;
  border-radius: 14px;
  object-fit: cover;
  margin: 12px 0 0;
}

/* More button styles */
.expand-events-btn {
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(31, 107, 255, 0.2);
}

.expand-events-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(31, 107, 255, 0.3);
}

.expand-events-btn:active {
  transform: translateY(0);
}

.expand-icon {
  font-size: 16px;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.event-header {
  display: grid;
  grid-template-columns: 56px 1fr 56px 32px;
  gap: 10px;
  align-items: center;
  padding: 10px;
}

.event-thumb {
  width: 56px;
  height: 56px;
  border-radius: 10px;
  object-fit: cover;
  background: #eef2f8;
  box-shadow: inset 0 0 0 1px #e6eaf1;
}

.event-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.event-info h3 {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

.event-venue {
  margin: 0;
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
}

.event-time {
  font-weight: 800;
  color: var(--text);
  font-size: 13px;
  white-space: nowrap;
}

.event-toggle {
  border: none;
  background: transparent;
  padding: 4px 8px;
  color: var(--muted);
  font-weight: 600;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  border-radius: 8px;
}

.event-toggle:hover {
  background: #f0f4ff;
  color: var(--accent);
}

.event-toggle[aria-expanded="true"] .toggle-icon {
  transform: rotate(90deg);
}

.event-details {
  padding: 12px 10px;
  border-top: 1px solid #e5e7eb;
  background: #fafbfc;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
    max-height: 0;
  }
  to {
    opacity: 1;
    max-height: 800px;
  }
}

.event-description {
  color: var(--text);
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 10px;
}

.event-detail-item {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 8px;
  padding: 6px 0;
}

.event-detail-item strong {
  color: var(--text);
  font-weight: 600;
}

.event-link {
  display: inline-block;
  margin-top: 8px;
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  font-size: 12px;
  transition: all 0.2s ease;
}

.event-link:hover {
  text-decoration: underline;
}

.link-soft {
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
}

.warning {
  background: var(--warning);
  box-shadow: 0 10px 25px rgba(255, 198, 122, 0.3);
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 700;
}

.warning-chip {
  background: rgba(255, 193, 7, 0.15);
  color: #c27c06;
}

.warning-text {
  margin: 0;
  color: #c27c06;
  font-weight: 600;
}

.mall-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 12px;
  align-items: center;
}

.mall-card img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 14px;
}

.mall-info h3 {
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: 700;
}

.mall-info p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.place-carousel-container {
  position: relative;
  overflow: hidden;
}

.place-grid {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 8px;
  scrollbar-width: none;
}

.place-grid::-webkit-scrollbar {
  display: none;
}

.place-card {
  flex: 0 0 calc(50% - 6px);
  min-width: 150px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  background: #f7f9fb;
}

.place-nav-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #ffffff;
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--accent);
  z-index: 5;
  transition: all 0.2s ease;
}

.place-nav-button:hover {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(31, 107, 255, 0.3);
}

.place-nav-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.place-nav-prev {
  left: 8px;
}

.place-nav-next {
  right: 8px;
}

.place-card a.place-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.place-card img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  display: block;
}

.place-card .title {
  padding: 10px;
  font-weight: 700;
  font-size: 13px;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.service-tile {
  display: block;
  width: 100%;
  background: #f2f5fb;
  border-radius: 14px;
  padding: 12px 8px;
  text-align: center;
  border: 1px solid transparent;
  transition: all 0.2s ease;
  cursor: pointer;
}

.service-tile:hover {
  border-color: #d8e2f3;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.06);
}

.service-tile.active {
  border-color: var(--accent);
  background: #eaf1ff;
  box-shadow: 0 8px 18px rgba(31, 107, 255, 0.18);
}

.service-icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  margin: 0 auto 8px;
  font-size: 16px;
  background: linear-gradient(180deg, #fdfdfd 0%, #e9effa 100%);
  color: var(--accent);
  box-shadow: inset 0 0 0 1px #e2e8f3;
}

.service-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
}

.service-detail {
  margin-top: 12px;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 12px;
  background: linear-gradient(135deg, #f9fafb 0%, #eef3fb 100%);
}

.service-page-header {
  align-items: center;
  gap: 8px;
}

.service-page-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 12px;
}

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

.service-detail-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: var(--muted);
  margin-bottom: 4px;
  font-weight: 700;
}

.service-detail-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--text);
}

.master-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

.subcategory-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}

.subcategory-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  background: #f9fafb;
  border: 1px solid #e6e9f2;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.subcategory-item:hover {
  background: #eef3fb;
  border-color: #d8e2f3;
  box-shadow: 0 6px 12px rgba(31, 107, 255, 0.1);
  transform: translateY(-1px);
}

.subcategory-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.subcategory-arrow {
  font-size: 16px;
  color: var(--accent);
  font-weight: bold;
  transition: transform 0.2s ease;
}

.subcategory-item:hover .subcategory-arrow {
  transform: translateX(2px);
}

.subcategory-back {
  border: 1px solid #e6e9f2;
  background: #f9fafb;
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: all 0.2s ease;
}

.subcategory-back:hover {
  background: #eef3fb;
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 6px 12px rgba(31, 107, 255, 0.1);
}

.master-card {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid #e6e9f2;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);
}

.master-main {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 0;
}

.master-name {
  font-size: 14px;
  font-weight: 800;
  color: var(--text);
}

.master-languages {
  font-size: 11px;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: -2px;
  flex-wrap: wrap;
}

.languages-badge {
  display: inline-block;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: #ffffff;
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  box-shadow: 0 2px 4px rgba(102, 126, 234, 0.2);
}

.languages-list {
  color: var(--muted);
  font-size: 11px;
  font-weight: 500;
}

.master-desc {
  border-radius: 5px;
  background: #eaeaea;
  font-size: 13px;
  color: black;
  padding: 5px;
}

.master-price {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
}

.master-call {
  align-self: center;
  border: none;
  background: #1f6bff;
  color: #fff;
  padding: 12px 18px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 10px 20px rgba(31, 107, 255, 0.18);
  transition:
    transform 0.1s ease,
    box-shadow 0.2s ease;
}

.master-call:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(31, 107, 255, 0.25);
}

/* Правый блок с рейтингом и кнопками */
.master-side {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-end;
  min-width: 140px;
  text-align: right;
}

.master-rating {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
}

.rating-value {
  font-weight: 800;
  color: var(--text);
  font-size: 14px;
}

.reviews-meta {
  display: flex;
  align-items: center;
  gap: 8px;
}

.reviews-count {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
}

.reviews-toggle {
  border: none;
  background: #eef2f8;
  color: var(--accent);
  padding: 8px 14px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 13px;
  box-shadow: 0 4px 10px rgba(31, 107, 255, 0.1);
  cursor: pointer;
}

.show-contacts {
  border: none;
  background: var(--accent);
  color: #eef2f8;
  padding: 10px 20px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 12px;
  box-shadow: inset 0 0 0 1px #dbe2ee;
  cursor: pointer;
}

.reviews-container {
  margin-top: 8px;
  border: 1px solid #e6e9f2;
  border-radius: 12px;
  background: #f9fafb;
  padding: 10px;
  max-height: 400px;
  overflow-y: auto;
}

.reviews-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.review-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 8px;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.04);
  border: 1px solid #e6e9f2;
}

.review-author {
  font-weight: 700;
  font-size: 13px;
  color: var(--text);
}

.review-text {
  font-size: 13px;
  color: var(--muted);
}

.review-form-divider {
  height: 1px;
  background: #e6e9f2;
  margin: 12px 0;
}

.review-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.review-form-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.review-form-rating {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 6px;
}

.rating-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
}

.star-rating {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: 4px;
}

.star-rating input[type="radio"] {
  display: none;
}

.star-rating .star {
  font-size: 28px;
  color: #d1d5db;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
}

.star-rating .star:hover,
.star-rating .star:hover ~ .star,
.star-rating input[type="radio"]:checked ~ .star {
  color: #fbbf24;
  transform: scale(1.1);
}

.star-rating .star:active {
  transform: scale(0.95);
}

.review-form-input {
  border: 1px solid #e6e9f2;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 14px;
  color: var(--text);
  background: #ffffff;
  font-family: inherit;
  transition: all 0.2s ease;
}

.review-form-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(31, 107, 255, 0.1);
}

.review-form-textarea {
  border: 1px solid #e6e9f2;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 14px;
  color: var(--text);
  background: #ffffff;
  font-family: inherit;
  resize: vertical;
  transition: all 0.2s ease;
}

.review-form-textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(31, 107, 255, 0.1);
}

.review-form-submit {
  border: none;
  background: var(--accent);
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 6px 14px rgba(31, 107, 255, 0.2);
}

.review-form-submit:hover {
  background: #1d5ce5;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(31, 107, 255, 0.3);
}

.review-form-submit:active {
  transform: translateY(0);
}

.bottom-nav {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 14px;
  width: min(430px, calc(100% - 24px));
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
  padding: 8px 12px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}

.nav-item {
  border: none;
  background: transparent;
  border-radius: 12px;
  padding: 8px 0 6px;
  display: grid;
  gap: 4px;
  place-items: center;
  color: var(--muted);
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.nav-item.active {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(31, 107, 255, 0.25);
}

.nav-icon {
  font-size: 16px;
}

.contacts-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Gastronomy Carousel */
.gastro-carousel-container {
  position: relative;
  padding-right: 16px;
  margin-bottom: 28px;
  overflow: hidden;
}

.gastro-nav-button {
  display: none;
}

.gastro-list {
  display: flex;
  flex-direction: row;
  gap: 12px;
  padding: 4px 0 8px 0;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  scroll-snap-type: x proximity;
  mask-image: linear-gradient(
    to right,
    black 0%,
    black calc(100% - 40px),
    transparent 100%
  );
}

.gastro-list::-webkit-scrollbar {
  display: none;
}

.gastro-item {
  flex: 0 0 140px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
  scroll-snap-align: start;
  position: relative;
}

.gastro-item:hover {
  transform: translateY(-4px);
}

.gastro-item:nth-child(3)::after {
  content: "← Листай";
  position: absolute;
  bottom: -26px;
  left: 0;
  right: 0;
  text-align: center;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
  animation: slideHint 2s ease-in-out infinite;
}

@keyframes slideHint {
  0%,
  100% {
    opacity: 0.5;
    transform: translateX(-4px);
  }
  50% {
    opacity: 1;
    transform: translateX(0);
  }
}

.gastro-thumb {
  width: 100%;
  height: 120px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.gastro-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gastro-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 2px;
}

.gastro-top {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.gastro-tag,
.gastro-area {
  display: inline-flex;
  align-items: center;
  padding: 3px 6px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  background: #eef2f8;
  color: var(--muted);
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.gastro-title {
  margin: 0;
  font-size: 14px;
  font-weight: 800;
  color: var(--text);
  line-height: 1.2;
  word-break: break-word;
}

.gastro-desc {
  margin: 0;
  font-size: 12px;
  color: var(--muted);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.contact-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: 12px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
  cursor: pointer;
}

.contact-item:hover {
  background: #eef2f8;
  border-color: var(--accent);
  box-shadow: 0 4px 12px rgba(31, 107, 255, 0.15);
  transform: translateY(-2px);
}

.contact-icon {
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: linear-gradient(180deg, #fdfdfd 0%, #e9effa 100%);
  border-radius: 10px;
  box-shadow: inset 0 0 0 1px #e2e8f3;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-title {
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
}

.contact-value {
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.news-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 12px;
  border-radius: 12px;
  background: linear-gradient(135deg, #f9fafb 0%, #f0f4ff 100%);
  border: 1px solid #e5e7eb;
  align-items: start;
  transition: all 0.2s ease;
}

.news-item:hover {
  background: linear-gradient(135deg, #f0f4ff 0%, #e6eeff 100%);
  border-color: var(--accent);
  box-shadow: 0 4px 12px rgba(31, 107, 255, 0.1);
}

.news-thumb {
  display: none;
  width: 110px;
  height: 110px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.news-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.news-top {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
}

.news-date {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  align-self: flex-end;
}

.news-header {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.news-title {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  flex: 1;
}

.news-toggle {
  border: none;
  background: transparent;
  padding: 4px 8px;
  color: var(--accent);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  border-radius: 6px;
  flex-shrink: 0;
}

.news-toggle:hover {
  background: rgba(31, 107, 255, 0.1);
}

.news-toggle-icon {
  transition: transform 0.3s ease;
  display: inline-block;
}

.news-toggle[aria-expanded="true"] .news-toggle-icon {
  transform: rotate(180deg);
}

.news-description-container {
  padding: 8px 0 0 0;
  border-top: 1px solid #e5e7eb;
  animation: slideDown 0.3s ease;
}

.news-description {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

.load-more-news-btn {
  width: 100%;
  padding: 16px 20px;
  margin-top: 16px;
  background: var(--accent);
  color: white;
  border: none;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(31, 107, 255, 0.25);
}

.load-more-news-btn:hover {
  background: #2563eb;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(31, 107, 255, 0.35);
}

.load-more-news-btn:active {
  transform: translateY(0);
  box-shadow: 0 2px 8px rgba(31, 107, 255, 0.2);
}

/* Нижний шит контактов */
.sheet-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.25);
  opacity: 0;
  transition: opacity 0.2s ease;
  z-index: 98;
}
.sheet-backdrop.open {
  opacity: 1;
}

.contacts-sheet {
  position: fixed;
  left: 50%;
  transform: translateX(-50%) translateY(100%);
  bottom: 0;
  width: min(430px, calc(100% - 24px));
  background: #ffffff;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.2);
  z-index: 99;
  transition: transform 0.2s ease;
}
.contacts-sheet.open {
  transform: translateX(-50%) translateY(0);
}

.sheet-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-bottom: 1px solid #eef2f8;
}

.sheet-title {
  font-weight: 800;
  font-size: 14px;
  color: var(--text);
}

.sheet-close {
  border: none;
  background: #eef2f8;
  color: var(--text);
  padding: 6px 10px;
  border-radius: 10px;
  font-weight: 700;
  cursor: pointer;
}

.sheet-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 12px 14px 16px;
}

.contact-row {
  display: block;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #e6e9f2;
  color: var(--text);
  text-decoration: none;
  background: #f9fafb;
}

@media (max-width: 600px) {
  .place-card {
    flex: 0 0 60%;
  }

  .service-page-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .master-card {
    gap: 8px;
  }

  .master-side {
    min-width: 100px;
  }

  .master-languages {
    flex-wrap: wrap;
  }

  .languages-badge {
    font-size: 9px;
    padding: 2px 6px;
  }

  .languages-list {
    font-size: 10px;
  }

  .news-item {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 10px;
  }

  .news-thumb {
    display: none;
  }

  .news-title {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .tabs {
    gap: 3px;
  }

  .place-card {
    flex: 0 0 70%;
  }

  .service-page-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .news-item {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 8px;
  }

  .news-thumb {
    display: none;
  }

  .news-date {
    font-size: 11px;
  }

  .news-title {
    font-size: 13px;
  }
}

.event-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.event-info h3 {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

.event-venue {
  margin: 0;
  color: var(--accent);
  font-size: 12px;
  font-weight: 600;
}

.event-time {
  font-weight: 800;
  color: var(--text);
  font-size: 13px;
  white-space: nowrap;
}

.event-toggle {
  border: none;
  background: transparent;
  padding: 4px 8px;
  color: var(--muted);
  font-weight: 600;
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  border-radius: 8px;
}

.event-toggle:hover {
  background: #f0f4ff;
  color: var(--accent);
}

.lang-switch .pill.active,
.pill.active {
  transition: transform 0.3s ease;
  font-size: 16px;
}

.pill.ghost {
  background: #eef2f8;
  color: var(--text);
}

.event-toggle[aria-expanded="true"] .toggle-icon {
  transform: rotate(90deg);
}

.event-details {
  padding: 12px 10px;
  border-top: 1px solid #e5e7eb;
  background: #fafbfc;
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.event-description {
  color: var(--text);
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 10px;
}

.event-detail-item {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 8px;
  padding: 6px 0;
}

.event-detail-item strong {
  color: var(--text);
  font-weight: 600;
}

.event-link {
  display: inline-block;
  margin-top: 8px;
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  font-size: 12px;
  transition: all 0.2s ease;
}

.event-link:hover {
  text-decoration: underline;
}

.link-soft {
  color: var(--accent);
  font-weight: 700;
  text-decoration: none;
}

.warning {
  background: var(--warning);
  box-shadow: 0 10px 25px rgba(255, 198, 122, 0.3);
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 700;
}

.warning-chip {
  background: rgba(255, 193, 7, 0.15);
  color: #c27c06;
}

.warning-text {
  margin: 0;
  color: #c27c06;
  font-weight: 600;
}

.mall-card {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 12px;
  align-items: center;
}

.mall-card img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 14px;
}

.mall-info h3 {
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: 700;
}

.mall-info p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.place-carousel-container {
  position: relative;
  overflow: hidden;
}

.place-grid {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 8px;
  scrollbar-width: none;
}

.place-grid::-webkit-scrollbar {
  display: none;
}

.place-card {
  flex: 0 0 calc(50% - 6px);
  min-width: 150px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.08);
  background: #f7f9fb;
}

.place-nav-button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: white;
  border: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--accent);
  z-index: 5;
  transition: all 0.2s ease;
}

.place-nav-button:hover {
  background: var(--accent);
  color: white;
  box-shadow: 0 6px 16px rgba(31, 107, 255, 0.3);
}

.place-nav-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.place-nav-prev {
  left: 8px;
}

.place-nav-next {
  right: 8px;
}

.place-card a.place-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.place-card img {
  width: 100%;
  height: 110px;
  object-fit: cover;
  display: block;
}

.place-card .title {
  padding: 10px;
  font-weight: 700;
  font-size: 13px;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.service-tile {
  display: block;
  width: 100%;
  background: #f2f5fb;
  border-radius: 14px;
  padding: 12px 8px;
  text-align: center;
  border: 1px solid transparent;
  transition: all 0.2s ease;
  cursor: pointer;
}

.service-tile:hover {
  border-color: #d8e2f3;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.06);
}

.service-tile.active {
  border-color: var(--accent);
  background: #eaf1ff;
  box-shadow: 0 8px 18px rgba(31, 107, 255, 0.18);
}

.service-icon {
  width: 32px;
  height: 32px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  margin: 0 auto 8px;
  font-size: 16px;
  background: linear-gradient(180deg, #fdfdfd 0%, #e9effa 100%);
  color: var(--accent);
  box-shadow: inset 0 0 0 1px #e2e8f3;
}

.service-name {
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
}

.service-detail {
  margin-top: 12px;
  border: 1px solid #e5e7eb;
  border-radius: 14px;
  padding: 12px;
  background: linear-gradient(135deg, #f9fafb 0%, #eef3fb 100%);
}

.service-page-header {
  align-items: center;
  gap: 8px;
}

.service-page-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 12px;
}

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

.service-detail-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: var(--muted);
  margin-bottom: 4px;
  font-weight: 700;
}

.service-detail-title {
  font-size: 16px;
  font-weight: 800;
  color: var(--text);
}

.service-detail-placeholder {
  font-size: 13px;
  color: var(--muted);
  text-align: center;
}

.master-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 10px;
}

.subcategory-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 12px;
}

.subcategory-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  background: #f9fafb;
  border: 1px solid #e6e9f2;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.subcategory-item:hover {
  background: #eef3fb;
  border-color: #d8e2f3;
  box-shadow: 0 6px 12px rgba(31, 107, 255, 0.1);
  transform: translateY(-1px);
}

.subcategory-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.subcategory-arrow {
  font-size: 16px;
  color: var(--accent);
  font-weight: bold;
  transition: transform 0.2s ease;
}

.subcategory-item:hover .subcategory-arrow {
  transform: translateX(2px);
}

.subcategory-back {
  border: 1px solid #e6e9f2;
  background: #f9fafb;
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  transition: all 0.2s ease;
}

.subcategory-back:hover {
  background: #eef3fb;
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 6px 12px rgba(31, 107, 255, 0.1);
}

.master-card {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  background: #ffffff;
  border: 1px solid #e6e9f2;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05);
}

.master-main {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 0;
}

.master-name {
  font-size: 14px;
  font-weight: 800;
  color: var(--text);
}

.master-desc {
  border-radius: 5px;
  background: #eaeaea;
  font-size: 13px;
  color: black;
  padding: 5px;
}

.master-price {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
}

.master-call {
  align-self: center;
  border: none;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 10px 20px rgba(31, 107, 255, 0.18);
  transition:
    transform 0.1s ease,
    box-shadow 0.2s ease;
}

.master-call:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(31, 107, 255, 0.25);
}

@media (max-width: 600px) {
  .master-card {
    gap: 8px;
  }

  .master-side {
    min-width: 100px;
  }
}

.bottom-nav {
  position: fixed;
  left: 50%;
  transform: translateX(-50%);
  bottom: 14px;
  width: min(430px, calc(100% - 24px));
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
  padding: 8px 12px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}

.nav-item {
  border: none;
  background: transparent;
  border-radius: 12px;
  padding: 8px 0 6px;
  display: grid;
  gap: 4px;
  place-items: center;
  color: var(--muted);
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.nav-item.active {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 10px 20px rgba(31, 107, 255, 0.25);
}

.nav-icon {
  font-size: 16px;
}

.contacts-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border-radius: 12px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
  text-decoration: none;
  color: inherit;
  transition: all 0.2s ease;
  cursor: pointer;
}

.contact-item:hover {
  background: #eef2f8;
  border-color: var(--accent);
  box-shadow: 0 4px 12px rgba(31, 107, 255, 0.15);
  transform: translateY(-2px);
}

.contact-icon {
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: linear-gradient(180deg, #fdfdfd 0%, #e9effa 100%);
  border-radius: 10px;
  box-shadow: inset 0 0 0 1px #e2e8f3;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.contact-title {
  font-weight: 700;
  font-size: 14px;
  color: var(--text);
}

.contact-value {
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.news-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  padding: 12px;
  border-radius: 12px;
  background: linear-gradient(135deg, #f9fafb 0%, #f0f4ff 100%);
  border: 1px solid #e5e7eb;
  align-items: start;
  transition: all 0.2s ease;
}

.news-item:hover {
  background: linear-gradient(135deg, #f0f4ff 0%, #e6eeff 100%);
  border-color: var(--accent);
  box-shadow: 0 4px 12px rgba(31, 107, 255, 0.1);
}

.news-thumb {
  display: none;
  width: 110px;
  height: 110px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.news-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.news-top {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-start;
}

.news-date {
  font-size: 12px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.3px;
  align-self: flex-end;
}

.news-header {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.news-title {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.3;
  flex: 1;
}

.news-toggle {
  border: none;
  background: transparent;
  padding: 4px 8px;
  color: var(--accent);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  border-radius: 6px;
  flex-shrink: 0;
}

.news-toggle:hover {
  background: rgba(31, 107, 255, 0.1);
}

.news-toggle-icon {
  transition: transform 0.3s ease;
  display: inline-block;
}

.news-toggle[aria-expanded="true"] .news-toggle-icon {
  transform: rotate(180deg);
}

.news-description-container {
  padding: 8px 0 0 0;
  border-top: 1px solid #e5e7eb;
  animation: slideDown 0.3s ease;
}

/* Gastro Detail Page */
.gastro-detail-item {
  margin-bottom: 12px;
  border-radius: 14px;
  overflow: hidden;
  background: #ffffff;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  scroll-margin-top: 60px;
}

.gastro-detail-item.highlighted {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(31, 107, 255, 0.1);
  background: linear-gradient(
    135deg,
    rgba(31, 107, 255, 0.03) 0%,
    rgba(31, 107, 255, 0.01) 100%
  );
}

.gastro-detail-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  overflow: hidden;
}

.gastro-detail-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

/* Карусель фото ресторана */
.gastro-carousel {
  position: relative;
  padding: 12px 0;
  margin: 0 12px;
}

.gastro-carousel-wrapper {
  overflow: hidden;
  border-radius: 12px;
  position: relative;
}

.gastro-carousel-track {
  position: relative;
  width: 100%;
  height: 200px;
}

.gastro-carousel-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: none;
  cursor: pointer;
  border-radius: 8px;
}

.gastro-carousel-img.active {
  display: block;
}

.carousel-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(31, 107, 255, 0.2);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 20px;
  color: var(--accent);
  transition: all 0.2s ease;
  z-index: 10;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.carousel-nav-btn:hover {
  background: var(--accent);
  color: white;
  border-color: var(--accent);
}

.carousel-prev {
  left: 8px;
}

.carousel-next {
  right: 8px;
}

.carousel-dots {
  display: flex;
  gap: 6px;
  justify-content: center;
  margin-top: 8px;
}

.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d1d5db;
  cursor: pointer;
  transition: all 0.2s ease;
}

.carousel-dot.active {
  background: var(--accent);
  width: 24px;
  border-radius: 4px;
}

.gastro-detail-content {
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.gastro-detail-top {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.gastro-detail-tag,
.gastro-detail-area {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  background: var(--accent-soft);
  color: var(--accent);
}

.gastro-detail-title {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  color: var(--text);
  line-height: 1.3;
}

.gastro-detail-desc {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

.gastro-contact-toggle {
  margin-top: 10px;
  padding: 8px 12px;
  background: var(--accent-soft);
  border: 1px solid var(--accent);
  color: var(--accent);
  border-radius: 10px;
  font-weight: 700;
  font-size: 12px;
  cursor: pointer;
  transition: all 0.2s ease;
  width: 100%;
  text-align: center;
}

.gastro-contact-toggle:hover {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(31, 107, 255, 0.2);
}

.gastro-contact-toggle.active {
  background: var(--accent);
  color: #ffffff;
}

.gastro-contacts {
  margin-top: 10px;
  padding: 12px;
  background: #f9fafb;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  animation: slideDown 0.2s ease;
}

.contact-row {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 12px;
  align-items: center;
  margin-bottom: 8px;
}

.contact-row:last-child {
  margin-bottom: 0;
}

.contact-label {
  font-weight: 700;
  font-size: 12px;
  color: var(--text);
}

.contact-value {
  font-size: 13px;
  color: var(--muted);
  word-break: break-word;
}

.contact-link {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.2s ease;
}

.contact-link:hover {
  text-decoration: underline;
}

@keyframes slideDown {
  from {
    opacity: 0;
    max-height: 0;
  }
  to {
    opacity: 1;
    max-height: 500px;
  }
}

/* Transport Section */
/* Transport Tabs */
.transport-tabs {
  display: flex;
  gap: 8px;
  padding: 16px;
}

.transport-tab {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  transition: all 0.2s ease;
}

.transport-tab:hover {
  background: #f0f4ff;
  border-color: var(--accent);
}

.transport-tab.active {
  background: var(--accent);
  border-color: var(--accent);
  color: white;
}

.transport-tab .transport-icon {
  font-size: 24px;
  line-height: 1;
}

.transport-content {
  padding: 16px;
}

.transport-list {
  display: none;
  animation: fadeIn 0.3s ease;
}

.transport-list.active {
  display: block;
}

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

.transport-contact {
  padding: 16px;
  margin-bottom: 12px;
  background: white;
  border-radius: 12px;
  border: 1px solid #e5e9f3;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.transport-contact h4 {
  margin: 0 0 8px;
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
}

.transport-contact p {
  margin: 4px 0;
  font-size: 14px;
  color: var(--muted);
}

.transport-contact a {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
}

.transport-contact a:hover {
  text-decoration: underline;
}

@media (max-width: 600px) {
  .transport-tab {
    font-size: 13px;
    padding: 10px 12px;
  }

  .transport-tab .transport-icon {
    font-size: 20px;
  }
}

.news-description {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.6;
}

@media (max-width: 600px) {
  .news-item {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 10px;
  }

  .news-thumb {
    display: none;
  }

  .service-page-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .news-title {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .news-item {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 8px;
  }

  .news-thumb {
    display: none;
  }

  .service-page-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .news-date {
    font-size: 11px;
  }

  .news-title {
    font-size: 13px;
  }

  .star-rating .star {
    font-size: 24px;
  }

  .rating-label {
    font-size: 12px;
  }
}

/* Constrain story section content */
.story-section {
  width: 90%;
  max-width: 720px;
  margin: 0 auto;
}

/* Salt truck animation */
.saltScene {
  .telegram-subscribe {
    margin: 24px 0;
    background: var(--card);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding-bottom: 8px;
  }
  .telegram-subscribe .card-header {
    border-bottom: 1px solid #f0f0f0;
    background: none;
  }
  .telegram-subscribe h2 {
    font-size: 1.2rem;
    margin: 0;
    color: var(--accent);
  }
  .telegram-subscribe p {
    color: var(--muted);
    margin: 0 0 8px 0;
  }
  .telegram-subscribe .pill.accent {
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 10px 28px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
  }
  .telegram-subscribe .pill.accent:hover {
    background: #1550b2;
  }
  position: relative;
  width: 100%;
  margin-top: 12px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: rgba(255, 255, 255, 0.5);
}

.saltScene img {
  width: 100%;
  height: auto;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}

.saltScene .hint {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  color: white;
  pointer-events: none;
  z-index: 10;
}

.algaeScene {
  position: relative;
  width: 100%;
  margin-top: 12px;
  margin-bottom: 12px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: rgba(255, 255, 255, 0.5);
}

.algaeScene img {
  width: 100%;
  height: auto;
  display: block;
  user-select: none;
  -webkit-user-drag: none;
}

.algaeScene .hint {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  color: white;
  pointer-events: none;
  z-index: 10;
}

.scene-caption {
  margin-top: 8px;
  font-size: 13px;
  color: rgba(110, 110, 110, 0.7);
  text-align: center;
  font-weight: 500;
}

/* Salinity Gauge */
.salinityGauge {
  margin: 16px auto;
  padding: 14px;
  max-width: 420px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.25);
}

.gaugeHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 700;
}

.badge {
  font-size: 11px;
  padding: 5px 9px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.bar {
  height: 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  overflow: hidden;
}

.barFill {
  height: 100%;
  width: 0%;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(100, 200, 100, 0.7),
    rgba(255, 79, 167, 0.9)
  );
  box-shadow: 0 10px 24px rgba(255, 79, 167, 0.18);
  transition: width 120ms linear;
}

.value {
  margin-top: 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.9);
  text-align: right;
}

.city-switch {
  margin-right: 8px;
}

.city-select-hidden {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 0;
  height: 0;
}

.city-dropdown {
  position: relative;
}

.city-trigger {
  width: 120px;
  padding: 6px 10px;
  border: 1px solid var(--accent-soft);
  border-radius: 8px;
  background: var(--card);
  color: var(--text);
  font-family: var(--font);
  font-size: 12px;
  line-height: 14px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  cursor: pointer;
  transition: all 0.2s ease;
}

.city-trigger:hover,
.city-trigger:focus-visible {
  border-color: var(--accent);
  box-shadow: 0 2px 8px rgba(31, 107, 255, 0.12);
  outline: none;
}

.city-line {
  display: block;
}

.city-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  width: 160px;
  background: var(--card);
  border: 1px solid var(--accent-soft);
  border-radius: 10px;
  box-shadow: var(--shadow);
  list-style: none;
  padding: 6px;
  margin: 0;
  display: none;
  z-index: 20;
}

.city-menu.open {
  display: block;
}

.city-option {
  border-radius: 6px;
  cursor: pointer;
  font-size: 20px;
  line-height: 16px;
}

.city-option:hover,
.city-option:focus-visible {
  background: var(--accent-soft);
  color: var(--text);
  outline: none;
}

.city-select:hover {
  border-color: var(--accent);
  box-shadow: 0 2px 8px rgba(31, 107, 255, 0.1);
}

.city-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(31, 107, 255, 0.15);
}

.add-master-promo {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px;
  margin: 12px 0;
  border-radius: 14px;
  background: linear-gradient(135deg, #dbe7ff 0%, #eef3ff 100%);
  border: 1px solid #b3d0ff;
  text-align: center;
}

.add-master-text {
  font-size: 14px;
  font-weight: 500;
  color: var(--text);
}

.add-master-link {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 8px;
  background: rgba(31, 107, 255, 0.08);
  transition: all 0.2s ease;
}

.add-master-link:hover {
  background: rgba(31, 107, 255, 0.15);
  transform: translateX(2px);
}
