/*
Theme Name:  Custom
Theme URI:   https://www.travelero.blog/
Description: Tema custom per travelero.blog. Tutti gli stili sono in questo style.css, estratti dai template e isolati per template con le classi tpl-* sul <body> (full-scope, nessuna collisione).
Author:      PiccoliHotel
Version:     1.1.1
License:     Proprietary
Text Domain: custom
*/

/* ============================================================
   STYLE.CSS — Tema Custom (PiccoliHotel / Travelero)
   BASE globale (font, keyframes, :root, reset) + una sezione per
   ogni template, con TUTTI i selettori isolati sotto body.tpl-*
   per riprodurre esattamente la cascata originale di ogni pagina.
   ============================================================ */

/* ---------- FONT ---------- */
@font-face {
  font-family: 'Playfair Display';
  src: url('fonts/playfair-display-v40-latin-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Playfair Display';
  src: url('fonts/playfair-display-v40-latin-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Playfair Display';
  src: url('fonts/playfair-display-v40-latin-700.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('fonts/dm-sans-v17-latin-300.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('fonts/dm-sans-v17-latin-regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('fonts/dm-sans-v17-latin-500.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'DM Sans';
  src: url('fonts/dm-sans-v17-latin-600.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

/* ---------- VARIABILI & BASE GLOBALE ---------- */
:root {
  --blue:       #1a56db;
  --blue-dark:  #1446b5;
  --blue-light: #e8f0fe;
  --gold:       #c9a84c;
  --dark:       #0d1825;
  --text:       #1a2332;
  --text-soft:  #4a5568;
  --border:     #e2e8f0;
  --bg-light:   #f8fafd;
  --bg-section: #f0f4f9;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --radius: 12px;
  --shadow:    0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,0.14);
  --max-w: 1160px;
  --content-w: 1080px;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  font-family: 'DM Sans', system-ui, sans-serif;
  color: #1a2332;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* ---------- KEYFRAMES ---------- */
@keyframes fadeUp {
  from { opacity: 0;
  transform: translateY(18px);
  }
  to   { opacity: 1;
  transform: translateY(0);
  };
}
@keyframes fadeIn {
  from { opacity: 0;
  }
  to   { opacity: 1;
  };
}
@keyframes scrollDot {
  0%   { transform: translateY(0);
  opacity: 1;
  }
  80%  { transform: translateY(12px);
  opacity: 0;
  }
  100% { transform: translateY(0);
  opacity: 0;
  };
}
@keyframes spin {
  to { transform: rotate(360deg);
  };
}
@keyframes kenBurns {
  from { transform: scale(1);
  }
  to { transform: scale(1.08);
  };
}
@keyframes swipeSlide {
  0%   { transform: translateX(4px);
  }
  30%  { transform: translateX(-14px);
  }
  60%  { transform: translateX(4px);
  }
  80%  { transform: translateX(-8px);
  }
  100% { transform: translateX(0);
  };
}
@keyframes swipePulse {
  0%   { opacity: 0;
  }
  12%  { opacity: 1;
  }
  80%  { opacity: 1;
  }
  100% { opacity: 0;
  };
}

/* ============================================================
   FRONT-PAGE — body.tpl-front-page
   ============================================================ */
body.tpl-front-page .mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(13,24,37,0.98);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
body.tpl-front-page .mobile-nav.open {
  opacity: 1;
  pointer-events: all;
}
body.tpl-front-page .mobile-nav a {
  color: #fff;
  font-family: var(--font-heading, 'Playfair Display', Georgia, serif);
  font-size: 1.5rem;
}
body.tpl-front-page .mobile-nav-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  cursor: pointer;
  line-height: 1;
  padding: 0.5rem;
  z-index: 1;
}
body.tpl-front-page .mobile-nav-lang {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
body.tpl-front-page img {
  max-width: 100%;
  height: auto;
  display: block;
}
body.tpl-front-page a {
  text-decoration: none;
  color: inherit;
}
body.tpl-front-page h1, body.tpl-front-page h2, body.tpl-front-page h3, body.tpl-front-page h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
}
body.tpl-front-page h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
}
body.tpl-front-page h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 1.5rem;
}
body.tpl-front-page h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}
body.tpl-front-page p {
  line-height: 1.78;
  color: var(--text-soft);
}
body.tpl-front-page p + p {
  margin-top: 0.9rem;
}
body.tpl-front-page .container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
body.tpl-front-page .section {
  padding: 5.5rem 0;
}
body.tpl-front-page .section-alt {
  background: var(--bg-section);
}
body.tpl-front-page .section-label {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 0.75rem;
}
body.tpl-front-page .section-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  color: var(--dark);
  margin-bottom: 1rem;
}
body.tpl-front-page .section-sub {
  font-size: 1.05rem;
  color: var(--text-soft);
  max-width: 580px;
  line-height: 1.75;
}
body.tpl-front-page .accent-bar {
  width: 44px;
  height: 3px;
  background: var(--gold);
  border-radius: 3px;
  margin: 1.2rem 0 2.2rem;
}
body.tpl-front-page .site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.1rem 0;
  transition: background 0.3s, box-shadow 0.3s;
}
body.tpl-front-page .site-header.scrolled {
  background: rgba(13,24,37,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.28);
}
body.tpl-front-page .header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
body.tpl-front-page .site-logo {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}
body.tpl-front-page .site-logo span {
  color: var(--gold);
}
body.tpl-front-page .site-nav {
  display: flex;
  gap: 1.6rem;
  list-style: none;
  align-items: center;
}
body.tpl-front-page .site-nav a {
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.2s;
}
body.tpl-front-page .site-nav a:hover {
  color: #fff;
}
body.tpl-front-page .nav-cta {
  background: var(--blue);
  color: #fff !important;
  padding: 0.5rem 1.25rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: background 0.2s, transform 0.2s;
}
body.tpl-front-page .nav-cta:hover {
  background: var(--blue-dark) !important;
  transform: translateY(-1px);
}
body.tpl-front-page .hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
body.tpl-front-page .hamburger span {
  width: 22px;
  height: 2px;
  background: #fff;
  display: block;
  border-radius: 2px;
}
body.tpl-front-page .hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--dark);
}
body.tpl-front-page .hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://www.piccolihotel.com/wp-content/uploads/piccoli-hotel-italiani.webp');
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 8s ease;
}
body.tpl-front-page .hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(13,24,37,0.72) 0%,
    rgba(13,24,37,0.45) 50%,
    rgba(26,86,219,0.35) 100%
  );
}
body.tpl-front-page .hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem 1.5rem;
  max-width: 820px;
  margin: 0 auto;
}
body.tpl-front-page .hero-eyebrow {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fadeUp 0.7s 0.2s forwards;
}
body.tpl-front-page .hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  color: #fff;
  line-height: 1.12;
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: fadeUp 0.7s 0.4s forwards;
}
body.tpl-front-page .hero-title em {
  font-style: italic;
  color: var(--gold);
}
body.tpl-front-page .hero-sub {
  font-size: clamp(1rem, 2vw, 1.18rem);
  color: rgba(255,255,255,0.82);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.7s 0.6s forwards;
}
body.tpl-front-page .search-bar {
  background: #fff;
  border-radius: 14px;
  padding: 0.6rem 0.6rem 0.6rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: 0 12px 48px rgba(0,0,0,0.22);
  max-width: 680px;
  margin: 0 auto 2rem;
  opacity: 0;
  animation: fadeUp 0.7s 0.8s forwards;
}
body.tpl-front-page .search-bar input {
  flex: 1;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: transparent;
  min-width: 0;
}
body.tpl-front-page .search-bar input::placeholder {
  color: #a0aec0;
}
body.tpl-front-page .search-btn {
  background: var(--blue);
  color: #fff;
  border: none;
  cursor: pointer;
  padding: 0.75rem 1.4rem;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}
body.tpl-front-page .search-btn:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
}
body.tpl-front-page .search-btn svg {
  flex-shrink: 0;
}
body.tpl-front-page .hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  opacity: 0;
  animation: fadeUp 0.7s 1s forwards;
}
body.tpl-front-page .hero-tag {
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.28);
  color: rgba(255,255,255,0.88);
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  font-size: 0.82rem;
  cursor: pointer;
  transition: background 0.2s;
}
body.tpl-front-page .hero-tag:hover {
  background: rgba(255,255,255,0.25);
}
body.tpl-front-page .hero-scroll {
  position: absolute;
  bottom: 2.2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  opacity: 0;
  animation: fadeIn 1s 1.5s forwards;
}
body.tpl-front-page .hero-scroll-dot {
  width: 28px;
  height: 46px;
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 7px;
}
body.tpl-front-page .hero-scroll-dot::before {
  content: '';
  width: 4px;
  height: 8px;
  background: rgba(255,255,255,0.7);
  border-radius: 2px;
  animation: scrollDot 1.8s infinite;
}
body.tpl-front-page .about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
body.tpl-front-page .about-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}
body.tpl-front-page .about-img-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
}
body.tpl-front-page .about-img-badge {
  position: absolute;
  bottom: 1.5rem;
  right: -1.5rem;
  background: #fff;
  border-radius: 12px;
  padding: 1rem 1.3rem;
  box-shadow: var(--shadow-lg);
  text-align: center;
}
body.tpl-front-page .about-img-badge-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
}
body.tpl-front-page .about-img-badge-label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-soft);
  margin-top: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
