/* ============================================
   ISCHIAHOTEL.NET — Stylesheet Principale
   Palette: Blu Mare / Turchese — Header bianco
   Font: Montserrat
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,400;1,600&display=swap');

/* ---- Variables ---- */
:root {
  --primary:       #0077B6;
  --primary-dark:  #023E8A;
  --primary-light: #00B4D8;
  --primary-hover: #005F8C;
  --accent:        #90E0EF;
  --accent-light:  #CAF0F8;
  --bg-light:      #F0F9FF;
  --dark:          #03045E;
  --gray-900:      #111827;
  --gray-800:      #1F2937;
  --gray-700:      #374151;
  --gray-600:      #4B5563;
  --gray-500:      #6B7280;
  --gray-400:      #9CA3AF;
  --gray-300:      #D1D5DB;
  --gray-200:      #E5E7EB;
  --gray-100:      #F3F4F6;
  --white:         #FFFFFF;
  --success:       #059669;
  --warning:       #D97706;
  --danger:        #E63946;
  --shadow-sm:     0 1px 3px rgba(0,0,0,.1);
  --shadow:        0 4px 16px rgba(0,119,182,.12);
  --shadow-lg:     0 10px 40px rgba(0,119,182,.22);
  --radius:        12px;
  --radius-sm:     8px;
  --radius-lg:     20px;
  --container-pad: 1.5rem;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--gray-900);
  line-height: 1.6;
  background: var(--white);
}
h1,h2,h3,h4,h5 { font-family: 'Montserrat', sans-serif; font-weight: 700; line-height: 1.2; color: var(--dark); }
h1 { font-size: clamp(1.8rem, 4vw, 3rem); }
h2 { font-size: clamp(1.4rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.05rem, 2vw, 1.4rem); }
p  { color: var(--gray-600); }
a  { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ---- Layout ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 var(--container-pad); }
.section    { padding: 5rem 0; }
.section--light { background: var(--bg-light); }
.section--dark  { background: var(--dark); }

/* ============================================
   HEADER / NAVBAR
   ============================================ */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: #fff;
  border-bottom: 1px solid #eee;
  backdrop-filter: blur(12px);
  transition: all .3s;
}
.header.scrolled { box-shadow: 0 2px 16px rgba(0,0,0,.08); border-bottom-color: transparent; }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  padding: .75rem 0;
}

/* Logo */
.logo { display: flex; align-items: center; gap: .6rem; }
.logo__icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, #E8A800, #D49300);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(232,168,0,.3);
}
.logo__name {
  font-size: 1.15rem; font-weight: 800;
  color: #1C2331; letter-spacing: -.4px;
  display: block;
}
.logo__tagline {
  font-size: .62rem; color: var(--primary);
  letter-spacing: 1.2px; text-transform: uppercase; font-weight: 600;
}

/* Nav menu */
.nav__menu { display: flex; align-items: center; gap: .15rem; list-style: none; }
.nav__item  { position: relative; }
.nav__link  {
  color: #4B5563; font-size: .88rem; font-weight: 500;
  padding: .5rem .85rem; border-radius: var(--radius-sm);
  transition: all .2s; display: flex; align-items: center; gap: .3rem;
  cursor: pointer;
}
.nav__link:hover, .nav__link.active {
  color: var(--primary); background: rgba(0,119,182,.06);
}
.nav__link .chevron {
  width: 12px; height: 12px; transition: transform .2s; flex-shrink: 0;
  color: #9CA3AF;
}
.nav__item:hover .chevron { transform: rotate(180deg); color: var(--primary); }

/* Dropdown */
.dropdown {
  position: absolute; top: calc(100% + .6rem); left: 50%;
  transform: translateX(-50%);
  background: var(--white); border-radius: var(--radius);
  box-shadow: 0 12px 40px rgba(0,0,0,.12); padding: .5rem;
  min-width: 210px;
  opacity: 0; visibility: hidden; transition: all .2s;
  pointer-events: none;
  border: 1px solid #eee;
}
.dropdown::before {
  content: ''; position: absolute; top: -.8rem; left: 0; right: 0; height: .8rem;
}
.nav__item:hover .dropdown { opacity: 1; visibility: visible; pointer-events: all; }
.dropdown a {
  display: block; padding: .6rem 1rem;
  color: var(--gray-700); font-size: .875rem;
  border-radius: var(--radius-sm); transition: all .2s;
}
.dropdown a:hover { background: var(--bg-light); color: var(--primary); }

