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

:root {
  --blue: #0E6BA8;
  --blue-dark: #0A5385;
  --blue-light: #e2f0f8;
  --sand: #D9C29B;
  --sand-light: #F4ECDC;
  --sand-dark: #A98B5A;
  --bg: #f0f2f5;
  --white: #ffffff;
  --text: #1c1e21;
  --text-secondary: #65676b;
  --border: #dddfe2;
  --shadow: 0 1px 3px rgba(0,0,0,0.12);
  --shadow-hover: 0 4px 12px rgba(0,0,0,0.15);
  --radius: 8px;
  --radius-lg: 12px;
  --font: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --header-height: 56px;
  --sidebar-width: 320px;
}

html {
  scroll-behavior: smooth;
}

.skip-link {
  position: absolute;
  top: -40px;
  left: 8px;
  background: var(--blue);
  color: var(--white);
  padding: 8px 14px;
  border-radius: var(--radius);
  z-index: 9999;
}

.skip-link:focus {
  top: 8px;
}

body {
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--blue); text-decoration: none; }

a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .hero-card,
  .hero-card-img,
  .hero-scroll-hint,
  .star-rating .star,
  .social-btn,
  .scroll-top {
    animation: none !important;
    transition: none !important;
  }
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: var(--white);
  border-bottom: 1px solid var(--border);
  z-index: 1000;
  box-shadow: 0 1px 2px rgba(0,0,0,0.08);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 22px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: -0.5px;
}

.logo:hover { color: var(--blue-dark); }

.logo-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--bg);
  border: 2px solid var(--blue);
  box-shadow: 0 1px 3px rgba(0,0,0,0.15);
  flex-shrink: 0;
}

.logo-badge .flag-icon {
  width: 20px;
  height: 15px;
  border-radius: 1px;
  box-shadow: none;
}

.flag-icon {
  width: 28px;
  height: auto;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.2);
  flex-shrink: 0;
}

.menu-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
}

.menu-btn:hover { background: var(--bg); }

.menu-btn span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}

.sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

.sidebar-overlay.open { opacity: 1; pointer-events: auto; }

.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 300px;
  max-width: 85vw;
  background: var(--white);
  z-index: 1001;
  transform: translateX(-100%);
  transition: transform 0.3s ease;
  box-shadow: 2px 0 12px rgba(0,0,0,0.15);
  overflow-y: auto;
}

.sidebar.open { transform: translateX(0); }

.sidebar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-bottom: 1px solid var(--border);
}

.sidebar-header h2 { font-size: 20px; color: var(--text); }

.close-btn {
  background: none;
  border: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--text-secondary);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-btn:hover { background: var(--bg); }

.sidebar-body { padding: 12px 0; }

.sidebar-section { padding: 8px 20px; }

.sidebar-section h3 {
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--text-secondary);
  margin-bottom: 8px;
}

.sidebar-destinations,
.sidebar-categories {
  list-style: none;
}

.sidebar-destinations li a {
  display: block;
  padding: 10px 12px;
  border-radius: var(--radius);
  color: var(--text);
  font-weight: 500;
  font-size: 14px;
  transition: background 0.2s;
}

.sidebar-categories li a {
  display: block;
  padding: 10px 12px;
  border-radius: var(--radius);
  color: var(--text);
  font-weight: 600;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background 0.2s;
}

.sidebar-categories li a::before {
  content: '[';
  margin-right: 6px;
  color: var(--text-secondary);
  opacity: 0.4;
  font-weight: 300;
  font-size: 15px;
}

.sidebar-destinations li a:hover,
.sidebar-categories li a:hover {
  background: var(--blue-light);
  color: var(--blue);
}
.sidebar-categories li a:hover::before {
  color: var(--blue);
  opacity: 1;
}

.sidebar-categories .has-sub,
.sidebar-card .has-sub {
  position: relative;
}

/* ── Sidebar Category Levels ── */

.dropdown-sub {
  list-style: none;
  padding-left: 12px;
  display: none;
}

.dropdown-sub.open { display: block; }

.dropdown-sub-2 {
  list-style: none;
  padding-left: 12px;
  display: none;
}

.dropdown-sub-2.open { display: block; }

/* Level 2 — Subcategories (CYCLADES, IONIAN) */

.dropdown-sub li a {
  display: block;
  padding: 8px 12px 8px 8px;
  border-radius: var(--radius);
  color: var(--blue);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.3px;
  transition: background 0.2s, color 0.2s;
}

.dropdown-sub li a::before {
  content: '|';
  margin-right: 8px;
  color: var(--blue);
  font-weight: 400;
  font-size: 14px;
  opacity: 0.5;
}