body.tpl-front-page .about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}
body.tpl-front-page .about-feat {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
body.tpl-front-page .about-feat-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--blue-light);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue);
}
body.tpl-front-page .about-feat-title {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 0.2rem;
}
body.tpl-front-page .about-feat-desc {
  font-size: 0.83rem;
  color: var(--text-soft);
  line-height: 1.5;
}
body.tpl-front-page .about-more-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 2rem;
  color: var(--blue);
  font-weight: 600;
  font-size: 0.95rem;
  transition: gap 0.2s, color 0.2s;
}
body.tpl-front-page .about-more-link:hover {
  gap: 0.8rem;
  color: var(--blue-dark);
}
body.tpl-front-page .dest-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
body.tpl-front-page .dest-view-all {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 0.35rem;
  transition: gap 0.2s;
}
body.tpl-front-page .dest-view-all:hover {
  gap: 0.6rem;
}
body.tpl-front-page .dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto auto auto;
  gap: 1.1rem;
}
body.tpl-front-page .dest-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  background: var(--bg-section);
}
body.tpl-front-page .dest-card:nth-child(10) {
  grid-column: span 3;
}
body.tpl-front-page .dest-card-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
body.tpl-front-page .dest-card:nth-child(10) .dest-card-img {
  aspect-ratio: 3 / 1;
}
body.tpl-front-page .dest-card:hover .dest-card-img {
  transform: scale(1.06);
}
body.tpl-front-page .dest-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(13,24,37,0.78) 0%, transparent 55%);
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
}
body.tpl-front-page .dest-card-info {

}
body.tpl-front-page .dest-card-name {
  font-family: var(--font-heading);
  color: #fff;
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1.2;
}
body.tpl-front-page .dest-card-count {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.75);
  margin-top: 0.2rem;
}
body.tpl-front-page .featured-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
body.tpl-front-page .feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
body.tpl-front-page .feat-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
body.tpl-front-page .feat-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
body.tpl-front-page .feat-card-img-wrap {
  position: relative;
  overflow: hidden;
  height: 220px;
  flex-shrink: 0;
}
body.tpl-front-page .feat-card-img-wrap > a {
  display: block;
  width: 100%;
  height: 100%;
}
body.tpl-front-page .feat-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
body.tpl-front-page .feat-card:hover .feat-card-img-wrap img {
  transform: scale(1.06);
}
body.tpl-front-page .feat-card-badge {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  background: var(--blue);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.3rem 0.65rem;
  border-radius: 6px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
body.tpl-front-page .feat-card-rating {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  background: rgba(13,24,37,0.82);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  padding: 0.3rem 0.65rem;
  border-radius: 6px;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
body.tpl-front-page .feat-card-body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
body.tpl-front-page .feat-card-location {
  font-size: 0.75rem;
  color: var(--blue);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
body.tpl-front-page .feat-card-name {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--text);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}
body.tpl-front-page .feat-card-name a {
  color: inherit;
  transition: color 0.2s;
}
body.tpl-front-page .feat-card-name a:hover {
  color: var(--blue);
}
body.tpl-front-page .feat-card-desc {
  font-size: 0.85rem;
  color: var(--text-soft);
  line-height: 1.6;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
body.tpl-front-page .feat-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 1.1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
body.tpl-front-page .feat-card-stars {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.05em;
}
body.tpl-front-page .feat-card-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap 0.2s;
}
body.tpl-front-page .feat-card-link:hover {
  gap: 0.5rem;
}
body.tpl-front-page .blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}
body.tpl-front-page .blog-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
body.tpl-front-page .blog-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
body.tpl-front-page .blog-card-thumb {
  height: 190px;
  overflow: hidden;
}
body.tpl-front-page .blog-card-thumb > a {
  display: block;
  width: 100%;
  height: 100%;
}
body.tpl-front-page .blog-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
body.tpl-front-page .blog-card:hover .blog-card-thumb img {
  transform: scale(1.06);
}
body.tpl-front-page .blog-card-thumb-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--blue-light), #dbeafe);
  display: flex;
  align-items: center;
  justify-content: center;
}
body.tpl-front-page .blog-card-thumb-placeholder svg {
  color: var(--blue);
  opacity: 0.35;
}
body.tpl-front-page .blog-card-body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
body.tpl-front-page .blog-card-cat {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue);
  margin-bottom: 0.5rem;
}
body.tpl-front-page .blog-card-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--text);
  line-height: 1.4;
  margin-bottom: 0.6rem;
}
body.tpl-front-page .blog-card-title a {
  color: inherit;
  transition: color 0.2s;
}
body.tpl-front-page .blog-card-title a:hover {
  color: var(--blue);
}
body.tpl-front-page .blog-card-excerpt {
  font-size: 0.86rem;
  color: var(--text-soft);
  line-height: 1.6;
  margin-bottom: 0.9rem;
  flex: 1;
}
body.tpl-front-page .blog-card-meta {
  font-size: 0.76rem;
  color: var(--text-soft);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
body.tpl-front-page .blog-card-meta-dot {
  width: 3px;
  height: 3px;
  background: var(--border);
  border-radius: 50%;
}
body.tpl-front-page .blog-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap;
}
body.tpl-front-page .cta-banner {
  background: linear-gradient(135deg, #0d1825 0%, #1446b5 100%);
  padding: 5rem 0;
  text-align: center;
  overflow: hidden;
  position: relative;
}
body.tpl-front-page .cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
body.tpl-front-page .cta-banner h2 {
  font-family: var(--font-heading);
  color: #fff;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  margin-bottom: 1rem;
  position: relative;
}
body.tpl-front-page .cta-banner p {
  color: rgba(255,255,255,0.78);
  font-size: 1.05rem;
  margin-bottom: 2rem;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
body.tpl-front-page .cta-banner-btns {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  position: relative;
}
body.tpl-front-page .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: #fff;
  color: var(--blue) !important;
  padding: 0.85rem 2rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.2s, box-shadow 0.2s;
}
body.tpl-front-page .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}
body.tpl-front-page .btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 2px solid rgba(255,255,255,0.5);
  color: #fff !important;
  padding: 0.85rem 2rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: border-color 0.2s, background 0.2s;
}
body.tpl-front-page .btn-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.08);
}
body.tpl-front-page .site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.65);
  padding: 3rem 0 1.5rem;
  font-size: 0.88rem;
}
body.tpl-front-page .footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
body.tpl-front-page .footer-logo {
  font-family: var(--font-heading);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
}
body.tpl-front-page .footer-logo span {
  color: var(--gold);
}
body.tpl-front-page .footer-copy {
  color: rgba(255,255,255,0.45);
  font-size: 0.8rem;
}
@media (max-width: 1024px) {
  body.tpl-front-page .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  body.tpl-front-page .about-img-badge {
    right: 1rem;
  }
  body.tpl-front-page .dest-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  body.tpl-front-page .dest-card:nth-child(10) {
    grid-column: span 2;
  }
  body.tpl-front-page .feat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  body.tpl-front-page .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  body.tpl-front-page .section {
    padding: 3.5rem 0;
  }
  body.tpl-front-page .site-nav {
    display: none;
  }
  body.tpl-front-page .hamburger {
    display: flex;
  }
  body.tpl-front-page .search-bar {
    flex-wrap: wrap;
    padding: 0.6rem;
    gap: 0.5rem;
    align-items: center;
  }
  body.tpl-front-page .search-bar svg:first-child {
    margin-left: 0.4rem;
    flex-shrink: 0;
  }
  body.tpl-front-page .search-bar input {
    min-width: 0;
    flex: 1;
    padding: 0.5rem 0;
    font-size: 1rem;
  }
  body.tpl-front-page .search-btn {
    flex: 0 0 100%;
    justify-content: center;
    margin: 0;
  }
  body.tpl-front-page .dest-grid {
    grid-template-columns: 1fr 1fr;
  }
  body.tpl-front-page .dest-card:nth-child(10) {
    grid-column: span 2;
  }
  body.tpl-front-page .feat-grid {
    grid-template-columns: 1fr;
  }
  body.tpl-front-page .blog-grid {
    grid-template-columns: 1fr;
  }
  body.tpl-front-page .about-features {
    grid-template-columns: 1fr;
  }
  body.tpl-front-page .dest-header, body.tpl-front-page .featured-header, body.tpl-front-page .blog-header {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 480px) {
  body.tpl-front-page .dest-grid {
    grid-template-columns: 1fr;
  }
  body.tpl-front-page .dest-card:nth-child(10) {
    grid-column: span 1;
  }
  body.tpl-front-page .dest-card-img {
    aspect-ratio: 16/9 !important;
  }
}
body.tpl-front-page .mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(13,24,37,0.98);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
body.tpl-front-page .mobile-nav.open {
  opacity: 1;
  pointer-events: all;
}
body.tpl-front-page .mobile-nav a {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 500;
}
body.tpl-front-page .mobile-nav-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
}
body.tpl-front-page .header-mobile-right {
  display: none;
  align-items: center;
  gap: 0.5rem;
}
body.tpl-front-page .lang-switcher-header-mobile {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  background: rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 0.2rem;
}
body.tpl-front-page .lang-switcher-header-mobile .lang-link {
  padding: 0.25rem 0.55rem;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.5px;
  border-bottom: none !important;
  width: auto !important;
}
body.tpl-front-page .lang-switcher-header-mobile .lang-link.active {
  background: rgba(255,255,255,0.2);
  color: #fff;
}
@media (max-width: 1024px) {
  body.tpl-front-page .header-mobile-right {
    display: flex;
  }
}
body.tpl-front-page .lang-switcher-mobile-wrap {
  display: none;
}
@media (max-width: 1024px) {
  body.tpl-front-page .site-nav:not(.open) .lang-switcher-mobile-wrap {
    display: none;
  }
  body.tpl-front-page .site-nav.open .lang-switcher-mobile-wrap {
    display: block;
    width: 100%;
    padding-top: 0.75rem;
    margin-top: 0.75rem;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  body.tpl-front-page .site-nav.open .lang-switcher-mobile-wrap .lang-switcher-nav {
    background: rgba(255,255,255,0.06);
    width: auto;
    display: inline-flex;
  }
  body.tpl-front-page .site-nav.open .lang-link {
    border-bottom: none !important;
    width: auto !important;
    display: inline-block !important;
    padding: 0.3rem 0.65rem !important;
    font-size: 0.78rem !important;
  }
  body.tpl-front-page .site-nav.open li:has(.lang-switcher-nav):not(.lang-switcher-mobile-wrap) {
    display: none;
  }
}
body.tpl-front-page .lang-switcher-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 0.25rem;
  flex-shrink: 0;
}
body.tpl-front-page .lang-link {
  display: inline-block;
  padding: 0.3rem 0.65rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.5px;
  transition: background 0.2s, color 0.2s;
}
body.tpl-front-page .lang-link:hover {
  color: #fff;
}
body.tpl-front-page .lang-link.active {
  background: rgba(255,255,255,0.2);
  color: #fff;
}
body.tpl-front-page .search-wrap {
  position: relative;
  max-width: 680px;
  margin: 0 auto 2rem;
}
body.tpl-front-page .search-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
  list-style: none;
  margin: 0;
  padding: 0.4rem 0;
  z-index: 100;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  max-height: calc(5 * 52px + 0.8rem);
  scrollbar-width: thin;
  scrollbar-color: #e2e8f0 transparent;
}
body.tpl-front-page .search-dropdown::-webkit-scrollbar {
  width: 4px;
}
body.tpl-front-page .search-dropdown::-webkit-scrollbar-thumb {
  background: #e2e8f0;
  border-radius: 4px;
}
@media (max-width: 640px) {
  body.tpl-front-page .search-dropdown {
    max-height: calc(3 * 52px + 0.8rem);
  }
}
body.tpl-front-page .search-dropdown li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 1.2rem;
  cursor: pointer;
  transition: background 0.15s;
  gap: 0.5rem;
  min-height: 52px;
}
body.tpl-front-page .search-dropdown li:hover, body.tpl-front-page .search-dropdown li.active {
  background: #f0f4f9;
}
body.tpl-front-page .search-dropdown .sd-label {
  font-size: 0.92rem;
  color: #1a2332;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
body.tpl-front-page .search-dropdown .sd-type {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1a56db;
  background: #e8f0fe;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  flex-shrink: 0;
}
body.tpl-front-page .search-dropdown .sd-empty {
  color: #a0aec0;
  font-size: 0.88rem;
  text-align: center;
  padding: 0.8rem 1.2rem;
}

/* ============================================================
   HOME — body.tpl-home
   ============================================================ */
body.tpl-home .mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(13,24,37,0.98);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
body.tpl-home .mobile-nav.open {
  opacity: 1;
  pointer-events: all;
}
body.tpl-home .mobile-nav a {
  color: #fff;
  font-family: var(--font-heading, 'Playfair Display', Georgia, serif);
  font-size: 1.5rem;
}
body.tpl-home .mobile-nav-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  cursor: pointer;
  line-height: 1;
  padding: 0.5rem;
  z-index: 1;
}
body.tpl-home .mobile-nav-lang {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
body.tpl-home img {
  max-width: 100%;
  height: auto;
  display: block;
}
body.tpl-home a {
  text-decoration: none;
  color: inherit;
}
body.tpl-home .container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
body.tpl-home .site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.1rem 0;
  background: rgba(13,24,37,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.28);
}
body.tpl-home .header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
body.tpl-home .site-logo {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
}
body.tpl-home .site-logo span {
  color: var(--gold);
}
body.tpl-home .site-nav {
  display: flex;
  gap: 1.6rem;
  list-style: none;
  align-items: center;
}
body.tpl-home .site-nav a {
  color: rgba(255,255,255,0.82);
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.2s;
}
body.tpl-home .site-nav a:hover {
  color: #fff;
}
body.tpl-home .header-mobile-right {
  display: none;
  align-items: center;
  gap: 0.5rem;
}
body.tpl-home .lang-switcher-header-mobile {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  background: rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 0.2rem;
}
body.tpl-home .lang-switcher-header-mobile .lang-link {
  padding: 0.25rem 0.55rem;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
}
body.tpl-home .lang-switcher-header-mobile .lang-link.active {
  background: rgba(255,255,255,0.2);
  color: #fff;
}
@media (max-width: 1024px) {
  body.tpl-home .header-mobile-right {
    display: flex;
  }
}
body.tpl-home .lang-switcher-mobile-wrap {
  display: none;
}
@media (max-width: 1024px) {
  body.tpl-home .site-nav:not(.open) .lang-switcher-mobile-wrap {
    display: none;
  }
  body.tpl-home .site-nav.open .lang-switcher-mobile-wrap {
    display: block;
    width: 100%;
    padding-top: 0.75rem;
    margin-top: 0.75rem;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  body.tpl-home .site-nav.open .lang-switcher-mobile-wrap .lang-switcher-nav {
    background: rgba(255,255,255,0.06);
    width: auto;
    display: inline-flex;
  }
  body.tpl-home .site-nav.open .lang-link {
    border-bottom: none !important;
    width: auto !important;
    display: inline-block !important;
    padding: 0.3rem 0.65rem !important;
    font-size: 0.78rem !important;
  }
  body.tpl-home .site-nav.open li:has(.lang-switcher-nav):not(.lang-switcher-mobile-wrap) {
    display: none;
  }
}
body.tpl-home .lang-switcher-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 0.25rem;
}
body.tpl-home .lang-link {
  display: inline-block;
  padding: 0.3rem 0.65rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255,255,255,0.65);
  transition: background 0.2s, color 0.2s;
}
body.tpl-home .lang-link:hover {
  color: #fff;
}
body.tpl-home .lang-link.active {
  background: rgba(255,255,255,0.2);
  color: #fff;
}
body.tpl-home .hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
body.tpl-home .hamburger span {
  width: 22px;
  height: 2px;
  background: #fff;
  display: block;
  border-radius: 2px;
}
@media (max-width: 1024px) {
  body.tpl-home .site-nav {
    display: none;
  }
  body.tpl-home .hamburger {
    display: flex;
  }
}
body.tpl-home .blog-hero {
  position: relative;
  padding: 10rem 0 5rem;
  overflow: hidden;
  background: var(--dark);
}
body.tpl-home .blog-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://www.travelero.blog/wp-content/uploads/piccoli-hotel-italiani.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  transform: scale(1.04);
  transition: transform 8s ease;
}
body.tpl-home .blog-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(13,24,37,0.4) 0%, rgba(13,24,37,0.88) 100%);
}
body.tpl-home .blog-hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}
body.tpl-home .blog-hero-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeUp 0.7s 0.2s forwards;
}
body.tpl-home .blog-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.4rem);
  color: #fff;
  line-height: 1.12;
  margin-bottom: 1.2rem;
  opacity: 0;
  animation: fadeUp 0.7s 0.4s forwards;
}
body.tpl-home .blog-hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.78);
  line-height: 1.75;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0;
  animation: fadeUp 0.7s 0.6s forwards;
}
body.tpl-home .blog-body {
  padding: 4rem 0 2.5rem;
  background: var(--bg-light);
}
body.tpl-home .blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}
body.tpl-home .blog-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
body.tpl-home .blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
body.tpl-home .blog-card-thumb {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: var(--bg-section);
  flex-shrink: 0;
}
body.tpl-home .blog-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
body.tpl-home .blog-card:hover .blog-card-thumb img {
  transform: scale(1.06);
}
body.tpl-home .blog-card-thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--blue-light), #dbeafe);
}
body.tpl-home .blog-card-cat {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  background: var(--blue);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.28rem 0.6rem;
  border-radius: 5px;
}
body.tpl-home .blog-card-body {
  padding: 1.4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
body.tpl-home .blog-card-title {
  font-family: var(--font-heading);
  font-size: 1.08rem;
  color: var(--text);
  line-height: 1.35;
  margin-bottom: 0.7rem;
}
body.tpl-home .blog-card-title a {
  color: inherit;
  transition: color 0.2s;
}
body.tpl-home .blog-card-title a:hover {
  color: var(--blue);
}
body.tpl-home .blog-card-excerpt {
  font-size: 0.85rem;
  color: var(--text-soft);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
body.tpl-home .blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  gap: 0.5rem;
}
body.tpl-home .blog-card-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.76rem;
  color: var(--text-soft);
}
body.tpl-home .blog-card-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
body.tpl-home .blog-card-author {
  font-weight: 600;
  color: var(--text);
}
body.tpl-home .blog-card-sep {
  color: var(--border);
}
body.tpl-home .blog-card-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  white-space: nowrap;
  transition: gap 0.2s;
}
body.tpl-home .blog-card-link:hover {
  gap: 0.5rem;
}
body.tpl-home .blog-empty {
  text-align: center;
  padding: 5rem 1rem;
  color: var(--text-soft);
  font-size: 1.05rem;
}
body.tpl-home .pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 3rem;
}
body.tpl-home .pagination a, body.tpl-home .pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 0.75rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
}
body.tpl-home .pagination a {
  color: var(--blue);
  border: 1px solid var(--border);
}
body.tpl-home .pagination a:hover {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}
body.tpl-home .pagination span.current {
  background: var(--blue);
  color: #fff;
  border: 1px solid var(--blue);
}
body.tpl-home .pagination span.dots {
  color: var(--text-soft);
  border: none;
  min-width: auto;
}
body.tpl-home .pagination-info {
  text-align: center;
  margin-bottom: 1.2rem;
  font-size: 0.85rem;
  color: var(--text-soft);
}
body.tpl-home .blog-intro {
  background: #fff;
  border-top: 1px solid var(--border);
  padding: 3rem 0 4rem;
}
body.tpl-home .blog-intro-inner {
  max-width: none;
}
body.tpl-home .blog-intro h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.3rem, 2.4vw, 1.6rem);
  color: var(--text);
  margin-bottom: 1rem;
}
body.tpl-home .blog-intro p {
  color: var(--text-soft);
  line-height: 1.8;
  margin-bottom: 1rem;
  max-width: none;
  font-size: 1rem;
}
body.tpl-home .blog-intro .blog-intro-cta {
  margin-top: 1.5rem;
}
body.tpl-home .blog-intro .blog-intro-cta a {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  padding: 0.7rem 1.4rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background 0.2s;
}
body.tpl-home .blog-intro .blog-intro-cta a:hover {
  background: var(--blue-dark);
}
body.tpl-home .site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.5);
  padding: 2.5rem 0;
  font-size: 0.85rem;
}
body.tpl-home .footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
body.tpl-home .footer-logo {
  font-family: var(--font-heading);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
}
body.tpl-home .footer-logo span {
  color: var(--gold);
}
body.tpl-home .footer-copy a {
  color: inherit;
  text-decoration: underline;
}
@media (max-width: 1024px) {
  body.tpl-home .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  body.tpl-home .blog-grid {
    grid-template-columns: 1fr;
  }
  body.tpl-home .blog-hero {
    padding: 8rem 0 3.5rem;
  }
}

/* ============================================================
   PAGE-REGIONI — body.tpl-page-regioni
   ============================================================ */