/* CTA button in nav */
.nav__cta {
  background: linear-gradient(135deg, #E8A800, #D49300) !important;
  color: #fff !important;
  padding: .55rem 1.2rem !important;
  border-radius: 50px !important;
  font-weight: 700 !important;
  box-shadow: 0 2px 10px rgba(232,168,0,.3);
}
.nav__cta:hover {
  background: linear-gradient(135deg, #D49300, #BF8200) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(232,168,0,.5);
}

/* Hamburger */
.nav__hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 5px;
}
.nav__hamburger span {
  display: block; width: 24px; height: 2px;
  background: #4B5563; border-radius: 2px; transition: all .3s;
}

/* Mobile menu overlay — stile competitor */
.mobile-menu {
  display: none; position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #fff; z-index: 1100;
  flex-direction: column;
  overflow-y: auto;
}
.mobile-menu.open { display: flex; }

/* Header del menu: logo + close */
.mobile-menu__header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.25rem;
  background: #1b3a5c;
  flex-shrink: 0;
}
.mobile-menu__logo {
  display: flex; align-items: center; gap: .6rem; text-decoration: none;
}
.mobile-menu__logo-icon {
  width: 36px; height: 36px; border-radius: 10px;
  background: rgba(255,255,255,.15); display: flex; align-items: center;
  justify-content: center; font-size: 1.2rem;
}
.mobile-menu__logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.mobile-menu__logo-name { color: #fff; font-weight: 700; font-size: .95rem; letter-spacing: .01em; }
.mobile-menu__logo-tag  { color: rgba(255,255,255,.65); font-size: .65rem; font-weight: 400; }
.mobile-menu__close {
  color: rgba(255,255,255,.8); font-size: 1.6rem; cursor: pointer; line-height: 1;
  padding: .2rem .4rem; border-radius: 6px; transition: background .2s;
}
.mobile-menu__close:hover { background: rgba(255,255,255,.15); }

/* Lista voci di menu */
.mobile-menu__nav {
  flex: 1; padding: .5rem 0;
}
.mobile-menu__nav a {
  display: flex; align-items: center; gap: .85rem;
  color: #1b3a5c; font-size: 1rem; font-weight: 600;
  padding: .9rem 1.5rem; text-decoration: none;
  border-bottom: 1px solid #f0f0f0; transition: background .15s;
}
.mobile-menu__nav a:hover { background: #f5f8ff; }
.mobile-menu__nav a.active { color: var(--accent, #e07b00); }
.mobile-menu__nav-icon {
  width: 30px; height: 30px; border-radius: 8px;
  background: #eef2ff; display: flex; align-items: center;
  justify-content: center; font-size: .9rem; flex-shrink: 0;
}

/* Accordion Scopri Ischia nel menu mobile */
.mm-accordion__header {
  display: flex; align-items: center;
  border-bottom: 1px solid #f0f0f0;
}
.mm-accordion__link {
  flex: 1; display: flex; align-items: center; gap: .85rem;
  color: #1b3a5c; font-size: 1rem; font-weight: 600;
  padding: .9rem 0 .9rem 1.5rem; text-decoration: none;
  transition: background .15s;
}
.mm-accordion__link:hover { background: #f5f8ff; }
.mm-accordion__link.active { color: var(--accent, #e07b00); }
.mm-accordion__toggle {
  background: none; border: none; cursor: pointer;
  padding: .9rem 1.25rem; font-size: 1.1rem; color: #94a3b8;
  transition: transform .25s, color .15s; line-height: 1;
}
.mm-accordion__toggle.open { transform: rotate(180deg); color: #1b3a5c; }
.mm-accordion__body {
  display: none; flex-direction: column;
  background: #f8fafc;
  border-bottom: 1px solid #f0f0f0;
}
.mm-accordion__body.open { display: flex; }
.mm-accordion__item {
  display: block; padding: .65rem 1.5rem .65rem 3.8rem;
  font-size: .88rem; font-weight: 500; color: #475569;
  text-decoration: none; border-bottom: 1px solid #eff2f5;
  transition: background .15s, color .15s;
}
.mm-accordion__item:last-child { border-bottom: none; }
.mm-accordion__item:hover { background: #eef2ff; color: #1b3a5c; }

/* Footer CTA */
.mobile-menu__footer {
  padding: 1.25rem 1.5rem 2rem;
  display: flex; flex-direction: column; gap: .75rem;
  border-top: 1px solid #eee; flex-shrink: 0;
}
.mobile-menu__cta {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .85rem 1rem; border-radius: 12px;
  font-size: 1rem; font-weight: 700; text-decoration: none;
  transition: opacity .2s;
}
.mobile-menu__cta:hover { opacity: .88; }
.mobile-menu__cta--primary {
  background: #e07b00; color: #fff;
}
.mobile-menu__cta--outline {
  background: transparent; color: #1b3a5c;
  border: 2px solid #1b3a5c;
}

/* ============================================
   HERO
   ============================================ */
.hero {
  min-height: 100vh;
  background:
    linear-gradient(to bottom,
      rgba(3,4,94,.55) 0%,
      rgba(0,119,182,.38) 60%,
      rgba(0,180,216,.22) 100%),
    url('https://images.unsplash.com/photo-1516483638261-f4dbaf036963?w=1920&q=80')
    center / cover no-repeat;
  display: flex; align-items: center;
  padding: 7rem 0 4rem;
}
.hero__inner { text-align: center; }
.hero__badge {
  display: inline-flex; align-items: center; gap: .5rem;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  backdrop-filter: blur(8px);
  color: var(--white); padding: .4rem 1rem; border-radius: 50px;
  font-size: .82rem; font-weight: 600; margin-bottom: 1.5rem;
}
.hero__title {
  font-size: clamp(2rem, 5.5vw, 3.8rem);
  font-weight: 800; color: var(--white);
  text-shadow: 0 2px 24px rgba(0,0,0,.3);
  line-height: 1.12; margin-bottom: 1rem;
}
.hero__title em { color: var(--accent); font-style: normal; }
.hero__subtitle {
  font-size: 1.1rem; color: rgba(255,255,255,.88);
  max-width: 560px; margin: 0 auto 2.5rem;
}

/* ============================================
   SEARCH BOX
   ============================================ */
.search-box {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 1.75rem; box-shadow: 0 20px 60px rgba(0,0,0,.28);
  max-width: 1020px; margin: 0 auto;
}
.search-box__label {
  font-size: .8rem; font-weight: 700; color: var(--gray-600);
  text-transform: uppercase; letter-spacing: .6px;
  display: flex; align-items: center; gap: .5rem;
  margin-bottom: 1.2rem;
}
.search-box__label::before {
  content: ''; display: inline-block;
  width: 4px; height: 18px;
  background: var(--primary); border-radius: 2px;
}
.search-nights-tabs {
  display: flex; gap: .4rem; flex-wrap: wrap; margin-bottom: 1.2rem;
}
.nights-tab {
  padding: .35rem .9rem; border: 2px solid var(--gray-200);
  border-radius: 50px; font-size: .82rem; font-weight: 600;
  color: var(--gray-600); cursor: pointer; transition: all .2s;
  background: var(--white);
}
.nights-tab:hover { border-color: var(--primary-light); color: var(--primary-light); }
.nights-tab.active {
  border-color: var(--primary); color: var(--primary);
  background: rgba(0,119,182,.07);
}
.search-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr .9fr .9fr auto;
  gap: .75rem; align-items: end;
}
.form-group { display: flex; flex-direction: column; gap: .3rem; }
.form-group label {
  font-size: .74rem; font-weight: 700;
  color: var(--gray-500); text-transform: uppercase; letter-spacing: .5px;
}
.form-control {
  padding: .78rem 1rem; border: 2px solid var(--gray-200);
  border-radius: var(--radius-sm); font-size: .95rem;
  font-family: inherit; color: var(--gray-900); background: var(--white);
  transition: all .2s; appearance: none;
}
.form-control:focus {
  outline: none; border-color: var(--primary-light);
  box-shadow: 0 0 0 3px rgba(0,180,216,.15);
}
.form-control::placeholder { color: var(--gray-400); }
select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .85rem center;
  padding-right: 2.5rem; cursor: pointer;
}
.children-ages-row {
  grid-column: 1 / -1;
  background: var(--bg-light); border-radius: var(--radius-sm);
  padding: .75rem 1rem;
  display: none; gap: .75rem; flex-wrap: wrap; align-items: center;
}
.children-ages-row.visible { display: flex; }
.children-ages-row > label {
  font-size: .8rem; font-weight: 700; color: var(--gray-600);
  white-space: nowrap;
}
.children-ages-row .age-select {
  padding: .45rem .75rem; border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-sm); font-size: .85rem;
  font-family: inherit; background: var(--white);
}
.children-ages-row .age-note {
  font-size: .78rem; color: var(--primary); font-weight: 600;
}

/* Search shortcuts */
.search-shortcuts {
  display: flex; align-items: center; gap: .4rem;
  flex-wrap: wrap; margin-bottom: 1.1rem;
}
.shortcut-pill {
  padding: .32rem .9rem; border: 2px solid var(--gray-200);
  border-radius: 50px; font-size: .8rem; font-weight: 700;
  color: var(--gray-600); cursor: pointer; transition: all .2s;
  background: var(--white); font-family: inherit;
}
.shortcut-pill:hover { border-color: var(--primary-light); color: var(--primary-light); }
.shortcut-pill.active {
  border-color: var(--primary); color: var(--primary); background: rgba(0,119,182,.08);
}
.nights-badge {
  display: inline-flex; align-items: center;
  background: var(--primary); color: var(--white);
  padding: .3rem .85rem; border-radius: 50px;
  font-size: .8rem; font-weight: 700; margin-left: .25rem;
}

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: .5rem; padding: .78rem 1.5rem;
  border-radius: var(--radius-sm); font-size: .95rem; font-weight: 700;
  font-family: inherit; cursor: pointer; transition: all .2s; border: none;
  white-space: nowrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: var(--white); box-shadow: 0 4px 15px rgba(0,119,182,.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 22px rgba(0,119,182,.4); }
.btn-outline {
  background: transparent; color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline:hover { background: var(--primary); color: var(--white); }
.btn-sm { padding: .5rem 1rem; font-size: .85rem; }
.btn-lg { padding: 1rem 2rem; font-size: 1.05rem; }
.btn-search { padding: .78rem 2rem; font-size: 1rem; }

/* ============================================
   STATS BAR
   ============================================ */
.stats {
  background: linear-gradient(90deg, var(--primary-dark), var(--primary));
  padding: 1.4rem 0;
}
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { text-align: center; color: var(--white); padding: .25rem; }
.stat__number { font-size: 1.9rem; font-weight: 800; line-height: 1; color: var(--accent-light); }
.stat__label  { font-size: .78rem; color: rgba(255,255,255,.78); margin-top: .15rem; }

/* ============================================
   SECTION HEADER
   ============================================ */
.section-header { text-align: center; margin-bottom: 2.75rem; }
.section-header__tag {
  display: inline-block;
  background: rgba(0,119,182,.1); color: var(--primary);
  padding: .3rem 1rem; border-radius: 50px;
  font-size: .75rem; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1px;
  margin-bottom: .7rem;
}
.section-header h2 { margin-bottom: .65rem; }
.section-header p  { font-size: 1rem; max-width: 600px; margin: 0 auto; }

/* ============================================
   HOTEL CARD (grid)
   ============================================ */
.hotels-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.hotel-card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
  transition: all .3s; border: 1px solid var(--gray-200);
}
.hotel-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.hotel-card__img-wrap { position: relative; height: 205px; overflow: hidden; }
.hotel-card__img-wrap img {
  width: 100%; height: 100%; object-fit: cover; transition: transform .4s;
}
.hotel-card:hover .hotel-card__img-wrap img { transform: scale(1.06); }
.hotel-card__badge {
  position: absolute; top: .7rem; left: .7rem;
  background: var(--primary); color: var(--white);
  padding: .22rem .6rem; border-radius: 50px;
  font-size: .7rem; font-weight: 700;
}
.hotel-card__promo {
  position: absolute; top: .7rem; right: .7rem;
  background: var(--danger); color: var(--white);
  padding: .22rem .6rem; border-radius: 50px;
  font-size: .7rem; font-weight: 700;
}
.hotel-card__body { padding: 1.2rem; }
.stars { display: flex; gap: 2px; margin-bottom: .4rem; }
.star  { color: #F59E0B; font-size: .82rem; }
.hotel-card__name {
  font-size: 1.05rem; font-weight: 700; color: var(--dark); margin-bottom: .25rem;
}
.hotel-card__loc {
  font-size: .8rem; color: var(--gray-500);
  display: flex; align-items: center; gap: .3rem; margin-bottom: .7rem;
}
.hotel-card__tags { display: flex; flex-wrap: wrap; gap: .3rem; margin-bottom: .9rem; }
.tag {
  background: var(--bg-light); color: var(--primary);
  padding: .18rem .6rem; border-radius: 50px;
  font-size: .7rem; font-weight: 600;
}
.hotel-card__footer {
  border-top: 1px solid var(--gray-200); padding-top: .9rem;
  display: flex; align-items: flex-end; justify-content: space-between;
}
.price-from   { font-size: .72rem; color: var(--gray-500); }
.price-value  { font-size: 1.5rem; font-weight: 800; color: var(--primary); line-height: 1; }
.price-sup    { font-size: .88rem; font-weight: 600; }
.price-period { font-size: .72rem; color: var(--gray-500); margin-top: .1rem; }
.price-offer  {
  font-size: .72rem; color: var(--danger); font-weight: 700;
  background: rgba(230,57,70,.08); padding: .18rem .5rem;
  border-radius: 4px; margin-top: .2rem;
}

/* ============================================
   OFFERTE NOTTI (grid cards)
   ============================================ */
.nights-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.nights-card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
  border: 1px solid var(--gray-200); text-align: center; transition: all .3s; cursor: pointer;
}
.nights-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--primary-light); }
.nights-card__img { height: 130px; overflow: hidden; }
.nights-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.nights-card:hover .nights-card__img img { transform: scale(1.08); }
.nights-card__body { padding: 1rem; }
.nights-card__n { font-size: 2rem; font-weight: 800; color: var(--primary); line-height: 1; }
.nights-card__n span { font-size: .85rem; font-weight: 500; color: var(--gray-500); }
.nights-card__label { font-size: .8rem; color: var(--gray-600); margin-top: .3rem; }
.nights-card__from  { font-size: 1.1rem; font-weight: 700; color: var(--danger); margin-top: .4rem; }
.nights-card__sub   { font-size: .7rem; color: var(--gray-400); }

/* ============================================
   STEPS (come funziona)
   ============================================ */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; position: relative; }
.steps-grid::before {
  content: ''; position: absolute; top: 3.2rem;
  left: 12%; right: 12%; height: 2px;
  background: linear-gradient(to right, var(--primary-light), var(--accent));
  z-index: 0;
}
.step { text-align: center; position: relative; z-index: 1; }
.step__icon {
  width: 64px; height: 64px;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  border-radius: var(--radius); display: flex; align-items: center;
  justify-content: center; margin: 0 auto 1.1rem;
  font-size: 1.65rem; color: var(--white);
  box-shadow: 0 8px 20px rgba(0,119,182,.3);
  position: relative;
}
.step__num {
  position: absolute; top: -8px; right: -8px;
  width: 22px; height: 22px;
  background: var(--primary-dark); color: var(--white);
  border-radius: 50%; font-size: .65rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--white);
}
.step h3 { font-size: .98rem; margin-bottom: .4rem; }
.step p  { font-size: .82rem; }

/* ============================================
   OFFERS MONTH STRIP
   ============================================ */
.months-strip {
  display: flex; gap: .5rem; overflow-x: auto; padding-bottom: .5rem;
  scroll-snap-type: x mandatory;
}
.months-strip::-webkit-scrollbar { height: 4px; }
.months-strip::-webkit-scrollbar-thumb { background: var(--primary-light); border-radius: 2px; }
.month-pill {
  flex-shrink: 0; scroll-snap-align: start;
  padding: .4rem 1.1rem; border: 2px solid var(--gray-200);
  border-radius: 50px; font-size: .82rem; font-weight: 600;
  color: var(--gray-600); cursor: pointer; transition: all .2s;
  background: var(--white);
}
.month-pill:hover, .month-pill.active {
  border-color: var(--primary); color: var(--primary); background: rgba(0,119,182,.06);
}

/* ============================================
   TRANSFER CARDS
   ============================================ */
.transfers-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.transfer-card {
  background: var(--white); border-radius: var(--radius); padding: 1.2rem;
  box-shadow: var(--shadow); border: 1px solid var(--gray-200); transition: all .3s;
}
.transfer-card:hover { border-color: var(--primary-light); box-shadow: var(--shadow-lg); }
.transfer-card__head { display: flex; align-items: center; gap: .65rem; margin-bottom: .75rem; }
.transfer-icon {
  width: 44px; height: 44px; background: var(--bg-light);
  border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; flex-shrink: 0;
}
.transfer-city   { font-size: 1rem; font-weight: 700; color: var(--dark); }
.transfer-region { font-size: .75rem; color: var(--gray-500); }
.transfer-row {
  display: flex; justify-content: space-between;
  font-size: .8rem; padding: .3rem 0;
  border-bottom: 1px solid var(--gray-100);
}
.transfer-row:last-of-type { border-bottom: none; }
.transfer-row__k { color: var(--gray-500); }
.transfer-row__v { font-weight: 600; color: var(--gray-800); }
.transfer-price {
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: var(--white); text-align: center;
  padding: .55rem; border-radius: var(--radius-sm);
  margin-top: .65rem; font-weight: 700; font-size: .9rem;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testimonial {
  background: var(--white); border-radius: var(--radius); padding: 1.5rem;
  box-shadow: var(--shadow); border: 1px solid var(--gray-200);
}
.testimonial__stars { display: flex; gap: 3px; margin-bottom: .7rem; }
.testimonial__text  { font-size: .875rem; color: var(--gray-600); line-height: 1.7; font-style: italic; margin-bottom: 1rem; }
.testimonial__author { display: flex; align-items: center; gap: .7rem; }
.testimonial__avatar { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; }
.testimonial__name   { font-size: .88rem; font-weight: 700; color: var(--dark); }
.testimonial__date   { font-size: .73rem; color: var(--gray-400); }

/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter { background: linear-gradient(135deg, var(--primary-dark), var(--primary)); padding: 4rem 0; }
.newsletter__inner { text-align: center; max-width: 560px; margin: 0 auto; }
.newsletter h2   { color: var(--white); margin-bottom: .65rem; }
.newsletter p    { color: rgba(255,255,255,.8); margin-bottom: 1.75rem; }
.newsletter-form { display: flex; gap: .5rem; }
.newsletter-form input {
  flex: 1; padding: .85rem 1.2rem; border: none;
  border-radius: var(--radius-sm); font-family: inherit; font-size: .95rem;
}
.newsletter-form input:focus { outline: none; }
.newsletter-form button {
  background: var(--accent); color: var(--primary-dark); font-weight: 800;
  padding: .85rem 1.5rem; border: none; border-radius: var(--radius-sm);
  cursor: pointer; font-family: inherit; transition: all .2s; white-space: nowrap;
}
.newsletter-form button:hover { background: var(--white); }

/* ============================================
   FOOTER
   ============================================ */
.footer { background: #37474F; color: rgba(255,255,255,.85); padding: 4rem 0 1.5rem; }
.footer__grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem;
  padding-bottom: 2.5rem; border-bottom: 1px solid rgba(255,255,255,.12);
  margin-bottom: 1.5rem;
}
.footer__desc { font-size: .875rem; line-height: 1.7; margin: 1rem 0 1.25rem; color: rgba(255,255,255,.9); }
.footer__social { display: flex; gap: .6rem; }
.social-btn {
  width: 38px; height: 38px; background: rgba(255,255,255,.1);
  border-radius: var(--radius-sm); display: flex; align-items: center;
  justify-content: center; color: var(--white); font-size: .95rem; transition: all .2s;
}
.social-btn:hover { background: var(--primary); }
.footer__heading {
  font-size: .8rem; font-weight: 700; color: var(--white);
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 1.1rem;
}
.footer__links { list-style: none; display: flex; flex-direction: column; gap: .55rem; }
.footer__links a { font-size: .875rem; color: rgba(255,255,255,.6); transition: color .2s; }
.footer__links a:hover { color: var(--accent); }
.footer__bottom {
  display: flex; justify-content: space-between; align-items: center;
  font-size: .78rem; flex-wrap: wrap; gap: .5rem;
}
.footer__phone { font-size: 1.05rem; font-weight: 700; color: var(--accent-light); }

/* ============================================
   PAGE HEADER (inner pages)
   ============================================ */
.page-header {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  padding: 7.5rem 0 3rem; text-align: center; color: var(--white);
}
.page-header h1 { color: var(--white); margin-bottom: .65rem; }
.page-header p  { color: rgba(255,255,255,.8); font-size: 1.05rem; }

/* Breadcrumb */
.breadcrumb { background: var(--bg-light); padding: .6rem 0; border-bottom: 1px solid var(--gray-200); }
.breadcrumb__list { display: flex; align-items: center; gap: .4rem; list-style: none; font-size: .8rem; }
.breadcrumb__list a { color: var(--primary); }
.breadcrumb__list span { color: var(--gray-400); }
.breadcrumb__list .cur { color: var(--gray-600); }

/* ============================================
   RESULTS PAGE
   ============================================ */
.results-wrap { padding: 1.5rem 0 4rem; }
.results-top {
  background: var(--primary-dark); padding: 1.25rem 0;
}
.results-search {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr .9fr .9fr auto;
  gap: .6rem; align-items: end;
}
.results-layout { display: grid; grid-template-columns: 260px 1fr; gap: 1.5rem; padding-top: 1.5rem; }
.filters-panel {
  background: var(--white); border-radius: var(--radius); padding: 1.25rem;
  box-shadow: var(--shadow); border: 1px solid var(--gray-200);
  align-self: start; position: sticky; top: 110px;
}
.filter-title { font-size: .85rem; font-weight: 800; color: var(--dark); margin-bottom: .75rem; text-transform: uppercase; letter-spacing: .5px; }
.filter-group { margin-bottom: 1.25rem; padding-bottom: 1.25rem; border-bottom: 1px solid var(--gray-200); }
.filter-group:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.filter-check {
  display: flex; align-items: center; gap: .5rem;
  cursor: pointer; padding: .28rem 0;
}
.filter-check input[type="checkbox"] { accent-color: var(--primary); width: 15px; height: 15px; }
.filter-check span { font-size: .84rem; color: var(--gray-700); }
.filter-check .cnt { margin-left: auto; font-size: .72rem; color: var(--gray-400); }
input[type="range"] { width: 100%; accent-color: var(--primary); margin: .4rem 0; }
.range-labels { display: flex; justify-content: space-between; font-size: .75rem; color: var(--gray-500); }
.results-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1rem; flex-wrap: wrap; gap: .5rem; }
.results-count { font-size: .88rem; color: var(--gray-600); }
.results-count strong { color: var(--dark); }
.sort-select {
  padding: .5rem 2.2rem .5rem .85rem; border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-sm); font-family: inherit; font-size: .84rem;
  color: var(--gray-700); background: var(--white); cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%236B7280' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right .6rem center;
}

/* Hotel result (horizontal card) */
.hotel-result {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
  display: grid; grid-template-columns: 265px 1fr;
  margin-bottom: 1.1rem; transition: all .3s;
}
.hotel-result:hover { box-shadow: var(--shadow-lg); border-color: var(--primary-light); }
.hotel-result__img { overflow: hidden; position: relative; }
.hotel-result__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.hotel-result:hover .hotel-result__img img { transform: scale(1.05); }
.result-badge-top { position: absolute; top: .6rem; left: .6rem; display: flex; gap: .35rem; flex-direction: column; }
.result-badge {
  background: var(--danger); color: var(--white);
  padding: .2rem .55rem; border-radius: 50px; font-size: .68rem; font-weight: 700;
}
.result-badge--blue { background: var(--primary); }
.hotel-result__body { padding: 1.2rem; display: flex; flex-direction: column; }
.hotel-result__top  { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: .35rem; }
.hotel-result__name { font-size: 1.12rem; font-weight: 700; color: var(--dark); }
.hotel-result__score {
  background: var(--primary); color: var(--white);
  padding: .22rem .6rem; border-radius: var(--radius-sm); font-weight: 700; font-size: .88rem; flex-shrink: 0;
}
.hotel-result__desc { font-size: .84rem; color: var(--gray-600); line-height: 1.6; margin-bottom: .65rem; }
.facility-tags { display: flex; flex-wrap: wrap; gap: .3rem; margin-bottom: auto; }
.facility-tag {
  background: var(--gray-100); color: var(--gray-600);
  padding: .18rem .6rem; border-radius: 50px; font-size: .7rem; font-weight: 500;
}
.hotel-result__footer {
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--gray-200); padding-top: .9rem; margin-top: .9rem;
  gap: 1rem;
}
.result-children {
  font-size: .76rem; color: var(--success); font-weight: 700;
  display: flex; align-items: center; gap: .3rem;
}
.result-price { text-align: right; }
.result-price__label { font-size: .72rem; color: var(--gray-500); }
.result-price__offer {
  font-size: .72rem; font-weight: 700; color: var(--danger);
  background: rgba(230,57,70,.08); padding: .12rem .5rem; border-radius: 4px;
}
.result-price__val { font-size: 1.55rem; font-weight: 800; color: var(--primary); line-height: 1.1; }
.result-price__sub { font-size: .7rem; color: var(--gray-400); }
.result-price .btn { margin-top: .5rem; }