.dropdown-sub li a:hover {
  background: var(--blue-light);
  color: var(--blue);
}
.dropdown-sub li a:hover::before { opacity: 1; }

.subcat-toggle.active-sub::before,
.subcat-toggle.active-sub:hover::before {
  opacity: 1;
  font-weight: 700;
  font-size: 16px;
}

.sidebar-card .dropdown-sub li a {
  font-size: 12px;
  padding: 6px 10px 6px 8px;
}

.sidebar-card .dropdown-sub li a::before {
  content: '|';
  margin-right: 8px;
  color: var(--blue);
  font-weight: 400;
  font-size: 14px;
  opacity: 0.5;
}

.cat-link.active-cat::before {
  color: var(--blue);
  opacity: 1;
}

.sidebar-card .dropdown-sub li a:hover::before { opacity: 1; }

.sidebar-card .subcat-toggle.active-sub::before {
  opacity: 1;
  font-weight: 700;
  font-size: 16px;
}

.subcat-toggle.active-sub {
  background: var(--blue-light);
  color: var(--blue-dark);
  font-weight: 700;
  border-radius: 6px;
}

/* Historical place names — same as Level 3 places */
#historicalDropdown a,
#historicalDropdown-mobile a {
  display: block;
  font-size: 13px;
  font-weight: 400;
  text-transform: none;
  color: var(--text-secondary);
  padding: 6px 12px 6px 28px;
  border-radius: var(--radius);
  gap: unset;
}

#historicalDropdown a::before,
#historicalDropdown-mobile a::before {
  content: '·';
  margin-right: 4px;
  color: var(--text-secondary);
  font-weight: 700;
}

#historicalDropdown a:hover,
#historicalDropdown-mobile a:hover {
  background: var(--blue-light);
  color: var(--blue);
}
#historicalDropdown a:hover::before,
#historicalDropdown-mobile a:hover::before { color: var(--blue); }

/* Level 3 — Place names (Mykonos, Athens) */

.dropdown-sub-2 li a {
  display: block;
  padding: 6px 12px 6px 28px;
  border-radius: var(--radius);
  color: var(--text-secondary);
  font-size: 13px;
  font-weight: 400;
  text-transform: none;
  transition: background 0.2s, color 0.2s;
}

.dropdown-sub-2 li a::before {
  content: '·';
  margin-right: 4px;
  color: var(--text-secondary);
  font-weight: 700;
}

.dropdown-sub-2 li a:hover {
  background: var(--blue-light);
  color: var(--blue);
}
.dropdown-sub-2 li a:hover::before { color: var(--blue); }

.sidebar-card .dropdown-sub-2 li a {
  font-size: 12px;
  font-weight: 400;
  padding: 5px 10px 5px 36px;
  text-transform: none;
}

/* Remove Level 1 circle from Level 3 items */
.sidebar-card .dropdown-sub-2 li a::before {
  content: '·';
  margin-right: 4px;
  color: var(--text-secondary);
  font-weight: 700;
  font-size: 14px;
}
.sidebar-card .dropdown-sub-2 li a:hover::before {
  color: var(--blue);
}

/* Long subcategory lists: stay inside the sidebar, cap height so it never scrolls */

.dropdown-sub-2.open {
  max-height: min(50vh, 420px);
  overflow-y: auto;
}

.dropdown-sub-2.cols-2.open {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 8px;
  align-content: start;
}

.dropdown-sub-2.cols-2 li a,
.sidebar-card .dropdown-sub-2.cols-2 li a {
  padding: 4px 6px;
}

.has-sub-2 {
  position: relative;
}

.arrow-2 {
  font-size: 10px;
  margin-left: 4px;
  transition: transform 0.2s;
}

.dropdown-toggle .arrow {
  font-size: 12px;
  transition: transform 0.2s;
}

.sidebar-bottom {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.sidebar-bottom a {
  display: block;
  padding: 8px 0;
  font-size: 14px;
  color: var(--text-secondary);
}

/* ===== HERO ===== */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: calc(var(--header-height) + 40px) 16px 40px;
  background: linear-gradient(135deg, #1a3a5c 0%, #0E6BA8 100%);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/hero-bg.jpg') center/cover no-repeat;
  opacity: 0.85;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,58,92,0.35) 0%, rgba(14,107,168,0.25) 100%);
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 1;
  margin-bottom: 48px;
}