body.tpl-page-regioni .mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(13,24,37,0.98);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
body.tpl-page-regioni .mobile-nav.open {
  opacity: 1;
  pointer-events: all;
}
body.tpl-page-regioni .mobile-nav a {
  color: #fff;
  font-family: var(--font-heading, 'Playfair Display', Georgia, serif);
  font-size: 1.5rem;
}
body.tpl-page-regioni .mobile-nav-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  cursor: pointer;
  line-height: 1;
  padding: 0.5rem;
  z-index: 1;
}
body.tpl-page-regioni .mobile-nav-lang {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
body.tpl-page-regioni img {
  max-width: 100%;
  height: auto;
  display: block;
}
body.tpl-page-regioni a {
  text-decoration: none;
  color: inherit;
}
body.tpl-page-regioni .container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
body.tpl-page-regioni .site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.1rem 0;
  background: rgba(13,24,37,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.28);
}
body.tpl-page-regioni .header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
body.tpl-page-regioni .site-logo {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
}
body.tpl-page-regioni .site-logo span {
  color: var(--gold);
}
body.tpl-page-regioni .site-nav {
  display: flex;
  gap: 1.6rem;
  list-style: none;
  align-items: center;
}
body.tpl-page-regioni .site-nav a {
  color: rgba(255,255,255,0.82);
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.2s;
}
body.tpl-page-regioni .site-nav a:hover {
  color: #fff;
}
body.tpl-page-regioni .header-mobile-right {
  display: none;
  align-items: center;
  gap: 0.5rem;
}
body.tpl-page-regioni .lang-switcher-header-mobile {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  background: rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 0.2rem;
}
body.tpl-page-regioni .lang-switcher-header-mobile .lang-link {
  padding: 0.25rem 0.55rem;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
}
body.tpl-page-regioni .lang-switcher-header-mobile .lang-link.active {
  background: rgba(255,255,255,0.2);
  color: #fff;
}
@media (max-width: 1024px) {
  body.tpl-page-regioni .header-mobile-right {
    display: flex;
  }
}
body.tpl-page-regioni .lang-switcher-mobile-wrap {
  display: none;
}
@media (max-width: 1024px) {
  body.tpl-page-regioni .site-nav:not(.open) .lang-switcher-mobile-wrap {
    display: none;
  }
  body.tpl-page-regioni .site-nav.open .lang-switcher-mobile-wrap {
    display: block;
    width: 100%;
    padding-top: 0.75rem;
    margin-top: 0.75rem;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  body.tpl-page-regioni .site-nav.open .lang-switcher-mobile-wrap .lang-switcher-nav {
    background: rgba(255,255,255,0.06);
    width: auto;
    display: inline-flex;
  }
  body.tpl-page-regioni .site-nav.open .lang-link {
    border-bottom: none !important;
    width: auto !important;
    display: inline-block !important;
    padding: 0.3rem 0.65rem !important;
    font-size: 0.78rem !important;
  }
  body.tpl-page-regioni .site-nav.open li:has(.lang-switcher-nav):not(.lang-switcher-mobile-wrap) {
    display: none;
  }
}
body.tpl-page-regioni .lang-switcher-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 0.25rem;
}
body.tpl-page-regioni .lang-link {
  display: inline-block;
  padding: 0.3rem 0.65rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255,255,255,0.65);
  transition: background 0.2s, color 0.2s;
}
body.tpl-page-regioni .lang-link:hover {
  color: #fff;
}
body.tpl-page-regioni .lang-link.active {
  background: rgba(255,255,255,0.2);
  color: #fff;
}
body.tpl-page-regioni .hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
body.tpl-page-regioni .hamburger span {
  width: 22px;
  height: 2px;
  background: #fff;
  display: block;
  border-radius: 2px;
}
@media (max-width: 1024px) {
  body.tpl-page-regioni .site-nav {
    display: none;
  }
  body.tpl-page-regioni .hamburger {
    display: flex;
  }
}
body.tpl-page-regioni .mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(13,24,37,0.98);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
body.tpl-page-regioni .mobile-nav.open {
  opacity: 1;
  pointer-events: all;
}
body.tpl-page-regioni .mobile-nav a {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.5rem;
}
body.tpl-page-regioni .mobile-nav-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
}
body.tpl-page-regioni .mobile-nav-lang {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
body.tpl-page-regioni .term-hero {
  position: relative;
  padding: 8rem 0 3.5rem;
  overflow: hidden;
  background: var(--dark);
}
body.tpl-page-regioni .term-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.4;
  transform: scale(1.04);
  transition: transform 8s ease;
}
body.tpl-page-regioni .term-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(13,24,37,0.5) 0%, rgba(13,24,37,0.85) 100%);
}
body.tpl-page-regioni .term-hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
body.tpl-page-regioni .breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.2rem;
  flex-wrap: wrap;
}
body.tpl-page-regioni .breadcrumb a {
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
body.tpl-page-regioni .breadcrumb a:hover {
  color: #fff;
}
body.tpl-page-regioni .breadcrumb-sep {
  color: rgba(255,255,255,0.3);
}
body.tpl-page-regioni .breadcrumb-current {
  color: rgba(255,255,255,0.9);
}
body.tpl-page-regioni .term-hero-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
body.tpl-page-regioni .term-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1rem;
}
body.tpl-page-regioni .term-hero-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
}
body.tpl-page-regioni .term-body {
  padding: 2.5rem 0 5rem;
  background: var(--bg-light);
  min-height: 60vh;
}
body.tpl-page-regioni .term-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2.5rem;
  align-items: start;
}
body.tpl-page-regioni .term-sidebar {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  position: sticky;
  top: 5.5rem;
  max-height: calc(100vh - 7rem);
  overflow-y: auto;
}
body.tpl-page-regioni .sidebar-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}
body.tpl-page-regioni .filter-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
body.tpl-page-regioni .filter-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.4rem 0.7rem;
  border-radius: 7px;
  font-size: 0.86rem;
  color: var(--text-soft);
  transition: background 0.15s, color 0.15s;
}
body.tpl-page-regioni .filter-list a:hover {
  background: var(--blue-light);
  color: var(--blue);
}
body.tpl-page-regioni .filter-list a.active {
  background: var(--blue-light);
  color: var(--blue);
  font-weight: 600;
}
body.tpl-page-regioni .filter-count {
  font-size: 0.72rem;
  color: #a0aec0;
}
body.tpl-page-regioni .preview-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  gap: 0.5rem;
}
body.tpl-page-regioni .preview-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--dark);
}
body.tpl-page-regioni .preview-sub {
  font-size: 0.85rem;
  color: var(--text-soft);
  margin-top: 0.2rem;
}
body.tpl-page-regioni .preview-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  white-space: nowrap;
  transition: gap 0.2s;
}
body.tpl-page-regioni .preview-link:hover {
  gap: 0.5rem;
}
body.tpl-page-regioni .hotels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
body.tpl-page-regioni .hotel-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
body.tpl-page-regioni .hotel-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
body.tpl-page-regioni .hotel-card-thumb {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: var(--bg-section);
  flex-shrink: 0;
}
body.tpl-page-regioni .hotel-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
body.tpl-page-regioni .hotel-card:hover .hotel-card-thumb img {
  transform: scale(1.06);
}
body.tpl-page-regioni .hotel-card-thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--blue-light), #dbeafe);
}
body.tpl-page-regioni .hotel-card-tipo {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--blue);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.28rem 0.6rem;
  border-radius: 5px;
}
body.tpl-page-regioni .hotel-card-rating {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: rgba(13,24,37,0.82);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.28rem 0.6rem;
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
body.tpl-page-regioni .hotel-card-body {
  padding: 1.1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
body.tpl-page-regioni .hotel-card-location {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.35rem;
}
body.tpl-page-regioni .hotel-card-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 0.55rem;
}
body.tpl-page-regioni .hotel-card-name a {
  color: inherit;
  transition: color 0.2s;
}
body.tpl-page-regioni .hotel-card-name a:hover {
  color: var(--blue);
}
body.tpl-page-regioni .hotel-card-excerpt {
  font-size: 0.83rem;
  color: var(--text-soft);
  line-height: 1.6;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0.9rem;
}
body.tpl-page-regioni .hotel-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border);
}
body.tpl-page-regioni .hotel-card-stars {
  color: var(--gold);
  font-size: 0.78rem;
}
body.tpl-page-regioni .hotel-card-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap 0.2s;
}
body.tpl-page-regioni .hotel-card-link:hover {
  gap: 0.5rem;
}
body.tpl-page-regioni .site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.5);
  padding: 2.5rem 0;
  font-size: 0.85rem;
}
body.tpl-page-regioni .footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
body.tpl-page-regioni .footer-logo {
  font-family: var(--font-heading);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
}
body.tpl-page-regioni .footer-logo span {
  color: var(--gold);
}
@media (max-width: 1024px) {
  body.tpl-page-regioni .term-layout {
    grid-template-columns: 1fr;
  }
  body.tpl-page-regioni .term-sidebar {
    position: static;
    max-height: none;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 1rem;
  }
  body.tpl-page-regioni .sidebar-title {
    width: 100%;
    border: none;
    padding: 0;
    margin-bottom: 0.25rem;
  }
  body.tpl-page-regioni .filter-list {
    flex-direction: row;
    flex-wrap: wrap;
  }
  body.tpl-page-regioni .filter-list a {
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 0.3rem 0.8rem;
  }
  body.tpl-page-regioni .hotels-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  body.tpl-page-regioni .hotels-grid {
    grid-template-columns: 1fr;
  }
  body.tpl-page-regioni .term-hero {
    padding: 7rem 0 2.5rem;
  }
}

/* ============================================================
   PAGE-LEGAL — body.tpl-page-legal
   ============================================================ */
body.tpl-page-legal .mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(13,24,37,0.98);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
body.tpl-page-legal .mobile-nav.open {
  opacity: 1;
  pointer-events: all;
}
body.tpl-page-legal .mobile-nav a {
  color: #fff;
  font-family: var(--font-heading, 'Playfair Display', Georgia, serif);
  font-size: 1.5rem;
}
body.tpl-page-legal .mobile-nav-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  cursor: pointer;
  line-height: 1;
  padding: 0.5rem;
  z-index: 1;
}
body.tpl-page-legal .mobile-nav-lang {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
body.tpl-page-legal img {
  max-width: 100%;
  height: auto;
  display: block;
}
body.tpl-page-legal a {
  text-decoration: none;
  color: inherit;
}
body.tpl-page-legal .container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
body.tpl-page-legal .site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.1rem 0;
  background: rgba(13,24,37,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.28);
}
body.tpl-page-legal .header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
body.tpl-page-legal .site-logo {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
}
body.tpl-page-legal .site-logo span {
  color: var(--gold);
}
body.tpl-page-legal .site-nav {
  display: flex;
  gap: 1.6rem;
  list-style: none;
  align-items: center;
}
body.tpl-page-legal .site-nav a {
  color: rgba(255,255,255,0.82);
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.2s;
}
body.tpl-page-legal .site-nav a:hover {
  color: #fff;
}
body.tpl-page-legal .header-mobile-right {
  display: none;
  align-items: center;
  gap: 0.5rem;
}
body.tpl-page-legal .lang-switcher-header-mobile {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  background: rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 0.2rem;
}
body.tpl-page-legal .lang-switcher-header-mobile .lang-link {
  padding: 0.25rem 0.55rem;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
}
body.tpl-page-legal .lang-switcher-header-mobile .lang-link.active {
  background: rgba(255,255,255,0.2);
  color: #fff;
}
@media (max-width: 1024px) {
  body.tpl-page-legal .header-mobile-right {
    display: flex;
  }
}
body.tpl-page-legal .lang-switcher-mobile-wrap {
  display: none;
}
@media (max-width: 1024px) {
  body.tpl-page-legal .site-nav:not(.open) .lang-switcher-mobile-wrap {
    display: none;
  }
  body.tpl-page-legal .site-nav.open .lang-switcher-mobile-wrap {
    display: block;
    width: 100%;
    padding-top: 0.75rem;
    margin-top: 0.75rem;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  body.tpl-page-legal .site-nav.open .lang-switcher-mobile-wrap .lang-switcher-nav {
    background: rgba(255,255,255,0.06);
    width: auto;
    display: inline-flex;
  }
  body.tpl-page-legal .site-nav.open .lang-link {
    border-bottom: none !important;
    width: auto !important;
    display: inline-block !important;
    padding: 0.3rem 0.65rem !important;
    font-size: 0.78rem !important;
  }
  body.tpl-page-legal .site-nav.open li:has(.lang-switcher-nav):not(.lang-switcher-mobile-wrap) {
    display: none;
  }
}
body.tpl-page-legal .lang-switcher-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 0.25rem;
}
body.tpl-page-legal .lang-link {
  display: inline-block;
  padding: 0.3rem 0.65rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255,255,255,0.65);
  transition: background 0.2s, color 0.2s;
}
body.tpl-page-legal .lang-link:hover {
  color: #fff;
}
body.tpl-page-legal .lang-link.active {
  background: rgba(255,255,255,0.2);
  color: #fff;
}
body.tpl-page-legal .hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
body.tpl-page-legal .hamburger span {
  width: 22px;
  height: 2px;
  background: #fff;
  display: block;
  border-radius: 2px;
}
@media (max-width: 1024px) {
  body.tpl-page-legal .site-nav {
    display: none;
  }
  body.tpl-page-legal .hamburger {
    display: flex;
  }
}
body.tpl-page-legal .legal-hero {
  position: relative;
  padding: 9rem 0 4rem;
  overflow: hidden;
  background: var(--dark);
}
body.tpl-page-legal .legal-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://www.travelero.blog/wp-content/uploads/piccoli-hotel-italiani.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.25;
  transform: scale(1.04);
  transition: transform 8s ease;
}
body.tpl-page-legal .legal-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(13,24,37,0.55) 0%, rgba(13,24,37,0.92) 100%);
}
body.tpl-page-legal .legal-hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
body.tpl-page-legal .breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.2rem;
  flex-wrap: wrap;
}
body.tpl-page-legal .breadcrumb a {
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
body.tpl-page-legal .breadcrumb a:hover {
  color: #fff;
}
body.tpl-page-legal .breadcrumb-sep {
  color: rgba(255,255,255,0.3);
}
body.tpl-page-legal .breadcrumb-current {
  color: rgba(255,255,255,0.9);
}
body.tpl-page-legal .legal-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3rem);
  color: #fff;
  line-height: 1.15;
}
body.tpl-page-legal .legal-body {
  padding: 4rem 0 6rem;
  background: var(--bg-light);
}
body.tpl-page-legal .legal-content {
  max-width: 780px;
  margin: 0 auto;
  background: #fff;
  border-radius: var(--radius);
  padding: 3rem 3.5rem;
  box-shadow: var(--shadow);
}
body.tpl-page-legal .legal-updated {
  font-size: 0.8rem;
  color: var(--text-soft);
  margin-bottom: 2.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
}
body.tpl-page-legal .legal-content .entry-content {
  line-height: 1.8;
  color: var(--text-soft);
}
body.tpl-page-legal .legal-content .entry-content h2 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--text);
  margin: 2.5rem 0 0.9rem;
}
body.tpl-page-legal .legal-content .entry-content h3 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--text);
  margin: 2rem 0 0.7rem;
}
body.tpl-page-legal .legal-content .entry-content p {
  margin-bottom: 1.2rem;
  font-size: 0.96rem;
}
body.tpl-page-legal .legal-content .entry-content ul, body.tpl-page-legal .legal-content .entry-content ol {
  padding-left: 1.5rem;
  margin-bottom: 1.2rem;
}
body.tpl-page-legal .legal-content .entry-content li {
  margin-bottom: 0.4rem;
  font-size: 0.96rem;
}
body.tpl-page-legal .legal-content .entry-content a {
  color: var(--blue);
  text-decoration: underline;
}
body.tpl-page-legal .legal-content .entry-content a:hover {
  color: var(--blue-dark);
}
body.tpl-page-legal .legal-content .entry-content strong {
  color: var(--text);
  font-weight: 600;
}
body.tpl-page-legal .legal-content .entry-content table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}
body.tpl-page-legal .legal-content .entry-content th {
  background: var(--bg-light);
  padding: 0.6rem 1rem;
  text-align: left;
  font-weight: 600;
  border: 1px solid var(--border);
}
body.tpl-page-legal .legal-content .entry-content td {
  padding: 0.6rem 1rem;
  border: 1px solid var(--border);
}
body.tpl-page-legal .site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.5);
  padding: 2.5rem 0;
  font-size: 0.85rem;
}
body.tpl-page-legal .footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
body.tpl-page-legal .footer-logo {
  font-family: var(--font-heading);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
}
body.tpl-page-legal .footer-logo span {
  color: var(--gold);
}
body.tpl-page-legal .footer-copy a {
  color: inherit;
  text-decoration: underline;
}
@media (max-width: 768px) {
  body.tpl-page-legal .legal-content {
    padding: 2rem 1.5rem;
  }
  body.tpl-page-legal .legal-hero {
    padding: 7.5rem 0 3rem;
  }
}

/* ============================================================
   CATEGORY — body.tpl-category
   ============================================================ */
body.tpl-category .mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(13,24,37,0.98);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
body.tpl-category .mobile-nav.open {
  opacity: 1;
  pointer-events: all;
}
body.tpl-category .mobile-nav a {
  color: #fff;
  font-family: var(--font-heading, 'Playfair Display', Georgia, serif);
  font-size: 1.5rem;
}
body.tpl-category .mobile-nav-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  cursor: pointer;
  line-height: 1;
  padding: 0.5rem;
  z-index: 1;
}
body.tpl-category .mobile-nav-lang {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
body.tpl-category img {
  max-width: 100%;
  height: auto;
  display: block;
}
body.tpl-category a {
  text-decoration: none;
  color: inherit;
}
body.tpl-category .container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
body.tpl-category .site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.1rem 0;
  background: rgba(13,24,37,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.28);
}
body.tpl-category .header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
body.tpl-category .site-logo {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
}
body.tpl-category .site-logo span {
  color: var(--gold);
}
body.tpl-category .site-nav {
  display: flex;
  gap: 1.6rem;
  list-style: none;
  align-items: center;
}
body.tpl-category .site-nav a {
  color: rgba(255,255,255,0.82);
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.2s;
}
body.tpl-category .site-nav a:hover {
  color: #fff;
}
body.tpl-category .header-mobile-right {
  display: none;
  align-items: center;
  gap: 0.5rem;
}
body.tpl-category .lang-switcher-header-mobile {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  background: rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 0.2rem;
}
body.tpl-category .lang-switcher-header-mobile .lang-link {
  padding: 0.25rem 0.55rem;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
}
body.tpl-category .lang-switcher-header-mobile .lang-link.active {
  background: rgba(255,255,255,0.2);
  color: #fff;
}
@media (max-width: 1024px) {
  body.tpl-category .header-mobile-right {
    display: flex;
  }
}
body.tpl-category .lang-switcher-mobile-wrap {
  display: none;
}
@media (max-width: 1024px) {
  body.tpl-category .site-nav:not(.open) .lang-switcher-mobile-wrap {
    display: none;
  }
  body.tpl-category .site-nav.open .lang-switcher-mobile-wrap {
    display: block;
    width: 100%;
    padding-top: 0.75rem;
    margin-top: 0.75rem;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  body.tpl-category .site-nav.open .lang-switcher-mobile-wrap .lang-switcher-nav {
    background: rgba(255,255,255,0.06);
    width: auto;
    display: inline-flex;
  }
  body.tpl-category .site-nav.open .lang-link {
    border-bottom: none !important;
    width: auto !important;
    display: inline-block !important;
    padding: 0.3rem 0.65rem !important;
    font-size: 0.78rem !important;
  }
  body.tpl-category .site-nav.open li:has(.lang-switcher-nav):not(.lang-switcher-mobile-wrap) {
    display: none;
  }
}
body.tpl-category .lang-switcher-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 0.25rem;
}
body.tpl-category .lang-link {
  display: inline-block;
  padding: 0.3rem 0.65rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255,255,255,0.65);
  transition: background 0.2s, color 0.2s;
}
body.tpl-category .lang-link:hover {
  color: #fff;
}
body.tpl-category .lang-link.active {
  background: rgba(255,255,255,0.2);
  color: #fff;
}
body.tpl-category .hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
body.tpl-category .hamburger span {
  width: 22px;
  height: 2px;
  background: #fff;
  display: block;
  border-radius: 2px;
}
@media (max-width: 1024px) {
  body.tpl-category .site-nav {
    display: none;
  }
  body.tpl-category .hamburger {
    display: flex;
  }
}
body.tpl-category .blog-hero {
  position: relative;
  padding: 10rem 0 5rem;
  overflow: hidden;
  background: var(--dark);
}
body.tpl-category .blog-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://www.travelero.blog/wp-content/uploads/piccoli-hotel-italiani.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.35;
  transform: scale(1.04);
  transition: transform 8s ease;
}
body.tpl-category .blog-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(13,24,37,0.4) 0%, rgba(13,24,37,0.88) 100%);
}
body.tpl-category .blog-hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  text-align: center;
}
body.tpl-category .blog-hero-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
  opacity: 0;
  animation: fadeUp 0.7s 0.2s forwards;
}
body.tpl-category .blog-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.4rem);
  color: #fff;
  line-height: 1.12;
  margin-bottom: 1.2rem;
  opacity: 0;
  animation: fadeUp 0.7s 0.4s forwards;
}
body.tpl-category .blog-hero-sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.78);
  line-height: 1.75;
  max-width: 600px;
  margin: 0 auto;
  opacity: 0;
  animation: fadeUp 0.7s 0.6s forwards;
}
body.tpl-category .blog-body {
  padding: 4rem 0 5rem;
  background: var(--bg-light);
}
body.tpl-category .blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  margin-bottom: 3.5rem;
}
body.tpl-category .blog-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
body.tpl-category .blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
body.tpl-category .blog-card-thumb {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: var(--bg-section);
  flex-shrink: 0;
}
body.tpl-category .blog-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
body.tpl-category .blog-card:hover .blog-card-thumb img {
  transform: scale(1.06);
}
body.tpl-category .blog-card-thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--blue-light), #dbeafe);
}
body.tpl-category .blog-card-cat {
  position: absolute;
  top: 0.85rem;
  left: 0.85rem;
  background: var(--blue);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.28rem 0.6rem;
  border-radius: 5px;
}
body.tpl-category .blog-card-body {
  padding: 1.4rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
body.tpl-category .blog-card-title {
  font-family: var(--font-heading);
  font-size: 1.08rem;
  color: var(--text);
  line-height: 1.35;
  margin-bottom: 0.7rem;
}
body.tpl-category .blog-card-title a {
  color: inherit;
  transition: color 0.2s;
}
body.tpl-category .blog-card-title a:hover {
  color: var(--blue);
}
body.tpl-category .blog-card-excerpt {
  font-size: 0.85rem;
  color: var(--text-soft);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
body.tpl-category .blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
  gap: 0.5rem;
}
body.tpl-category .blog-card-meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.76rem;
  color: var(--text-soft);
}
body.tpl-category .blog-card-avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
body.tpl-category .blog-card-author {
  font-weight: 600;
  color: var(--text);
}
body.tpl-category .blog-card-sep {
  color: var(--border);
}
body.tpl-category .blog-card-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  white-space: nowrap;
  transition: gap 0.2s;
}
body.tpl-category .blog-card-link:hover {
  gap: 0.5rem;
}
body.tpl-category .blog-empty {
  text-align: center;
  padding: 5rem 1rem;
  color: var(--text-soft);
  font-size: 1.05rem;
}
body.tpl-category .pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
body.tpl-category .pagination a, body.tpl-category .pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 0.75rem;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 600;
  transition: background 0.2s, color 0.2s;
}
body.tpl-category .pagination a {
  color: var(--blue);
  border: 1px solid var(--border);
}
body.tpl-category .pagination a:hover {
  background: var(--blue);
  color: #fff;
  border-color: var(--blue);
}
body.tpl-category .pagination span.current {
  background: var(--blue);
  color: #fff;
  border: 1px solid var(--blue);
}
body.tpl-category .pagination span.dots {
  color: var(--text-soft);
  border: none;
  min-width: auto;
}
body.tpl-category .pagination-info {
  text-align: center;
  margin-bottom: 1.2rem;
  font-size: 0.85rem;
  color: var(--text-soft);
}
body.tpl-category .site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.5);
  padding: 2.5rem 0;
  font-size: 0.85rem;
}
body.tpl-category .footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
body.tpl-category .footer-logo {
  font-family: var(--font-heading);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
}
body.tpl-category .footer-logo span {
  color: var(--gold);
}
body.tpl-category .footer-copy a {
  color: inherit;
  text-decoration: underline;
}
@media (max-width: 1024px) {
  body.tpl-category .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  body.tpl-category .blog-grid {
    grid-template-columns: 1fr;
  }
  body.tpl-category .blog-hero {
    padding: 8rem 0 3.5rem;
  }
}