/* ============================================
   HOTEL DETAIL PAGE
   ============================================ */
.gallery { display: grid; grid-template-columns: 2fr 1fr; grid-template-rows: 1fr 1fr; gap: .5rem; height: 400px; border-radius: var(--radius); overflow: hidden; margin-bottom: 2rem; }
.gallery__main   { grid-row: span 2; overflow: hidden; }
.gallery__thumb  { overflow: hidden; position: relative; }
.gallery__main img, .gallery__thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.gallery__main:hover img, .gallery__thumb:hover img { transform: scale(1.05); }
.gallery__more {
  position: absolute; inset: 0; background: rgba(0,0,0,.5);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 700; font-size: 1.2rem; cursor: pointer;
}
.detail-layout { display: grid; grid-template-columns: 1fr 340px; gap: 2rem; padding: 1.5rem 0 4rem; }
.hotel-info__head {
  display: flex; justify-content: space-between;
  align-items: flex-start; margin-bottom: 1.5rem;
}
.hotel-info__head h1 { font-size: 1.8rem; margin-bottom: .45rem; }
.hotel-info__head .loc { color: var(--gray-500); font-size: .9rem; }
.rating-badge {
  background: var(--primary); color: var(--white);
  padding: .75rem 1.1rem; border-radius: var(--radius); text-align: center; flex-shrink: 0;
}
.rating-badge__num { font-size: 2rem; font-weight: 800; line-height: 1; }
.rating-badge__lbl { font-size: .72rem; opacity: .85; }
.hotel-tabs { display: flex; border-bottom: 2px solid var(--gray-200); margin-bottom: 1.5rem; }
.hotel-tab {
  padding: .8rem 1.4rem; font-size: .88rem; font-weight: 600;
  color: var(--gray-500); cursor: pointer; border-bottom: 2px solid transparent; margin-bottom: -2px; transition: all .2s;
}
.hotel-tab.active { color: var(--primary); border-bottom-color: var(--primary); }

/* Offers table */
.offers-table { width: 100%; border-collapse: collapse; margin-bottom: 1.5rem; font-size: .875rem; }
.offers-table thead th {
  background: var(--primary); color: var(--white);
  padding: .8rem 1rem; text-align: left; font-size: .78rem;
  font-weight: 700; text-transform: uppercase; letter-spacing: .5px;
}
.offers-table thead th:first-child { border-radius: 8px 0 0 0; }
.offers-table thead th:last-child  { border-radius: 0 8px 0 0; }
.offers-table tbody td { padding: .8rem 1rem; border-bottom: 1px solid var(--gray-200); vertical-align: middle; }
.offers-table tbody tr:hover td { background: var(--bg-light); }
.offers-table tbody tr.best td { background: rgba(0,119,182,.05); border-left: 3px solid var(--primary); }
.best-badge {
  background: var(--primary); color: var(--white);
  padding: .12rem .5rem; border-radius: 50px; font-size: .67rem; font-weight: 800; margin-left: .4rem;
}