.hero-title {
  font-size: clamp(40px, 8vw, 80px);
  font-weight: 800;
  color: var(--white);
  letter-spacing: -2px;
  line-height: 1.1;
  text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

.hero-subtitle {
  font-size: clamp(16px, 3vw, 24px);
  color: rgba(244,236,220,0.9);
  margin-top: 8px;
  font-weight: 300;
  letter-spacing: 2px;
}

.hero-cards {
  width: 100%;
  max-width: 700px;
  height: 320px;
  position: relative;
  z-index: 1;
}

.hero-card {
  position: absolute;
  width: 120px;
  height: 155px;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
  border: 2px solid rgba(255,255,255,0.3);
  background: var(--white);
  transition: box-shadow 0.3s;
  will-change: transform;
  left: 50%;
  top: 50%;
}

.hero-card:hover {
  box-shadow: 0 12px 36px rgba(0,0,0,0.5);
  z-index: 10;
}

.hero-card:nth-child(1) { animation: orbit-1 18s linear infinite; }
.hero-card:nth-child(2) { animation: orbit-2 20s linear infinite; }
.hero-card:nth-child(3) { animation: orbit-3 19s linear infinite; }
.hero-card:nth-child(4) { animation: orbit-4 21s linear infinite; }
.hero-card:nth-child(5) { animation: orbit-5 17s linear infinite; }

@keyframes orbit-1 {
  0%   { transform: translate(-50%, -50%) translate(-220px, -80px); }
  25%  { transform: translate(-50%, -50%) translate(180px, -100px); }
  50%  { transform: translate(-50%, -50%) translate(200px, 90px); }
  75%  { transform: translate(-50%, -50%) translate(-200px, 100px); }
  100% { transform: translate(-50%, -50%) translate(-220px, -80px); }
}

@keyframes orbit-2 {
  0%   { transform: translate(-50%, -50%) translate(200px, -70px); }
  25%  { transform: translate(-50%, -50%) translate(-180px, -90px); }
  50%  { transform: translate(-50%, -50%) translate(-210px, 80px); }
  75%  { transform: translate(-50%, -50%) translate(190px, 100px); }
  100% { transform: translate(-50%, -50%) translate(200px, -70px); }
}

@keyframes orbit-3 {
  0%   { transform: translate(-50%, -50%) translate(-60px, -120px); }
  25%  { transform: translate(-50%, -50%) translate(120px, 10px); }
  50%  { transform: translate(-50%, -50%) translate(50px, 120px); }
  75%  { transform: translate(-50%, -50%) translate(-130px, 0px); }
  100% { transform: translate(-50%, -50%) translate(-60px, -120px); }
}

@keyframes orbit-4 {
  0%   { transform: translate(-50%, -50%) translate(130px, 110px); }
  25%  { transform: translate(-50%, -50%) translate(-100px, 120px); }
  50%  { transform: translate(-50%, -50%) translate(-220px, -20px); }
  75%  { transform: translate(-50%, -50%) translate(100px, -110px); }
  100% { transform: translate(-50%, -50%) translate(130px, 110px); }
}

@keyframes orbit-5 {
  0%   { transform: translate(-50%, -50%) translate(-170px, 50px); }
  25%  { transform: translate(-50%, -50%) translate(60px, -110px); }
  50%  { transform: translate(-50%, -50%) translate(160px, 30px); }
  75%  { transform: translate(-50%, -50%) translate(-80px, 100px); }
  100% { transform: translate(-50%, -50%) translate(-170px, 50px); }
}

.hero-card-img-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.4s ease, transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.hero-card:hover .hero-card-img {
  transform: scale(1.1);
}

.hero-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.05) 0%, rgba(0,0,0,0.15) 45%, rgba(0,0,0,0.75) 100%);
}

.hero-card-info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px 18px 16px;
  color: var(--white);
}

.hero-card-location {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  background: rgba(217,194,155,0.25);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 4px 10px;
  border-radius: 999px;
  margin-bottom: 8px;
  max-width: fit-content;
}

.hero-card-info h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

.hero-card-arrow {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  background: rgba(255,255,255,0.2);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 50%;
  opacity: 0;
  transform: translate(-8px, 8px) rotate(-45deg);
  transition: opacity 0.3s, transform 0.35s, background 0.3s;
}

.hero-card:hover .hero-card-arrow {
  opacity: 1;
  transform: translate(0, 0) rotate(-45deg);
}

.hero-card-arrow:hover {
  background: var(--blue);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.95);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 600;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== 3-COLUMN FEED LAYOUT ===== */

.feed-layout {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px 16px;
  display: grid;
  grid-template-columns: var(--sidebar-width) 1fr var(--sidebar-width);
  gap: 24px;
  align-items: start;
}

.left-sidebar,
.right-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 24px);
  align-self: start;
  max-height: calc(100vh - var(--header-height) - 48px);
  overflow-y: auto;
  overflow-x: hidden;
}

