/* ════════════════════════════════════════════════════════════
   LUXURY STYLE — zajednički stylesheet za sve stranice
   Specifikacija: LUXURY-STYLE.md
   Učitava se NAKON style.css (override po potrebi).
   ════════════════════════════════════════════════════════════ */

/* ── Page wrapper (razmak za fiksni bottom-nav) ──────────────── */
.lux-page {
  flex: 1;
  padding-bottom: 96px;
}

/* ── Hero ────────────────────────────────────────────────────── */
.lux-hero {
  position: relative;
  padding: 40px 24px 32px;
  text-align: center;
}
.lux-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 1px; height: 32px;
  background: linear-gradient(to bottom, transparent, var(--accent));
}
.lux-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 14px;
}
.lux-title {
  font-family: 'Cinzel', serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--text);
  letter-spacing: 0.08em;
  line-height: 1.15;
  margin-bottom: 16px;
}
.lux-ornament {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 16px;
}
.lux-ornament::before,
.lux-ornament::after {
  content: '';
  flex: 1;
  max-width: 60px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--accent));
}
.lux-ornament::after {
  background: linear-gradient(to left, transparent, var(--accent));
}
.lux-ornament svg {
  width: 14px; height: 14px;
  stroke: var(--accent); fill: none;
  stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round;
}
.lux-tagline {
  font-family: 'Cormorant Garant', serif;
  font-size: 1rem;
  font-style: italic;
  font-weight: 400;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ── Section label (linije s obje strane) ────────────────────── */
.lux-section-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  text-align: center;
  margin: 4px 24px 20px;
  position: relative;
}
.lux-section-label::before,
.lux-section-label::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 22%; height: 1px;
  background: rgba(196,169,107,0.25);
}
.lux-section-label::before { left: 0; }
.lux-section-label::after { right: 0; }

/* ── Chapter (ikona + naslov + linija) — host stranica ───────── */
.lux-chapter {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 36px 24px 20px;
}
.lux-hero + .lux-chapter {
  margin-top: 8px;
}
.lux-chapter-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(196,169,107,0.3);
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.lux-chapter-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.lux-chapter-icon svg.icon-phone,
.lux-link-icon svg.icon-phone,
.lux-shortcut-icon svg.icon-phone,
.lux-ornament svg.icon-phone {
  stroke-width: 2.13;
}
.lux-chapter-title {
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  white-space: nowrap;
}
.lux-chapter-rule {
  flex: 1;
  height: 1px;
  background: linear-gradient(to right, rgba(196,169,107,0.4), transparent);
}

/* ── Istaknuta statistika ────────────────────────────────────── */
.lux-section { padding: 0 24px; margin-bottom: 32px; }
.lux-stat {
  text-align: center;
  padding: 20px 0 24px;
  border-top: 1px solid rgba(196,169,107,0.15);
  border-bottom: 1px solid rgba(196,169,107,0.15);
  margin-bottom: 8px;
}
.lux-stat--borderless {
  padding: 6px 0 10px;
  border-top: none;
  border-bottom: none;
  margin-bottom: 0;
}
.lux-section--compact {
  margin-bottom: 16px;
}
.lux-chapter + .lux-section--compact {
  margin-top: -6px;
}
.lux-section--compact + .lux-notes {
  margin-top: 6px;
  margin-bottom: 28px;
}
.lux-stat-number {
  font-family: 'Cinzel', serif;
  font-size: 3rem;
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}
a.lux-stat-link {
  display: block;
  text-decoration: none;
  color: var(--accent);
  -webkit-tap-highlight-color: transparent;
  transition: opacity 0.18s ease;
}
a.lux-stat-link:active { opacity: 0.75; }
a.lux-stat-link.lux-stat-link--text {
  font-size: 2rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
#hitni-brojevi { scroll-margin-top: 72px; }
.lux-stat-label {
  font-size: 0.65rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--text-muted);
  font-weight: 400;
}
.lux-stat-location {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(196,169,107,0.12);
}
.lux-stat > .lux-stat-location:only-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}
.lux-stat--borderless:has(> .lux-stat-location:only-child) {
  padding: 0;
}
.lux-stat-location .lux-detail-value {
  font-size: 1.2rem;
  margin-bottom: 6px;
}
.lux-stat-location .lux-detail-note {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.95rem;
  margin-top: 0;
}