/* Booking widget */
.booking-widget {
  background: var(--white); border-radius: var(--radius);
  padding: 1.5rem; box-shadow: var(--shadow-lg);
  border: 2px solid var(--primary-light); position: sticky; top: 80px;
}
.bw__head { text-align: center; padding-bottom: 1rem; border-bottom: 1px solid var(--gray-200); margin-bottom: 1.2rem; }
.bw__price { font-size: 2rem; font-weight: 800; color: var(--primary); }
.bw__price sub { font-size: .75rem; font-weight: 400; color: var(--gray-400); }
.bw__promo {
  font-size: .78rem; font-weight: 700; color: var(--danger);
  background: rgba(230,57,70,.08); padding: .22rem .75rem;
  border-radius: 50px; display: inline-block; margin-top: .2rem;
}
.bw__form { display: flex; flex-direction: column; gap: .7rem; }
.bw__children-policy {
  background: rgba(5,150,105,.07); border: 1px solid rgba(5,150,105,.2);
  border-radius: var(--radius-sm); padding: .7rem;
  font-size: .78rem; color: var(--success);
}
.bw__children-policy strong { display: block; margin-bottom: .2rem; font-size: .82rem; }

/* ============================================
   BUS PAGE
   ============================================ */
.city-search-wrap { max-width: 480px; margin: 0 auto 2rem; position: relative; }
.city-search-wrap input {
  width: 100%; padding: .95rem 1rem .95rem 3rem;
  border: 2px solid var(--gray-200); border-radius: var(--radius);
  font-family: inherit; font-size: 1rem; transition: all .2s;
}
.city-search-wrap input:focus { outline: none; border-color: var(--primary-light); box-shadow: 0 0 0 3px rgba(0,180,216,.15); }
.city-search-wrap .ico { position: absolute; left: 1rem; top: 50%; transform: translateY(-50%); font-size: 1.2rem; }
.region-filters { display: flex; gap: .4rem; flex-wrap: wrap; justify-content: center; margin-bottom: 2rem; }
.region-pill {
  padding: .38rem 1.1rem; border: 2px solid var(--gray-300);
  border-radius: 50px; font-size: .82rem; font-weight: 600;
  color: var(--gray-600); cursor: pointer; transition: all .2s; background: var(--white);
}
.region-pill:hover, .region-pill.active { border-color: var(--primary); color: var(--primary); background: rgba(0,119,182,.06); }
.cities-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.city-card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
  border: 1px solid var(--gray-200); transition: all .3s;
}
.city-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); border-color: var(--primary-light); }
.city-card__head {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: .9rem 1.2rem;
  display: flex; align-items: center; justify-content: space-between;
}
.city-card__name   { font-size: 1.05rem; font-weight: 700; color: var(--white); }
.city-card__region { font-size: .72rem; color: var(--accent); }
.city-card__ico    { font-size: 1.4rem; }
.city-card__body   { padding: .9rem 1.2rem; }
.city-row {
  display: flex; justify-content: space-between;
  font-size: .8rem; padding: .3rem 0; border-bottom: 1px solid var(--gray-100);
}
.city-row:last-of-type { border-bottom: none; }
.city-row__k { color: var(--gray-500); }
.city-row__v { font-weight: 600; color: var(--gray-800); }
.city-card__price {
  background: var(--bg-light); padding: .7rem 1.2rem;
  display: flex; justify-content: space-between; align-items: center;
}
.city-card__price-lbl { font-size: .78rem; color: var(--gray-500); }
.city-card__price-val { font-size: 1.2rem; font-weight: 800; color: var(--primary); }
.city-card__cta {
  display: block; text-align: center;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: var(--white); padding: .7rem; font-weight: 700; font-size: .85rem; transition: all .2s;
}
.city-card__cta:hover { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); }

/* ============================================
   ELENCO HOTEL PAGE
   ============================================ */
.alphabet-bar { display: flex; gap: .3rem; flex-wrap: wrap; margin-bottom: 2rem; justify-content: center; }
.alpha-btn {
  width: 34px; height: 34px; border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm); font-size: .82rem; font-weight: 700;
  color: var(--gray-600); cursor: pointer; transition: all .2s;
  background: var(--white); display: flex; align-items: center; justify-content: center;
}
.alpha-btn:hover, .alpha-btn.active { border-color: var(--primary); color: var(--primary); background: rgba(0,119,182,.07); }
.hotel-list-section { margin-bottom: 2rem; }
.hotel-list-section__letter {
  font-size: 1.3rem; font-weight: 800; color: var(--primary);
  padding: .4rem 0; border-bottom: 2px solid var(--primary-light);
  margin-bottom: 1rem;
}
.hotels-list-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: .9rem; }
.hotel-mini {
  background: var(--white); border-radius: var(--radius-sm);
  overflow: hidden; box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200); transition: all .3s;
}
.hotel-mini:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--primary-light); }
.hotel-mini img { width: 100%; height: 120px; object-fit: cover; }
.hotel-mini__body { padding: .75rem; }
.hotel-mini__name { font-size: .88rem; font-weight: 700; color: var(--dark); margin-bottom: .2rem; }
.hotel-mini__loc  { font-size: .72rem; color: var(--gray-500); margin-bottom: .4rem; }
.hotel-mini__price { font-size: .9rem; font-weight: 800; color: var(--primary); }

/* ============================================
   OFFERTE PAGE
   ============================================ */