.left-sidebar {
  max-height: calc(100vh - var(--header-height) - 48px);
  overflow-y: auto;
  overflow-x: hidden;
}

.sidebar-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px;
  margin-bottom: 16px;
}

#mapCard { padding: 12px; }

#mapCard h3 { margin-bottom: 8px; }

#map {
  width: 100%;
  height: 220px;
  border-radius: 6px;
  z-index: 1;
}

.sidebar-card h3 {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.sidebar-card ul {
  list-style: none;
}

.sidebar-card ul li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 10px;
  border-radius: 6px;
  color: var(--text);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: background 0.15s;
}

.sidebar-card ul li a::before {
  content: '[';
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
  box-shadow: none;
  flex-shrink: 0;
  font-size: 15px;
  font-weight: 300;
  color: var(--text-secondary);
  opacity: 0.4;
  transition: color 0.2s, opacity 0.2s;
}

.sidebar-card ul li a.active-link {
  background: var(--blue-light);
  color: var(--blue);
  font-weight: 600;
}

.sidebar-card ul li a.active-link::before {
  color: var(--blue);
  opacity: 1;
}

.sidebar-card ul li a:hover {
  background: var(--blue-light);
  color: var(--blue);
}
.sidebar-card ul li a:hover::before {
  color: var(--blue);
  opacity: 1;
}

.cat-link.active-cat {
  background: var(--blue-light);
  color: var(--blue);
}

.sidebar-card p {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ===== TRAVEL ESSENTIALS STRIP ===== */

.essentials {
  max-width: 1200px;
  margin: 0 auto;
  padding: 8px 16px 0;
}

.essentials-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.essentials-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 18px 20px;
}

.essentials-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.essentials-header .tips-icon {
  font-size: 20px;
  width: 28px;
  text-align: center;
}

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

.essentials-preview,
.essentials-full {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.essentials-card .content-section-toggle {
  background: none;
  border: none;
  color: var(--blue);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  padding: 6px 0 0;
  font-family: var(--font);
}

.essentials-card .content-section-toggle:hover {
  text-decoration: underline;
}

/* ===== MOBILE TOP RATED ===== */

.top-rated-mobile {
  display: none;
}

/* ===== DRAWER SEARCH ===== */

.sidebar-search {
  padding: 4px 20px 14px;
  margin-bottom: 0;
}

/* ===== PLACE CARDS (Facebook-style) ===== */

.subcategory-group { margin-bottom: 16px; }

.subcategory-group-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--blue);
  padding: 10px 0 6px;
  border-bottom: 2px solid var(--blue);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.place-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 24px;
  overflow: hidden;
}

.place-card-header {
  padding: 16px 20px 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.place-card-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  flex-shrink: 0;
}

.place-card-meta h3 {
  font-size: 16px;
  font-weight: 600;
}

.place-card-meta span {
  font-size: 13px;
  color: var(--text-secondary);
}

.place-card-image {
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  display: block;
  cursor: pointer;
}

.place-card-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px;
  cursor: pointer;
  margin-top: 12px;
}

.gallery-title {
  grid-column: 1 / -1;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 0 20px 6px;
  margin: 0;
}

.place-card-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
  border-radius: 4px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.place-card-gallery img:hover {
  transform: scale(1.03);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.place-card-body {
  padding: 16px 20px 12px;
}

.place-card-body p {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text);
}

.place-card-tag {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  background: var(--blue-light);
  color: var(--blue);
  margin-top: 8px;
}

.place-card-sections {
  padding: 4px 20px 8px;
}

.content-section {
  padding: 10px 0;
  border-top: 1px solid var(--border);
}

.content-section-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.content-section-icon {
  font-size: 16px;
}

.content-section-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
}

.content-section-preview {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.content-section-preview p {
  margin-bottom: 4px;
}

.content-section-full {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
}

.content-section-toggle {
  background: none;
  border: none;
  color: var(--blue);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  padding: 4px 0;
  font-family: var(--font);
}

.content-section-toggle:hover {
  text-decoration: underline;
}

.listen-btn {
  margin-left: auto;
  background: none;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text-secondary);
  font-size: 11px;
  font-weight: 500;
  cursor: pointer;
  padding: 2px 8px;
  font-family: var(--font);
  white-space: nowrap;
  transition: background 0.2s, border-color 0.2s;
}

.listen-btn:hover {
  background: var(--blue-light);
  border-color: var(--blue);
  color: var(--blue);
}

.listen-btn[data-state="playing"] {
  background: #e8f5e9;
  border-color: #4caf50;
  color: #2e7d32;
}

.place-card-actions {
  padding: 8px 20px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 16px;
}

.place-card-actions button,
.place-card-actions .action-btn {
  background: none;
  border: none;
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 600;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font);
  transition: background 0.15s;
}