/* ============================================================
   TAXONOMY-HOTEL — body.tpl-taxonomy-hotel
   ============================================================ */
body.tpl-taxonomy-hotel .mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(13,24,37,0.98);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
body.tpl-taxonomy-hotel .mobile-nav.open {
  opacity: 1;
  pointer-events: all;
}
body.tpl-taxonomy-hotel .mobile-nav a {
  color: #fff;
  font-family: var(--font-heading, 'Playfair Display', Georgia, serif);
  font-size: 1.5rem;
}
body.tpl-taxonomy-hotel .mobile-nav-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  cursor: pointer;
  line-height: 1;
  padding: 0.5rem;
  z-index: 1;
}
body.tpl-taxonomy-hotel .mobile-nav-lang {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
body.tpl-taxonomy-hotel img {
  max-width: 100%;
  height: auto;
  display: block;
}
body.tpl-taxonomy-hotel a {
  text-decoration: none;
  color: inherit;
}
body.tpl-taxonomy-hotel .container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
body.tpl-taxonomy-hotel .site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.1rem 0;
  background: rgba(13,24,37,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.28);
}
body.tpl-taxonomy-hotel .header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
body.tpl-taxonomy-hotel .site-logo {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
}
body.tpl-taxonomy-hotel .site-logo span {
  color: var(--gold);
}
body.tpl-taxonomy-hotel .site-nav {
  display: flex;
  gap: 1.6rem;
  list-style: none;
  align-items: center;
}
body.tpl-taxonomy-hotel .site-nav a {
  color: rgba(255,255,255,0.82);
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.2s;
}
body.tpl-taxonomy-hotel .site-nav a:hover {
  color: #fff;
}
body.tpl-taxonomy-hotel .header-mobile-right {
  display: none;
  align-items: center;
  gap: 0.5rem;
}
body.tpl-taxonomy-hotel .lang-switcher-header-mobile {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  background: rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 0.2rem;
}
body.tpl-taxonomy-hotel .lang-switcher-header-mobile .lang-link {
  padding: 0.25rem 0.55rem;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
}
body.tpl-taxonomy-hotel .lang-switcher-header-mobile .lang-link.active {
  background: rgba(255,255,255,0.2);
  color: #fff;
}
@media (max-width: 1024px) {
  body.tpl-taxonomy-hotel .header-mobile-right {
    display: flex;
  }
}
body.tpl-taxonomy-hotel .lang-switcher-mobile-wrap {
  display: none;
}
@media (max-width: 1024px) {
  body.tpl-taxonomy-hotel .site-nav:not(.open) .lang-switcher-mobile-wrap {
    display: none;
  }
  body.tpl-taxonomy-hotel .site-nav.open .lang-switcher-mobile-wrap {
    display: block;
    width: 100%;
    padding-top: 0.75rem;
    margin-top: 0.75rem;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  body.tpl-taxonomy-hotel .site-nav.open .lang-switcher-mobile-wrap .lang-switcher-nav {
    background: rgba(255,255,255,0.06);
    width: auto;
    display: inline-flex;
  }
  body.tpl-taxonomy-hotel .site-nav.open .lang-link {
    border-bottom: none !important;
    width: auto !important;
    display: inline-block !important;
    padding: 0.3rem 0.65rem !important;
    font-size: 0.78rem !important;
  }
  body.tpl-taxonomy-hotel .site-nav.open li:has(.lang-switcher-nav):not(.lang-switcher-mobile-wrap) {
    display: none;
  }
}
body.tpl-taxonomy-hotel .lang-switcher-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 0.25rem;
}
body.tpl-taxonomy-hotel .lang-link {
  display: inline-block;
  padding: 0.3rem 0.65rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255,255,255,0.65);
  transition: background 0.2s, color 0.2s;
}
body.tpl-taxonomy-hotel .lang-link:hover {
  color: #fff;
}
body.tpl-taxonomy-hotel .lang-link.active {
  background: rgba(255,255,255,0.2);
  color: #fff;
}
body.tpl-taxonomy-hotel .hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
body.tpl-taxonomy-hotel .hamburger span {
  width: 22px;
  height: 2px;
  background: #fff;
  display: block;
  border-radius: 2px;
}
@media (max-width: 1024px) {
  body.tpl-taxonomy-hotel .site-nav {
    display: none;
  }
  body.tpl-taxonomy-hotel .hamburger {
    display: flex;
  }
}
body.tpl-taxonomy-hotel .mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(13,24,37,0.98);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
body.tpl-taxonomy-hotel .mobile-nav.open {
  opacity: 1;
  pointer-events: all;
}
body.tpl-taxonomy-hotel .mobile-nav a {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.5rem;
}
body.tpl-taxonomy-hotel .mobile-nav-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
}
body.tpl-taxonomy-hotel .mobile-nav-lang {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
body.tpl-taxonomy-hotel .term-hero {
  position: relative;
  padding: 8rem 0 3.5rem;
  overflow: hidden;
  background: var(--dark);
}
body.tpl-taxonomy-hotel .term-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.4;
  transform: scale(1.04);
  transition: transform 8s ease;
}
body.tpl-taxonomy-hotel .term-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(13,24,37,0.5) 0%, rgba(13,24,37,0.85) 100%);
}
body.tpl-taxonomy-hotel .term-hero-inner {
  position: relative;
  z-index: 2;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
body.tpl-taxonomy-hotel .breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.2rem;
  flex-wrap: wrap;
}
body.tpl-taxonomy-hotel .breadcrumb a {
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
body.tpl-taxonomy-hotel .breadcrumb a:hover {
  color: #fff;
}
body.tpl-taxonomy-hotel .breadcrumb-sep {
  color: rgba(255,255,255,0.3);
}
body.tpl-taxonomy-hotel .breadcrumb-current {
  color: rgba(255,255,255,0.9);
}
body.tpl-taxonomy-hotel .term-hero-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}
body.tpl-taxonomy-hotel .term-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.2rem);
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1rem;
}
body.tpl-taxonomy-hotel .term-hero-count {
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
}
body.tpl-taxonomy-hotel .term-hero-count strong {
  color: #fff;
}
body.tpl-taxonomy-hotel .term-intro {
  background: var(--blue-light, #e8f0fe);
  border-bottom: 1px solid var(--border, #e2e8f0);
}
body.tpl-taxonomy-hotel .term-intro .container {
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
}
body.tpl-taxonomy-hotel .term-intro p {
  margin: 0;
  max-width: none;
  color: var(--text-soft, #4a5568);
  font-size: 1.02rem;
  line-height: 1.7;
}
body.tpl-taxonomy-hotel .term-desc {
  background: #fff;
  border-top: 1px solid var(--border, #e2e8f0);
  padding: 3rem 0 4rem;
}
body.tpl-taxonomy-hotel .term-desc-inner {
  max-width: none;
}
body.tpl-taxonomy-hotel .term-desc h2 {
  font-family: var(--font-heading, 'Playfair Display', Georgia, serif);
  font-size: clamp(1.3rem, 2.4vw, 1.6rem);
  color: var(--text, #1a2332);
  margin-bottom: 1rem;
}
body.tpl-taxonomy-hotel .term-desc p {
  color: var(--text-soft, #4a5568);
  line-height: 1.8;
  margin-bottom: 1rem;
}
body.tpl-taxonomy-hotel .term-desc a {
  color: var(--blue, #1a56db);
  text-decoration: underline;
  text-underline-offset: 3px;
}
body.tpl-taxonomy-hotel .term-desc h3 {
  font-family: var(--font-heading, 'Playfair Display', Georgia, serif);
  color: var(--text, #1a2332);
  margin: 1.6rem 0 0.6rem;
  font-size: 1.2rem;
}
body.tpl-taxonomy-hotel .term-body {
  padding: 2.5rem 0 5rem;
  background: var(--bg-light);
  min-height: 60vh;
}
body.tpl-taxonomy-hotel .term-layout {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2.5rem;
  align-items: start;
}
body.tpl-taxonomy-hotel .term-sidebar {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  position: sticky;
  top: 5.5rem;
}
body.tpl-taxonomy-hotel .sidebar-title {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  color: var(--text);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}
body.tpl-taxonomy-hotel .filter-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
body.tpl-taxonomy-hotel .filter-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.4rem 0.7rem;
  border-radius: 7px;
  font-size: 0.86rem;
  color: var(--text-soft);
  transition: background 0.15s, color 0.15s;
}
body.tpl-taxonomy-hotel .filter-list a:hover {
  background: var(--blue-light);
  color: var(--blue);
}
body.tpl-taxonomy-hotel .filter-list a.active {
  background: var(--blue-light);
  color: var(--blue);
  font-weight: 600;
}
body.tpl-taxonomy-hotel .filter-count {
  font-size: 0.72rem;
  color: #a0aec0;
}
body.tpl-taxonomy-hotel .results-count {
  font-size: 0.88rem;
  color: var(--text-soft);
  margin-bottom: 1.5rem;
}
body.tpl-taxonomy-hotel .results-count strong {
  color: var(--text);
}
body.tpl-taxonomy-hotel .hotels-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
body.tpl-taxonomy-hotel .hotel-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
body.tpl-taxonomy-hotel .hotel-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
body.tpl-taxonomy-hotel .hotel-card-thumb {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: var(--bg-section);
  flex-shrink: 0;
}
body.tpl-taxonomy-hotel .hotel-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
body.tpl-taxonomy-hotel .hotel-card:hover .hotel-card-thumb img {
  transform: scale(1.06);
}
body.tpl-taxonomy-hotel .hotel-card-thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--blue-light), #dbeafe);
}
body.tpl-taxonomy-hotel .hotel-card-tipo {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--blue);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.28rem 0.6rem;
  border-radius: 5px;
}
body.tpl-taxonomy-hotel .hotel-card-rating {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: rgba(13,24,37,0.82);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.28rem 0.6rem;
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
body.tpl-taxonomy-hotel .hotel-card-body {
  padding: 1.1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
body.tpl-taxonomy-hotel .hotel-card-location {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.35rem;
}
body.tpl-taxonomy-hotel .hotel-card-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 0.55rem;
}
body.tpl-taxonomy-hotel .hotel-card-name a {
  color: inherit;
  transition: color 0.2s;
}
body.tpl-taxonomy-hotel .hotel-card-name a:hover {
  color: var(--blue);
}
body.tpl-taxonomy-hotel .hotel-card-excerpt {
  font-size: 0.83rem;
  color: var(--text-soft);
  line-height: 1.6;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0.9rem;
}
body.tpl-taxonomy-hotel .hotel-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border);
}
body.tpl-taxonomy-hotel .hotel-card-stars {
  color: var(--gold);
  font-size: 0.78rem;
}
body.tpl-taxonomy-hotel .hotel-card-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap 0.2s;
}
body.tpl-taxonomy-hotel .hotel-card-link:hover {
  gap: 0.5rem;
}
body.tpl-taxonomy-hotel .load-more-wrap {
  text-align: center;
  margin-top: 2.5rem;
}
body.tpl-taxonomy-hotel .load-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--blue);
  color: #fff;
  padding: 0.85rem 2.2rem;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
body.tpl-taxonomy-hotel .load-more-btn:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
}
body.tpl-taxonomy-hotel .load-more-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
body.tpl-taxonomy-hotel .load-more-btn.loading svg {
  animation: spin 1s linear infinite;
}
body.tpl-taxonomy-hotel .no-results {
  text-align: center;
  padding: 5rem 1.5rem;
}
body.tpl-taxonomy-hotel .no-results-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.2rem;
  background: var(--blue-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
}
body.tpl-taxonomy-hotel .no-results h2 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--text);
  margin-bottom: 0.6rem;
}
body.tpl-taxonomy-hotel .no-results p {
  color: var(--text-soft);
  max-width: 380px;
  margin: 0 auto 1.5rem;
  font-size: 0.95rem;
}
body.tpl-taxonomy-hotel .btn-home {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--blue);
  color: #fff;
  padding: 0.8rem 1.8rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.2s;
}
body.tpl-taxonomy-hotel .btn-home:hover {
  background: var(--blue-dark);
}
body.tpl-taxonomy-hotel .site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.5);
  padding: 2.5rem 0;
  font-size: 0.85rem;
}
body.tpl-taxonomy-hotel .footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
body.tpl-taxonomy-hotel .footer-logo {
  font-family: var(--font-heading);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
}
body.tpl-taxonomy-hotel .footer-logo span {
  color: var(--gold);
}
@media (max-width: 1024px) {
  body.tpl-taxonomy-hotel .term-layout {
    grid-template-columns: 1fr;
  }
  body.tpl-taxonomy-hotel .term-sidebar {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 1rem;
  }
  body.tpl-taxonomy-hotel .sidebar-title {
    width: 100%;
    border: none;
    padding: 0;
    margin-bottom: 0.25rem;
  }
  body.tpl-taxonomy-hotel .filter-list {
    flex-direction: row;
    flex-wrap: wrap;
  }
  body.tpl-taxonomy-hotel .filter-list a {
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 0.3rem 0.8rem;
    gap: 0.4rem;
  }
  body.tpl-taxonomy-hotel .hotels-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  body.tpl-taxonomy-hotel .hotels-grid {
    grid-template-columns: 1fr;
  }
  body.tpl-taxonomy-hotel .term-hero {
    padding: 7rem 0 2.5rem;
  }
}

/* ============================================================
   SEARCH — body.tpl-search
   ============================================================ */