.offerte-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.offerta-card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
  border: 1px solid var(--gray-200); transition: all .3s;
}
.offerta-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.offerta-card__img { position: relative; height: 200px; overflow: hidden; }
.offerta-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.offerta-card:hover .offerta-card__img img { transform: scale(1.06); }
.offerta-card__badge {
  position: absolute; top: .7rem; left: .7rem;
  background: var(--danger); color: var(--white);
  padding: .25rem .7rem; border-radius: 50px; font-size: .72rem; font-weight: 800;
}
.offerta-card__nights {
  position: absolute; bottom: .7rem; right: .7rem;
  background: rgba(0,0,0,.65); color: var(--white);
  padding: .25rem .7rem; border-radius: 50px; font-size: .75rem; font-weight: 700;
  backdrop-filter: blur(4px);
}
.offerta-card__body { padding: 1.2rem; }
.offerta-card__hotel { font-size: .78rem; color: var(--primary); font-weight: 700; margin-bottom: .3rem; }
.offerta-card__title { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: .35rem; }
.offerta-card__desc  { font-size: .82rem; color: var(--gray-600); line-height: 1.5; margin-bottom: .9rem; }
.offerta-card__footer { display: flex; align-items: center; justify-content: space-between; }
.offerta-card__price { font-size: 1.4rem; font-weight: 800; color: var(--primary); }
.offerta-card__price small { font-size: .72rem; font-weight: 400; color: var(--gray-500); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hotels-grid { grid-template-columns: repeat(2, 1fr); }
  .nights-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid  { grid-template-columns: repeat(2, 1fr); }
  .steps-grid::before { display: none; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .results-layout { grid-template-columns: 1fr; }
  .filters-panel { position: static; }
  .detail-layout { grid-template-columns: 1fr; }
  .booking-widget { position: static; }
  .cities-grid { grid-template-columns: repeat(2, 1fr); }
  .transfers-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .hotels-list-grid { grid-template-columns: repeat(3, 1fr); }
  .offerte-grid { grid-template-columns: repeat(2, 1fr); }
  .results-search { grid-template-columns: 1fr 1fr 1fr auto; }
}
@media (max-width: 768px) {
  :root { --container-pad: 1rem; }
  .nav__menu { display: none; }
  .nav__hamburger { display: flex; }
  /* Header compatto su mobile */
  .nav { padding: .4rem 0; }
  .logo__icon { width: 32px; height: 32px; font-size: 1.1rem; border-radius: 8px; }
  .logo__name { font-size: .95rem; }
  .logo__tagline { display: none; }
  .search-grid  { grid-template-columns: 1fr 1fr; }
  .search-grid > *:last-child { grid-column: 1 / -1; }
  .stats__grid  { grid-template-columns: repeat(2, 1fr); }
  .hotels-grid  { grid-template-columns: 1fr; }
  .nights-grid  { grid-template-columns: 1fr 1fr; }
  .steps-grid   { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .hotel-result {
    grid-template-columns: 1fr;
    border-radius: 0;
    border-left: none;
    border-right: none;
    width: calc(100% + 2 * var(--container-pad));
    margin-left: calc(-1 * var(--container-pad));
    margin-bottom: .5rem;
  }
  .hotel-result__img { height: 220px; }
  .gallery { height: 260px; grid-template-columns: 1fr; }
  .gallery__main { grid-row: span 1; }
  .gallery__thumb { display: none; }
  .cities-grid { grid-template-columns: 1fr; }
  .transfers-grid { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; }
  .hotels-list-grid { grid-template-columns: 1fr 1fr; }
  .offerte-grid { grid-template-columns: 1fr; }
  .results-search { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .search-grid { grid-template-columns: 1fr; }
  .nights-grid { grid-template-columns: 1fr; }
  .hotels-list-grid { grid-template-columns: 1fr; }
}

/* ============================================
   UTILITIES
   ============================================ */
.text-center  { text-align: center; }
.text-primary { color: var(--primary); }
.text-success { color: var(--success); }
.text-danger  { color: var(--danger); }
.fw-700 { font-weight: 700; }
.fw-800 { font-weight: 800; }
.mt-1 { margin-top: .5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: .5rem; } .mb-2 { margin-bottom: 1rem; }
.d-flex { display: flex; } .align-center { align-items: center; } .gap-1 { gap: .5rem; }
.w-100 { width: 100%; }

/* ============================================
   PREMIUM HOTEL DETAIL — Travellero-inspired
   ============================================ */

/* Sticky search modification bar */
.sticky-search-bar {
  position: sticky; top: 70px; z-index: 90;
  background: var(--primary-dark);
  border-bottom: 2px solid rgba(0,180,216,.3);
  padding: .7rem 0;
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
}
.sticky-search-inner {
  display: flex; align-items: center; gap: 1rem;
  flex-wrap: wrap;
}
.sticky-search-summary {
  display: flex; align-items: center; gap: .6rem;
  flex: 1; flex-wrap: wrap;
}
.sticky-search-pill {
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2);
  color: var(--white); padding: .32rem .9rem; border-radius: 50px;
  font-size: .8rem; font-weight: 600; display: flex; align-items: center; gap: .4rem;
}
.sticky-search-pill span { opacity: .7; }

/* Gallery — large grid + count overlay */
.gallery-v2 {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-template-rows: 230px 230px;
  gap: .4rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  margin-bottom: 0;
}
.gallery-v2__main {
  grid-row: 1 / 3;
  overflow: hidden; position: relative;
}
.gallery-v2__main img {
  width: 100%; height: 100%; object-fit: cover; transition: transform .5s;
  cursor: pointer;
}
.gallery-v2__main:hover img { transform: scale(1.04); }
.gallery-v2__thumb { overflow: hidden; position: relative; cursor: pointer; }
.gallery-v2__thumb img {
  width: 100%; height: 100%; object-fit: cover; transition: transform .5s;
}
.gallery-v2__thumb:hover img { transform: scale(1.06); }
.gallery-v2__more-overlay {
  position: absolute; inset: 0; background: rgba(0,0,0,.55);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  color: var(--white); cursor: pointer;
}
.gallery-v2__more-overlay strong { font-size: 1.6rem; font-weight: 800; line-height: 1; }
.gallery-v2__more-overlay span { font-size: .78rem; opacity: .85; margin-top: .2rem; }
.gallery-v2__count {
  position: absolute; bottom: .8rem; right: .8rem;
  background: rgba(0,0,0,.65); color: var(--white);
  padding: .3rem .8rem; border-radius: 50px;
  font-size: .75rem; font-weight: 600;
  backdrop-filter: blur(6px); display: flex; align-items: center; gap: .3rem;
  cursor: pointer; transition: background .2s;
}
.gallery-v2__count:hover { background: var(--primary); }

/* Hotel title bar */
.hotel-title-bar {
  padding: 1.5rem 0 0;
}
.hotel-title-bar__top {
  display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem;
}
.hotel-title-bar__info { flex: 1; }
.hotel-title-bar__breadcrumb {
  display: flex; align-items: center; gap: .3rem;
  font-size: .78rem; color: var(--gray-500); margin-bottom: .5rem; flex-wrap: wrap;
}
.hotel-title-bar__breadcrumb a { color: var(--primary); font-weight: 600; }
.hotel-title-bar__breadcrumb span { color: var(--gray-300); }
.hotel-title-bar h1 {
  font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800;
  color: var(--dark); margin-bottom: .5rem; line-height: 1.15;
}
.hotel-meta-row {
  display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; margin-bottom: .5rem;
}
.hotel-zone-pill {
  background: var(--bg-light); color: var(--primary);
  padding: .25rem .8rem; border-radius: 50px;
  font-size: .78rem; font-weight: 700;
  display: flex; align-items: center; gap: .3rem;
}
.hotel-treatment-pill {
  background: rgba(0,119,182,.08); color: var(--primary);
  padding: .25rem .8rem; border-radius: 50px;
  font-size: .78rem; font-weight: 600;
}
.hotel-wishlist {
  background: none; border: 1.5px solid var(--gray-300);
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all .2s; font-size: 1rem; flex-shrink: 0;
}
.hotel-wishlist:hover { border-color: var(--danger); color: var(--danger); }

/* Score badge — large Travellero style */
.score-badge-lg {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  padding: .9rem 1.3rem; border-radius: var(--radius);
  text-align: center; flex-shrink: 0; min-width: 90px;
  box-shadow: 0 6px 20px rgba(0,119,182,.3);
}
.score-badge-lg__num { font-size: 2.4rem; font-weight: 800; line-height: 1; }
.score-badge-lg__lbl { font-size: .68rem; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; opacity: .85; margin-top: .15rem; }
.score-badge-lg__reviews { font-size: .68rem; opacity: .7; margin-top: .1rem; }

/* Rating mini bars */
.rating-bars { display: flex; flex-direction: column; gap: .4rem; }
.rating-bar-row { display: flex; align-items: center; gap: .6rem; font-size: .78rem; }
.rating-bar-row__label { width: 80px; color: var(--gray-500); font-weight: 500; text-align: right; }
.rating-bar-track {
  flex: 1; height: 6px; background: var(--gray-200); border-radius: 3px; overflow: hidden;
}
.rating-bar-fill {
  height: 100%; border-radius: 3px;
  background: linear-gradient(90deg, var(--primary-light), var(--primary));
}
.rating-bar-row__val { width: 28px; font-weight: 700; color: var(--dark); font-size: .78rem; }

/* Quick info strip */
.hotel-quick-strip {
  display: flex; gap: 1.5rem; flex-wrap: wrap;
  padding: 1rem 0; border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200); margin: 1rem 0;
}
.quick-item {
  display: flex; align-items: center; gap: .45rem;
  font-size: .82rem; color: var(--gray-600);
}
.quick-item strong { color: var(--dark); font-weight: 700; }
.quick-item__icon {
  width: 32px; height: 32px;
  background: var(--bg-light); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: .95rem; flex-shrink: 0;
}

/* Detail page two-column layout */
.detail-v2 {
  display: grid; grid-template-columns: 1fr 360px;
  gap: 2.5rem; padding: 2rem 0 5rem; align-items: start;
}
.detail-v2__main { min-width: 0; }
.detail-v2__sidebar { position: sticky; top: 140px; }

/* Modern booking widget */
.bw-v2 {
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: 0 8px 40px rgba(0,119,182,.18);
  border: 1.5px solid var(--primary-light);
  overflow: hidden;
}
.bw-v2__top {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  padding: 1.25rem 1.5rem; text-align: center;
}
.bw-v2__top-label { font-size: .7rem; font-weight: 700; color: rgba(255,255,255,.75); text-transform: uppercase; letter-spacing: 1px; }
.bw-v2__price-big {
  font-size: 2.5rem; font-weight: 800; color: var(--white); line-height: 1;
  margin: .25rem 0 .1rem;
}
.bw-v2__price-sub { font-size: .75rem; color: rgba(255,255,255,.7); }
.bw-v2__promo-tag {
  display: inline-block; margin-top: .5rem;
  background: rgba(255,255,255,.2); color: var(--white);
  padding: .2rem .7rem; border-radius: 50px; font-size: .72rem; font-weight: 700;
}
.bw-v2__body { padding: 1.25rem 1.5rem; }
.bw-v2__form { display: flex; flex-direction: column; gap: .65rem; }
.bw-v2__nights-select { display: flex; gap: .35rem; flex-wrap: wrap; }
.bw-v2__night-btn {
  flex: 1; min-width: 50px; padding: .45rem .3rem;
  border: 1.5px solid var(--gray-200); border-radius: var(--radius-sm);
  background: var(--white); font-family: inherit; font-size: .78rem; font-weight: 700;
  color: var(--gray-600); cursor: pointer; transition: all .2s; text-align: center;
}
.bw-v2__night-btn:hover { border-color: var(--primary-light); color: var(--primary); }
.bw-v2__night-btn.active {
  border-color: var(--primary); background: rgba(0,119,182,.07); color: var(--primary);
}
.bw-v2__divider { border: none; border-top: 1px solid var(--gray-100); margin: .3rem 0; }
.bw-v2__children-policy {
  background: rgba(5,150,105,.06); border: 1px solid rgba(5,150,105,.2);
  border-radius: var(--radius-sm); padding: .65rem .85rem;
  font-size: .77rem; color: var(--success); line-height: 1.5;
}
.bw-v2__children-policy strong { display: block; margin-bottom: .15rem; }
.bw-v2__cta-btn {
  display: block; width: 100%; padding: .95rem;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: var(--white); font-family: inherit; font-size: 1rem; font-weight: 800;
  border: none; border-radius: var(--radius-sm); cursor: pointer;
  transition: all .3s; letter-spacing: .3px;
  box-shadow: 0 4px 15px rgba(0,119,182,.35);
}
.bw-v2__cta-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,119,182,.5); }
.bw-v2__contact-row {
  display: flex; gap: .5rem; margin-top: .5rem;
}
.bw-v2__contact-btn {
  flex: 1; padding: .6rem; border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm); background: var(--white);
  font-family: inherit; font-size: .78rem; font-weight: 700; color: var(--gray-700);
  cursor: pointer; transition: all .2s; display: flex; align-items: center;
  justify-content: center; gap: .35rem;
}
.bw-v2__contact-btn:hover { border-color: var(--primary-light); color: var(--primary); }
.bw-v2__guarantees {
  padding: .85rem 1.5rem; background: var(--bg-light);
  border-top: 1px solid var(--gray-100);
}
.bw-v2__guarantee-row {
  display: flex; align-items: center; gap: .5rem;
  font-size: .75rem; color: var(--gray-600); padding: .15rem 0;
}
.bw-v2__guarantee-row::before {
  content: '✓'; color: var(--success); font-weight: 800; font-size: .85rem;
  flex-shrink: 0;
}

/* Tabs v2 — premium sticky tab nav */
.tabs-v2 {
  border-bottom: 2px solid var(--gray-200);
  display: flex; gap: 0; position: sticky; top: 132px; z-index: 80;
  background: var(--white); padding: 0; margin: 0 0 2rem;
  overflow-x: auto; scrollbar-width: none;
}
.tabs-v2::-webkit-scrollbar { display: none; }
.tab-v2 {
  padding: .9rem 1.3rem; font-size: .85rem; font-weight: 700;
  color: var(--gray-500); cursor: pointer; border-bottom: 2.5px solid transparent;
  margin-bottom: -2px; transition: all .2s; white-space: nowrap;
  background: none; border-top: none; border-left: none; border-right: none;
  font-family: inherit; flex-shrink: 0;
}
.tab-v2:hover { color: var(--primary); }
.tab-v2.active { color: var(--primary); border-bottom-color: var(--primary); }
.tab-panel-v2 { display: none; }
.tab-panel-v2.active { display: block; }