.place-card-actions button:hover {
  background: var(--bg);
}

/* ===== COMMENTS IN CARDS ===== */

/* ── Star Rating ── */

.star-rating {
  padding: 12px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid var(--border);
}

.star-rating .stars {
  display: flex;
  gap: 2px;
}

.star-rating .star {
  font-size: 22px;
  color: #ddd;
  cursor: pointer;
  transition: color 0.15s, transform 0.15s;
  user-select: none;
  line-height: 1;
}

.star-rating .star.filled {
  color: #f4c542;
}

.star-rating .star.hover {
  color: #f4c542;
  transform: scale(1.15);
}

.star-rating.voted .star {
  cursor: default;
}

.star-rating .star.voted {
  color: #f4c542;
  text-shadow: 0 0 4px rgba(244,197,66,0.4);
}

.star-rating .rating-info {
  font-size: 13px;
  color: var(--text-secondary);
  white-space: nowrap;
}

/* ── Top Rated Sidebar ── */

.top-rated-item {
  display: flex;
  flex-direction: column;
  padding: 8px 10px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.15s;
}

.top-rated-item:hover {
  background: var(--blue-light);
}

.top-rated-item strong {
  font-size: 14px;
  color: var(--text);
  font-weight: 600;
}

.top-rated-stars {
  font-size: 12px;
  color: #f4c542;
  letter-spacing: 1px;
}

.top-rated-score {
  font-size: 11px;
  color: var(--text-secondary);
  margin-left: 6px;
}

/* ── Comments Toggle ── */

.comments-toggle-btn {
  display: block;
  width: 100%;
  padding: 8px;
  margin-top: 8px;
  border: none;
  background: var(--blue-light);
  color: var(--blue);
  font-size: 13px;
  font-weight: 500;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.15s;
}

.comments-toggle-btn:hover {
  background: #cfe4f2;
}

.comments-toggle-btn:last-child {
  margin-bottom: 0;
}

.comments-section {
  padding: 0 20px 16px;
  border-top: 1px solid var(--border);
}

.comment-toggle {
  background: none;
  border: none;
  padding: 12px 0;
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 600;
  cursor: pointer;
  font-family: var(--font);
  display: flex;
  align-items: center;
  gap: 6px;
  width: 100%;
}

.comment-toggle:hover { color: var(--text); }

.comments-container {
  display: none;
}

.comments-container.open {
  display: block;
}

.comment-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
  background: var(--bg);
  padding: 12px;
  border-radius: var(--radius);
}

.comment-form-row {
  display: flex;
  gap: 8px;
}

.comment-form input,
.comment-form textarea {
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 20px;
  font-size: 14px;
  font-family: var(--font);
  background: var(--white);
  outline: none;
  width: 100%;
}

.comment-form input:focus,
.comment-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 2px rgba(14,107,168,0.15);
}

.comment-form textarea {
  border-radius: var(--radius);
  resize: vertical;
}

.btn {
  padding: 8px 20px;
  border: none;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s;
  font-family: var(--font);
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
}

.btn-primary:hover { background: var(--blue-dark); }

.btn-secondary {
  background: transparent;
  color: var(--text-secondary);
  border: 1px solid var(--border);
}

.btn-secondary:hover { background: #eef0f3; }

.btn-small {
  padding: 6px 16px;
  font-size: 13px;
}

.comment {
  display: flex;
  gap: 10px;
  padding: 10px 0;
}

.comment + .comment {
  border-top: 1px solid var(--border);
}

.comment-avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 13px;
  flex-shrink: 0;
}

.comment-body {
  flex: 1;
}

.comment-author {
  font-weight: 600;
  font-size: 14px;
}

.comment-time {
  font-size: 12px;
  color: var(--text-secondary);
  margin-left: 6px;
}

.comment-text {
  font-size: 14px;
  margin-top: 2px;
  line-height: 1.5;
}

.empty-comments {
  text-align: center;
  padding: 16px;
  color: var(--text-secondary);
  font-size: 14px;
}

/* ===== CONTACT ===== */

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.contact-form input,
.contact-form textarea {
  padding: 7px 10px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 14px;
  font-family: var(--font);
  outline: none;
}

.contact-form textarea {
  min-height: 44px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 2px rgba(14,107,168,0.15);
}

.contact-status {
  margin-top: 8px;
  font-size: 14px;
  color: var(--text-secondary);
}

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

.footer {
  background: #132a3e;
  color: rgba(255,255,255,0.85);
  border-top: 4px solid var(--sand);
}

.footer-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 30px 24px 20px;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.4fr;
  gap: 28px;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.7;
  color: rgba(255,255,255,0.7);
  margin-top: 12px;
}