body.tpl-search img {
  max-width: 100%;
  height: auto;
  display: block;
}
body.tpl-search a {
  text-decoration: none;
  color: inherit;
}
body.tpl-search .container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
body.tpl-search .site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.1rem 0;
  background: rgba(13,24,37,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.28);
}
body.tpl-search .header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
body.tpl-search .site-logo {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
}
body.tpl-search .site-logo span {
  color: var(--gold);
}
body.tpl-search .site-nav {
  display: flex;
  gap: 1.6rem;
  list-style: none;
  align-items: center;
}
body.tpl-search .site-nav a {
  color: rgba(255,255,255,0.82);
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.2s;
}
body.tpl-search .site-nav a:hover {
  color: #fff;
}
body.tpl-search .header-mobile-right {
  display: none;
  align-items: center;
  gap: 0.5rem;
}
body.tpl-search .lang-switcher-header-mobile {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  background: rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 0.2rem;
}
body.tpl-search .lang-switcher-header-mobile .lang-link {
  padding: 0.25rem 0.55rem;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.5px;
}
body.tpl-search .lang-switcher-header-mobile .lang-link.active {
  background: rgba(255,255,255,0.2);
  color: #fff;
}
@media (max-width: 1024px) {
  body.tpl-search .header-mobile-right {
    display: flex;
  }
}
body.tpl-search .lang-switcher-mobile-wrap {
  display: none;
}
@media (max-width: 1024px) {
  body.tpl-search .site-nav:not(.open) .lang-switcher-mobile-wrap {
    display: none;
  }
  body.tpl-search .site-nav.open .lang-switcher-mobile-wrap {
    display: block;
    width: 100%;
    padding-top: 0.75rem;
    margin-top: 0.75rem;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  body.tpl-search .site-nav.open .lang-switcher-mobile-wrap .lang-switcher-nav {
    background: rgba(255,255,255,0.06);
    width: auto;
    display: inline-flex;
  }
  body.tpl-search .site-nav.open .lang-link {
    border-bottom: none !important;
    width: auto !important;
    display: inline-block !important;
    padding: 0.3rem 0.65rem !important;
    font-size: 0.78rem !important;
  }
  body.tpl-search .site-nav.open li:has(.lang-switcher-nav):not(.lang-switcher-mobile-wrap) {
    display: none;
  }
}
body.tpl-search .lang-switcher-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 0.25rem;
  flex-shrink: 0;
}
body.tpl-search .lang-link {
  display: inline-block;
  padding: 0.3rem 0.65rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255,255,255,0.65);
  letter-spacing: 0.5px;
  transition: background 0.2s, color 0.2s;
}
body.tpl-search .lang-link:hover {
  color: #fff;
}
body.tpl-search .lang-link.active {
  background: rgba(255,255,255,0.2);
  color: #fff;
}
body.tpl-search .hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
body.tpl-search .hamburger span {
  width: 22px;
  height: 2px;
  background: #fff;
  display: block;
  border-radius: 2px;
}
@media (max-width: 1024px) {
  body.tpl-search .site-nav {
    display: none;
  }
  body.tpl-search .hamburger {
    display: flex;
  }
}
body.tpl-search .mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(13,24,37,0.98);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
body.tpl-search .mobile-nav.open {
  opacity: 1;
  pointer-events: all;
}
body.tpl-search .mobile-nav a {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.5rem;
}
body.tpl-search .mobile-nav-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.8rem;
  cursor: pointer;
}
body.tpl-search .mobile-nav-lang {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
body.tpl-search .search-hero {
  padding: 7rem 0 3rem;
  background: linear-gradient(135deg, #0d1825 0%, #1446b5 100%);
}
body.tpl-search .search-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
body.tpl-search .search-hero-title {
  font-family: var(--font-heading);
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  margin-bottom: 0.5rem;
}
body.tpl-search .search-hero-sub {
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
}
body.tpl-search .search-bar {
  background: #fff;
  border-radius: 12px;
  padding: 0.5rem 0.5rem 0.5rem 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.22);
  max-width: 680px;
}
body.tpl-search .search-bar input[type="search"] {
  flex: 1;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--text);
  background: transparent;
  min-width: 0;
}
body.tpl-search .search-bar input::placeholder {
  color: #a0aec0;
}
body.tpl-search .search-btn {
  background: var(--blue);
  color: #fff;
  border: none;
  cursor: pointer;
  padding: 0.7rem 1.3rem;
  border-radius: 9px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  transition: background 0.2s;
  white-space: nowrap;
  flex-shrink: 0;
}
body.tpl-search .search-btn:hover {
  background: var(--blue-dark);
}
body.tpl-search .search-body {
  padding: 2.5rem 0 5rem;
  background: var(--bg-light);
  min-height: 60vh;
}
body.tpl-search .search-layout {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 2.5rem;
  align-items: start;
}
body.tpl-search .search-sidebar {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow);
  position: sticky;
  top: 5.5rem;
}
body.tpl-search .sidebar-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--border);
}
body.tpl-search .filter-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
body.tpl-search .filter-list a {
  display: block;
  padding: 0.45rem 0.7rem;
  border-radius: 7px;
  font-size: 0.88rem;
  color: var(--text-soft);
  transition: background 0.15s, color 0.15s;
}
body.tpl-search .filter-list a:hover {
  background: var(--blue-light);
  color: var(--blue);
}
body.tpl-search .filter-list a.active {
  background: var(--blue-light);
  color: var(--blue);
  font-weight: 600;
}
body.tpl-search .filter-count {
  float: right;
  font-size: 0.75rem;
  color: #a0aec0;
  margin-left: 0.25rem;
}
body.tpl-search .results-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}
body.tpl-search .results-count {
  font-size: 0.9rem;
  color: var(--text-soft);
}
body.tpl-search .results-count strong {
  color: var(--text);
}
body.tpl-search .results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
body.tpl-search .hotel-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
body.tpl-search .hotel-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
body.tpl-search .hotel-card-thumb {
  position: relative;
  height: 200px;
  overflow: hidden;
  background: var(--bg-section);
}
body.tpl-search .hotel-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
body.tpl-search .hotel-card:hover .hotel-card-thumb img {
  transform: scale(1.06);
}
body.tpl-search .hotel-card-thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--blue-light), #dbeafe);
}
body.tpl-search .hotel-card-thumb-placeholder svg {
  color: var(--blue);
  opacity: 0.3;
}
body.tpl-search .hotel-card-tipo {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--blue);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.28rem 0.6rem;
  border-radius: 5px;
}
body.tpl-search .hotel-card-rating {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background: rgba(13,24,37,0.82);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0.28rem 0.6rem;
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
body.tpl-search .hotel-card-body {
  padding: 1.1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
body.tpl-search .hotel-card-location {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 0.35rem;
}
body.tpl-search .hotel-card-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--text);
  line-height: 1.3;
  margin-bottom: 0.55rem;
}
body.tpl-search .hotel-card-name a {
  color: inherit;
  transition: color 0.2s;
}
body.tpl-search .hotel-card-name a:hover {
  color: var(--blue);
}
body.tpl-search .hotel-card-excerpt {
  font-size: 0.83rem;
  color: var(--text-soft);
  line-height: 1.6;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 0.9rem;
}
body.tpl-search .hotel-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border);
}
body.tpl-search .hotel-card-stars {
  color: var(--gold);
  font-size: 0.78rem;
}
body.tpl-search .hotel-card-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap 0.2s;
}
body.tpl-search .hotel-card-link:hover {
  gap: 0.5rem;
}
body.tpl-search .load-more-wrap {
  text-align: center;
  margin-top: 2.5rem;
}
body.tpl-search .load-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--blue);
  color: #fff;
  padding: 0.85rem 2.2rem;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
body.tpl-search .load-more-btn:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
}
body.tpl-search .load-more-btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}
body.tpl-search .load-more-btn svg {
  transition: transform 0.3s;
}
body.tpl-search .load-more-btn.loading svg {
  animation: spin 1s linear infinite;
}
body.tpl-search .no-results {
  text-align: center;
  padding: 5rem 1.5rem;
}
body.tpl-search .no-results-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.5rem;
  background: var(--blue-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
}
body.tpl-search .no-results h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--text);
  margin-bottom: 0.75rem;
}
body.tpl-search .no-results p {
  color: var(--text-soft);
  max-width: 400px;
  margin: 0 auto 1.5rem;
}
body.tpl-search .btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--blue);
  color: #fff;
  padding: 0.8rem 1.8rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.92rem;
  transition: background 0.2s, transform 0.2s;
}
body.tpl-search .btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-1px);
}
body.tpl-search .site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.55);
  padding: 2.5rem 0;
  font-size: 0.85rem;
}
body.tpl-search .footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
body.tpl-search .footer-logo {
  font-family: var(--font-heading);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
}
body.tpl-search .footer-logo span {
  color: var(--gold);
}
@media (max-width: 1024px) {
  body.tpl-search .search-layout {
    grid-template-columns: 1fr;
  }
  body.tpl-search .search-sidebar {
    position: static;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 1rem;
  }
  body.tpl-search .sidebar-title {
    width: 100%;
    border: none;
    padding: 0;
    margin-bottom: 0.5rem;
  }
  body.tpl-search .filter-list {
    flex-direction: row;
    flex-wrap: wrap;
  }
  body.tpl-search .filter-list a {
    padding: 0.35rem 0.75rem;
    border: 1px solid var(--border);
    border-radius: 999px;
  }
  body.tpl-search .results-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  body.tpl-search .search-bar {
    flex-direction: column;
    padding: 0.75rem;
    align-items: stretch;
  }
  body.tpl-search .search-btn {
    justify-content: center;
  }
  body.tpl-search .results-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   SINGLE — body.tpl-single
   ============================================================ */
body.tpl-single .mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(13,24,37,0.98);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}
body.tpl-single .mobile-nav.open {
  opacity: 1;
  pointer-events: all;
}
body.tpl-single .mobile-nav a {
  color: #fff;
  font-family: var(--font-heading, 'Playfair Display', Georgia, serif);
  font-size: 1.5rem;
}
body.tpl-single .mobile-nav-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  font-size: 2.2rem;
  cursor: pointer;
  line-height: 1;
  padding: 0.5rem;
  z-index: 1;
}
body.tpl-single .mobile-nav-lang {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
body.tpl-single img {
  max-width: 100%;
  height: auto;
  display: block;
}
body.tpl-single a {
  text-decoration: none;
  color: inherit;
}
body.tpl-single .container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
body.tpl-single .container-narrow {
  max-width: var(--content-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
body.tpl-single .site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.1rem 0;
  background: rgba(13,24,37,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 2px 20px rgba(0,0,0,0.28);
}
body.tpl-single .header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
body.tpl-single .site-logo {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
}
body.tpl-single .site-logo span {
  color: var(--gold);
}
body.tpl-single .site-nav {
  display: flex;
  gap: 1.6rem;
  list-style: none;
  align-items: center;
}
body.tpl-single .site-nav a {
  color: rgba(255,255,255,0.82);
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.2s;
}
body.tpl-single .site-nav a:hover {
  color: #fff;
}
body.tpl-single .header-mobile-right {
  display: none;
  align-items: center;
  gap: 0.5rem;
}
body.tpl-single .lang-switcher-header-mobile {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  background: rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 0.2rem;
}
body.tpl-single .lang-switcher-header-mobile .lang-link {
  padding: 0.25rem 0.55rem;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
}
body.tpl-single .lang-switcher-header-mobile .lang-link.active {
  background: rgba(255,255,255,0.2);
  color: #fff;
}
@media (max-width: 1024px) {
  body.tpl-single .header-mobile-right {
    display: flex;
  }
}
body.tpl-single .lang-switcher-mobile-wrap {
  display: none;
}
@media (max-width: 1024px) {
  body.tpl-single .site-nav:not(.open) .lang-switcher-mobile-wrap {
    display: none;
  }
  body.tpl-single .site-nav.open .lang-switcher-mobile-wrap {
    display: block;
    width: 100%;
    padding-top: 0.75rem;
    margin-top: 0.75rem;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  body.tpl-single .site-nav.open .lang-switcher-mobile-wrap .lang-switcher-nav {
    background: rgba(255,255,255,0.06);
    width: auto;
    display: inline-flex;
  }
  body.tpl-single .site-nav.open .lang-link {
    border-bottom: none !important;
    width: auto !important;
    display: inline-block !important;
    padding: 0.3rem 0.65rem !important;
    font-size: 0.78rem !important;
  }
  body.tpl-single .site-nav.open li:has(.lang-switcher-nav):not(.lang-switcher-mobile-wrap) {
    display: none;
  }
}
body.tpl-single .lang-switcher-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 0.25rem;
}
body.tpl-single .lang-link {
  display: inline-block;
  padding: 0.3rem 0.65rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 700;
  color: rgba(255,255,255,0.65);
  transition: background 0.2s, color 0.2s;
}
body.tpl-single .lang-link:hover {
  color: #fff;
}
body.tpl-single .lang-link.active {
  background: rgba(255,255,255,0.2);
  color: #fff;
}
body.tpl-single .hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
body.tpl-single .hamburger span {
  width: 22px;
  height: 2px;
  background: #fff;
  display: block;
  border-radius: 2px;
}
@media (max-width: 1024px) {
  body.tpl-single .site-nav {
    display: none;
  }
  body.tpl-single .hamburger {
    display: flex;
  }
}
body.tpl-single .post-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background: var(--dark);
  padding-top: 80px;
}
body.tpl-single .post-hero-img {
  position: absolute;
  inset: 0;
  z-index: 0;
}
body.tpl-single .post-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}
body.tpl-single .post-hero-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(13,24,37,0.15) 0%,
    rgba(13,24,37,0.55) 40%,
    rgba(13,24,37,0.92) 100%
  );
}
body.tpl-single .post-hero-content {
  position: relative;
  z-index: 2;
  max-width: var(--content-w);
  margin: 0 auto;
  padding: 3rem 1.5rem 3.5rem;
  width: 100%;
}
body.tpl-single .breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  margin-bottom: 1.4rem;
  flex-wrap: wrap;
}
body.tpl-single .breadcrumb a {
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
}
body.tpl-single .breadcrumb a:hover {
  color: #fff;
}
body.tpl-single .breadcrumb-sep {
  color: rgba(255,255,255,0.3);
}
body.tpl-single .breadcrumb-current {
  color: rgba(255,255,255,0.85);
}
body.tpl-single .post-cat {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  margin-bottom: 1.1rem;
}
body.tpl-single .post-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 4.5vw, 3rem);
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.1rem;
}
body.tpl-single .post-hero-excerpt {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 1.8rem;
  max-width: 640px;
}
body.tpl-single .post-meta {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-wrap: wrap;
}
body.tpl-single .post-meta-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.4);
  flex-shrink: 0;
}
body.tpl-single .post-meta-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}
body.tpl-single .post-meta-author {
  font-weight: 600;
  color: #fff;
  font-size: 0.9rem;
}
body.tpl-single .post-meta-details {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.65);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
body.tpl-single .post-meta-dot {
  width: 3px;
  height: 3px;
  background: rgba(255,255,255,0.4);
  border-radius: 50%;
  flex-shrink: 0;
}
body.tpl-single .post-body {
  padding: 4rem 0 5rem;
  background: #fff;
}
body.tpl-single .post-content {
  max-width: var(--content-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
body.tpl-single .post-content .entry-content {
  line-height: 1.85;
  color: var(--text-soft);
  font-size: 1.02rem;
}
body.tpl-single .post-content .entry-content > * + * {
  margin-top: 1.4rem;
}
body.tpl-single .post-content .entry-content h2 {
  font-family: var(--font-heading);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  color: var(--text);
  margin-top: 3rem;
  margin-bottom: 0.8rem;
  line-height: 1.25;
}
body.tpl-single .post-content .entry-content h3 {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--text);
  margin-top: 2.2rem;
  margin-bottom: 0.6rem;
}
body.tpl-single .post-content .entry-content h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
  margin-top: 1.8rem;
}
body.tpl-single .post-content .entry-content p {
  margin-bottom: 0;
}
body.tpl-single .post-content .entry-content a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}
body.tpl-single .post-content .entry-content a:hover {
  color: var(--blue-dark);
}
body.tpl-single .post-content .entry-content strong {
  color: var(--text);
  font-weight: 600;
}
body.tpl-single .post-content .entry-content em {
  font-style: italic;
}
body.tpl-single .post-content .entry-content ul, body.tpl-single .post-content .entry-content ol {
  padding-left: 1.6rem;
}
body.tpl-single .post-content .entry-content li {
  margin-bottom: 0.5rem;
}
body.tpl-single .post-content .entry-content blockquote {
  border-left: 4px solid var(--gold);
  padding: 1rem 1.5rem;
  margin: 2rem 0;
  background: var(--bg-light);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: var(--text);
  font-size: 1.08rem;
}
body.tpl-single .post-content .entry-content figure {
  margin: 2rem 0;
}
body.tpl-single .post-content .entry-content figure img {
  border-radius: var(--radius);
  width: 100%;
}
body.tpl-single .post-content .entry-content figcaption {
  font-size: 0.82rem;
  color: var(--text-soft);
  text-align: center;
  margin-top: 0.6rem;
  font-style: italic;
}
body.tpl-single .post-content .entry-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 0.9rem;
}
body.tpl-single .post-content .entry-content th {
  background: var(--bg-section);
  padding: 0.65rem 1rem;
  text-align: left;
  font-weight: 600;
  border: 1px solid var(--border);
}
body.tpl-single .post-content .entry-content td {
  padding: 0.65rem 1rem;
  border: 1px solid var(--border);
}
body.tpl-single .post-content .entry-content img {
  border-radius: var(--radius);
}
body.tpl-single .post-content .entry-content .wp-block-image {
  margin: 2rem 0;
}
body.tpl-single .post-content .entry-content .wp-block-image.alignfull, body.tpl-single .post-content .entry-content .wp-block-image.alignwide {
  border-radius: 0;
}
body.tpl-single .post-divider {
  max-width: var(--content-w);
  margin: 3rem auto 0;
  padding: 0 1.5rem;
  border-top: 1px solid var(--border);
}
body.tpl-single .post-tags {
  padding-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
body.tpl-single .post-tag {
  display: inline-block;
  padding: 0.3rem 0.85rem;
  background: var(--bg-section);
  border-radius: 999px;
  font-size: 0.8rem;
  color: var(--text-soft);
  transition: background 0.2s, color 0.2s;
}
body.tpl-single .post-tag:hover {
  background: var(--blue-light);
  color: var(--blue);
}
body.tpl-single .related-posts {
  padding: 4rem 0 5rem;
  background: var(--bg-light);
}
body.tpl-single .related-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.2rem;
}
body.tpl-single .related-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--dark);
}
body.tpl-single .related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
body.tpl-single .related-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
body.tpl-single .related-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
body.tpl-single .related-card-thumb {
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--bg-section);
}
body.tpl-single .related-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}
body.tpl-single .related-card:hover .related-card-thumb img {
  transform: scale(1.06);
}
body.tpl-single .related-card-thumb-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--blue-light), #dbeafe);
  display: flex;
  align-items: center;
  justify-content: center;
}
body.tpl-single .related-card-body {
  padding: 1.2rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
body.tpl-single .related-card-cat {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--blue);
  margin-bottom: 0.5rem;
}
body.tpl-single .related-card-title {
  font-family: var(--font-heading);
  font-size: 1rem;
  color: var(--text);
  line-height: 1.35;
  margin-bottom: 0.5rem;
}
body.tpl-single .related-card-title a {
  color: inherit;
  transition: color 0.2s;
}
body.tpl-single .related-card-title a:hover {
  color: var(--blue);
}
body.tpl-single .related-card-excerpt {
  font-size: 0.85rem;
  color: var(--text-soft);
  line-height: 1.6;
  flex: 1;
  margin-bottom: 0.9rem;
}
body.tpl-single .related-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0.85rem;
  border-top: 1px solid var(--border);
}
body.tpl-single .related-card-date {
  font-size: 0.76rem;
  color: var(--text-soft);
}
body.tpl-single .related-card-link {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--blue);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap 0.2s;
}
body.tpl-single .related-card-link:hover {
  gap: 0.5rem;
}
body.tpl-single .site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.5);
  padding: 2.5rem 0;
  font-size: 0.85rem;
}
body.tpl-single .footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
body.tpl-single .footer-logo {
  font-family: var(--font-heading);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
}
body.tpl-single .footer-logo span {
  color: var(--gold);
}
body.tpl-single .footer-copy a {
  color: inherit;
  text-decoration: underline;
}
@media (max-width: 1024px) {
  body.tpl-single .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 640px) {
  body.tpl-single .post-hero {
    min-height: 70vh;
  }
  body.tpl-single .related-grid {
    grid-template-columns: 1fr;
  }
  body.tpl-single .post-hero-excerpt {
    display: none;
  }
}