/* Included / Not included */
.included-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1.5rem;
}
.included-box {
  background: var(--bg-light); border-radius: var(--radius); padding: 1.1rem 1.25rem;
  border: 1px solid var(--gray-200);
}
.included-box--no { background: #fff5f5; border-color: rgba(230,57,70,.15); }
.included-box__title {
  font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .5px;
  margin-bottom: .75rem; display: flex; align-items: center; gap: .4rem;
}
.included-box--yes .included-box__title { color: var(--success); }
.included-box--no  .included-box__title { color: var(--danger); }
.included-list { list-style: none; display: flex; flex-direction: column; gap: .4rem; }
.included-list li {
  font-size: .82rem; color: var(--gray-700); display: flex; align-items: flex-start; gap: .5rem;
}
.included-list li::before { flex-shrink: 0; margin-top: .1rem; }
.included-box--yes .included-list li::before { content: '✓'; color: var(--success); font-weight: 800; }
.included-box--no  .included-list li::before { content: '✗'; color: var(--danger); font-weight: 800; }

/* Services grid with categories */
.services-categories { display: flex; flex-direction: column; gap: 1.25rem; }
.services-cat { }
.services-cat__title {
  font-size: .75rem; font-weight: 800; text-transform: uppercase; letter-spacing: .7px;
  color: var(--primary); margin-bottom: .65rem;
  display: flex; align-items: center; gap: .4rem;
}
.services-cat__title::after { content: ''; flex: 1; height: 1px; background: var(--gray-200); }
.services-cat__grid { display: flex; flex-wrap: wrap; gap: .4rem; }
.service-chip {
  background: var(--bg-light); border: 1px solid var(--gray-200);
  color: var(--gray-700); padding: .32rem .75rem;
  border-radius: 50px; font-size: .78rem; font-weight: 500;
  display: flex; align-items: center; gap: .35rem;
}

/* Distances block */
.distances-section { margin-bottom: 1.5rem; }
.distances-section h3 { font-size: .88rem; font-weight: 800; color: var(--dark); margin-bottom: .75rem; }
.distances-list { list-style: none; display: flex; flex-direction: column; gap: 0; }
.distance-item {
  display: flex; align-items: center; gap: .75rem;
  padding: .6rem 0; border-bottom: 1px solid var(--gray-100);
  font-size: .82rem;
}
.distance-item:last-child { border-bottom: none; }
.distance-item__icon { font-size: 1rem; flex-shrink: 0; }
.distance-item__name { flex: 1; color: var(--gray-700); font-weight: 500; }
.distance-item__dist {
  font-size: .75rem; font-weight: 700;
  background: var(--bg-light); color: var(--primary);
  padding: .15rem .55rem; border-radius: 50px;
}
.distance-item__time { font-size: .72rem; color: var(--gray-400); min-width: 70px; text-align: right; }

/* FAQ Accordion */
.faq-list { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
.faq-item {
  border: 1.5px solid var(--gray-200); border-radius: var(--radius); overflow: hidden;
  transition: border-color .2s;
}
.faq-item.open { border-color: var(--primary-light); }
.faq-question {
  width: 100%; background: none; border: none; padding: 1rem 1.25rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  cursor: pointer; font-family: inherit; font-size: .88rem; font-weight: 700;
  color: var(--dark); text-align: left; transition: background .2s;
}
.faq-question:hover { background: var(--bg-light); }
.faq-item.open .faq-question { background: var(--bg-light); color: var(--primary); }
.faq-chevron {
  width: 20px; height: 20px; flex-shrink: 0;
  border: 1.5px solid var(--gray-300); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .65rem; transition: transform .3s; color: var(--gray-500);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); border-color: var(--primary); color: var(--primary); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height .35s ease;
  padding: 0 1.25rem;
}
.faq-item.open .faq-answer { max-height: 500px; }
.faq-answer__inner {
  padding: .15rem 0 1rem; font-size: .84rem; color: var(--gray-600); line-height: 1.7;
}

/* Cancellation policy */
.cancel-policy-list { list-style: none; display: flex; flex-direction: column; gap: .4rem; }
.cancel-policy-item {
  display: flex; align-items: center; gap: .75rem;
  padding: .65rem 1rem; border-radius: var(--radius-sm);
  font-size: .82rem; background: var(--bg-light);
}
.cancel-policy-item__icon { font-size: 1.1rem; flex-shrink: 0; }
.cancel-policy-item__text { flex: 1; color: var(--gray-700); }
.cancel-policy-item__penalty {
  font-weight: 800; color: var(--success); font-size: .82rem;
}
.cancel-policy-item--warn .cancel-policy-item__penalty { color: var(--warning); }
.cancel-policy-item--danger .cancel-policy-item__penalty { color: var(--danger); }

/* Contact CTA banner */
.contact-cta-banner {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  border-radius: var(--radius-lg); padding: 2rem; text-align: center;
  margin: 2rem 0;
}
.contact-cta-banner h3 { color: var(--white); font-size: 1.15rem; margin-bottom: .4rem; }
.contact-cta-banner p { color: rgba(255,255,255,.8); font-size: .85rem; margin-bottom: 1.25rem; }
.contact-cta-banner__btns { display: flex; gap: .75rem; justify-content: center; flex-wrap: wrap; }
.cta-contact-btn {
  display: flex; align-items: center; gap: .5rem;
  padding: .65rem 1.3rem; border-radius: 50px;
  font-weight: 700; font-size: .85rem; cursor: pointer;
  transition: all .2s; border: 2px solid rgba(255,255,255,.4);
  font-family: inherit; color: var(--white); background: rgba(255,255,255,.1);
}
.cta-contact-btn:hover { background: var(--white); color: var(--primary); border-color: var(--white); }

/* Tariff cards — modern pricing cards instead of table */
.tariff-period-tabs { display: flex; gap: .4rem; flex-wrap: wrap; margin-bottom: 1.25rem; }
.tariff-period-tab {
  padding: .4rem 1rem; border: 1.5px solid var(--gray-200);
  border-radius: 50px; font-size: .8rem; font-weight: 700;
  color: var(--gray-600); cursor: pointer; background: var(--white);
  font-family: inherit; transition: all .2s;
}
.tariff-period-tab.active { border-color: var(--primary); color: var(--primary); background: rgba(0,119,182,.06); }
.tariff-cards-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-bottom: 1.5rem; }
.tariff-card {
  border: 1.5px solid var(--gray-200); border-radius: var(--radius);
  overflow: hidden; transition: all .2s;
}
.tariff-card:hover { border-color: var(--primary-light); box-shadow: var(--shadow); }
.tariff-card.best {
  border-color: var(--primary); box-shadow: 0 0 0 1px var(--primary);
}
.tariff-card__head {
  background: var(--gray-100); padding: .65rem 1rem;
  font-size: .78rem; font-weight: 800; text-transform: uppercase; letter-spacing: .4px;
  color: var(--gray-600); display: flex; align-items: center; justify-content: space-between;
}
.tariff-card.best .tariff-card__head {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--white);
}
.tariff-card__body { padding: .85rem 1rem; }
.tariff-card__nights-row { display: flex; flex-direction: column; gap: .45rem; }
.tariff-night-row {
  display: flex; align-items: center; justify-content: space-between;
  font-size: .82rem; padding: .35rem .5rem;
  border-radius: var(--radius-sm); cursor: pointer; transition: background .15s;
}
.tariff-night-row:hover { background: var(--bg-light); }
.tariff-night-row.promo { background: rgba(0,119,182,.05); }
.tariff-night-row__dur { font-weight: 600; color: var(--gray-700); }
.tariff-night-row__price { font-weight: 800; color: var(--primary); }
.tariff-night-row__price.highlight { color: var(--danger); font-size: .88rem; }
.tariff-night-row__badge {
  font-size: .65rem; font-weight: 800; background: var(--danger);
  color: var(--white); padding: .1rem .35rem; border-radius: 3px; margin-left: .25rem;
}

/* Supplements table — cleaner version */
.suppl-table { width: 100%; border-collapse: collapse; font-size: .84rem; }
.suppl-table th {
  text-align: left; padding: .6rem .85rem;
  font-size: .72rem; font-weight: 800; text-transform: uppercase; letter-spacing: .4px;
  color: var(--gray-500); border-bottom: 2px solid var(--gray-200);
}
.suppl-table td { padding: .6rem .85rem; border-bottom: 1px solid var(--gray-100); }
.suppl-table tr:last-child td { border-bottom: none; }
.suppl-table tr:hover td { background: var(--bg-light); }
.suppl-table .price-col { font-weight: 800; color: var(--primary); text-align: right; }
.suppl-table .discount-col { font-weight: 800; color: var(--success); text-align: right; }
.suppl-table .label-col { color: var(--gray-700); }

/* Reviews mini panel */
.reviews-summary {
  display: grid; grid-template-columns: auto 1fr; gap: 1.5rem;
  padding: 1.25rem; background: var(--bg-light); border-radius: var(--radius);
  margin-bottom: 1.5rem; border: 1px solid var(--gray-200);
}
.reviews-big-score {
  text-align: center; padding: .5rem 1rem;
}
.reviews-big-score__num {
  font-size: 3.5rem; font-weight: 800; color: var(--primary); line-height: 1;
}
.reviews-big-score__lbl {
  font-size: .78rem; font-weight: 700; color: var(--primary); margin-top: .1rem;
}
.reviews-big-score__count { font-size: .7rem; color: var(--gray-400); margin-top: .1rem; }
.review-card {
  background: var(--white); border-radius: var(--radius); padding: 1.1rem;
  border: 1px solid var(--gray-200); margin-bottom: .85rem;
}
.review-card__header { display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; margin-bottom: .6rem; }
.review-card__author { font-size: .85rem; font-weight: 700; color: var(--dark); }
.review-card__date { font-size: .72rem; color: var(--gray-400); }
.review-card__score {
  background: var(--primary); color: var(--white);
  padding: .2rem .5rem; border-radius: var(--radius-sm);
  font-weight: 800; font-size: .82rem; flex-shrink: 0;
}
.review-card__text { font-size: .84rem; color: var(--gray-600); line-height: 1.65; font-style: italic; }

/* Magazine offers grid */
.offerte-magazine-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: auto;
  gap: 1rem;
}
.offerta-featured {
  grid-column: 1 / 9; grid-row: 1 / 3;
}
.offerta-side-1 { grid-column: 9 / 13; grid-row: 1; }
.offerta-side-2 { grid-column: 9 / 13; grid-row: 2; }
.offerta-m { grid-column: span 4; }
.offerta-card-v2 {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
  border: 1px solid var(--gray-200); transition: all .3s;
  display: flex; flex-direction: column; height: 100%;
}
.offerta-card-v2:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--primary-light); }
.offerta-card-v2__img { position: relative; overflow: hidden; }
.offerta-card-v2__img img { width: 100%; object-fit: cover; transition: transform .5s; display: block; }
.offerta-card-v2:hover .offerta-card-v2__img img { transform: scale(1.05); }
.offerta-featured .offerta-card-v2__img img { height: 360px; }
.offerta-side-1 .offerta-card-v2__img img,
.offerta-side-2 .offerta-card-v2__img img { height: 175px; }
.offerta-m .offerta-card-v2__img img { height: 190px; }
.offerta-card-v2__discount {
  position: absolute; top: .75rem; left: .75rem;
  background: var(--danger); color: var(--white);
  padding: .28rem .75rem; border-radius: 50px; font-size: .72rem; font-weight: 800;
}
.offerta-card-v2__nights {
  position: absolute; bottom: .75rem; right: .75rem;
  background: rgba(0,0,0,.6); color: var(--white); backdrop-filter: blur(4px);
  padding: .28rem .75rem; border-radius: 50px; font-size: .72rem; font-weight: 700;
}
.offerta-card-v2__body { padding: 1.1rem; flex: 1; display: flex; flex-direction: column; }
.offerta-card-v2__hotel { font-size: .72rem; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: .5px; margin-bottom: .25rem; }
.offerta-card-v2__title { font-size: .98rem; font-weight: 700; color: var(--dark); margin-bottom: .35rem; line-height: 1.3; }
.offerta-featured .offerta-card-v2__title { font-size: 1.3rem; }
.offerta-card-v2__desc { font-size: .8rem; color: var(--gray-500); line-height: 1.55; margin-bottom: auto; padding-bottom: .9rem; }
.offerta-card-v2__footer {
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid var(--gray-100); padding-top: .85rem; margin-top: .85rem;
}
.offerta-card-v2__price-wrap {}
.offerta-card-v2__price-old { font-size: .75rem; color: var(--gray-400); text-decoration: line-through; }
.offerta-card-v2__price { font-size: 1.35rem; font-weight: 800; color: var(--primary); line-height: 1; }
.offerta-featured .offerta-card-v2__price { font-size: 1.7rem; }
.offerta-card-v2__price small { font-size: .7rem; font-weight: 500; color: var(--gray-500); }
.offerta-card-v2__tags { display: flex; gap: .3rem; flex-wrap: wrap; margin-bottom: .75rem; }
.offerta-card-v2__tag {
  background: var(--bg-light); color: var(--primary);
  padding: .18rem .55rem; border-radius: 50px; font-size: .68rem; font-weight: 600;
}