.footer-brand .logo {
  color: #fff;
  font-weight: 800;
}

.footer-heading {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: 0.3px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #fff;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.social-btn {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.15);
  transition: background 0.2s, transform 0.2s;
}

.social-btn:hover {
  background: var(--blue);
  border-color: var(--blue);
  transform: translateY(-3px);
}

.footer-contact .contact-form input,
.footer-contact .contact-form textarea {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
}

.footer-contact .contact-form input::placeholder,
.footer-contact .contact-form textarea::placeholder {
  color: rgba(255,255,255,0.5);
}

.footer-contact .contact-form input:focus,
.footer-contact .contact-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 2px rgba(14,107,168,0.25);
}

.footer-contact .contact-status {
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  margin-top: 6px;
}

.footer-contact .contact-privacy {
  color: rgba(255,255,255,0.5);
  text-align: left;
  font-size: 12px;
  margin-top: 6px;
}

.footer .footer-inner {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 14px 20px;
  text-align: center;
}

.footer p {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
}

/* ===== COOKIE BANNER ===== */

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 3000;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
  border: 1px solid var(--border);
  padding: 16px 20px;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  max-width: 720px;
  margin: 0 auto;
}

.cookie-banner.show {
  display: flex;
}

.cookie-banner p {
  font-size: 13px;
  color: var(--text-secondary);
  line-height: 1.5;
  flex: 1;
}

.cookie-banner a {
  color: var(--blue);
  font-weight: 600;
  white-space: nowrap;
}

.cookie-banner .btn {
  flex-shrink: 0;
  white-space: nowrap;
}

.cookie-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

/* ===== LEGAL PAGES ===== */

.legal-body {
  background: var(--bg);
}

.legal-main {
  max-width: 800px;
  margin: calc(var(--header-height) + 32px) auto 48px;
  padding: 0 20px;
}

.legal-page {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 40px;
}

.legal-page h1 {
  font-size: 28px;
  font-weight: 800;
  margin-bottom: 4px;
}

.legal-updated {
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.legal-page section {
  margin-bottom: 24px;
}

.legal-page h2 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}

.legal-page p,
.legal-page li {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
}

.legal-page p {
  margin-bottom: 8px;
}

.legal-page ul {
  padding-left: 20px;
  margin-bottom: 8px;
}

.legal-page li {
  margin-bottom: 6px;
}

.legal-page code {
  background: var(--blue-light);
  border-radius: 4px;
  padding: 1px 5px;
  font-size: 13px;
}

/* ===== HEADER SEARCH & MAP BUTTON ===== */

.header-search {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 240px;
}

.header-search .search-box { margin: 0; }

.map-icon-btn {
  position: absolute;
  left: 64px;
  top: 50%;
  transform: translateY(-50%);
  display: none;
  background: none;
  border: none;
  color: var(--blue);
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
}

.map-icon-btn:hover { background: var(--bg); }

/* ===== SIDEBAR MAP BUTTON ===== */

.sidebar-map-btn {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 8px 0;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  font-family: var(--font);
}

.sidebar-map-btn:hover { color: var(--blue); }

/* ===== NO RESULTS ===== */

.no-results {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-secondary);
}

.no-results strong {
  display: block;
  font-size: 18px;
  color: var(--text);
  margin-bottom: 6px;
}

/* ===== SKELETON LOADING ===== */

.skeleton-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin-bottom: 24px;
  padding: 16px 20px;
}

.skeleton-block {
  background: linear-gradient(90deg, #e9ecef 25%, #f1f3f5 37%, #e9ecef 63%);
  background-size: 400% 100%;
  animation: skeleton-shimmer 1.4s ease infinite;
  border-radius: 6px;
}

.skeleton-avatar { width: 40px; height: 40px; border-radius: 50%; margin-bottom: 12px; }
.skeleton-title { width: 40%; height: 18px; margin-bottom: 12px; }
.skeleton-img { width: 100%; height: 220px; margin-bottom: 12px; border-radius: 8px; }
.skeleton-line { height: 12px; }
.skeleton-line.w-90 { width: 90%; margin-bottom: 8px; }
.skeleton-line.w-70 { width: 70%; }

@keyframes skeleton-shimmer {
  0% { background-position: 100% 0; }
  100% { background-position: -100% 0; }
}

/* ===== AFFILIATE BOX ===== */

#affiliateSidebar {
  margin-top: 16px;
}

#affiliateMobile {
  display: none;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 16px;
}

.affiliate-box {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 16px 16px 12px;
}

.affiliate-heading {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border);
}

.affiliate-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid var(--border);
}

