:root {
  --bg: #0d0a12;
  --bg-2: #16111c;
  --card: #1c1524;
  --line: #2b2236;
  --pink: #e31c5f;
  --pink-2: #ff3d7a;
  --text: #f4eef6;
  --muted: #b7a8c2;
  --radius: 14px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Segoe UI", system-ui, sans-serif;
  background: radial-gradient(1200px 500px at 50% -80px, #2a1230 0%, var(--bg) 55%);
  color: var(--text);
  min-height: 100vh;
  line-height: 1.5;
}

a { color: var(--pink-2); text-decoration: none; }
a:hover { color: #fff; }
img { max-width: 100%; display: block; }
.wrap { width: min(1180px, calc(100% - 28px)); margin: 0 auto; }

.site-header {
  position: sticky; top: 0; z-index: 20;
  background: rgba(13, 10, 18, .92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}
.header-inner { display: flex; align-items: center; gap: 20px; min-height: 64px; }
.logo {
  display: flex; align-items: center; gap: 8px;
  color: #fff; font-weight: 800; letter-spacing: .02em; font-size: 1.15rem;
}
.logo svg { width: 28px; height: 28px; color: var(--pink); flex-shrink: 0; }
.logo .brand { white-space: nowrap; }
.logo .brand .tld { color: var(--pink-2); }
.main-nav { margin-left: auto; display: flex; gap: 18px; }
.main-nav a { color: var(--text); font-weight: 600; }
.main-nav a:hover { color: var(--pink-2); }
.nav-toggle { display: none; margin-left: auto; background: none; border: 0; color: #fff; font-size: 1.4rem; }

.filter-strip {
  padding: 0 0 14px;
  background: transparent;
}
.filter-mobile-bar { display: none; }
.filter-open-btn {
  width: 100%;
  height: 48px;
  border-radius: 999px;
}
.filter-open-btn .when-open { display: none; }
.filter-strip.is-open .filter-open-btn .when-closed { display: none; }
.filter-strip.is-open .filter-open-btn .when-open { display: inline; }
.filter-form { position: relative; }
.filter-row {
  display: flex;
  align-items: stretch;
  gap: 10px;
  flex-wrap: wrap;
}
.filter-dd { position: relative; flex: 1 1 180px; min-width: 160px; }
.filter-trigger,
.filter-chip {
  width: 100%;
  height: 48px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: #1a1220;
  font-weight: 700;
  font-size: .95rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 0 16px 0 18px;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0,0,0,.18);
}
.filter-trigger span { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.filter-trigger svg { width: 18px; height: 18px; color: #6b6274; flex-shrink: 0; }
.filter-chip {
  width: auto;
  flex: 0 0 auto;
  justify-content: center;
  padding: 0 16px;
  color: #2a2233;
}
.filter-chip svg { width: 18px; height: 18px; color: var(--pink); }
.filter-chip.is-on,
.filter-trigger.has-value {
  outline: 2px solid var(--pink);
}
.filter-submit {
  height: 48px;
  border-radius: 999px;
  padding: 0 22px;
  gap: 8px;
  flex: 0 0 auto;
  box-shadow: 0 4px 16px rgba(227, 28, 95, .35);
}
.filter-submit svg { width: 18px; height: 18px; }
.filter-menu {
  position: absolute;
  z-index: 30;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: #fff;
  color: #1a1220;
  border-radius: 16px;
  max-height: min(360px, 70vh);
  overflow: auto;
  padding: 8px;
  box-shadow: 0 12px 40px rgba(0,0,0,.28);
}
.filter-menu-city { min-width: 260px; }
.filter-opt {
  display: block;
  width: 100%;
  text-align: left;
  background: none;
  border: 0;
  border-radius: 10px;
  padding: 10px 12px;
  font-weight: 600;
  color: #1a1220;
  cursor: pointer;
}
.filter-opt:hover,
.filter-opt.active { background: #f3e6ef; color: var(--pink); }
.filter-search-input {
  width: 100%;
  border: 1px solid #e4d6e0;
  border-radius: 10px;
  padding: 10px 12px;
  margin-bottom: 6px;
  font: inherit;
}
.filter-panel {
  margin-top: 10px;
  background: #fff;
  color: #1a1220;
  border-radius: 16px;
  padding: 16px 18px 18px;
  box-shadow: 0 12px 40px rgba(0,0,0,.22);
}
.filter-panel[hidden],
.filter-menu[hidden] { display: none !important; }
.filter-panel-title { margin: 0 0 12px; font-weight: 800; }
.filter-checks {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 8px 14px;
}
.filter-checks label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: .92rem;
  cursor: pointer;
}
.filter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 12px;
}
.filter-grid label { display: flex; flex-direction: column; gap: 6px; font-weight: 700; font-size: .85rem; }
.filter-grid select {
  height: 42px;
  border-radius: 10px;
  border: 1px solid #e4d6e0;
  padding: 0 10px;
  font: inherit;
  background: #fff;
}
.filter-reset-row { margin: 10px 0 0; }
.filter-reset-row a { color: #fff; font-weight: 700; font-size: .9rem; }

.lead a { color: var(--pink-2); font-weight: 700; }

.city-chips {
  display: flex; flex-wrap: wrap; gap: 8px;
  padding: 18px 0 8px;
}
.city-chips a {
  background: #241b2e; color: #efe6f4; border: 1px solid var(--line);
  border-radius: 999px; padding: 6px 12px; font-size: .86rem; font-weight: 600;
}
.city-chips a:hover { border-color: var(--pink); color: #fff; background: #2f1c33; }
.city-chips.compact { padding-top: 0; }

.hero { padding: 10px 0 18px; }
.hero h1 { font-size: clamp(1.5rem, 3vw, 2.1rem); margin: 0 0 8px; }
.lead { color: var(--muted); margin: 0; max-width: 70ch; }

.ad-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.ad-card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.ad-photo {
  position: relative;
  aspect-ratio: 3 / 4;
  background: #000;
  display: block;
  overflow: hidden;
  width: 100%;
  flex: 0 0 auto;
  min-height: 0;
  touch-action: pan-y;
}
.ad-photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
}
.ad-photo-track {
  position: absolute;
  inset: 0;
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  cursor: grab;
  user-select: none;
}
.ad-photo-track.is-dragging { cursor: grabbing; }
.ad-photo-track::-webkit-scrollbar { display: none; }
.ad-photo-slide {
  position: relative;
  flex: 0 0 100%;
  min-width: 100%;
  max-width: 100%;
  height: 100%;
  scroll-snap-align: start;
  scroll-snap-stop: always;
}
.ad-photo-slide img {
  position: absolute;
  inset: 0;
}
.badge-count, .badge-status {
  position: absolute; left: 8px; color: #fff; font-size: .78rem; font-weight: 700;
  background: rgba(0,0,0,.55); border-radius: 8px; padding: 3px 8px;
  z-index: 2; pointer-events: none;
}
.badge-count { top: 8px; }
.badge-status { bottom: 8px; }
.ad-meta { padding: 10px 12px 12px; display: flex; flex-direction: column; gap: 8px; }
.ad-meta a { color: var(--text); font-size: .92rem; }
.ad-meta strong { font-size: 1rem; }
.ad-meta span { color: var(--muted); font-weight: 500; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  border: 0; border-radius: 10px; cursor: pointer; font-weight: 700;
  padding: 10px 14px; font-size: .95rem;
}
.btn-pink { background: var(--pink); color: #fff; }
.btn-pink:hover { background: var(--pink-2); color: #fff; }
.btn-dark { background: #2a2433; color: #fff; }
.btn-block { width: 100%; }
.btn-xl { width: 100%; padding: 14px; font-size: 1.05rem; }

.pager {
  display: flex; gap: 6px; justify-content: center; flex-wrap: wrap;
  padding: 28px 0;
}
.pager a, .pager span {
  min-width: 40px; height: 40px; padding: 0 10px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 10px; background: var(--card); border: 1px solid var(--line); color: var(--text);
}
.pager .current { background: var(--pink); border-color: var(--pink); }
.pager .disabled, .pager .dots { opacity: .5; }

.seo-block {
  background: var(--bg-2); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 24px 26px; margin: 10px 0 40px;
}
.seo-block h2 { font-size: 1.25rem; margin: 1.2em 0 .5em; }
.seo-block h2:first-child { margin-top: 0; }
.seo-block p, .seo-block li { color: #d8cce0; }
.area-list { columns: 2; gap: 24px; padding-left: 18px; }
.faq p { margin: .7em 0; }
.nearby { margin-top: 1.2em; }

.crumbs { display: flex; gap: 8px; flex-wrap: wrap; color: var(--muted); font-size: .9rem; padding-top: 16px; }
.crumbs a { color: var(--muted); }
.crumbs strong { color: var(--text); }

.profile {
  display: grid; grid-template-columns: minmax(240px, 360px) 1fr; gap: 28px;
  padding: 18px 0 36px;
}
.gallery { max-width: 360px; }
.gallery-main { position: relative; border-radius: var(--radius); overflow: hidden; background: #000; touch-action: pan-y; }
.gallery-track {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-y;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  cursor: grab;
  user-select: none;
}
.gallery-track.is-dragging { cursor: grabbing; }
.gallery-track::-webkit-scrollbar { display: none; }
.gallery-track img {
  flex: 0 0 100%;
  min-width: 100%;
  max-width: 100%;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  scroll-snap-align: start;
  scroll-snap-stop: always;
  pointer-events: none;
}
.gal-btn {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 42px; height: 42px; border: 0; border-radius: 50%;
  background: rgba(0,0,0,.55); color: #fff; font-size: 1.6rem; cursor: pointer;
  z-index: 2;
}
.gal-btn.prev { left: 10px; }
.gal-btn.next { right: 10px; }
.thumbs { display: grid; grid-template-columns: repeat(6, 1fr); gap: 6px; margin-top: 8px; }
.thumb { border: 2px solid transparent; padding: 0; background: none; border-radius: 8px; overflow: hidden; cursor: pointer; }
.thumb.active, .thumb:hover { border-color: var(--pink); }
.thumb img { aspect-ratio: 1; object-fit: cover; width: 100%; }

.kicker { color: var(--pink-2); font-weight: 700; margin: 0 0 6px; text-transform: uppercase; font-size: .8rem; letter-spacing: .06em; }
.profile-info h1 { margin: 0 0 6px; font-size: 2rem; }
.profile-info h1 span { color: var(--muted); font-weight: 600; font-size: 1.2rem; }
.where { margin: 0 0 16px; }
.warn { color: #f3c16b; font-size: .9rem; }
.stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 10px 16px;
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 14px; margin: 16px 0;
}
.stats dt { color: var(--muted); font-size: .8rem; }
.stats dd { margin: 0; font-weight: 700; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; padding: 0; }
.tags li { background: #2a1c31; border: 1px solid var(--line); border-radius: 999px; padding: 5px 10px; font-size: .85rem; }
.related { padding-bottom: 40px; }
.related h2 { margin-bottom: 14px; }

.prose { padding: 24px 0 48px; max-width: 72ch; }
.prose h1 { margin-top: 0; }
.empty { padding: 30px; background: var(--card); border-radius: var(--radius); }

.site-footer {
  background: #0a0710; border-top: 1px solid var(--line);
  padding: 36px 0 24px; margin-top: 20px;
}
.site-footer h3 { margin: 0 0 12px; }
.footer-okresy {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px 24px;
  margin: 0 0 22px;
}
.footer-kraj h4 {
  margin: 0 0 6px;
  font-size: .78rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #9a8aa6;
}
.footer-kraj .footer-cities { margin-bottom: 12px; }
.footer-cities, .footer-links {
  display: flex; flex-wrap: wrap; gap: 8px 14px;
  list-style: none; padding: 0; margin: 0 0 18px;
}
.footer-cities a, .footer-links a { color: var(--muted); font-size: .9rem; }
.disclaimer, .copy { color: #8d7f97; font-size: .82rem; }

.age-gate {
  position: fixed; inset: 0; z-index: 50;
  background: rgba(6,4,10,.72); display: grid; place-items: center; padding: 20px;
}
.age-gate[hidden] { display: none !important; }
.age-box {
  background: #fff; color: #1a1220; max-width: 520px; width: 100%;
  border-radius: 18px; padding: 32px 28px; text-align: center;
}
.age-box h2 { margin: 0 0 8px; }
.age-box p { color: #4d4456; }
.logo-mark { font-weight: 800; font-size: 1.4rem; margin: 12px 0 18px; }
.logo-mark .tld { color: var(--pink); }
.age-actions { display: flex; gap: 10px; justify-content: center; flex-wrap: wrap; }
.age-note { font-size: .8rem; margin-top: 16px; }

body.nav-open .main-nav { display: flex; }

@media (max-width: 1100px) {
  .ad-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 1024px) {
  .profile { grid-template-columns: 1fr; }
  .gallery { max-width: none; }
}
@media (max-width: 900px) {
  .ad-grid { grid-template-columns: repeat(3, 1fr); }
  .filter-dd { flex: 1 1 calc(50% - 10px); }
  .filter-chip { flex: 1 1 calc(50% - 10px); }
  .filter-submit { flex: 1 1 100%; }
  .footer-okresy { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 740px) {
  .ad-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .area-list { columns: 1; }
  .nav-toggle { display: block; }
  .main-nav {
    display: none; position: absolute; top: 64px; left: 0; right: 0;
    background: #120c18; flex-direction: column; padding: 12px 18px 18px; gap: 12px;
    border-bottom: 1px solid var(--line);
  }
  .thumbs { grid-template-columns: repeat(4, 1fr); }
  .filter-dd, .filter-chip, .filter-submit { flex: 1 1 100%; }
  .filter-checks { grid-template-columns: 1fr 1fr; }
  .filter-mobile-bar { display: block; padding-bottom: 2px; }
  .filter-form {
    display: none;
    margin-top: 10px;
  }
  .filter-strip.is-open .filter-form {
    display: block;
    animation: filterSlide .22s ease;
  }
  @keyframes filterSlide {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: none; }
  }
  .footer-okresy { grid-template-columns: 1fr; }
}
@media (max-width: 420px) {
  .ad-grid { grid-template-columns: 1fr 1fr; }
}