/* Hotel list premium */
.hotel-list-card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow);
  border: 1px solid var(--gray-200);
  display: grid; grid-template-columns: 200px 1fr;
  transition: all .3s; margin-bottom: 1rem;
}
.hotel-list-card:hover { box-shadow: var(--shadow-lg); border-color: var(--primary-light); transform: translateX(3px); }
.hotel-list-card__img { overflow: hidden; }
.hotel-list-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.hotel-list-card:hover .hotel-list-card__img img { transform: scale(1.06); }
.hotel-list-card__body { padding: 1rem 1.25rem; display: flex; flex-direction: column; }
.hotel-list-card__top { display: flex; justify-content: space-between; align-items: flex-start; }
.hotel-list-card__name { font-size: .98rem; font-weight: 800; color: var(--dark); margin-bottom: .2rem; }
.hotel-list-card__zone { font-size: .75rem; color: var(--gray-500); margin-bottom: .35rem; display: flex; align-items: center; gap: .25rem; }
.hotel-list-card__score {
  background: var(--primary); color: var(--white);
  padding: .22rem .55rem; border-radius: var(--radius-sm); font-weight: 800; font-size: .82rem; flex-shrink: 0;
}
.hotel-list-card__services { display: flex; gap: .3rem; flex-wrap: wrap; margin-top: auto; padding-top: .6rem; }
.hotel-list-card__service {
  font-size: .68rem; background: var(--gray-100); color: var(--gray-600);
  padding: .15rem .5rem; border-radius: 50px;
}
.hotel-list-card__price {
  font-size: .75rem; color: var(--gray-400);
}
.hotel-list-card__price strong { font-size: 1.2rem; color: var(--primary); display: block; line-height: 1.1; }

/* Map placeholder */
.map-placeholder {
  background: var(--gray-100); border-radius: var(--radius);
  height: 220px; display: flex; align-items: center; justify-content: center;
  overflow: hidden; position: relative; border: 1px solid var(--gray-200);
}
.map-placeholder img { width: 100%; height: 100%; object-fit: cover; }
.map-pois {
  display: flex; flex-direction: column; gap: .35rem; margin-top: .75rem;
}
.map-poi {
  display: flex; align-items: center; gap: .6rem;
  padding: .5rem .85rem; background: var(--bg-light);
  border-radius: var(--radius-sm); font-size: .8rem;
  border: 1px solid var(--gray-200);
}
.map-poi__icon { font-size: .95rem; }
.map-poi__name { flex: 1; color: var(--gray-700); font-weight: 500; }
.map-poi__dist { font-weight: 700; color: var(--primary); }

/* ============================================
   RESPONSIVE — premium additions
   ============================================ */
@media (max-width: 1024px) {
  .detail-v2 { grid-template-columns: 1fr; }
  .detail-v2__sidebar { position: static; }
  .gallery-v2 { grid-template-rows: 200px 200px; }
  .tariff-cards-grid { grid-template-columns: repeat(2, 1fr); }
  .offerte-magazine-grid { grid-template-columns: 1fr 1fr; }
  .offerta-featured, .offerta-side-1, .offerta-side-2, .offerta-m { grid-column: span 1; grid-row: auto; }
  .included-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .gallery-v2 { grid-template-columns: 1fr; grid-template-rows: 220px; }
  .gallery-v2__main { grid-row: 1; }
  .gallery-v2__thumb { display: none; }
  .hotel-title-bar__top { flex-direction: column; }
  .score-badge-lg { width: 100%; }
  .tabs-v2 { top: 70px; }
  .tariff-cards-grid { grid-template-columns: 1fr; }
  .offerte-magazine-grid { grid-template-columns: 1fr; }
  .hotel-list-card { grid-template-columns: 120px 1fr; }
  .reviews-summary { grid-template-columns: 1fr; }
}

/* ============================================
   STICKY SEARCH BAR (orange, slides in on scroll)
   ============================================ */