/* ============================================================
   SINGLE-HOTEL — body.tpl-single-hotel
   ============================================================ */
body.tpl-single-hotel img {
  max-width: 100%;
  height: auto;
  display: block;
}
body.tpl-single-hotel a {
  text-decoration: none;
  color: inherit;
}
body.tpl-single-hotel h1, body.tpl-single-hotel h2, body.tpl-single-hotel h3, body.tpl-single-hotel h4 {
  font-family: var(--font-heading);
  line-height: 1.2;
}
body.tpl-single-hotel h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
}
body.tpl-single-hotel h2 {
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  margin-bottom: 1.5rem;
}
body.tpl-single-hotel h3 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
}
body.tpl-single-hotel p {
  line-height: 1.75;
  color: var(--text-soft);
}
body.tpl-single-hotel p + p {
  margin-top: 0.9rem;
}
body.tpl-single-hotel .container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
body.tpl-single-hotel .section {
  padding: 5rem 0;
}
body.tpl-single-hotel .section-alt {
  background: var(--bg-section);
}
body.tpl-single-hotel .site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.3s, box-shadow 0.3s;
  padding: 1rem 0;
}
body.tpl-single-hotel .site-header.scrolled {
  background: rgba(13,24,37,0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 16px rgba(0,0,0,0.3);
}
body.tpl-single-hotel .header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
body.tpl-single-hotel .site-logo {
  color: #fff;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
}
body.tpl-single-hotel .site-logo span {
  color: var(--gold);
}
body.tpl-single-hotel .site-nav {
  display: flex;
  gap: 1.5rem;
  list-style: none;
  align-items: center;
}
body.tpl-single-hotel .site-nav a {
  color: rgba(255,255,255,0.85);
  font-size: 0.88rem;
  font-weight: 500;
  transition: color 0.2s;
}
body.tpl-single-hotel .site-nav a:hover {
  color: #fff;
}
body.tpl-single-hotel .nav-cta {
  background: var(--blue);
  color: #fff !important;
  padding: 0.5rem 1.2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: background 0.2s;
}
body.tpl-single-hotel .nav-cta:hover {
  background: var(--blue-dark) !important;
}
body.tpl-single-hotel .hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
body.tpl-single-hotel .hamburger span {
  width: 22px;
  height: 2px;
  background: #fff;
  display: block;
  transition: all 0.3s;
}
body.tpl-single-hotel .hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
body.tpl-single-hotel .hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: kenBurns 30s ease-out infinite alternate;
}
body.tpl-single-hotel .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(13,24,37,0.18) 0%, rgba(13,24,37,0.7) 100%);
}
body.tpl-single-hotel .hero-content {
  position: relative;
  z-index: 2;
  padding: 0 1.5rem;
  max-width: 800px;
}
body.tpl-single-hotel .hero-tag {
  display: inline-block;
  background: rgba(201,168,76,0.9);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 0.35rem 1rem;
  border-radius: 20px;
  margin-bottom: 1.2rem;
}
body.tpl-single-hotel .hero h1 {
  color: #fff;
  text-shadow: 0 2px 16px rgba(0,0,0,0.5);
  margin-bottom: 1rem;
}
body.tpl-single-hotel .hero-subtitle {
  color: rgba(255,255,255,0.9);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}
body.tpl-single-hotel .hero-cta {
  display: inline-block;
  background: var(--blue);
  color: #fff;
  padding: 1rem 2.5rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 4px 20px rgba(26,86,219,0.4);
}
body.tpl-single-hotel .hero-cta:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
}
body.tpl-single-hotel .hero-stats {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 2rem;
  z-index: 2;
  background: rgba(13,24,37,0.55);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 14px;
  padding: 1rem 2.5rem;
}
body.tpl-single-hotel .hero-stat {
  text-align: center;
}
body.tpl-single-hotel .hero-stat-val {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  font-family: var(--font-heading);
}
body.tpl-single-hotel .hero-stat-lbl {
  display: block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.7);
  margin-top: 2px;
}
body.tpl-single-hotel .related-title {
  text-align: center;
  margin-bottom: 2.5rem;
}
body.tpl-single-hotel .related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
body.tpl-single-hotel .related-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
}
body.tpl-single-hotel .related-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
body.tpl-single-hotel .related-img-wrap {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16/9;
  flex-shrink: 0;
}
body.tpl-single-hotel .related-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
body.tpl-single-hotel .related-card:hover .related-img {
  transform: scale(1.05);
}
body.tpl-single-hotel .related-category {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  background: var(--blue);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 0.25rem 0.65rem;
  border-radius: 20px;
  text-transform: uppercase;
}
body.tpl-single-hotel .related-body {
  padding: 1.25rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
body.tpl-single-hotel .related-name {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  margin: 0;
}
body.tpl-single-hotel .related-name a {
  color: var(--text);
  text-decoration: none;
  transition: color 0.2s;
}
body.tpl-single-hotel .related-name a:hover {
  color: var(--blue);
}
body.tpl-single-hotel .related-desc {
  font-size: 0.88rem;
  color: var(--text-soft);
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 900px) {
  body.tpl-single-hotel .related-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}
@media (min-width: 601px) and (max-width: 900px) {
  body.tpl-single-hotel .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
body.tpl-single-hotel .breadcrumb-nav {
  background: #fff;
  padding: 0.6rem 0;
}
body.tpl-single-hotel .breadcrumb-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
  gap: 0.4rem;
  margin: 0;
  padding: 0;
}
body.tpl-single-hotel .breadcrumb-item a {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  font-size: 0.82rem;
  color: var(--text-soft);
  text-decoration: none;
  transition: color 0.2s;
}
body.tpl-single-hotel .breadcrumb-item a:hover {
  color: var(--blue);
}
body.tpl-single-hotel .breadcrumb-item a svg {
  flex-shrink: 0;
  opacity: 0.6;
}
body.tpl-single-hotel .breadcrumb-sep {
  font-size: 0.82rem;
  color: var(--text-soft);
  opacity: 0.4;
}
body.tpl-single-hotel .breadcrumb-current {
  font-size: 0.82rem;
  color: var(--text);
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 55vw;
}
@media (max-width: 768px) {
  body.tpl-single-hotel .breadcrumb-current {
    white-space: normal;
    text-overflow: unset;
    max-width: 100%;
  }
}
body.tpl-single-hotel .quick-facts-section {
  background: var(--bg-light);
  position: relative;
  padding: 1.5rem 0 0.25rem;
}
body.tpl-single-hotel .quick-facts-scroll {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 0.5rem;
  flex-wrap: nowrap;
  /* NON usare justify-content:center su un contenitore scrollabile: quando
     il contenuto trabocca, la parte sinistra finisce oltre l'origine dello
     scroll e diventa irraggiungibile. I margini auto sul primo/ultimo figlio
     centrano quando c'è spazio e scrollano correttamente quando non c'è. */
  justify-content: flex-start;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (max-width: 768px) {
  body.tpl-single-hotel .quick-facts-scroll {
    justify-content: flex-start;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}
body.tpl-single-hotel .quick-facts-scroll::-webkit-scrollbar {
  display: none;
}
body.tpl-single-hotel .quick-facts-scroll .qf-pill:first-child { margin-left: auto; }
body.tpl-single-hotel .quick-facts-scroll .qf-pill:last-child  { margin-right: auto; }
body.tpl-single-hotel .qf-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  white-space: nowrap;
  background: var(--bg-section);
  border: 1px solid var(--border);
  border-radius: 100px;
  padding: 0.45rem 1rem;
  font-size: 0.83rem;
  font-weight: 500;
  color: var(--text);
  flex-shrink: 0;
}
body.tpl-single-hotel .qf-pill svg {
  flex-shrink: 0;
  color: var(--blue);
}
body.tpl-single-hotel .qf-label {
  color: var(--text-soft);
  font-size: 0.75rem;
  margin-right: 0.1rem;
}
body.tpl-single-hotel .qf-value {
  font-weight: 600;
  color: var(--text);
}
body.tpl-single-hotel .swipe-hint {
  display: none;
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: #4a5568;
  color: #fff;
  padding: 0.35rem 0.8rem;
  border-radius: 24px;
  font-size: 0.75rem;
  font-weight: 500;
  align-items: center;
  gap: 0.35rem;
  opacity: 0;
  pointer-events: none;
  z-index: 5;
}
body.tpl-single-hotel .swipe-hint .hand {
  display: inline-block;
}
body.tpl-single-hotel .swipe-hint.active {
  animation: swipePulse 3.5s ease-in-out forwards;
}
body.tpl-single-hotel .swipe-hint.active .hand {
  animation: swipeSlide 1.1s ease-in-out 0.4s 2;
}
body.tpl-single-hotel .affiliate-strip {
  background: var(--bg-light);
  padding: 0.2rem 0 0.6rem;
  text-align: center;
}
body.tpl-single-hotel .affiliate-strip p {
  font-size: 0.75rem;
  color: var(--text-soft);
  opacity: 0.7;
}
body.tpl-single-hotel .about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
body.tpl-single-hotel .about-text h2 {
  position: relative;
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
}
body.tpl-single-hotel .about-text h2::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 48px;
  height: 3px;
  background: var(--gold);
  border-radius: 3px;
}
body.tpl-single-hotel .about-text p {
  font-size: 1rem;
}
body.tpl-single-hotel .about-img-wrap {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
}
body.tpl-single-hotel .about-img-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--radius);
}
body.tpl-single-hotel .about-img-badge {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  background: rgba(13,24,37,0.82);
  backdrop-filter: blur(8px);
  color: #fff;
  padding: 0.6rem 1rem;
  border-radius: 10px;
  font-size: 0.82rem;
  font-weight: 500;
}
body.tpl-single-hotel .booking-bar-section {
  background: var(--dark);
  padding: 3.5rem 0;
  position: relative;
  overflow: hidden;
}
body.tpl-single-hotel .booking-bar-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
body.tpl-single-hotel .booking-bar-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}
body.tpl-single-hotel .booking-bar-inner h2 {
  color: #fff;
  margin-bottom: 0.5rem;
  font-size: 1.9rem;
}
body.tpl-single-hotel .booking-bar-inner p {
  color: rgba(255,255,255,0.65);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}
body.tpl-single-hotel .booking-btn-group {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
body.tpl-single-hotel .btn-primary {
  display: inline-block;
  background: var(--blue);
  color: #fff !important;
  padding: 1rem 2.4rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  transition: background 0.2s, transform 0.15s;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(26,86,219,0.4);
}
body.tpl-single-hotel .btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
}
body.tpl-single-hotel .btn-outline {
  display: inline-block;
  background: transparent;
  color: #fff;
  padding: 1rem 2.4rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid rgba(255,255,255,0.35);
  transition: border-color 0.2s, background 0.2s;
  cursor: pointer;
}
body.tpl-single-hotel .btn-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.08);
}
body.tpl-single-hotel .rooms-intro {
  max-width: 100%;
  margin: 0 0 3rem;
  text-align: left;
}
body.tpl-single-hotel .rooms-intro p {
  font-size: 1.02rem;
}
body.tpl-single-hotel .rooms-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
body.tpl-single-hotel .room-card {
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}
body.tpl-single-hotel .room-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
body.tpl-single-hotel .room-img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}
body.tpl-single-hotel .room-body {
  padding: 1.5rem;
}
body.tpl-single-hotel .room-name {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--text);
  margin-bottom: 0.25rem;
}
body.tpl-single-hotel .room-meta {
  font-size: 0.85rem;
  color: var(--text-soft);
  margin-bottom: 1rem;
}
body.tpl-single-hotel .room-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 1rem 0;
}
body.tpl-single-hotel .room-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  margin-bottom: 1rem;
}
body.tpl-single-hotel .room-features li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.88rem;
  color: var(--text-soft);
}
body.tpl-single-hotel .room-features li svg {
  flex-shrink: 0;
  color: var(--blue);
}
body.tpl-single-hotel .room-desc {
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
body.tpl-single-hotel .room-cta {
  display: block;
  width: 100%;
  background: var(--blue);
  color: #fff;
  text-align: center;
  padding: 0.8rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: background 0.2s;
  border: none;
  cursor: pointer;
}
body.tpl-single-hotel .room-cta:hover {
  background: var(--blue-dark);
}
body.tpl-single-hotel .suited-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2.5rem;
}
body.tpl-single-hotel .suited-card {
  border-radius: var(--radius);
  padding: 2rem;
}
body.tpl-single-hotel .suited-yes {
  background: #f0f7ff;
  border: 1px solid #c3dafc;
}
body.tpl-single-hotel .suited-no {
  background: #fff8f0;
  border: 1px solid #fcddbf;
}
body.tpl-single-hotel .suited-card h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
}
body.tpl-single-hotel .suited-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
body.tpl-single-hotel .suited-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.93rem;
  color: var(--text-soft);
  line-height: 1.5;
}
body.tpl-single-hotel .suited-card ul li::before {
  content: '';
  flex-shrink: 0;
}
body.tpl-single-hotel .suited-card ul li svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  min-width: 16px;
  min-height: 16px;
  margin-top: 2px;
}
body.tpl-single-hotel .services-intro {
  max-width: 100%;
  margin: 0 0 3rem;
  text-align: left;
}
body.tpl-single-hotel .services-intro p {
  font-size: 1rem;
}
body.tpl-single-hotel .services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
body.tpl-single-hotel .service-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.75rem;
  border-top: 3px solid var(--blue);
  box-shadow: var(--shadow);
  transition: transform 0.3s, box-shadow 0.3s;
}
body.tpl-single-hotel .service-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}
body.tpl-single-hotel .service-card:nth-child(2) {
  border-top-color: var(--gold);
}
body.tpl-single-hotel .service-card:nth-child(3) {
  border-top-color: #2dd4bf;
}
body.tpl-single-hotel .service-card:nth-child(4) {
  border-top-color: #a78bfa;
}
body.tpl-single-hotel .service-card:nth-child(5) {
  border-top-color: #f59e0b;
}
body.tpl-single-hotel .service-card:nth-child(6) {
  border-top-color: #34d399;
}
body.tpl-single-hotel .service-card h3 {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 1rem;
}
body.tpl-single-hotel .service-card h3 svg {
  color: var(--blue);
  flex-shrink: 0;
}
body.tpl-single-hotel .service-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
body.tpl-single-hotel .service-list li[hidden] {
  display: none;
}
body.tpl-single-hotel .service-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.45rem;
  font-size: 0.88rem;
  color: var(--text-soft);
  line-height: 1.4;
}
body.tpl-single-hotel .service-list li svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--blue);
}
body.tpl-single-hotel .fac-toggle {
  margin-top: 0.65rem;
  background: none;
  border: none;
  padding: 0;
  color: var(--blue);
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}
body.tpl-single-hotel .fac-toggle:hover {
  opacity: 0.75;
}
body.tpl-single-hotel .guide-link {
  margin-top: 1.1rem;
  font-size: 0.95rem;
}
body.tpl-single-hotel .guide-link a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}
body.tpl-single-hotel .guide-link a:hover {
  opacity: 0.8;
}
body.tpl-single-hotel .qf-value a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: var(--blue);
}
body.tpl-single-hotel .location-text {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
body.tpl-single-hotel .poi-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 2.5rem;
  margin-bottom: 2.5rem;
}
body.tpl-single-hotel .poi-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  font-size: 0.9rem;
  gap: 1rem;
}
body.tpl-single-hotel .poi-name {
  font-weight: 500;
  color: var(--text);
  flex: 1;
}
body.tpl-single-hotel .poi-desc {
  font-weight: 400;
  color: var(--text-soft);
  font-size: 0.82rem;
}
body.tpl-single-hotel .poi-dist {
  color: var(--blue);
  font-weight: 600;
  font-size: 0.85rem;
  white-space: nowrap;
}
body.tpl-single-hotel .map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
body.tpl-single-hotel .map-wrap iframe {
  display: block;
}
body.tpl-single-hotel .reviews-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 3rem;
}
body.tpl-single-hotel .score-circle {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: linear-gradient(135deg, #0d1825, #1a56db);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  box-shadow: 0 8px 32px rgba(26,86,219,0.3);
}
body.tpl-single-hotel .score-num {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  color: #fff;
  font-weight: 700;
}
body.tpl-single-hotel .score-label {
  font-size: 1rem;
  color: var(--text-soft);
  font-weight: 500;
}
body.tpl-single-hotel .review-bars {
  max-width: 560px;
  margin: 0 auto 2rem;
  width: 100%;
}
body.tpl-single-hotel .bar-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.85rem;
}
body.tpl-single-hotel .bar-label {
  width: 180px;
  font-size: 0.88rem;
  color: var(--text-soft);
  flex-shrink: 0;
}
body.tpl-single-hotel .bar-track {
  flex: 1;
  height: 8px;
  background: var(--border);
  border-radius: 4px;
  overflow: hidden;
}
body.tpl-single-hotel .bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--blue), #60a5fa);
  border-radius: 4px;
  width: 0;
  transition: width 1.4s ease-out;
}
body.tpl-single-hotel .bar-score {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text);
  min-width: 28px;
  text-align: right;
}
body.tpl-single-hotel .review-sentiment {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  font-size: 0.97rem;
  line-height: 1.7;
  color: var(--text-soft);
  padding: 1.5rem;
  background: var(--bg-light);
  border-radius: var(--radius);
  border-left: 4px solid var(--blue);
}
body.tpl-single-hotel .gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 180px;
  gap: 0.75rem;
}
body.tpl-single-hotel .gallery-thumb {
  overflow: hidden;
  border-radius: 8px;
  cursor: pointer;
  position: relative;
  background: var(--bg-section);
  height: 180px;
}
body.tpl-single-hotel .gallery-thumb:first-child {
  grid-column: span 2;
  grid-row: span 2;
  height: calc(180px * 2 + 0.75rem);
}
body.tpl-single-hotel .gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
body.tpl-single-hotel .gallery-thumb:hover img {
  transform: scale(1.06);
}
body.tpl-single-hotel .gallery-more {
  border-radius: 8px;
  background: var(--dark);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}