/* ── Vrijeme (check-in / check-out) ──────────────────────────── */
.lux-times {
  display: flex;
  margin: 0 24px 32px;
  border-top: 1px solid rgba(196,169,107,0.15);
  border-bottom: 1px solid rgba(196,169,107,0.15);
}
.lux-time { flex: 1; padding: 20px 0; text-align: center; }
.lux-time + .lux-time { border-left: 1px solid rgba(196,169,107,0.15); }
.lux-time-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.lux-time-value {
  font-family: 'Cinzel', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--accent);
  line-height: 1;
}

/* ── Detail redovi (umjesto kartica) ─────────────────────────── */
.lux-details { margin-bottom: 32px; }
.lux-detail { padding: 20px 24px; position: relative; }
.lux-detail::after {
  content: '';
  position: absolute;
  bottom: 0; left: 24px; right: 24px;
  height: 1px;
  background: rgba(196,169,107,0.1);
}
.lux-detail:last-child::after { display: none; }
.lux-detail-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}
.lux-detail-icon svg {
  width: 13px; height: 13px;
  stroke: var(--accent); fill: none;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}
.lux-detail-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}
.lux-detail-value {
  font-family: 'Cormorant Garant', serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.5;
}
.lux-detail-value strong {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.05em;
}
.lux-detail-value a,
.lux-detail-value a:link,
.lux-detail-value a:visited {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  -webkit-text-fill-color: var(--accent);
}
.lux-detail-value a svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  stroke: none;
  flex-shrink: 0;
}
.lux-detail-note {
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-top: 6px;
}
.lux-detail-note a { color: var(--accent); text-decoration: none; }