.sticky-search {
  position: fixed;
  top: var(--header-h, 62px); left: 0; right: 0;
  z-index: 990;
  background: linear-gradient(135deg, #E85D04 0%, #F77F00 55%, #FCBF49 100%);
  box-shadow: 0 4px 20px rgba(232,93,4,.35);
  transform: translateY(-120%);
  transition: transform .38s cubic-bezier(.4,0,.2,1);
  pointer-events: none;
  overflow: visible;
}
.sticky-search.ss-visible {
  transform: translateY(0);
  pointer-events: all;
}
.sticky-search__form {
  display: flex;
  align-items: center;
  gap: .45rem;
  padding: .55rem 0;
  flex-wrap: nowrap;
  overflow: visible;
}
@media(max-width:900px) {
  .sticky-search__form { flex-wrap: wrap; gap: .3rem; justify-content: center; }
  .ss-field--dest, .ss-field--date, .ss-field--people { min-width: calc(50% - .2rem); flex: 1 1 45%; }
  .ss-btn { width: 100%; }
}
.ss-field {
  display: flex;
  align-items: center;
  gap: .4rem;
  background: rgba(255,255,255,.17);
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 8px;
  padding: .42rem .75rem;
  color: #fff;
  cursor: pointer;
  height: 38px;
  position: relative;
  flex-shrink: 0;
  transition: background .15s;
}
.ss-field:hover { background: rgba(255,255,255,.27); }
.ss-field select,
.ss-field input[type="text"] {
  background: none;
  border: none;
  color: #fff;
  font-family: 'Montserrat', sans-serif;
  font-size: .82rem;
  font-weight: 600;
  outline: none;
  cursor: pointer;
  min-width: 0;
  width: 100%;
  flex: 1 1 auto;
}
.ss-field select option { color: #212121; background: #fff; }
.ss-field__icon { font-size: .85rem; flex-shrink: 0; }
.ss-field__arr { font-size: .68rem; margin-left: .2rem; flex-shrink: 0; opacity: .8; }
.ss-field--dest { min-width: 150px; }
.ss-field--date { min-width: 250px; }
.ss-field--people { min-width: 155px; user-select: none; }
.ss-field input::placeholder { color: rgba(255,255,255,.7) !important; font-weight: 500; }
.flatpickr-input[readonly] { cursor: pointer; }

/* "Solo domeniche" bus hint badge */
.bus-only-hint {
  display: none;
  align-items: center; gap: .25rem;
  font-size: .7rem; font-weight: 700;
  padding: .15rem .5rem; border-radius: 50px;
  white-space: nowrap; pointer-events: none;
}
/* In sticky bar — white style */
.sticky-search .bus-only-hint {
  color: #fff;
  background: rgba(255,255,255,.2);
  border: 1px solid rgba(255,255,255,.4);
}
/* In hero / page forms — orange style */
.search-box .bus-only-hint, .search-top-bar .bus-only-hint {
  color: #E85D04;
  background: rgba(232,93,4,.1);
  border: 1px solid rgba(232,93,4,.3);
}
.bus-only-hint.visible { display: inline-flex; }

/* ============================================
   FLATPICKR — clean light style (global)
   ============================================ */
.flatpickr-calendar { font-family: 'Montserrat', sans-serif; }
.flatpickr-months { background: #f0f5ff !important; border-bottom: 1px solid #dce8f5; border-radius: 5px 5px 0 0; }
.flatpickr-months .flatpickr-month { background: transparent !important; }
.flatpickr-current-month, .flatpickr-monthDropdown-months { color: #023E8A !important; font-weight: 700 !important; }
.flatpickr-weekday { background: #e8f0fe !important; color: #0077B6 !important; font-weight: 700 !important; }
.flatpickr-prev-month svg, .flatpickr-next-month svg { fill: #0077B6 !important; }
.flatpickr-prev-month:hover, .flatpickr-next-month:hover { background: #dce8f5 !important; }
.numInputWrapper span { border-color: rgba(0,119,182,.2) !important; }
.flatpickr-day.selected, .flatpickr-day.startRange, .flatpickr-day.endRange { background: #0077B6 !important; border-color: #0077B6 !important; }
.flatpickr-day.inRange { background: #CAF0F8 !important; border-color: #CAF0F8 !important; color: #023E8A !important; }
.flatpickr-day:hover { background: #00B4D8 !important; border-color: #00B4D8 !important; color: #fff !important; }

.ss-btn {
  background: #fff;
  color: #E85D04;
  border: none;
  border-radius: 8px;
  padding: .5rem 1.4rem;
  font-family: 'Montserrat', sans-serif;
  font-size: .85rem;
  font-weight: 800;
  cursor: pointer;
  height: 38px;
  white-space: nowrap;
  transition: all .18s;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
}
.ss-btn:hover { background: #fff3e0; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(0,0,0,.2); }

/* Tipo viaggio pill in sticky bar */
.ss-field--tipo { min-width: 135px; }
.ss-field--tipo select { font-size: .78rem; }

/* People Picker dropdown */
.people-picker {
  display: none;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 290px;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 10px 40px rgba(0,0,0,.22);
  padding: 1rem 1.1rem .75rem;
  z-index: 9999;
  border: 1px solid #e0e0e0;
  animation: ppSlideIn .2s ease;
}
/* In sticky search bar, open DOWNWARD and ensure visible */
.sticky-search .people-picker {
  top: calc(100% + 10px);
  left: auto;
  right: 0;
}
.people-picker.pp-open { display: block; }
@keyframes ppSlideIn {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}
.pp-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .6rem 0;
  border-bottom: 1px solid #f0f0f0;
}
.pp-row:last-of-type { border-bottom: none; }
.pp-label strong { display: block; font-size: .88rem; color: #212121; font-family: 'Montserrat', sans-serif; }
.pp-label span { font-size: .72rem; color: #999; }
.pp-controls {
  display: flex;
  align-items: center;
  gap: .55rem;
}
.pp-controls > span {
  font-size: 1rem; font-weight: 800;
  color: #023E8A; min-width: 20px;
  text-align: center; font-family: 'Montserrat', sans-serif;
}
.pp-btn {
  width: 30px; height: 30px;
  border-radius: 50%;
  border: 2px solid #0077B6;
  background: #fff;
  color: #0077B6;
  font-size: 1.1rem; font-weight: 700;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  line-height: 1;
  transition: all .15s;
  font-family: 'Montserrat', sans-serif;
  padding: 0;
}
.pp-btn:hover:not(:disabled) { background: #0077B6; color: #fff; }
.pp-btn:disabled { opacity: .3; cursor: not-allowed; border-color: #ccc; }
.pp-age-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .38rem 0;
  border-bottom: 1px solid #f5f5f5;
  animation: ppSlideIn .2s ease;
}
.pp-age-label { font-size: .82rem; color: #444; font-family: 'Montserrat', sans-serif; }
.pp-age-select {
  border: 1px solid #ddd; border-radius: 6px;
  padding: .25rem .5rem; font-size: .8rem;
  font-family: 'Montserrat', sans-serif;
  color: #212121; background: #fafafa;
  outline: none;
}
.pp-ages-title {
  font-size: .72rem; font-weight: 700; color: #888;
  text-transform: uppercase; letter-spacing: .05em;
  margin: .5rem 0 .2rem; font-family: 'Montserrat', sans-serif;
}
/* +/− age controls (replaces native select inside people picker) */
.pp-age-ctrls {
  display: flex; align-items: center; gap: .4rem;
}
.pp-age-val {
  min-width: 64px; text-align: center;
  font-size: .8rem; font-weight: 700;
  color: #023E8A; font-family: 'Montserrat', sans-serif;
}
.pp-btn--sm {
  width: 24px; height: 24px;
  font-size: .85rem;
}
.pp-confirm {
  display: block; width: 100%;
  margin-top: .8rem; padding: .6rem;
  background: linear-gradient(135deg, #0077B6, #00B4D8);
  color: #fff; border: none; border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: .85rem; font-weight: 700; cursor: pointer;
  transition: opacity .15s;
}
.pp-confirm:hover { opacity: .9; }

/* ============================================
   COMPACT MOBILE STICKY BAR
   ============================================ */
/* Compact bar: visible only on mobile, hidden on desktop */
.ss-compact-bar {
  display: none; /* hidden by default; shown via media query */
  align-items: center;
  justify-content: space-between;
  padding: .55rem 1rem;
  cursor: pointer;
  user-select: none;
  -webkit-user-select: none;
  gap: .5rem;
}
.ss-compact-text {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .15rem .4rem;
  flex: 1;
  min-width: 0;
  overflow: hidden;
}
.ss-compact-dest {
  font-size: .82rem;
  font-weight: 700;
  color: #fff;
  white-space: nowrap;
  font-family: 'Montserrat', sans-serif;
}
.ss-compact-sep {
  font-size: .82rem;
  color: rgba(255,255,255,.5);
  font-family: 'Montserrat', sans-serif;
}
.ss-compact-detail {
  font-size: .76rem;
  color: rgba(255,255,255,.85);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: 'Montserrat', sans-serif;
}
.ss-compact-icon,
.ss-compact-close {
  font-size: 1rem;
  color: #fff;
  flex-shrink: 0;
  line-height: 1;
  padding: .2rem;
}
.ss-compact-close { display: none; }
/* When form is open: show X, hide search icon */
.sticky-search.ss-form-open .ss-compact-close { display: inline; }
.sticky-search.ss-form-open .ss-compact-icon { display: none; }

/* Mobile: show compact bar, hide full form by default */
@media (max-width: 768px) {
  .ss-compact-bar { display: flex; }
  .sticky-search__form {
    display: none;           /* hidden until expanded */
    flex-direction: column;
    padding: .5rem .75rem .75rem;
    gap: .4rem;
    background: rgba(255,255,255,.06);
    border-top: 1px solid rgba(255,255,255,.15);
  }
  /* When expanded */
  .sticky-search.ss-form-open .sticky-search__form { display: flex; }

  /* Make fields full-width on mobile when expanded */
  .sticky-search.ss-form-open .ss-field--dest,
  .sticky-search.ss-form-open .ss-field--tipo,
  .sticky-search.ss-form-open .ss-field--date,
  .sticky-search.ss-form-open .ss-field--people { flex: 1 1 100%; min-width: 0; }
  .sticky-search.ss-form-open .ss-btn { width: 100%; margin-top: .2rem; }

  /* White-card style for inputs on mobile */
  .sticky-search.ss-form-open .ss-field input,
  .sticky-search.ss-form-open .ss-field select {
    background: rgba(255,255,255,.18);
    color: #fff;
    border-color: rgba(255,255,255,.3);
  }
  .sticky-search.ss-form-open .ss-field input::placeholder { color: rgba(255,255,255,.6); }
  .sticky-search.ss-form-open .ss-field label { color: rgba(255,255,255,.7); }
}

/* ============================================
   TARIFFE PER DURATA (multi-night comparison)
   ============================================ */
.tn-filters {
  display: flex; flex-wrap: wrap; gap: .5rem;
  justify-content: center; margin-bottom: 2rem;
}
.tn-pill {
  border: 2px solid #0077B6; background: #fff; color: #0077B6;
  padding: .45rem 1.2rem; border-radius: 50px; font-size: .82rem;
  font-weight: 700; cursor: pointer; font-family: 'Montserrat', sans-serif;
  transition: all .18s;
}
.tn-pill:hover { background: #e8f4fd; }
.tn-pill.active { background: #0077B6; color: #fff; }
.tn-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 1.4rem;
}
.tn-card {
  background: #fff; border-radius: 16px; overflow: hidden;
  box-shadow: 0 4px 18px rgba(0,0,0,.08); border: 1px solid #f0f0f0;
  transition: transform .2s, box-shadow .2s; position: relative;
  display: flex; flex-direction: column;
}
.tn-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(0,119,182,.12); }
.tn-card--best { border: 2px solid #0077B6; }
.tn-card__badge {
  position: absolute; top: .75rem; left: .75rem;
  background: #023E8A; color: #fff; font-size: .72rem; font-weight: 800;
  padding: .25rem .7rem; border-radius: 50px; z-index: 2;
  font-family: 'Montserrat', sans-serif;
}
.tn-card__badge--best { background: #E07B00; }
.tn-card__badge--week { background: #0077B6; }
.tn-card__img { position: relative; height: 180px; overflow: hidden; }
.tn-card__img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .3s; }
.tn-card:hover .tn-card__img img { transform: scale(1.04); }
.tn-card__stars {
  position: absolute; bottom: .5rem; right: .75rem;
  color: #F9A825; font-size: .8rem; text-shadow: 0 1px 3px rgba(0,0,0,.4);
}
.tn-card__body { padding: 1rem 1.1rem 1.1rem; display: flex; flex-direction: column; flex: 1; }
.tn-card__name { font-size: 1rem; font-weight: 800; color: #023E8A; margin: 0 0 .25rem; font-family: 'Montserrat', sans-serif; }
.tn-card__loc { font-size: .78rem; color: #666; margin-bottom: .7rem; font-family: 'Montserrat', sans-serif; }
.tn-card__incl { list-style: none; padding: 0; margin: 0 0 .9rem; display: flex; flex-direction: column; gap: .22rem; flex: 1; }
.tn-card__incl li { font-size: .78rem; color: #444; font-family: 'Montserrat', sans-serif; }
.tn-card__price-row {
  display: flex; align-items: center; justify-content: space-between;
  border-top: 1px solid #f0f0f0; padding-top: .8rem; margin-top: auto;
}
.tn-card__from { font-size: .72rem; color: #999; font-family: 'Montserrat', sans-serif; }
.tn-card__price { font-size: 1.35rem; font-weight: 900; color: #023E8A; font-family: 'Montserrat', sans-serif; margin: 0 .2rem; }
.tn-card__unit { font-size: .72rem; color: #999; font-family: 'Montserrat', sans-serif; }
.tn-card__cta {
  background: linear-gradient(135deg, #0077B6, #00B4D8); color: #fff;
  border: none; border-radius: 8px; padding: .45rem .9rem; font-size: .78rem;
  font-weight: 700; cursor: pointer; text-decoration: none;
  font-family: 'Montserrat', sans-serif; white-space: nowrap; transition: opacity .15s;
}
.tn-card__cta:hover { opacity: .88; }
@media (max-width: 600px) {
  .tn-grid { grid-template-columns: 1fr 1fr; gap: .9rem; }
  .tn-card__price { font-size: 1.1rem; }
}
@media (max-width: 420px) { .tn-grid { grid-template-columns: 1fr; } }

/* ============================================
   IMAGE PLACEHOLDERS (for hotel page)
   ============================================ */
.img-grid-2 {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: .85rem; margin: 1.25rem 0;
  border-radius: 12px; overflow: hidden;
}
.img-grid-2 img {
  width: 100%; height: 180px;
  object-fit: cover; border-radius: 10px;
  display: block;
}
.img-full {
  width: 100%; height: 220px;
  object-fit: cover; border-radius: 12px;
  display: block; margin: 1.1rem 0;
}
.img-caption {
  font-size: .72rem; color: #888;
  text-align: center; margin-top: -.5rem;
  margin-bottom: 1rem; font-style: italic;
}
.map-embed-placeholder {
  width: 100%; height: 280px;
  background: linear-gradient(160deg, #e0ecff 0%, #c8def8 40%, #b8d4f5 100%);
  border-radius: 12px; border: 1px solid #c0d8f0;
  display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: .5rem;
  color: #0077B6; font-weight: 600; font-size: .95rem;
  margin-bottom: 1.25rem; position: relative; overflow: hidden;
}
.map-embed-placeholder::before {
  content: '📍';
  font-size: 2.5rem;
  display: block;
}
.map-embed-placeholder span { font-size: .82rem; color: #5599cc; }

/* Review avatar */
.review-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 800; color: #fff;
  flex-shrink: 0;
}

/* ============================================
   GDPR COOKIE CONSENT BANNER
   ============================================ */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 99999;
  background: #1C2331;
  color: #e8edf3;
  padding: 1rem 1.5rem;
  box-shadow: 0 -4px 24px rgba(0,0,0,.35);
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: .87rem;
  line-height: 1.5;
  transform: translateY(0);
  transition: transform .4s cubic-bezier(.4,0,.2,1);
}
#cookie-banner.cb-hidden {
  transform: translateY(110%);
  pointer-events: none;
}
.cb-text { flex: 1 1 300px; }
.cb-text a { color: #90E0EF; text-decoration: underline; }
.cb-text a:hover { color: #00B4D8; }
.cb-actions { display: flex; gap: .6rem; flex-shrink: 0; flex-wrap: wrap; }
.cb-btn {
  padding: .5rem 1.2rem;
  border-radius: 6px;
  border: none;
  font-size: .85rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity .2s, transform .1s;
  white-space: nowrap;
}
.cb-btn:hover { opacity: .88; transform: translateY(-1px); }
.cb-btn--accept {
  background: linear-gradient(135deg, #E8A800, #D49300);
  color: #1C2331;
}
.cb-btn--essential {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,.3);
  color: #e8edf3;
}
@media (max-width: 600px) {
  #cookie-banner { flex-direction: column; align-items: flex-start; gap: .8rem; }
  .cb-actions { width: 100%; }
  .cb-btn { flex: 1; text-align: center; }
}