.affiliate-link:last-of-type {
  border-bottom: none;
}

.affiliate-link:hover {
  color: var(--blue);
}

.affiliate-icon {
  font-size: 18px;
  flex-shrink: 0;
}

.affiliate-meta {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.affiliate-label {
  font-size: 14px;
  font-weight: 600;
}

.affiliate-benefit {
  font-size: 12px;
  color: var(--text-secondary);
}

.affiliate-arrow {
  font-size: 20px;
  color: var(--blue);
  flex-shrink: 0;
}

.affiliate-disclosure {
  font-size: 11px;
  color: var(--text-secondary);
  margin-top: 8px;
}

.affiliate-empty {
  font-size: 13px;
  color: var(--text-secondary);
}

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

@media (max-width: 1024px) {
  .feed-layout {
    grid-template-columns: 260px 1fr 260px;
    gap: 16px;
    padding: 16px 12px;
  }
  .hero-cards {
    max-width: 600px;
    height: 280px;
  }
  .hero-card {
    width: 100px;
    height: 130px;
  }
}

@media (max-width: 900px) {
  .header-search {
    display: none;
  }
  .map-icon-btn {
    display: block;
  }
  #affiliateMobile {
    display: block;
  }
  #affiliateSidebar {
    display: none;
  }
  .feed-layout {
    grid-template-columns: 1fr;
  }
  .left-sidebar,
  .right-sidebar {
    display: none;
  }
  .essentials-grid {
    grid-template-columns: 1fr;
  }
  .top-rated-mobile {
    display: block;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
  }
  .top-rated-mobile h3 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--border);
  }
  #topRatedMobile {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 8px;
  }
  #topRatedMobile .top-rated-item {
    flex: 0 0 auto;
    width: 160px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }
  .hero-cards {
    max-width: 100%;
    height: 240px;
    padding: 0 8px;
  }
  .hero-card {
    width: 85px;
    height: 110px;
  }
  .hero-card:nth-child(1) { animation-name: orbit-1-m; animation-duration: 16s; }
  .hero-card:nth-child(2) { animation-name: orbit-2-m; animation-duration: 18s; }
  .hero-card:nth-child(3) { animation-name: orbit-3-m; animation-duration: 17s; }
  .hero-card:nth-child(4) { animation-name: orbit-4-m; animation-duration: 19s; }
  .hero-card:nth-child(5) { animation-name: orbit-5-m; animation-duration: 15s; }

  @keyframes orbit-1-m {
    0%   { transform: translate(-50%, -50%) translate(-110px, -40px); }
    25%  { transform: translate(-50%, -50%) translate(90px, -50px); }
    50%  { transform: translate(-50%, -50%) translate(100px, 45px); }
    75%  { transform: translate(-50%, -50%) translate(-100px, 50px); }
    100% { transform: translate(-50%, -50%) translate(-110px, -40px); }
  }
  @keyframes orbit-2-m {
    0%   { transform: translate(-50%, -50%) translate(100px, -35px); }
    25%  { transform: translate(-50%, -50%) translate(-90px, -45px); }
    50%  { transform: translate(-50%, -50%) translate(-105px, 40px); }
    75%  { transform: translate(-50%, -50%) translate(95px, 50px); }
    100% { transform: translate(-50%, -50%) translate(100px, -35px); }
  }
  @keyframes orbit-3-m {
    0%   { transform: translate(-50%, -50%) translate(-30px, -60px); }
    25%  { transform: translate(-50%, -50%) translate(60px, 5px); }
    50%  { transform: translate(-50%, -50%) translate(25px, 60px); }
    75%  { transform: translate(-50%, -50%) translate(-65px, 0px); }
    100% { transform: translate(-50%, -50%) translate(-30px, -60px); }
  }
  @keyframes orbit-4-m {
    0%   { transform: translate(-50%, -50%) translate(65px, 55px); }
    25%  { transform: translate(-50%, -50%) translate(-50px, 60px); }
    50%  { transform: translate(-50%, -50%) translate(-110px, -10px); }
    75%  { transform: translate(-50%, -50%) translate(50px, -55px); }
    100% { transform: translate(-50%, -50%) translate(65px, 55px); }
  }
  @keyframes orbit-5-m {
    0%   { transform: translate(-50%, -50%) translate(-85px, 25px); }
    25%  { transform: translate(-50%, -50%) translate(30px, -55px); }
    50%  { transform: translate(-50%, -50%) translate(80px, 15px); }
    75%  { transform: translate(-50%, -50%) translate(-40px, 50px); }
    100% { transform: translate(-50%, -50%) translate(-85px, 25px); }
  }
  .contact-form-row {
    grid-template-columns: 1fr;
  }
  .footer-main {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 24px 20px 16px;
  }
  .cookie-banner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (min-width: 901px) {
  .menu-btn {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero { padding: calc(var(--header-height) + 24px) 12px 24px; }
  .place-card-image { max-height: 280px; }
  .place-card-gallery img { aspect-ratio: 4 / 3; }
  .comment-form-row {
    flex-direction: column;
  }
  .legal-page {
    padding: 24px 20px;
  }
}

/* ===== LIGHTBOX ===== */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.lightbox.open {
  display: flex;
}

.lightbox-image {
  max-width: 92vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
}

.lightbox-close {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: rgba(255,255,255,0.8);
  font-size: 40px;
  cursor: pointer;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s;
  z-index: 1;
}

.lightbox-close:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: none;
  color: rgba(255,255,255,0.8);
  font-size: 48px;
  cursor: pointer;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s;
}