body.tpl-single-hotel .gallery-more:hover {
  background: var(--blue);
}
body.tpl-single-hotel .lightbox {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.94);
  align-items: center;
  justify-content: center;
}
body.tpl-single-hotel .lightbox.open {
  display: flex;
}
body.tpl-single-hotel .lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 6px;
}
body.tpl-single-hotel .lb-close, body.tpl-single-hotel .lb-prev, body.tpl-single-hotel .lb-next {
  position: absolute;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  font-size: 2rem;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s;
}
body.tpl-single-hotel .lb-close:hover, body.tpl-single-hotel .lb-prev:hover, body.tpl-single-hotel .lb-next:hover {
  background: rgba(255,255,255,0.18);
}
body.tpl-single-hotel .lb-close {
  top: 1rem;
  right: 1rem;
  font-size: 1.6rem;
}
body.tpl-single-hotel .lb-prev {
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
}
body.tpl-single-hotel .lb-next {
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}
body.tpl-single-hotel .lb-counter {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}
body.tpl-single-hotel .faq-list {
  max-width: 800px;
  margin: 0 auto;
}
body.tpl-single-hotel .faq-item {
  border-bottom: 1px solid var(--border);
}
body.tpl-single-hotel .faq-question {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  padding: 1.3rem 0;
  text-align: left;
  font-family: var(--font-heading);
  font-size: 1.02rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.4;
}
body.tpl-single-hotel .faq-icon {
  font-size: 1.4rem;
  color: var(--blue);
  flex-shrink: 0;
  transition: transform 0.25s;
}
body.tpl-single-hotel .faq-question[aria-expanded="true"] .faq-icon {
  transform: rotate(45deg);
}
body.tpl-single-hotel .faq-answer {
  padding: 0 0 1.3rem;
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-soft);
}
body.tpl-single-hotel .faq-answer a {
  color: var(--blue, #1a56db);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.15s;
}
body.tpl-single-hotel .faq-answer a:hover {
  color: var(--gold, #c9a84c);
}
body.tpl-single-hotel .site-footer {
  background: var(--dark);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 2rem;
}
body.tpl-single-hotel .footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
body.tpl-single-hotel .footer-col h4 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 1.25rem;
  font-family: var(--font-heading);
}
body.tpl-single-hotel .footer-col p, body.tpl-single-hotel .footer-col address {
  font-size: 0.88rem;
  line-height: 1.7;
  font-style: normal;
  color: rgba(255,255,255,0.75);
}
body.tpl-single-hotel .footer-col a {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  display: block;
  margin-bottom: 0.4rem;
  transition: color 0.2s;
}
body.tpl-single-hotel .footer-col a:hover {
  color: #fff;
}
body.tpl-single-hotel .footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}
body.tpl-single-hotel .footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.65);
}
body.tpl-single-hotel .footer-bottom a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.55);
}
body.tpl-single-hotel .footer-bottom a:hover {
  color: rgba(255,255,255,0.8);
}
body.tpl-single-hotel .footer-links-inline {
  display: flex;
  gap: 1.5rem;
}
body.tpl-single-hotel .exit-popup {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10001;
  align-items: center;
  justify-content: center;
}
body.tpl-single-hotel .exit-popup.open {
  display: flex;
}
body.tpl-single-hotel .exit-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.65);
  cursor: pointer;
}
body.tpl-single-hotel .exit-modal {
  position: relative;
  background: #fff;
  border-radius: 16px;
  max-width: 420px;
  width: 90%;
  overflow: hidden;
  box-shadow: 0 24px 64px rgba(0,0,0,0.28);
}
body.tpl-single-hotel .exit-img-wrap {
  width: 100%;
  height: 200px;
  overflow: hidden;
  position: relative;
}
body.tpl-single-hotel .exit-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body.tpl-single-hotel .exit-close-btn {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  width: 34px;
  height: 34px;
  background: rgba(0,0,0,0.5);
  border: none;
  color: #fff;
  font-size: 1.3rem;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: background 0.2s;
}
body.tpl-single-hotel .exit-close-btn:hover {
  background: rgba(0,0,0,0.75);
}
body.tpl-single-hotel .exit-body {
  padding: 1.75rem 2rem 1.5rem;
}
body.tpl-single-hotel .exit-body h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--text);
  margin-bottom: 1.25rem;
  text-align: center;
}
body.tpl-single-hotel .exit-bullets {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
body.tpl-single-hotel .exit-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.9rem;
  color: var(--text-soft);
  line-height: 1.45;
}
body.tpl-single-hotel .exit-bullets li svg {
  flex-shrink: 0;
  margin-top: 1px;
  color: var(--blue);
}
body.tpl-single-hotel .exit-cta {
  display: block;
  width: 100%;
  background: var(--blue);
  color: #fff;
  text-align: center;
  padding: 0.9rem;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 0.75rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
body.tpl-single-hotel .exit-cta:hover {
  background: var(--blue-dark);
}
body.tpl-single-hotel .exit-dismiss {
  display: block;
  width: 100%;
  background: none;
  border: 1px solid var(--border);
  color: var(--text-soft);
  font-size: 0.88rem;
  padding: 0.7rem;
  border-radius: 10px;
  cursor: pointer;
  transition: border-color 0.2s;
}
body.tpl-single-hotel .exit-dismiss:hover {
  border-color: var(--text-soft);
}
body.tpl-single-hotel .scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--blue);
  z-index: 1002;
  width: 0;
  transition: none;
}
body.tpl-single-hotel .scroll-top {
  position: fixed;
  right: 1.5rem;
  bottom: 2rem;
  width: 48px;
  height: 48px;
  background: var(--dark);
  color: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, background 0.2s;
  box-shadow: var(--shadow);
  z-index: 998;
}
body.tpl-single-hotel .scroll-top.visible {
  opacity: 1;
  visibility: visible;
}
body.tpl-single-hotel .scroll-top:hover {
  background: var(--blue);
}
body.tpl-single-hotel .mobile-sticky-bar {
  display: none;
}
@media (max-width: 768px) {
  body.tpl-single-hotel .mobile-sticky-bar {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 997;
    background: var(--dark);
    padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom, 0px));
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(100%);
    transition: opacity 0.3s, visibility 0.3s, transform 0.3s ease-out;
  }
  body.tpl-single-hotel .mobile-sticky-bar.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
  body.tpl-single-hotel .mobile-sticky-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    white-space: nowrap;   /* label "Vedi prezzi e disponibilità": mai su 2 righe */
    width: 100%;
    background: var(--blue);
    color: #fff;
    border: none;
    border-radius: 10px;
    padding: 0.95rem 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    cursor: pointer;
    text-decoration: none;
    transition: background 0.2s;
  }
  body.tpl-single-hotel .mobile-sticky-btn:hover {
    background: var(--blue-dark);
    color: #fff;
  }
  body.tpl-single-hotel .scroll-top {
    bottom: calc(80px + env(safe-area-inset-bottom, 0px));
    right: 1rem;
    width: 42px;
    height: 42px;
    background: var(--dark);
  }
}
body.tpl-single-hotel .header-mobile-right {
  display: none;
  align-items: center;
  gap: 0.5rem;
}
body.tpl-single-hotel .lang-switcher-header-mobile {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  background: rgba(255,255,255,0.1);
  border-radius: 6px;
  padding: 0.2rem;
}
body.tpl-single-hotel .lang-switcher-header-mobile .lang-link {
  padding: 0.25rem 0.55rem;
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.5px;
  border-bottom: none !important;
  width: auto !important;
}
body.tpl-single-hotel .lang-switcher-header-mobile .lang-link.active {
  background: rgba(255,255,255,0.2);
  color: #fff;
}
@media (max-width: 1024px) {
  body.tpl-single-hotel .header-mobile-right {
    display: flex;
  }
}
body.tpl-single-hotel .lang-switcher-mobile-wrap {
  display: none;
}
@media (max-width: 1024px) {
  body.tpl-single-hotel .site-nav:not(.open) .lang-switcher-mobile-wrap {
    display: none;
  }
  body.tpl-single-hotel .site-nav.open .lang-switcher-mobile-wrap {
    display: block;
    width: 100%;
    padding-top: 0.75rem;
    margin-top: 0.75rem;
    border-top: 1px solid rgba(255,255,255,0.1);
  }
  body.tpl-single-hotel .site-nav.open .lang-switcher-mobile-wrap .lang-switcher-nav {
    background: rgba(255,255,255,0.06);
    width: auto;
    display: inline-flex;
  }
  body.tpl-single-hotel .site-nav.open .lang-link {
    border-bottom: none !important;
    width: auto !important;
    display: inline-block !important;
    padding: 0.3rem 0.65rem !important;
    font-size: 0.78rem !important;
  }
  body.tpl-single-hotel .site-nav.open li:has(.lang-switcher-nav):not(.lang-switcher-mobile-wrap) {
    display: none;
  }
}
body.tpl-single-hotel .lang-switcher-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  background: rgba(255,255,255,0.1);
  border-radius: 8px;
  padding: 0.25rem;
  flex-shrink: 0;
}
body.tpl-single-hotel .lang-link {
  display: inline-block;
  padding: 0.3rem 0.65rem;
  border-radius: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
}
body.tpl-single-hotel .lang-link:hover {
  color: #fff;
}
body.tpl-single-hotel .lang-link.active {
  background: rgba(255,255,255,0.2);
  color: #fff;
}
body.tpl-single-hotel .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
body.tpl-single-hotel .reveal.visible {
  opacity: 1;
  transform: none;
}
@media (max-width: 1024px) {
  body.tpl-single-hotel .site-nav {
    display: none;
  }
  body.tpl-single-hotel .hamburger {
    display: flex;
  }
  body.tpl-single-hotel .site-nav.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    height: 100dvh;
    width: 78vw;
    max-width: 320px;
    background: var(--dark);
    padding: 5rem 2rem 2rem;
    z-index: 1002;
    gap: 0;
    align-items: flex-start;
    justify-content: flex-start;
    box-shadow: -8px 0 40px rgba(0,0,0,0.4);
    overflow-y: auto;
    overflow-x: hidden;
  }
  body.tpl-single-hotel .site-nav.open li a:not(.nav-cta):not(.lang-link) {
    font-size: 1.1rem;
    padding: 0.9rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    width: 100%;
    display: block;
  }
  body.tpl-single-hotel .site-nav.open .nav-cta {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 1.5rem;
    padding: 0.9rem 1.5rem !important;
    border-radius: 10px;
    font-size: 1rem !important;
    font-weight: 700;
    background: var(--blue) !important;
    color: #fff !important;
    border: none;
  }
  body.tpl-single-hotel .site-nav.open .lang-switcher-nav {
    display: inline-flex;
  }
}
@media (max-width: 900px) {
  body.tpl-single-hotel .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  body.tpl-single-hotel .about-img-wrap img {
    height: 300px;
  }
  body.tpl-single-hotel .suited-grid {
    grid-template-columns: 1fr;
  }
  body.tpl-single-hotel .services-grid {
    grid-template-columns: 1fr;
  }
  body.tpl-single-hotel .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  body.tpl-single-hotel .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 140px;
  }
  body.tpl-single-hotel .gallery-thumb {
    height: 140px;
  }
  body.tpl-single-hotel .gallery-thumb:first-child {
    grid-column: 1 / -1;
    grid-row: span 1;
    height: 200px;
  }
}
@media (max-width: 768px) {
  body.tpl-single-hotel .section {
    padding: 3.5rem 0;
  }
  body.tpl-single-hotel .rooms-grid {
    grid-template-columns: 1fr;
  }
  body.tpl-single-hotel .booking-btn-group {
    flex-direction: column;
    align-items: center;
  }
  body.tpl-single-hotel .poi-grid {
    grid-template-columns: 1fr;
  }
  body.tpl-single-hotel .bar-label {
    width: 130px;
  }
  body.tpl-single-hotel .swipe-hint {
    display: flex;
  }
  body.tpl-single-hotel .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  body.tpl-single-hotel .footer-links-inline {
    flex-wrap: wrap;
    justify-content: center;
  }
  body.tpl-single-hotel .hero {
    flex-direction: column;
    justify-content: flex-end;
    padding-bottom: 2rem;
  }
  body.tpl-single-hotel .hero-content {
    padding-bottom: 0;
    width: 100%;
  }
  body.tpl-single-hotel .hero-stats {
    position: static;
    transform: none;
    left: auto;
    bottom: auto;
    margin-top: 1.5rem;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    border-radius: 12px;
  }
  body.tpl-single-hotel .hero-stat-val {
    font-size: 1.1rem;
  }
  body.tpl-single-hotel .hero-stat-lbl {
    font-size: 0.6rem;
  }
}
@media (max-width: 480px) {
  body.tpl-single-hotel .hero h1 {
    font-size: 1.9rem;
  }
  body.tpl-single-hotel .gallery-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (prefers-reduced-motion: reduce) {
  body.tpl-single-hotel *, body.tpl-single-hotel *::before, body.tpl-single-hotel *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  body.tpl-single-hotel .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}
body.tpl-single-hotel .footer-disclaimer {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding-top: 1.25rem;
  margin-top: 0.5rem;
  font-size: 0.78rem;
  line-height: 1.6;
  text-align: center;
}
body.tpl-single-hotel .footer-disclaimer p {
  color: #b0bec5 !important;
}
body.tpl-single-hotel .footer-disclaimer a {
  color: #b0bec5 !important;
  text-decoration: underline;
}
body.tpl-single-hotel .footer-disclaimer a:hover {
  color: #fff !important;
}
@media (max-width: 768px) {
  body.tpl-single-hotel .site-footer {
    padding-bottom: 5rem;
  }
}


/* ═══════════════════════════════════════════════════════════
   BLOG POST (guide "dove dormire") — stile unico nel tema.
   Prima era inline in ogni post VdA: da qui in poi i post
   escono puliti; gli inline vecchi restano innocui (identici).
   ═══════════════════════════════════════════════════════════ */
.ph-post { line-height: 1.75; }
.ph-post h2 { margin-top: 2.2rem; }
.ph-post h3 { margin-top: 1.5rem; }
.ph-inbreve { background:#e8f0fe; border-left:4px solid #1a56db; border-radius:10px; padding:1.1rem 1.3rem; margin:1.5rem 0; }
.ph-inbreve strong { color:#0d1825; }
.ph-fig { margin:1.5rem auto; text-align:center; }
.ph-fig img { width:100%; height:auto; border-radius:12px; display:block; margin:0 auto; }
.ph-fig figcaption { font-size:0.8rem; color:#4a5568; margin-top:0.4rem; text-align:center; }
/* Scheda hotel: la foto è una COLONNA a tutta altezza (object-fit cover):
   qualunque proporzione abbia l'originale, la card resta identica alle altre. */
.ph-hotel-box { display:flex; align-items:stretch; gap:1rem; background:#f8fafd; border:1px solid #e2e8f0; border-radius:12px; padding:0.9rem; margin:1.1rem 0; }
.ph-hotel-box img { width:170px; min-height:125px; height:auto; align-self:stretch; object-fit:cover; flex-shrink:0; border-radius:8px; display:block; }
/* v24: se l'immagine è avvolta nel link scheda, è l'ANCHOR la colonna */
.ph-hotel-box > a { flex:0 0 170px; align-self:stretch; display:block; border-radius:8px; overflow:hidden; }
.ph-hotel-box > a img { width:100%; height:100%; min-height:125px; object-fit:cover; }
.ph-hotel-box .ph-hotel-info { padding:0.2rem 0.3rem 0.2rem 0; }
.ph-hotel-box .ph-hotel-info h3 { margin:0 0 0.3rem; }
.ph-hotel-box .ph-meta { font-size:0.82rem; color:#4a5568; margin:0 0 0.5rem; }
.ph-hotel-box .ph-hotel-info p { margin:0; font-size:0.92rem; }
@media (max-width:560px){ .ph-hotel-box{flex-direction:column;} .ph-hotel-box img{width:100%;height:180px;align-self:auto;} .ph-hotel-box > a{flex:none;width:100%;height:180px;align-self:auto;} .ph-hotel-box > a img{height:100%;} }
.ph-faq { border-bottom:1px solid #e2e8f0; }
.ph-faq summary { cursor:pointer; padding:1rem 0; font-weight:600; color:#0d1825; list-style:none; font-size:1.05rem; }
.ph-faq summary::-webkit-details-marker { display:none; }
.ph-faq summary::after { content:'+'; float:right; color:#1a56db; font-size:1.3rem; line-height:1; }
.ph-faq[open] summary::after { content:'\2212'; }
.ph-faq p { padding-bottom:1rem; margin:0; color:#4a5568; }
.ph-hub-link { background:#0d1825; color:#fff; border-radius:12px; padding:1.1rem 1.3rem; margin:1.8rem 0; }
.ph-hub-link a { color:#c9a84c; font-weight:600; }


/* ── Homepage multi-regione (v8) ─────────────────────────────── */
.region-grid { grid-template-columns:repeat(4,1fr); }
@media (max-width:900px){ .region-grid{grid-template-columns:repeat(2,1fr);} }
.feat-cta-line { text-align:center; margin:1.6rem 0 0; color:var(--text-soft); font-size:0.95rem; }
.feat-cta-line a { color:var(--blue); font-weight:600; }
.blog-guides-label { font-size:0.85rem; font-weight:700; letter-spacing:0.06em; text-transform:uppercase; color:var(--text-soft); margin:0 0 0.8rem; }
.blog-guides-grid { margin-bottom:2rem; }


/* Immagine card hotel cliccabile (v9): il link riempie il riquadro foto */
.hotel-card-thumb-link { display:block; width:100%; height:100%; }
.hotel-card-thumb-link img, .hotel-card-thumb-link .hotel-card-thumb-placeholder { width:100%; height:100%; }


/* ── Form contatto (v10) ── */
.ph-contact-form label { display:block; font-weight:600; margin:1rem 0 0.3rem; }
.ph-contact-form input, .ph-contact-form select, .ph-contact-form textarea {
  width:100%; padding:0.7rem 0.9rem; border:1px solid #cbd5e1; border-radius:8px;
  font:inherit; background:#fff; }
.ph-contact-form textarea { resize:vertical; }
.ph-contact-form .ph-hp { position:absolute; left:-9999px; }
.ph-contact-privacy { font-size:0.85rem; color:var(--text-soft); margin:1rem 0; }
.ph-contact-form button {
  margin-top:0.6rem; display:inline-flex; align-items:center; gap:0.5rem;
  background: var(--blue, #1a56db); color:#fff; border:none; cursor:pointer;
  padding: 0.85rem 1.9rem; border-radius: 10px; font-weight:700; font-size:1rem;
  transition: background .2s, transform .15s, box-shadow .2s;
  box-shadow: 0 4px 14px rgba(26,86,219,.25); }
.ph-contact-form button:hover {
  background:#1348bb; transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(26,86,219,.32); }
.ph-contact-form button:disabled { opacity:.6; cursor:wait; transform:none; }
.ph-contact-error { background:#fdecec; border-left:4px solid #d23b3b;
  border-radius:10px; padding:1rem 1.2rem; margin:1.2rem 0; }


/* ── Pagine statiche (v13/v16): hero a FASCIA e sfondo come /blog ── */
body.tpl-page { background: var(--bg-light); }
body.tpl-page .post-hero { min-height: 0; padding: 9rem 0 4rem; }
/* i campi del form restano bianchi e staccano sul fondo azzurrino */
@media (max-width: 700px) {
  body.tpl-page .post-hero { min-height: 0; padding: 7.5rem 0 3rem; }
}

/* ── Guide regionali in home (v21): card verticali a tutta immagine ── */
body.tpl-front-page .ph-guides-grid {
  display:grid; grid-template-columns:repeat(3,1fr); gap:1.6rem; margin:0 0 3.5rem; }
@media (max-width:900px){
  body.tpl-front-page .ph-guides-grid{ grid-template-columns:1fr; } }
body.tpl-front-page .ph-guide-card {
  position:relative; display:block; border-radius:16px; overflow:hidden;
  height:480px; text-decoration:none; background:#1c2733;
  transition:transform .25s, box-shadow .25s; }
@media (max-width:900px){ body.tpl-front-page .ph-guide-card{ height:400px; } }
body.tpl-front-page .ph-guide-card:hover {
  transform:translateY(-4px); box-shadow:0 14px 34px rgba(15,30,60,.25); }
body.tpl-front-page .ph-guide-card img {
  position:absolute !important; inset:0; width:100% !important;
  height:100% !important; max-width:none !important; object-fit:cover;
  margin:0; transition:transform .4s; }
body.tpl-front-page .ph-guide-card:hover img { transform:scale(1.04); }
body.tpl-front-page .ph-guide-card-overlay {
  position:absolute; inset:0; z-index:1; display:flex; flex-direction:column;
  justify-content:flex-end; padding:1.6rem;
  background:linear-gradient(180deg, rgba(10,20,35,0) 34%, rgba(10,20,35,.88) 84%); }
body.tpl-front-page .ph-guide-card-label { color:#cfe0ff; font-size:.72rem;
  font-weight:700; letter-spacing:.09em; text-transform:uppercase; margin-bottom:.45rem; }
body.tpl-front-page .ph-guide-card-title { color:#fff; font-size:1.45rem;
  line-height:1.2; margin:0 0 .5rem; }
body.tpl-front-page .ph-guide-card-excerpt { color:rgba(255,255,255,.86);
  font-size:.92rem; line-height:1.5; margin:0 0 .8rem;
  display:-webkit-box; -webkit-line-clamp:3; -webkit-box-orient:vertical; overflow:hidden; }
body.tpl-front-page .ph-guide-card-cta { color:#fff; font-weight:700; font-size:.9rem; }
body.tpl-front-page .ph-guide-card:hover .ph-guide-card-cta { text-decoration:underline; }
body.tpl-front-page .blog-latest-label { font-size:.85rem; font-weight:700;
  letter-spacing:.06em; text-transform:uppercase; color:var(--text-soft);
  margin:0 0 .8rem; padding-top:2.2rem; border-top:1px solid #e3e9f2; }


/* riga di fiducia sotto i titoli di sezione (v22) */
body.tpl-front-page .section-sub { color:var(--text-soft); font-size:1rem;
  margin:.5rem 0 0; }


/* ── Box hotel nei post (v25): nome in inchiostro, dati in grigio ── */
.ph-post .ph-hotel-box .ph-meta {
  font-family: 'SF Mono', 'Cascadia Code', Consolas, monospace;
  font-size: 0.78rem; letter-spacing: 0.02em; color: #4a5568;
  background: #eef2f7; display: inline-block;
  padding: 0.25rem 0.6rem; border-radius: 6px; margin: 0.15rem 0 0.6rem; }
.ph-post .ph-hotel-box .ph-hotel-info h3 a {
  color: #0d1825; text-decoration: underline;
  text-decoration-color: #9db4d8; text-decoration-thickness: 1.5px;
  text-underline-offset: 3px; transition: color .15s, text-decoration-color .15s; }
.ph-post .ph-hotel-box .ph-hotel-info h3 a:hover {
  color: var(--blue, #1a56db); text-decoration-color: var(--blue, #1a56db); }

/* ════════════════════════════════════════════════════════════
   v32 — SOTTOGUIDE sul PILLAR (guida regionale = hub del blog)
   Indice sobrio in coda al contenuto: lista a due colonne nello
   stile dei link FAQ. Vive SOLO sui post pillar (sticky).
   ════════════════════════════════════════════════════════════ */
body.tpl-single .subguides {
  max-width: var(--content-w);
  margin: 2.2rem auto 0;
  padding: 1.3rem 1.5rem 1.4rem;
  border: 1px solid var(--border);
  border-left: 3px solid var(--gold);
  border-radius: var(--radius);
  background: var(--bg-light);
}
body.tpl-single .subguides-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--dark);
  margin-bottom: 0.8rem;
}
body.tpl-single .subguides-list {
  list-style: none;
  margin: 0;
  padding: 0;
  columns: 2;
  column-gap: 2rem;
}
body.tpl-single .subguides-list li {
  padding: 0.28rem 0;
  break-inside: avoid;
}
body.tpl-single .subguides-list a {
  color: var(--blue);
  font-weight: 600;
  font-size: 0.92rem;
  text-decoration: underline;
  text-decoration-color: #9db4d8;
  text-underline-offset: 3px;
}
body.tpl-single .subguides-list a:hover { color: var(--blue-dark); }
@media (max-width: 640px) {
  body.tpl-single .subguides-list { columns: 1; }
}

/* ════════════════════════════════════════════════════════════
   v33 — /blog/ "RIVISTA PER REGIONI" (home.php)
   Una sezione per regione: header con link al negozio, pillar
   come card orizzontale protagonista, sottoguide come link
   testuali che wrappano. Niente scroll, niente paginazione.
   ════════════════════════════════════════════════════════════ */
body.tpl-home .rsec {
  padding: 2.2rem 0 2.4rem;
  border-bottom: 1px solid var(--border);
}
body.tpl-home .rsec:first-of-type { padding-top: 0.6rem; }
body.tpl-home .rsec-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.1rem;
}
body.tpl-home .rsec-eyebrow {
  font-size: 0.68rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-soft);
  margin: 0 0 0.15rem;
}
body.tpl-home .rsec-name {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  font-weight: 500;
  color: var(--dark);
  margin: 0;
}
body.tpl-home .rsec-shop {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--blue);
  text-decoration: none;
  white-space: nowrap;
  padding-bottom: 0.25rem;
}
body.tpl-home .rsec-shop:hover { color: var(--blue-dark); text-decoration: underline; }

body.tpl-home .pillar-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  border: 1px solid #dcc98f;
  border-radius: var(--radius);
  overflow: hidden;
  background: linear-gradient(180deg, #fffdf6, #fff);
  box-shadow: var(--shadow);
  text-decoration: none;
  transition: box-shadow .2s ease, transform .2s ease;
}
body.tpl-home .pillar-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}
body.tpl-home .pillar-img {
  display: block;
  min-height: 190px;
  background: linear-gradient(135deg, var(--blue-light), #b9cbe8) center/cover no-repeat;
}
body.tpl-home .pillar-body {
  display: block;
  padding: 1.3rem 1.5rem 1.35rem;
}
body.tpl-home .pillar-lab {
  display: block;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: #8a6f24;
  margin-bottom: 0.45rem;
}
body.tpl-home .pillar-lab::before { content: '✦ '; color: var(--gold); }
body.tpl-home .pillar-title {
  display: block;
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--text);
  margin-bottom: 0.55rem;
}
body.tpl-home .pillar-card:hover .pillar-title { color: var(--blue-dark); }
body.tpl-home .pillar-excerpt {
  display: block;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--text-soft);
  margin-bottom: 0.8rem;
}
body.tpl-home .pillar-meta {
  display: block;
  font-size: 0.76rem;
  color: var(--text-soft);
}







body.tpl-home .other-posts-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--dark);
  margin: 2.4rem 0 1.3rem;
}

@media (max-width: 760px) {
  body.tpl-home .pillar-card { grid-template-columns: 1fr; }
  body.tpl-home .pillar-img { min-height: 170px; }
  body.tpl-home .rsec-head { align-items: baseline; }
  body.tpl-home .rsec-name { font-size: 1.4rem; }
}

/* ── v35: sottoguide come card nelle sezioni del blog ── */
body.tpl-home .rsec-cards { margin-top: 1.2rem; }
body.tpl-home .rsec-cards .blog-card-title { font-size: 1.02rem; }
body.tpl-home .rsec-all {
  display: block;
  text-align: center;
  margin-top: 1.4rem;
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--blue);
  text-decoration: none;
}
body.tpl-home .rsec-all:hover { color: var(--blue-dark); text-decoration: underline; }

/* ── v36: card sottoguide a 4 colonne, reveal 4 alla volta ── */
body.tpl-home .rsec-cards {
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}
/* regola gemella obbligatoria del pattern hidden */
body.tpl-home .rsec-cards .blog-card[hidden] { display: none; }
body.tpl-home .rsec-cards .blog-card-title { font-size: 0.95rem; }
body.tpl-home .rsec-more-wrap { text-align: center; margin-top: 1.4rem; }
body.tpl-home .rsec-more {
  display: inline-block;
  padding: 0.7rem 1.8rem;
  border: 1.5px solid var(--blue);
  border-radius: 999px;
  background: #fff;
  color: var(--blue);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  transition: background .15s ease, color .15s ease;
}
body.tpl-home .rsec-more:hover { background: var(--blue); color: #fff; }
@media (max-width: 1100px) {
  body.tpl-home .rsec-cards { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  /* smartphone: 2 card affiancate, non 3 (a 3 erano strettissime).
     Regola più specifica di .blog-grid → 1 colonna, quindi resta 2. */
  body.tpl-home .rsec-cards { grid-template-columns: repeat(2, 1fr); gap: 0.9rem; }
  body.tpl-home .rsec-cards .blog-card-title { font-size: 0.86rem; }
}


/* Filtro stelle: glifo + etichetta + conteggio */









/* ══ FILTRI SIDEBAR — caselle di spunta ═══════════════════════════════════
   NB1: le pagine tassonomia usano body.tpl-taxonomy-hotel (NON
        tpl-page-regioni): si aggancia a .term-sidebar, valido per entrambe.
   NB2: le regole preesistenti (body.tpl-taxonomy-hotel .filter-list a) hanno
        specificita' 0-2-2: qui si usa a.f-item per superarle. */

/* titoli dei gruppi in neretto */
.term-sidebar .sidebar-title { font-weight: 700; }

/* opzioni dello stesso filtro: vicine fra loro */
.term-sidebar ul.filter-list { gap: 0.05rem; }

/* riga: [casella] [etichetta a sinistra ...] [numero a destra] */
.term-sidebar .filter-list a.f-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.55rem;
  padding: 0.22rem 0.5rem;
}

/* casella di spunta NATIVA (il click e' gestito dal link che la contiene) */
.term-sidebar .filter-list a.f-item .f-cb {
  flex: 0 0 auto;
  width: 15px; height: 15px;
  margin: 0;
  pointer-events: none;
  accent-color: var(--blue, #0071c2);
}

/* etichetta allineata a SINISTRA, prende lo spazio libero */
.term-sidebar .filter-list a.f-item .f-label {
  flex: 1 1 auto;
  min-width: 0;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* numero incolonnato a destra */
.term-sidebar .filter-list a.f-item .filter-count {
  flex: 0 0 auto;
  min-width: 2.4em;
  text-align: right;
  font-variant-numeric: tabular-nums;
}