/* ── Preporuke (kartice — luxury stil) ───────────────────────── */
.lux-rec-filters-wrap {
  position: relative;
  margin: 8px 0 18px;
}
.lux-rec-filters-wrap::before,
.lux-rec-filters-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 4px;
  width: 28px;
  pointer-events: none;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.2s;
}
.lux-rec-filters-wrap::before {
  left: 0;
  background: linear-gradient(to right, var(--bg, #FAF8F5), transparent);
}
.lux-rec-filters-wrap::after {
  right: 0;
  width: 52px;
  background: linear-gradient(to left, var(--bg, #FAF8F5) 35%, transparent);
}
.lux-rec-filters-wrap.can-scroll-left::before { opacity: 1; }
.lux-rec-filters-wrap.can-scroll-right::after { opacity: 1; }
.lux-rec-filters-hint {
  position: absolute;
  right: 10px;
  top: 50%;
  z-index: 2;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  color: var(--accent, #C4A96B);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-50%);
  transition: opacity 0.25s, visibility 0.25s, transform 0.25s;
}
.lux-rec-filters-wrap.can-scroll-right .lux-rec-filters-hint {
  opacity: 0.85;
  visibility: visible;
}
.lux-rec-filters-wrap.can-scroll-right.is-intro .lux-rec-filters-hint {
  animation: lux-rec-scroll-hint 2.4s ease-in-out 2;
}
.lux-rec-filters-hint svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
@keyframes lux-rec-scroll-hint {
  0%, 100% { transform: translateY(-50%) translateX(0); opacity: 0.85; }
  50% { transform: translateY(-50%) translateX(5px); opacity: 1; }
}
.lux-rec-filters {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 0 48px 4px 20px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  scroll-snap-type: x proximity;
  scroll-padding-inline: 20px;
}
.lux-rec-filters::-webkit-scrollbar { display: none; }
.lux-rec-filter {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 4px 10px;
  border: none;
  border-bottom: 2px solid transparent;
  background: none;
  cursor: pointer;
  scroll-snap-align: start;
  -webkit-tap-highlight-color: transparent;
  transition: border-color 0.2s, opacity 0.2s;
}
.lux-rec-filter-icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  border: 1px solid rgba(196,169,107,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.2s, background 0.2s;
}
.lux-rec-filter-icon svg {
  width: 14px;
  height: 14px;
  stroke: var(--text-muted, #8a7f74);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.2s;
}
.lux-rec-filter-label {
  font-family: 'Cinzel', serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text, #3a3530);
  white-space: nowrap;
  transition: color 0.2s;
}
.lux-rec-filter.active {
  border-bottom-color: var(--accent, #C4A96B);
}
.lux-rec-filter.active .lux-rec-filter-icon {
  border-color: rgba(196,169,107,0.45);
  background: rgba(196,169,107,0.08);
}
.lux-rec-filter.active .lux-rec-filter-icon svg {
  stroke: var(--accent, #C4A96B);
}
.lux-rec-filter.active .lux-rec-filter-label {
  color: var(--accent, #C4A96B);
}
.lux-rec-filter:not(.active) { opacity: 0.72; }
.lux-rec-filter:active { opacity: 0.75; }
.lux-rec-section.is-hidden { display: none; }
.lux-rec-section > .lux-rec-grid {
  margin-bottom: 28px;
}
.lux-rec-away {
  margin-bottom: 36px;
  padding-top: 20px;
  border-top: 1px solid rgba(196,169,107,0.12);
}
.lux-rec-away:not(:has(.lux-rec-card)) {
  display: none;
}
.lux-rec-away-title {
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  text-align: center;
  margin: 0 24px 20px;
}
.lux-rec-away-title::before,
.lux-rec-away-title::after {
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 36px;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(196,169,107,0.4));
  margin: 0 10px 3px;
}
.lux-rec-away-title::after {
  background: linear-gradient(to left, transparent, rgba(196,169,107,0.4));
}
.lux-rec-away .lux-rec-grid {
  margin-bottom: 0;
}
.lux-rec-place {
  font-weight: 400;
}
.lux-rec-card-overlay .lux-rec-place {
  color: rgba(255, 255, 255, 0.78);
}
.lux-rec-card-sheet-head .lux-rec-place {
  color: var(--text-muted);
}
.lux-rec-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 0 24px 36px;
}
.lux-rec-card {
  position: relative;
  height: 240px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(196,169,107,0.2);
  box-shadow: var(--shadow);
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
}
.lux-rec-card-hero {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 168px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(196,169,107,0.15), rgba(58,53,48,0.08));
}
.lux-rec-card-hero img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lux-rec-distance {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  font-family: 'Jost', sans-serif;
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #fff;
  background: rgba(20, 18, 15, 0.58);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(196, 169, 107, 0.38);
  padding: 5px 9px;
  border-radius: 999px;
  line-height: 1;
  pointer-events: none;
}
.lux-rec-card-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 12px 14px;
  z-index: 1;
  background: linear-gradient(
    to top,
    rgba(58,53,48,0.88) 0%,
    rgba(58,53,48,0.45) 42%,
    transparent 100%
  );
  transition: opacity 0.25s ease;
}
.lux-rec-card.is-expanded .lux-rec-card-overlay {
  opacity: 0;
  pointer-events: none;
}
.lux-rec-card-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
}
.lux-rec-card-head-text {
  flex: 1;
  min-width: 0;
}
.lux-rec-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  height: 72px;
  box-sizing: border-box;
  padding: 12px 16px 14px;
  background: var(--white);
  border-top: 1px solid rgba(196,169,107,0.12);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  overflow: hidden;
  transition: height 0.28s cubic-bezier(0.32, 0.72, 0, 1);
}
.lux-rec-card.is-expanded .lux-rec-card-body {
  height: 100%;
  border-top-color: transparent;
  padding: 14px 16px 16px;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}
.lux-rec-card-sheet-head {
  display: none;
  align-items: flex-end;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}
.lux-rec-card.is-expanded .lux-rec-card-sheet-head {
  display: flex;
}
.lux-rec-card-sheet-head .lux-rec-card-name {
  color: var(--text);
}
.lux-rec-card-sheet-head .lux-rec-card-meta {
  color: var(--text-muted);
}
.lux-rec-card-sheet-head .lux-rec-meta-sep {
  color: var(--text-muted);
  opacity: 0.6;
}
.lux-rec-card-sheet-head .lux-rec-category {
  color: var(--text-muted);
}
.lux-rec-card-name {
  font-family: 'Cinzel', serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: #fff;
  margin: 0 0 3px;
  line-height: 1.3;
}
.lux-rec-card-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  margin: 0;
  font-family: 'Jost', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  line-height: 1.35;
  color: rgba(255,255,255,0.82);
}
.lux-rec-stars {
  --rating: 0;
  --star-empty: rgba(255, 255, 255, 0.32);
  display: inline-block;
  font-size: 0.7rem;
  line-height: 1;
  letter-spacing: 0.05em;
  vertical-align: baseline;
  flex-shrink: 0;
}
.lux-rec-stars::before {
  content: '★★★★★';
  background: linear-gradient(
    90deg,
    var(--accent) 0%,
    var(--accent) calc(var(--rating) / 5 * 100%),
    var(--star-empty) calc(var(--rating) / 5 * 100%),
    var(--star-empty) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.lux-rec-card-sheet-head .lux-rec-stars {
  --star-empty: color-mix(in srgb, var(--text-muted) 40%, transparent);
}
.lux-rec-rating {
  font-weight: 500;
  color: var(--accent);
}
.lux-rec-meta-sep {
  color: rgba(255,255,255,0.55);
  opacity: 1;
}
.lux-rec-category {
  color: rgba(255,255,255,0.72);
}
.lux-rec-card-desc {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-muted);
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.lux-rec-card.is-expanded .lux-rec-card-desc {
  display: block;
  -webkit-line-clamp: unset;
  overflow: visible;
}
html[data-theme="dark"] .lux-rec-card-body {
  background: var(--card);
}
html[data-theme="dark"] .lux-rec-card.is-expanded .lux-rec-card-body {
  background: var(--card);
}
.lux-rec-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.lux-rec-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex-shrink: 0;
  padding: 9px 18px;
  border-radius: 40px;
  border: 1px solid rgba(196,169,107,0.3);
  background: none;
  font-family: 'Jost', sans-serif;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
  transition: opacity 0.18s ease;
}
.lux-rec-action--compact {
  padding: 7px 12px;
  font-size: 0.58rem;
  letter-spacing: 0.14em;
  white-space: nowrap;
}
.lux-rec-action--compact svg {
  width: 11px;
  height: 11px;
}
.lux-rec-action svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.lux-rec-action svg polygon {
  fill: var(--accent);
  stroke: none;
}
.lux-rec-action--primary {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--bg);
}
.lux-rec-action--primary svg {
  stroke: var(--bg);
}
.lux-rec-action--primary svg polygon {
  fill: var(--bg);
  stroke: none;
}
.lux-rec-action:active { opacity: 0.65; }
html[data-theme="dark"] .lux-rec-card {
  background: var(--card);
}

/* ── Transport picker ────────────────────────────────────────── */
.lux-transport-picker {
  display: flex;
  gap: 8px;
  margin: 0 0 16px;
}
.lux-transport-picker-btn {
  flex: 1;
  min-width: 0;
  padding: 10px 6px;
  border-radius: 10px;
  border: 1px solid rgba(196,169,107,0.25);
  background: none;
  font-family: 'Jost', sans-serif;
  font-size: 0.52rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1.3;
  -webkit-tap-highlight-color: transparent;
  transition: border-color 0.18s, color 0.18s, background 0.18s;
}
.lux-transport-picker-btn.active {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(196,169,107,0.08);
}
.lux-transport-picker-btn:active { opacity: 0.75; }
.lux-transport-panel { display: none; }
.lux-transport-panel.active { display: block; }
.lux-transport-panel .lux-detail-value + .lux-detail-value { margin-top: 10px; }
.lux-transport-panel .lux-detail-note { margin-top: 14px; }

/* ── Koraci (rimski brojevi) ─────────────────────────────────── */
.lux-steps { margin: 0 24px 32px; }
.lux-step {
  display: flex;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(196,169,107,0.08);
}
.lux-step:last-child { border-bottom: none; }
.lux-step-num {
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  color: var(--accent);
  opacity: 0.6;
  min-width: 20px;
  padding-top: 3px;
}
.lux-step-text {
  font-family: 'Cormorant Garant', serif;
  font-size: 1rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.55;
}

/* ── Napomene / savjeti (em-dash lista) ──────────────────────── */
.lux-notes { padding: 0 24px; margin-bottom: 32px; }
.lux-notes-list { list-style: none; padding: 0; margin: 0; }
.lux-notes-list li {
  display: flex;
  align-items: baseline;
  gap: 14px;
  font-family: 'Cormorant Garant', serif;
  font-size: 1rem;
  font-style: italic;
  color: var(--text-muted);
  line-height: 1.6;
  padding: 10px 0;
  border-bottom: 1px solid rgba(196,169,107,0.08);
}
.lux-notes-list li:last-child { border-bottom: none; }
.lux-notes-list li::before {
  content: '\2014';
  font-family: 'Cinzel', serif;
  font-size: 0.7rem;
  color: var(--accent);
  flex-shrink: 0;
}

/* ── Okvirna kartica (naslov na border liniji) ──────────────── */
.lux-card {
  margin: 14px 24px 16px;
  border: 1px solid rgba(196,169,107,0.2);
  border-radius: 16px;
  padding: 26px 22px 20px;
  position: relative;
}
.lux-page:has(> .lux-card:first-child) {
  padding-top: 18px;
}
.lux-page > .lux-card:first-child {
  margin-top: 6px;
}
.lux-card > .lux-card-label {
  position: absolute;
  top: 0;
  left: 18px;
  transform: translateY(-50%);
  background: var(--bg);
  padding: 0 8px;
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  line-height: 1.4;
  max-width: calc(100% - 36px);
  z-index: 1;
}
html[data-fontsize="s"] .lux-card > .lux-card-label { font-size: 10px; }
html[data-fontsize="l"] .lux-card > .lux-card-label { font-size: 14px; }
.lux-card p {
  font-family: 'Jost', sans-serif;
  font-size: 0.875rem;
  color: var(--text);
  line-height: 1.65;
  margin: 0;
}
.lux-card p + p { margin-top: 10px; }
.lux-card a { color: var(--accent); text-decoration: none; }
.lux-card strong { color: var(--accent); font-weight: 600; }
.lux-card ul {
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
}
.lux-card li {
  display: flex;
  align-items: baseline;
  gap: 12px;
  font-family: 'Jost', sans-serif;
  font-size: 0.875rem;
  color: var(--text);
  line-height: 1.6;
  padding: 7px 0;
}
.lux-card li + li { border-top: 1px solid rgba(196,169,107,0.08); }
.lux-card li::before {
  content: '\2014';
  color: var(--accent);
  flex-shrink: 0;
}
.lux-card ul.lux-list-plain li::before { content: none; }
.lux-card:has(.lux-list-plain) {
  margin-left: 24px;
  margin-right: 24px;
  padding-left: 24px;
  padding-right: 24px;
}
.lux-card ul.lux-list-plain li {
  align-items: center;
  flex-wrap: nowrap;
  white-space: nowrap;
  gap: 8px;
  font-size: 0.8125rem;
}
.lux-card ul.lux-list-plain li .lux-list-dot {
  color: var(--accent);
  flex-shrink: 0;
  line-height: 1;
  opacity: 0.75;
}

/* ── Interaktivna mapa (Leaflet) ─────────────────────────────── */
.lux-map-wrap {
  margin: 0 24px 16px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(196,169,107,0.25);
  box-shadow: 0 3px 16px rgba(58,53,48,0.08);
}
.lux-map-filters {
  display: flex;
  gap: 8px;
  margin: 0 24px 14px;
  flex-wrap: wrap;
}
.lux-map-filter {
  flex: 1;
  min-width: 0;
  padding: 10px 8px;
  border-radius: 10px;
  border: 1px solid rgba(196,169,107,0.25);
  background: none;
  font-family: 'Jost', sans-serif;
  font-size: 0.52rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted, #8a7f74);
  cursor: pointer;
  line-height: 1.3;
  -webkit-tap-highlight-color: transparent;
  transition: border-color 0.18s, color 0.18s, background 0.18s, opacity 0.18s;
}
.lux-map-filter.active {
  border-color: var(--accent, #C4A96B);
  color: var(--accent, #C4A96B);
  background: rgba(196,169,107,0.08);
}
.lux-map-filter:not(.active) { opacity: 0.55; }
.lux-map-filter:active { opacity: 0.75; }
.lux-map-view-toggle {
  display: flex;
  gap: 8px;
  margin: 0 24px 14px;
  padding: 3px;
  border-radius: 12px;
  background: var(--card, #EDEBE8);
  border: 1px solid rgba(196,169,107,0.2);
}
.lux-map-view-btn {
  flex: 1;
  padding: 9px 10px;
  border: none;
  border-radius: 9px;
  background: none;
  font-family: 'Jost', sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted, #8a7f74);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: background 0.18s, color 0.18s;
}
.lux-map-view-btn.active {
  background: var(--white, #fff);
  color: var(--accent, #C4A96B);
  box-shadow: 0 1px 6px rgba(58,53,48,0.1);
}
.lux-map-view-btn:active { opacity: 0.75; }
#lux-map {
  width: 100%;
  height: min(62vh, 560px);
  min-height: 420px;
  background: var(--card, #EDEBE8);
}
.lux-map-marker { background: none; border: none; }
.lux-map-pin-wrap {
  width: 36px;
  height: 46px;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: auto;
}
.lux-map-pin-head {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--white, #fff);
  border: 2.5px solid #0288D1;
  box-shadow: 0 3px 10px rgba(58,53,48,0.22);
  color: #0288D1;
}
.lux-map-pin-head svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.lux-map-pin-point {
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 10px solid #0288D1;
  margin-top: -1px;
}
.lux-map-pin-wrap--town .lux-map-pin-head {
  border-color: var(--accent, #C4A96B);
  color: var(--accent, #C4A96B);
  background: #fffdf8;
}
.lux-map-pin-wrap--town .lux-map-pin-point { border-top-color: var(--accent, #C4A96B); }
.lux-map-pin-wrap--route-end .lux-map-pin-head {
  border-color: #DB4436;
  color: #DB4436;
}
.lux-map-pin-wrap--route-end .lux-map-pin-point { border-top-color: #DB4436; }
.lux-map-pin-wrap--accommodation .lux-map-pin-head {
  width: 38px;
  height: 38px;
  border-color: #2E7D52;
  color: #2E7D52;
  background: #f6fcf8;
}
.lux-map-pin-wrap--accommodation .lux-map-pin-head svg {
  width: 18px;
  height: 18px;
}
.lux-map-pin-wrap--accommodation .lux-map-pin-point { border-top-color: #2E7D52; }
.lux-map-popup {
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--text, #3a3530);
}
.lux-map-popup strong {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text, #3a3530);
}
.lux-map-popup a {
  color: var(--accent, #C4A96B);
  text-decoration: none;
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.lux-map-legend {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  margin: 0 24px 28px;
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted, #8a7f74);
}
.lux-map-legend-item {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.lux-map-legend-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  border: 2px solid #0288D1;
  background: rgba(2,136,209,0.15);
  flex-shrink: 0;
}
.lux-map-legend-dot--town {
  border-color: var(--accent, #C4A96B);
  background: rgba(196,169,107,0.25);
}
.lux-map-legend-line {
  width: 22px;
  height: 3px;
  border-radius: 2px;
  background: var(--accent, #C4A96B);
  flex-shrink: 0;
}
.lux-map-error {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 420px;
  padding: 24px;
  text-align: center;
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  color: var(--text-muted, #8a7f74);
}
.leaflet-popup-content-wrapper {
  border-radius: 12px;
  box-shadow: 0 4px 18px rgba(58,53,48,0.12);
}
.leaflet-popup-content { margin: 14px 16px; }

/* ── Tappable link red (kontakt / adresar / socijalne) ───────── */
.lux-links { margin-bottom: 16px; }
.lux-link {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  position: relative;
  text-decoration: none;
  color: var(--text);
  -webkit-tap-highlight-color: transparent;
}
.lux-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 24px; right: 24px;
  height: 1px;
  background: rgba(196,169,107,0.1);
}
.lux-links .lux-link:last-child::after { display: none; }
.lux-link:active { opacity: 0.65; }
.lux-link-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(196,169,107,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.lux-link-icon svg {
  width: 16px; height: 16px;
  stroke: var(--accent); fill: none;
  stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round;
}
.lux-link-icon--brand svg {
  width: 15px;
  height: 15px;
  fill: var(--accent);
  stroke: none;
}
/* ── Platform ikone (red) ────────────────────────────────────── */
.lux-platform-grid {
  display: flex;
  justify-content: center;
  gap: 14px;
  padding: 4px 24px 24px;
  flex-wrap: wrap;
}
.lux-platform-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}
.lux-platform-link[href="#"],
.lux-platform-link[href=""] {
  display: none;
}
.lux-platform-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(196,169,107,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s, background 0.2s;
}
.lux-platform-link:active .lux-platform-icon {
  background: rgba(196,169,107,0.08);
  border-color: rgba(196,169,107,0.6);
}
.lux-platform-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.lux-platform-icon--fill svg {
  fill: var(--accent);
  stroke: none;
}
.lux-platform-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.58rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.lux-link-body { flex: 1; display: flex; flex-direction: column; gap: 3px; min-width: 0; }
.lux-link-body strong {
  font-family: 'Jost', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
}
.lux-link-body span {
  font-family: 'Cormorant Garant', serif;
  font-size: 1.15rem;
  color: var(--text);
  line-height: 1.3;
}
.lux-link-arrow {
  width: 14px; height: 14px;
  stroke: var(--accent2); fill: none;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0;
}

/* ── Profil domaćina ─────────────────────────────────────────── */
.lux-profile { text-align: center; padding: 4px 24px 28px; }
.lux-profile-avatar {
  width: 96px; height: 96px;
  border-radius: 50%;
  border: 1px solid rgba(196,169,107,0.3);
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.lux-profile-avatar svg {
  width: 42px; height: 42px;
  stroke: var(--accent); fill: none;
  stroke-width: 1.2; stroke-linecap: round; stroke-linejoin: round;
}
.lux-profile-avatar img { width: 100%; height: 100%; object-fit: cover; }
.lux-profile-name {
  font-family: 'Cinzel', serif;
  font-size: 1.4rem;
  color: var(--text);
  letter-spacing: 0.06em;
  margin-bottom: 6px;
}
.lux-profile-role {
  font-family: 'Jost', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--accent);
}
.lux-profile-bio {
  font-family: 'Cormorant Garant', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.65;
  margin-top: 16px;
}

/* ── Pristup mreži (WiFi credentials) ────────────────────────── */
.lux-credentials {
  margin: 14px 24px 32px;
  border: 1px solid rgba(196,169,107,0.2);
  border-radius: 16px;
  position: relative;
}
.lux-credentials::before {
  content: attr(data-label);
  position: absolute;
  top: 0; left: 18px;
  transform: translateY(-50%);
  background: var(--bg);
  padding: 0 8px;
  font-family: 'Jost', sans-serif;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  line-height: 1.4;
  z-index: 1;
}
html[data-fontsize="s"] .lux-credentials::before { font-size: 10px; }
html[data-fontsize="l"] .lux-credentials::before { font-size: 14px; }
.lux-credential { padding: 22px 24px; }
.lux-credential + .lux-credential { border-top: 1px solid rgba(196,169,107,0.12); }
.lux-cred-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 6px;
}
.lux-cred-value {
  font-family: 'Cormorant Garant', serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--text);
  letter-spacing: 0.02em;
  line-height: 1.2;
  word-break: break-word;
}
.lux-cred-actions { display: flex; gap: 10px; margin-top: 14px; flex-wrap: wrap; }

/* ── Dugmad ──────────────────────────────────────────────────── */
.lux-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 9px 18px;
  border-radius: 40px;
  border: 1px solid rgba(196,169,107,0.3);
  background: none;
  font-family: 'Jost', sans-serif;
  font-size: 0.62rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: opacity 0.18s ease;
}
.lux-btn svg {
  width: 13px; height: 13px;
  stroke: var(--accent); fill: none;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0;
}
.lux-btn:active { opacity: 0.65; }

.lux-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 15px 24px;
  border-radius: 40px;
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
  transition: opacity 0.18s ease;
}
.lux-cta:active { opacity: 0.7; }
.lux-cta-outline { border: 1px solid var(--accent); color: var(--accent); background: none; }
.lux-cta-solid { border: 1px solid var(--accent); background: var(--accent); color: var(--bg); }
.lux-cta + .lux-cta { margin-top: 12px; }

/* ── Shortcut kartice ───────────────────────────────────────── */
.lux-shortcuts {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 0 24px 28px;
}
.lux-shortcut {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid rgba(196,169,107,0.25);
  border-radius: 10px;
  text-decoration: none;
  background: none;
  -webkit-tap-highlight-color: transparent;
  transition: border-color 0.18s, background 0.18s;
}
.lux-shortcut:active {
  background: rgba(196,169,107,0.06);
  border-color: rgba(196,169,107,0.5);
}
.lux-shortcut-icon {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid rgba(196,169,107,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.lux-shortcut-icon svg {
  width: 13px;
  height: 13px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.lux-shortcut-label {
  flex: 1;
  font-family: 'Jost', sans-serif;
  font-size: 0.65rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text);
  line-height: 1.3;
}
.lux-shortcut-arrow {
  width: 12px;
  height: 12px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

/* ── Inline link sa strelicom ───────────────────────────────── */
.lux-inline-link {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: var(--accent);
  text-decoration: none;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  text-transform: none;
  -webkit-tap-highlight-color: transparent;
}
.lux-inline-link svg {
  width: 14px;
  height: 14px;
  stroke: var(--accent);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── Footer linija ───────────────────────────────────────────── */
.lux-footer-line {
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(196,169,107,0.3), transparent);
  margin: 8px 24px 32px;
}

/* ── Hero slika (recenzija) ──────────────────────────────────── */
.lux-hero-img {
  margin: 0 24px 28px;
  border-radius: 18px;
  border: 1px solid rgba(196,169,107,0.2);
  height: 185px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--card);
}
.lux-hero-img img { width: 100%; height: 100%; object-fit: cover; }
.lux-hero-img span {
  font-family: 'Jost', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ── Zvjezdice (recenzija) — override style.css ──────────────── */
.lux-page .stars { margin: 8px 0 20px; }

/* ── FAQ akordeon — luxury override (koristi postojeći JS) ────── */
.lux-page .faq-item {
  background: none;
  box-shadow: none;
  border: none;
  border-bottom: 1px solid rgba(196,169,107,0.12);
  border-radius: 0;
  margin: 0 24px;
  overflow: hidden;
}
.lux-page .faq-question {
  font-family: 'Cormorant Garant', serif;
  font-size: 1.15rem;
  font-style: italic;
  font-weight: 500;
  color: var(--text);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding: 18px 0;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}
.lux-page .faq-question svg {
  width: 16px; height: 16px;
  stroke: var(--accent); fill: none;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}
.lux-page .faq-item.open .faq-question svg { transform: rotate(180deg); }
.lux-page .faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.18s ease;
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 400;
  padding: 0;
}
.lux-page .faq-item.open .faq-answer { max-height: 400px; padding: 0 0 16px; }

/* ── Check out lista — luxury override (koristi postojeći JS) ──── */
.lux-checklist { margin: 0 24px 8px; }
.lux-page .checkout-item {
  background: none;
  box-shadow: none;
  border: none;
  border-bottom: 1px solid rgba(196,169,107,0.1);
  border-radius: 0;
  margin: 0;
  padding: 15px 2px;
  gap: 14px;
}
.lux-page .checkout-item:last-child { border-bottom: none; }
.lux-page .checkout-item span {
  font-family: 'Cormorant Garant', serif;
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 400;
  color: var(--text);
  line-height: 1.5;
}
.lux-page .checkout-item.done span { color: var(--text-muted); text-decoration: line-through; }

/* ── Završna stranica (Hvala) ────────────────────────────────── */
.lux-thanks {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  padding: 16px 28px 40px;
  flex: 1;
}
.lux-thanks-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  border: 1px solid rgba(196,169,107,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.lux-thanks-icon svg {
  width: 32px; height: 32px;
  stroke: var(--accent); fill: none;
  stroke-width: 1.2; stroke-linecap: round; stroke-linejoin: round;
}
.lux-thanks-title {
  font-family: 'Cinzel', serif;
  font-size: 2rem;
  font-weight: 400;
  color: var(--text);
  letter-spacing: 0.1em;
  line-height: 1.1;
  margin-bottom: 18px;
}
.lux-thanks-text {
  font-family: 'Cormorant Garant', serif;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 320px;
  margin: 0 auto 28px;
}
.lux-thanks-sign {
  font-family: 'Cormorant Garant', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--text);
  margin-top: 4px;
}

/* ── Pomoćno ─────────────────────────────────────────────────── */
.lux-mb-100 { margin-bottom: 100px; }

@media (max-width: 480px) {
  .lux-link-body strong {
    font-size: 0.75rem;
    letter-spacing: 0.16em;
  }
}