.lightbox-nav:hover {
  background: rgba(255,255,255,0.2);
  color: #fff;
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-counter {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
}

@media (max-width: 600px) {
  .lightbox-nav {
    width: 40px;
    height: 40px;
    font-size: 32px;
  }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
  .lightbox-close { top: 8px; right: 8px; font-size: 32px; }
}

/* ===== MAP OVERLAY ===== */

.map-overlay {
  position: fixed;
  inset: 0;
  z-index: 2001;
  display: none;
  align-items: center;
  justify-content: center;
}

.map-overlay.open {
  display: flex;
}

.map-overlay-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.85);
}

.map-overlay-content {
  position: relative;
  width: 90vw;
  height: 80vh;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
}

#fullscreenMap {
  width: 100%;
  height: 100%;
}

.map-overlay-close {
  position: absolute;
  top: 12px;
  right: 12px;
  background: rgba(0,0,0,0.6);
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  z-index: 2002;
  transition: background 0.2s;
}

.map-overlay-close:hover {
  background: rgba(0,0,0,0.85);
}

img[onerror] {
  background: #e9ecef;
  object-fit: contain;
}

.search-box {
  margin-bottom: 8px;
}

.search-box input {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 13px;
  outline: none;
  transition: border-color 0.2s;
}

.search-box input:focus {
  border-color: var(--blue);
}

.custom-marker {
  background: none !important;
  border: none !important;
}
.custom-marker-inner {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--blue);
  border: 2px solid #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,0.3);
  cursor: pointer;
}

.contact-privacy {
  font-size: 12px;
  color: #65676b;
  margin-top: 8px;
  text-align: center;
}

.scroll-top {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  border: none;
  font-size: 22px;
  cursor: pointer;
  box-shadow: 0 2px 12px rgba(0,0,0,0.25);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transition: background 0.2s, transform 0.2s;
  line-height: 1;
}
.scroll-top.visible { display: flex; }
.scroll-top:hover { background: var(--blue-dark); transform: scale(1.08); }

.active-dot { color: var(--blue); margin-right: 4px; font-size: 14px; }

/* ── Music Player (Inline Sidebar) ── */
.music-subheading {
  font-size: 12px;
  color: var(--text-secondary);
  margin-bottom: 8px;
  font-style: italic;
  font-weight: 700;
  text-align: center;
}
.music-player-inline {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(30, 30, 30, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #fff;
  padding: 6px 10px;
  border-radius: 40px;
  margin-bottom: 12px;
}
.music-player-inline .music-info {
  display: flex;
  flex-direction: column;
  min-width: 0;
  flex: 1;
}
.music-player-inline .music-title {
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.music-player-inline .music-note {
  font-size: 10px;
  opacity: 0.65;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.music-player-inline .music-play-btn {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: none;
  background: var(--blue);
  color: #fff;
  font-size: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
  line-height: 1;
}
.music-player-inline .music-play-btn:hover { background: var(--blue-dark); }
.music-player-inline .music-prev,
.music-player-inline .music-next {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.15);
  color: #fff;
  font-size: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
  line-height: 1;
}
.music-player-inline .music-prev:hover,
.music-player-inline .music-next:hover { background: rgba(255,255,255,0.3); }
.music-player-inline .music-volume {
  width: 50px;
  height: 3px;
  -webkit-appearance: none;
  appearance: none;
  background: rgba(255,255,255,0.3);
  border-radius: 2px;
  outline: none;
  cursor: pointer;
}
.music-player-inline .music-volume::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}
.music-player-inline .music-volume::-moz-range-thumb {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
  border: none;
}
.music-player-inline .music-close {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: none;
  background: transparent;
  color: rgba(255,255,255,0.45);
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: color 0.2s;
  line-height: 1;
}
.music-player-inline .music-close:hover { color: #fff; }

