/* ═══════════════════════════════════════════════════════════
   MójEgipt Theme v1.1 — Premium Travel Portal CSS
   ═══════════════════════════════════════════════════════════ */

/* ── Variables ──────────────────────────────────────────────── */
:root {
  --nile:       #1A6B8A;
  --nile-dark:  #0D4D66;
  --nile-deep:  #0D2E3A;
  --sand:       #C9A96E;
  --gold:       #D4A017;
  --dark:       #1C1C1C;
  --bg:         #FAFAF8;
  --bg2:        #F3F1EB;
  --card:       #FFFFFF;
  --t:          #1C1C1C;
  --t2:         #5A5A5A;
  --border:     #E0DDD5;
  --radius:     12px;
  --radius-lg:  18px;
  --shadow:     0 2px 16px rgba(0,0,0,.08);
  --shadow-md:  0 4px 28px rgba(0,0,0,.12);
  --shadow-lg:  0 8px 48px rgba(0,0,0,.18);
  --max:        1200px;
  --font-body:  'DM Sans', system-ui, -apple-system, sans-serif;
  --font-head:  'Playfair Display', Georgia, serif;
  --transition: .2s ease;
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; background: var(--nile-deep); min-height: 100%; }
body { font-family: var(--font-body); background: var(--bg); color: var(--t); line-height: 1.7; font-size: 16px; overscroll-behavior-y: none; min-height: 100dvh; display: flex; flex-direction: column; }
html { background: var(--nile-deep); } /* prevent white flash below footer on mobile */
img  { max-width: 100%; height: auto; display: block; }
a    { color: var(--nile); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--nile-dark); text-decoration: underline; }
p    { margin-bottom: 1rem; color: var(--t2); }
ul, ol { padding-left: 1.5rem; }
li { margin-bottom: .4rem; }

/* ── Typography ─────────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-head); color: var(--dark); line-height: 1.2; }
h1 { font-size: clamp(24px, 4vw, 44px); margin-bottom: .75rem; }
h2 { font-size: clamp(20px, 3vw, 32px); margin-bottom: .6rem; }
h3 { font-size: clamp(17px, 2.5vw, 22px); margin-bottom: .5rem; }
h4 { font-size: 17px; margin-bottom: .4rem; font-family: var(--font-body); font-weight: 600; }

/* ── Layout ─────────────────────────────────────────────────── */
.container { max-width: var(--max); margin: 0 auto; padding: 0 20px; }
main { flex: 1 0 auto; }
.section { padding: 56px 0; }
.section--alt { background: var(--bg2); }
.section--dark { background: var(--nile-deep); }

/* ── Header ─────────────────────────────────────────────────── */
.site-header {
  background: var(--nile-deep);
  position: sticky; top: 0; z-index: 200;
  box-shadow: 0 2px 20px rgba(0,0,0,.2);
}
.site-header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px; gap: 20px;
}
.site-logo {
  display: flex; align-items: center; gap: 10px;
  flex-shrink: 0; text-decoration: none !important;
}
.site-logo img  { height: 44px; width: auto; object-fit: contain; }
.site-logo-text { font-family: var(--font-head); font-size: 24px; color: #fff; white-space: nowrap; }
.site-logo:hover .site-logo-text { color: var(--sand); }

.site-nav { display: flex; align-items: center; gap: 2px; }
.site-nav a {
  color: rgba(255,255,255,.82); font-size: 14px; font-weight: 500;
  padding: 7px 14px; border-radius: 8px; transition: background var(--transition), color var(--transition);
  white-space: nowrap;
}
.site-nav a:hover, .site-nav a.active {
  background: rgba(255,255,255,.12); color: #fff; text-decoration: none;
}

/* ── Breadcrumb ─────────────────────────────────────────────── */
.breadcrumb { display: flex; flex-wrap: wrap; gap: 4px; list-style: none; padding: 14px 0; font-size: 13px; }
.breadcrumb li + li::before { content: '›'; margin-right: 4px; color: var(--t2); }
.breadcrumb a { color: var(--nile); }
.breadcrumb li:last-child { color: var(--t2); }

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 6px; justify-content: center;
  padding: 10px 22px; border-radius: 10px; font-size: 14px; font-weight: 600;
  cursor: pointer; transition: filter var(--transition), transform var(--transition), box-shadow var(--transition);
  border: 2px solid transparent; text-decoration: none !important; white-space: nowrap;
}
.btn:hover { filter: brightness(1.07); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(0,0,0,.15); text-decoration: none !important; }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--nile); color: #fff; border-color: var(--nile); }
.btn--gold    { background: var(--sand); color: #fff; border-color: var(--sand); }
.btn--ghost   { background: transparent; color: var(--nile); border-color: var(--nile); }
.btn--dark    { background: var(--nile-deep); color: #fff; border-color: var(--nile-deep); }
.btn--sm      { padding: 7px 16px; font-size: 13px; border-radius: 8px; }
.btn--lg      { padding: 14px 32px; font-size: 16px; }
.btn--full    { width: 100%; }

/* ── ═══════════════════════════════════════════════════════════
   HERO — full-width image background
   ═══════════════════════════════════════════════════════════ */
.hero { position: relative; overflow: hidden; background: var(--nile-deep); min-height: 420px; display: flex; flex-direction: column; }
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 60%;
  background-repeat: no-repeat;
  transform: scale(1.03);
  transition: transform 8s ease;
}
.hero:hover .hero-bg { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom,
    rgba(13,46,58,.60) 0%,
    rgba(13,46,58,.50) 40%,
    rgba(13,46,58,.72) 100%);
}
.hero-content { flex: 1;
  position: relative; z-index: 2;
  padding: 80px 0 72px; text-align: center;
}
.hero__title { color: #fff; margin-bottom: 14px; text-shadow: 0 2px 12px rgba(0,0,0,.3); }
.hero__sub   { color: rgba(255,255,255,.85); font-size: 18px; margin-bottom: 32px; }
.hero__search {
  display: flex; max-width: 540px; margin: 0 auto 22px;
  background: #fff; border-radius: 12px; overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,.25);
}
.hero__search input {
  flex: 1; border: none; padding: 14px 20px; font-size: 15px; outline: none; color: var(--dark);
}
.hero__search button {
  background: var(--sand); color: #fff; border: none;
  padding: 14px 26px; font-size: 14px; font-weight: 700; cursor: pointer;
  transition: background var(--transition);
}
.hero__search button:hover { background: var(--nile); }
.hero__cats { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.hero__cat {
  background: rgba(255,255,255,.15); color: #fff; border: 1px solid rgba(255,255,255,.35);
  padding: 6px 18px; border-radius: 24px; font-size: 13px; font-weight: 500;
  transition: background var(--transition); backdrop-filter: blur(4px);
}
.hero__cat:hover { background: rgba(255,255,255,.28); color: #fff; text-decoration: none; }

/* ── ═══════════════════════════════════════════════════════════
   DESTINATIONS with photos
   ═══════════════════════════════════════════════════════════ */

/* ── Homepage section headers ─────────────────────────────── */
.hp-section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  gap: 16px;
}
.hp-section-title {
  font-size: clamp(20px, 4vw, 28px);
  line-height: 1.2;
  flex: 1;
  min-width: 0;
}
.hp-section-btn {
  flex-shrink: 0;
  white-space: nowrap;
}

.dest-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.dest-card-big {
  position: relative; border-radius: var(--radius-lg); overflow: hidden;
  aspect-ratio: 3/4; display: block; text-decoration: none !important;
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition);
}
.dest-card-big:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.dest-card-big img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.dest-card-big:hover img { transform: scale(1.06); }
.dest-card-big__body {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 40px 16px 18px;
  background: linear-gradient(to top, rgba(0,0,0,.82) 0%, rgba(0,0,0,0) 100%);
}
.dest-card-big__name { color: #fff; font-family: var(--font-head); font-size: 18px; font-weight: 700; display: block; margin-bottom: 3px; }
.dest-card-big__sub  { color: rgba(255,255,255,.72); font-size: 12px; display: block; }

/* ── Article grid ────────────────────────────────────────────── */
.article-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 22px; }
.article-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; transition: box-shadow var(--transition), transform var(--transition);
  display: flex; flex-direction: column;
}
.article-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.article-card__img { display: block; aspect-ratio: 16/9; overflow: hidden; background: var(--bg2); }
.article-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.article-card__img img[src=""], .article-card__img img:not([src]) { display: none; }
.article-card__img:has(img[src=""]), .article-card__img:has(img:not([src])) { background: linear-gradient(135deg, var(--nile), var(--sand)); }
.article-card:hover .article-card__img img { transform: scale(1.04); }
.article-card__nophoto { width: 100%; height: 100%; background: linear-gradient(135deg, var(--nile), var(--sand)); display:flex;align-items:center;justify-content:center; }
.article-card__body { padding: 18px; display: flex; flex-direction: column; flex: 1; }
.article-card__cat  { font-size: 11px; font-weight: 700; color: var(--nile); text-transform: uppercase; letter-spacing: .7px; display: block; margin-bottom: 6px; }
.article-card__title { font-weight: 600; font-size: 16px; color: var(--dark); display: block; margin-bottom: 8px; line-height: 1.4; flex-grow: 1; }
.article-card__title:hover { color: var(--nile); text-decoration: none; }
.article-card__intro { font-size: 14px; color: var(--t2); margin-bottom: 12px; flex-shrink: 0; }
.article-card__link { font-size: 13px; font-weight: 600; color: var(--nile); }

/* ── Hotel cards ─────────────────────────────────────────────── */
.hotel-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 22px; }
.hotel-list--equal { grid-template-columns: repeat(3, 1fr); }
@media (max-width: 900px) { .hotel-list--equal { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .hotel-list--equal { grid-template-columns: 1fr; } }
.hotel-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; transition: box-shadow var(--transition), transform var(--transition);
  display: flex; flex-direction: column; position: relative;
}
.hotel-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.hotel-card__img { display: block; aspect-ratio: 4/3; overflow: hidden; background: var(--bg2); }
.hotel-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.hotel-card:hover .hotel-card__img img { transform: scale(1.04); }
.hotel-card__nophoto { width: 100%; height: 100%; background: linear-gradient(135deg, var(--nile-deep), var(--sand)); }
.hotel-card__body { padding: 16px; display: flex; flex-direction: column; flex: 1; }
.hotel-card__name { font-weight: 600; font-size: 16px; color: var(--dark); display: block; margin-bottom: 6px; flex-grow: 1; }
.hotel-card__name:hover { color: var(--nile); text-decoration: none; }
.hotel-card__meta { display: flex; gap: 10px; align-items: center; font-size: 13px; color: var(--t2); margin-bottom: 6px; flex-shrink: 0; }
.hotel-card__stars { color: var(--gold); letter-spacing: -1px; }
.hotel-card__rating { font-size: 13px; margin-bottom: 12px; flex-shrink: 0; }
.hotel-card__btn { width: 100%; text-align: center; justify-content: center; }
.hotel-card__hook {
  font-size: 13px;
  color: var(--nile);
  font-weight: 600;
  font-style: italic;
  margin-bottom: 10px;
  flex-shrink: 0;
  line-height: 1.4;
}
.hotel-card__footer { display: flex; align-items: center; justify-content: space-between; margin-top: auto; }
.hotel-card__price { font-weight: 700; font-size: 17px; color: var(--nile); }

/* ── Ranking CTA box ─────────────────────────────────────────── */
.ranking-cta-box {
  background: linear-gradient(135deg, var(--nile-deep) 0%, var(--nile) 100%);
  border-radius: var(--radius-lg); padding: 40px 48px;
  display: flex; align-items: center; justify-content: space-between; gap: 28px;
}
.ranking-cta-box h2 { color: #fff; margin-bottom: 8px; }
.ranking-cta-box p  { color: rgba(255,255,255,.75); font-size: 15px; margin: 0; max-width: 520px; }

/* ── ═══════════════════════════════════════════════════════════
   HOTEL PAGE — Premium Redesign
   ═══════════════════════════════════════════════════════════ */

/* Hotel Hero */
.hotel-hero {
  position: relative; height: 70vh; min-height: 480px; max-height: 680px;
  overflow: hidden; background: var(--nile-deep);
}
.hotel-hero__bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
}
.hotel-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right,
    rgba(13,46,58,.85) 0%,
    rgba(13,46,58,.60) 50%,
    rgba(13,46,58,.30) 100%);
}
.hotel-hero__content {
  position: relative; z-index: 2; height: 100%;
  display: flex; align-items: flex-end; padding-bottom: 40px;
}
.hotel-hero__inner {
  display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; width: 100%;
}
.hotel-hero__left {}
.hotel-hero__badges { display: flex; gap: 8px; margin-bottom: 14px; flex-wrap: wrap; }
.hotel-hero__badge {
  background: rgba(255,255,255,.18); color: #fff; backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.3); padding: 4px 14px;
  border-radius: 24px; font-size: 12px; font-weight: 600;
}
.hotel-hero__name { font-family: var(--font-head); font-size: clamp(28px, 5vw, 52px); color: #fff; margin-bottom: 10px; line-height: 1.1; text-shadow: 0 2px 16px rgba(0,0,0,.3); }
.hotel-hero__meta { display: flex; gap: 20px; align-items: center; flex-wrap: wrap; }
.hotel-hero__loc  { color: rgba(255,255,255,.82); font-size: 15px; }
.hotel-hero__stars { color: var(--gold); font-size: 20px; letter-spacing: -2px; }
.hotel-hero__rating {
  background: var(--sand); color: #fff;
  padding: 6px 14px; border-radius: 8px; font-size: 18px; font-weight: 700;
}

/* Sticky booking card */
.hotel-hero__right {}
.hotel-book-card {
  background: rgba(255,255,255,.96); backdrop-filter: blur(12px);
  border-radius: var(--radius-lg); padding: 24px; min-width: 260px; max-width: 300px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.hotel-book-card__score { font-size: 48px; font-weight: 800; color: var(--nile); line-height: 1; }
.hotel-book-card__label { font-size: 12px; color: var(--t2); margin-bottom: 14px; }
.hotel-book-card__price { font-size: 13px; color: var(--t2); }
.hotel-book-card__price strong { font-size: 26px; font-weight: 800; color: var(--dark); display: block; }
.hotel-book-card .btn { margin-top: 12px; }
.hotel-book-card__urgent { font-size: 12px; color: #e65100; margin-top: 8px; font-weight: 600; }

/* Hotel Gallery */
.hotel-gallery-wrap { background: var(--dark); padding: 12px 0; }
.hotel-gallery-main {
  position: relative; width: 100%; height: 420px; overflow: hidden; cursor: zoom-in;
  background: #111;
}
.hotel-gallery-main img {
  width: 100%; height: 100%; object-fit: cover;
  transition: opacity .3s ease;
}
.hotel-gallery-main__count {
  position: absolute; bottom: 12px; right: 14px;
  background: rgba(0,0,0,.6); color: #fff; font-size: 12px;
  padding: 4px 12px; border-radius: 20px; backdrop-filter: blur(4px);
}
.hotel-gallery-thumbs {
  display: flex; gap: 6px; padding: 8px 0; overflow-x: auto; scrollbar-width: thin;
}
.hotel-gallery-thumbs::-webkit-scrollbar { height: 4px; }
.hotel-gallery-thumbs::-webkit-scrollbar-thumb { background: rgba(255,255,255,.3); border-radius: 2px; }
.hotel-gallery-thumb {
  flex-shrink: 0; width: 100px; height: 68px; border-radius: 6px; overflow: hidden;
  cursor: pointer; opacity: .6; transition: opacity var(--transition), transform var(--transition);
  border: 2px solid transparent;
}
.hotel-gallery-thumb:hover { opacity: .85; transform: scale(1.03); }
.hotel-gallery-thumb.active { opacity: 1; border-color: var(--sand); }
.hotel-gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* Lightbox */
.lightbox {
  display: none; position: fixed; inset: 0; background: rgba(0,0,0,.95);
  z-index: 9999; align-items: center; justify-content: center;
}
.lightbox.open { display: flex; }
.lightbox img { max-width: 92vw; max-height: 90vh; object-fit: contain; border-radius: 6px; }
.lightbox__close {
  position: fixed; top: 20px; right: 24px; color: #fff; font-size: 32px;
  cursor: pointer; background: none; border: none; line-height: 1; opacity: .7;
  transition: opacity var(--transition);
}
.lightbox__close:hover { opacity: 1; }
.lightbox__prev, .lightbox__next {
  position: fixed; top: 50%; transform: translateY(-50%);
  color: #fff; font-size: 36px; cursor: pointer; background: rgba(0,0,0,.4);
  border: none; padding: 12px 18px; border-radius: 8px; opacity: .7;
  transition: opacity var(--transition), background var(--transition);
}
.lightbox__prev:hover, .lightbox__next:hover { opacity: 1; background: rgba(0,0,0,.7); }
.lightbox__prev { left: 16px; }
.lightbox__next { right: 16px; }

/* Hotel page layout */
.hotel-page-layout {
  display: grid; grid-template-columns: 1fr 340px; gap: 40px;
  align-items: start; padding: 40px 0 60px;
}
.hotel-page-main {}
.hotel-page-sidebar { position: sticky; top: 88px; }

/* Rating breakdown */
.ratings-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin: 24px 0; }
.rating-item { background: var(--bg2); border-radius: 10px; padding: 14px; text-align: center; }
.rating-item__val { font-size: 26px; font-weight: 800; color: var(--nile); line-height: 1; }
.rating-item__bar { height: 5px; background: var(--border); border-radius: 3px; margin: 6px 0 3px; overflow: hidden; }
.rating-item__fill { height: 100%; background: var(--nile); border-radius: 3px; transition: width .6s ease; }
.rating-item__label { font-size: 12px; color: var(--t2); }

/* Pros / Cons */
.pros-cons { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 28px 0; }
.pros-box, .cons-box { border-radius: var(--radius); padding: 20px; }
.pros-box { background: #EAFAF1; border: 1px solid #A9DDB5; }
.cons-box { background: #FEF2F2; border: 1px solid #F5C6CB; }
.pros-box h3 { color: #0A4D1E; font-size: 15px; font-family: var(--font-body); font-weight: 700; margin-bottom: 12px; display: flex; align-items: center; gap: 6px; }
.cons-box h3 { color: #7A1414; font-size: 15px; font-family: var(--font-body); font-weight: 700; margin-bottom: 12px; display: flex; align-items: center; gap: 6px; }
.pros-box li { color: #155724; font-size: 14px; }
.cons-box li { color: #721C24; font-size: 14px; }

/* CTA block */
.cta-block {
  background: linear-gradient(135deg, var(--nile-dark), var(--nile));
  border-radius: var(--radius-lg); padding: 32px 36px;
  text-align: center; margin: 36px 0;
}
.cta-block__text { font-size: 20px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.cta-block__sub  { color: rgba(255,255,255,.8); font-size: 15px; margin-bottom: 20px; }

/* Price table */
.price-table { width: 100%; border-collapse: collapse; margin: 24px 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.price-table th { background: var(--nile-deep); color: #fff; padding: 12px 16px; text-align: left; font-size: 13px; font-weight: 600; }
.price-table td { padding: 12px 16px; border-bottom: 1px solid var(--border); font-size: 14px; background: var(--card); }
.price-table tr:last-child td { border-bottom: none; }
.price-table tr:hover td { background: var(--bg2); }
.price-table .price-val { font-weight: 700; font-size: 18px; color: var(--nile); }
.price-badge { background: var(--gold); color: #fff; font-size: 11px; font-weight: 700; padding: 2px 10px; border-radius: 6px; margin-left: 8px; }
.price-table .btn--sm { padding: 6px 16px; }

/* Sidebar booking widget */
.sidebar-book {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--radius-lg);
  padding: 24px; box-shadow: var(--shadow-md); text-align: center; margin-bottom: 20px;
}
.sidebar-book__score { font-size: 52px; font-weight: 800; color: var(--nile); line-height: 1; }
.sidebar-book__label { font-size: 13px; color: var(--t2); margin-bottom: 6px; }
.sidebar-book__price { font-size: 13px; color: var(--t2); }
.sidebar-book__price strong { font-size: 28px; font-weight: 800; color: var(--dark); display: block; margin-bottom: 4px; }
.sidebar-book__urgent { font-size: 12px; color: #e65100; font-weight: 700; margin: 8px 0; padding: 6px 12px; background: #FFF3E0; border-radius: 6px; }
.sidebar-book .btn { margin-top: 8px; }
.sidebar-book__affs { display: flex; flex-direction: column; gap: 8px; margin-top: 14px; padding-top: 14px; border-top: 1px solid var(--border); }

/* Mobile sticky CTA — only on mobile, only when body has .has-sticky-cta */
.mobile-cta-bar {
  display: none;
}
@media (max-width: 768px) {
  body.has-sticky-cta .mobile-cta-bar {
    display: flex;
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 100;
    background: var(--card); border-top: 1px solid var(--border);
    padding: 12px 16px 12px;
    padding-bottom: max(12px, env(safe-area-inset-bottom, 12px));
    gap: 10px;
    box-shadow: 0 -4px 20px rgba(0,0,0,.1);
  }
  body.has-sticky-cta {
    padding-bottom: 72px;
  }
}
.mobile-cta-bar .price-mobile { font-size: 11px; color: var(--t2); }
.mobile-cta-bar .price-mobile strong { font-size: 18px; color: var(--dark); font-weight: 800; display: block; line-height: 1; }

/* ── Article layout ──────────────────────────────────────────── */
.article-layout { display: grid; grid-template-columns: 1fr 320px; gap: 44px; align-items: start; }
.article-main  { min-width: 0; overflow-wrap: break-word; word-break: break-word; }
.article-sidebar { position: sticky; top: 88px; }
.article-header__meta { font-size: 13px; color: var(--t2); margin-bottom: 14px; display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.article-header__cat { background: var(--nile); color: #fff; padding: 3px 12px; border-radius: 6px; font-size: 12px; font-weight: 700; }
.article-header__img { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 28px; }
.article-header__img img { width: 100%; max-height: 480px; object-fit: cover; }
.article-content h2 { margin-top: 2.4rem; padding-top: .6rem; }
.article-content h3 { margin-top: 1.8rem; }
.article-content p  { font-size: 16px; line-height: 1.8; }
.article-content ul, .article-content ol { margin-bottom: 1rem; }
.article-content img { border-radius: var(--radius); margin: 1.5rem 0; }
.article-content table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.article-content table th { background: var(--bg2); padding: 10px 14px; text-align: left; font-size: 13px; font-weight: 600; }
.article-content table td { padding: 10px 14px; border-bottom: 1px solid var(--border); font-size: 14px; }
.tldr-box { background: var(--nile); color: #fff; border-radius: var(--radius-lg); padding: 20px 26px; margin: 28px 0; }
.tldr-box p { color: rgba(255,255,255,.9); margin: 0; font-size: 16px; }
.tldr-box strong { color: #fff; }

/* ── FAQ ─────────────────────────────────────────────────────── */
.faq-block { margin: 44px 0; }
.faq-block__title { margin-bottom: 22px; }
.faq-item { border: 1px solid var(--border); border-radius: var(--radius); margin-bottom: 10px; overflow: hidden; background: var(--card); }
.faq-item__q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 22px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 600;
  color: var(--dark);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  user-select: none;
  gap: 12px;
  min-height: 48px; /* touch-friendly */
  -webkit-tap-highlight-color: transparent;
}
.faq-item__q:hover { background: var(--bg2); }
.faq-item__icon { font-size: 20px; color: var(--nile); font-weight: 400; flex-shrink: 0; transition: transform .25s; }
.faq-item.open .faq-item__icon { transform: rotate(45deg); }
.faq-item__a { max-height: 0; overflow: hidden; transition: max-height .35s ease, padding .25s; }
.faq-item.open .faq-item__a { max-height: 600px; }
.faq-item__a p { padding: 0 22px 18px; margin: 0; font-size: 15px; color: var(--t2); }

/* ── TOC ─────────────────────────────────────────────────────── */
.toc { background: var(--bg2); border: 1px solid var(--border); border-radius: var(--radius); padding: 20px 22px; margin-bottom: 24px; }
.toc__title { font-weight: 700; font-size: 14px; margin-bottom: 12px; color: var(--dark); }
.toc__list { list-style: none; padding: 0; }
.toc__item { margin-bottom: 6px; }
.toc__item--h3 { padding-left: 16px; }
.toc__item a { font-size: 14px; color: var(--nile); }

/* ── Sidebar widgets ─────────────────────────────────────────── */
.sidebar-widget { background: var(--card); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; margin-bottom: 20px; box-shadow: var(--shadow); }
.sidebar-widget__title { font-size: 16px; font-weight: 700; margin-bottom: 16px; padding-bottom: 10px; border-bottom: 2px solid var(--nile); color: var(--dark); }

/* ── Ranking ─────────────────────────────────────────────────── */
.ranking-item {
  display: grid;
  grid-template-columns: 56px 260px 1fr auto;
  gap: 20px;
  align-items: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px;
  margin-bottom: 14px;
  transition: box-shadow var(--transition), transform var(--transition);
}
.ranking-item:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

/* TOP 3 wyróżnione */
.ranking-item--top1 { border: 2px solid #D4A017; background: linear-gradient(to right, #fffdf0, #fff); }
.ranking-item--top2 { border: 2px solid #9E9E9E; background: linear-gradient(to right, #f8f8f8, #fff); }
.ranking-item--top3 { border: 2px solid #CD7F32; background: linear-gradient(to right, #fff8f0, #fff); }

.ranking-item__pos {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 800;
  text-align: center;
  line-height: 1;
  flex-shrink: 0;
}
.ranking-item__img {
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
  height: 160px;
}
.ranking-item__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.ranking-item__img--empty { width: 100%; height: 100%; background: var(--bg2); display: flex; align-items: center; justify-content: center; color: var(--t2); font-size: 32px; }
.ranking-item--top1 .ranking-item__img,
.ranking-item--top2 .ranking-item__img,
.ranking-item--top3 .ranking-item__img { height: 180px; }
.ranking-item__badge { background: var(--gold); color: #fff; font-size: 11px; font-weight: 700; padding: 3px 12px; border-radius: 6px; display: inline-block; margin-bottom: 8px; }
.ranking-item__name { font-size: 18px; font-weight: 700; margin-bottom: 6px; }
.ranking-item--top1 .ranking-item__name { font-size: 20px; }
.ranking-item__name a { color: var(--dark); text-decoration: none; }
.ranking-item__name a:hover { color: var(--nile); }
.ranking-item__desc { font-size: 14px; color: var(--t2); margin-bottom: 8px; line-height: 1.6; }
.ranking-item__rating { font-size: 13px; }
.ranking-item__cta { display: flex; flex-direction: column; gap: 8px; min-width: 150px; }

/* ── Footer ──────────────────────────────────────────────────── */
.site-footer { background: var(--nile-deep); color: rgba(255,255,255,.65); padding: 56px 0 0; margin-bottom: 0; flex-shrink: 0; }
.site-footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 36px; margin-bottom: 40px; }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-logo img { height: 38px; width: auto; object-fit: contain; }
.footer-logo-text { font-family: var(--font-head); font-size: 22px; color: #fff; }
.site-footer__desc { font-size: 14px; line-height: 1.8; margin-bottom: 18px; }
.site-footer__col h4 { color: rgba(255,255,255,.88); font-size: 12px; font-weight: 700; margin-bottom: 14px; text-transform: uppercase; letter-spacing: 1px; font-family: var(--font-body); }
.site-footer__col a { display: block; color: rgba(255,255,255,.5); font-size: 14px; margin-bottom: 8px; transition: color var(--transition); }
.site-footer__col a:hover { color: rgba(255,255,255,.9); text-decoration: none; }
.site-footer__social { display: flex; gap: 12px; }
.site-footer__social a { color: rgba(255,255,255,.5); font-size: 20px; transition: color var(--transition); }
.site-footer__social a:hover { color: #fff; }
.site-footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding: 20px 0 28px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; flex-wrap: wrap; gap: 10px;
  background: var(--nile-deep);
}
.site-footer__bottom a { color: rgba(255,255,255,.4); margin-left: 16px; }
.site-footer__bottom a:hover { color: rgba(255,255,255,.8); text-decoration: none; }
.site-footer__affiliate { font-size: 12px; color: rgba(255,255,255,.35); margin-top: 4px; }

/* ── Misc ────────────────────────────────────────────────────── */
.badge { display: inline-block; padding: 3px 12px; border-radius: 20px; font-size: 12px; font-weight: 600; }
.badge--gold  { background: #FFF0CC; color: #7A5000; }
.badge--blue  { background: #D4EDF7; color: #0C4A6B; }
.badge--green { background: #D4EDDA; color: #0A4D1E; }

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1024px) {
  
/* ── Homepage section headers ─────────────────────────────── */
.hp-section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  gap: 16px;
}
.hp-section-title {
  font-size: clamp(20px, 4vw, 28px);
  line-height: 1.2;
  flex: 1;
  min-width: 0;
}
.hp-section-btn {
  flex-shrink: 0;
  white-space: nowrap;
}

.dest-grid { grid-template-columns: repeat(3, 1fr); }
  .hotel-page-layout { grid-template-columns: 1fr; }
  .hotel-page-sidebar { position: static; }
  .hotel-hero__right { display: none; }
}

@media (max-width: 768px) {
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { display: block; order: 2; position: static; }
  .article-layout > .article-main { min-width: 0; order: 1; }
  /* Na mobile ukryj z sidebar to co jest osobno pokazane */
  .article-sidebar .fb-widget-new { display: none; }
  .hotel-page-sidebar .fb-widget-new { display: none; }
  /* Ensure all page content has side padding */
  .container { padding-left: 16px !important; padding-right: 16px !important; }
  .article-sidebar { position: static; }
  .pros-cons { grid-template-columns: 1fr; }
  .ratings-grid { grid-template-columns: repeat(2, 1fr); }
  .ranking-item { grid-template-columns: 48px 180px 1fr; gap: 14px; }
  .ranking-item__img { height: 130px; }
  .ranking-item--top1 .ranking-item__img,
  .ranking-item--top2 .ranking-item__img,
  .ranking-item--top3 .ranking-item__img { height: 150px; }
  .ranking-item__cta { grid-column: 3/4; flex-direction: column; }
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .ranking-cta-box { flex-direction: column; text-align: center; padding: 28px 24px; }
  .hotel-hero { height: 55vh; min-height: 360px; }
  .hotel-gallery-main { height: 280px; }
}
@media (max-width: 640px) {
  
/* ── Homepage section headers ─────────────────────────────── */
.hp-section-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  gap: 16px;
}
.hp-section-title {
  font-size: clamp(20px, 4vw, 28px);
  line-height: 1.2;
  flex: 1;
  min-width: 0;
}
.hp-section-btn {
  flex-shrink: 0;
  white-space: nowrap;
}

.dest-grid { grid-template-columns: 1fr; gap: 8px; }
  .dest-card-big {
    aspect-ratio: unset;
    height: 80px;
    border-radius: 10px;
  }
  .dest-card-big img {
    object-position: center 40%;
  }
  .dest-card-big__body {
    padding: 0 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    top: 0;
    background: linear-gradient(to right, rgba(0,0,0,.72) 0%, rgba(0,0,0,.3) 100%);
  }
  .dest-card-big__name { font-size: 15px; margin-bottom: 2px; }
  .dest-card-big__sub  { font-size: 11px; }
  /* hamburger */
  #nav-hamburger { display: flex !important; }
  /* mobile nav drawer */
  .site-nav {
    display: block !important;
    position: fixed; top: 0; right: -100%; width: min(300px, 85vw); height: 100vh;
    background: var(--nile-deep); z-index: 999; overflow-y: auto;
    padding: 24px 20px 40px; transition: right .3s ease;
    box-shadow: -4px 0 24px rgba(0,0,0,.35);
  }
  .site-nav.mobile-open { right: 0; }
  .site-nav a { display: block; color: rgba(255,255,255,.85); padding: 12px 0; font-size: 16px; border-bottom: 1px solid rgba(255,255,255,.08); }
  .site-nav a:hover { color: #fff; text-decoration: none; }
  .site-footer__grid { grid-template-columns: 1fr; }
  .hotel-hero { height: 50vh; }
  .article-grid { grid-template-columns: 1fr; }
  .hotel-list { grid-template-columns: 1fr; }
  /* Prevent horizontal overflow */
  .container { padding-left: 16px; padding-right: 16px; }
  .hero-content { padding: 48px 16px 40px; }
  /* Hero chip buttons in search section */
  .hero__chips { gap: 6px; margin-top: 14px; }
  .hero__chip  { font-size: 12px; padding: 5px 14px; }
  /* Art CTA stacking */
  .art-cta { flex-direction: column; align-items: flex-start; gap: 12px; }
  .art-cta__btn { width: 100%; text-align: center; justify-content: center; }
  /* Rankings */
  .ranking-item { grid-template-columns: 44px 1fr; gap: 10px; padding: 14px; margin-bottom: 10px; }
  .ranking-item__img { grid-column: 1/-1; height: 180px; border-radius: 8px; }
  .ranking-item--top1 .ranking-item__img,
  .ranking-item--top2 .ranking-item__img,
  .ranking-item--top3 .ranking-item__img { height: 200px; }
  .ranking-item__body { grid-column: 1/-1; }
  .ranking-item__cta { grid-column: 1/-1; flex-direction: row; gap: 8px; }
  .ranking-item__cta a { flex: 1; text-align: center; justify-content: center; }
  /* Hotels list filter bar scroll */
  .hotel-filter-bar { flex-wrap: nowrap; overflow-x: auto; padding-bottom: 6px; -webkit-overflow-scrolling: touch; }
  /* Hotel page */
  .hotel-hero__inner { flex-direction: column; }
  .hotel-hero__badges { flex-wrap: wrap; gap: 6px; }
  /* pct table */
  .pct-table { font-size: 13px; }
  .pct-row { grid-template-columns: 1fr auto auto; }

  /* Homepage section headers */
  .section-header { flex-direction: column; align-items: flex-start; gap: 8px; }
  .section-header h2 { font-size: 22px; }
}

/* ── Article / Ranking / Static page mobile fixes ── */
@media (max-width: 640px) {
  /* Titles and meta not cut off at edges */
  .article-hero__meta, .article-hero__title, .article-hero__intro { padding-left: 0; padding-right: 0; }
  .article-hero { padding: 24px 0 20px; }
  /* Ranking page */
  .ranking-header { padding: 20px 0; }
  .ranking-header h1 { font-size: clamp(22px, 6vw, 36px); }
  /* Static pages */
  .static-page-content { padding: 0; }
  /* Section label / category badge */
  .art-badge { font-size: 11px; padding: 4px 12px; }
  /* Date/author meta line */
  .article-meta { font-size: 12px; flex-wrap: wrap; gap: 4px; }
}


  /* Footer safe area — notched phones & bounce prevention */
  .site-footer__bottom {
    padding-bottom: max(20px, env(safe-area-inset-bottom, 20px)) !important;
    background: var(--nile-deep) !important;
  }
@media (max-width: 480px) {
  .hero__title { font-size: clamp(26px, 7vw, 48px); }
  .hero__search-wrap { padding: 0 8px; }
  .hotel-book-card { padding: 16px; }
  .section { padding: 32px 0; }
  h1 { font-size: clamp(24px, 6vw, 40px); }
  h2 { font-size: clamp(20px, 5vw, 32px); }
}
@media print {
  .site-header, .site-footer, .article-sidebar, .cta-block, .mobile-cta-bar { display: none !important; }
  body { padding-bottom: 0; }
}

/* ════════════════════════════════════════════════════════════
   PROMO HOTEL BLOCK — "Sprawdź ten hotel" w artykule
   ════════════════════════════════════════════════════════════ */
.promo-hotel-block {
  margin: 44px 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,.10);
  background: var(--card);
}
.promo-hotel-block__badge {
  background: linear-gradient(90deg, var(--nile), #1a8aaa);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 9px 20px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.promo-hotel-block__inner {
  display: grid;
  grid-template-columns: 200px 1fr;
  text-decoration: none;
  color: inherit;
  transition: box-shadow .2s;
}
.promo-hotel-block:hover { box-shadow: 0 8px 32px rgba(0,0,0,.15); }
.promo-hotel-block__inner:hover { text-decoration: none; }
.promo-hotel-block__img {
  width: 100%;
  height: 100%;
  min-height: 140px;
  object-fit: cover;
  display: block;
}
.promo-hotel-block__img--empty {
  min-height: 140px;
  background: linear-gradient(135deg, var(--nile), var(--sand));
}
.promo-hotel-block__body {
  padding: 18px 22px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}
.promo-hotel-block__name {
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  font-family: var(--font-head);
  line-height: 1.2;
}
.promo-hotel-block__desc {
  font-size: 14px;
  color: var(--t2);
  line-height: 1.55;
}
.promo-hotel-block__meta {
  display: flex;
  gap: 14px;
  font-size: 13px;
  color: var(--t2);
  flex-wrap: wrap;
  align-items: center;
}
.promo-hotel-block__cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 4px;
  padding: 9px 18px;
  background: var(--nile);
  color: #fff;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  width: fit-content;
  transition: background .2s;
}
.promo-hotel-block:hover .promo-hotel-block__cta { background: var(--nile-deep); }
@media (max-width: 640px) {
  .promo-hotel-block__inner { grid-template-columns: 1fr; }
  .promo-hotel-block__img,
  .promo-hotel-block__img--empty { min-height: 180px; width: 100%; }
  .promo-hotel-block__body { padding: 14px 16px; }
  .promo-hotel-block__name { font-size: 17px; }
}

/* ════════════════════════════════════════════════════════════
   TAG-RELATED ARTICLES — "Podobne poradniki"
   ════════════════════════════════════════════════════════════ */
.tag-related-block {
  margin: 48px 0;
  background: var(--bg2);
  border-radius: var(--radius-lg);
  padding: 32px;
  min-width: 0;
  overflow: visible;
  display: block;
  width: 100%;
  box-sizing: border-box;
}
.tag-related-block__intro { margin-bottom: 28px; }
.tag-related-block__title {
  font-size: 22px;
  font-family: var(--font-head);
  margin-bottom: 8px;
  color: var(--dark);
}
.tag-related-block__lead {
  font-size: 14px;
  color: var(--t2);
  line-height: 1.65;
  margin: 0;
}
/* Horizontal cards */
.tag-related-block__grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}
.tag-related-card {
  display: grid;
  grid-template-columns: 140px 1fr;
  width: 100%;
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow .2s, transform .15s;
  text-decoration: none;
  color: inherit;
}
.tag-related-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  text-decoration: none;
}
.tag-related-card__img {
  width: 100%;
  height: 100%;
  min-height: 100px;
  object-fit: cover;
  display: block;
}
.tag-related-card__nophoto {
  width: 100%;
  min-height: 100px;
  background: linear-gradient(135deg, var(--nile), var(--sand));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}
.tag-related-card__body {
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  min-width: 0;
}
.tag-related-card__title {
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.tag-related-card:hover .tag-related-card__title { color: var(--nile); }
.tag-related-card__intro {
  font-size: 12px;
  color: var(--t2);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.tag-related-card__link {
  font-size: 12px;
  font-weight: 600;
  color: var(--nile);
  margin-top: 4px;
}
@media (max-width: 500px) {
  .tag-related-block { padding: 20px 16px; }
  .tag-related-card { grid-template-columns: 90px 1fr; }
}
@media (max-width: 640px) {
  .tag-related-block__grid { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════════
   OTHER HOTELS BLOCK — "Sprawdź inne hotele" w hotelu
   ════════════════════════════════════════════════════════════ */
.other-hotels-block { margin: 44px 0; }
.other-hotels-block__title {
  font-size: 22px;
  font-family: var(--font-head);
  margin-bottom: 20px;
  color: var(--dark);
}
.other-hotels-block__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
  max-width: 800px;
}
.hotel-mini-card {
  background: var(--card);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: box-shadow .2s, transform .2s;
  display: flex;
  flex-direction: column;
}
.hotel-mini-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.hotel-mini-card__img {
  display: block;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: linear-gradient(135deg, var(--nile), var(--sand));
}
.hotel-mini-card__img img { width: 100%; height: 100%; object-fit: cover; }
.hotel-mini-card__body { padding: 12px 14px; display: flex; flex-direction: column; flex: 1; }
.hotel-mini-card__name {
  display: block;
  font-weight: 700;
  font-size: 15px;
  color: var(--dark);
  margin-bottom: 6px;
  text-decoration: none;
  line-height: 1.3;
  flex-grow: 1;
}
.hotel-mini-card__name:hover { color: var(--nile); }
.hotel-mini-card__meta {
  display: flex;
  gap: 10px;
  font-size: 12px;
  color: var(--t2);
  margin-bottom: 8px;
  flex-wrap: wrap;
  flex-shrink: 0;
}
.hotel-mini-card__link {
  font-size: 13px;
  font-weight: 600;
  color: var(--nile);
  text-decoration: none;
  flex-shrink: 0;
  margin-top: auto;
}
.hotel-mini-card__link:hover { text-decoration: underline; }
.hotel-mini-card__hook {
  font-size: 12px;
  color: var(--nile);
  font-weight: 600;
  font-style: italic;
  margin-bottom: 6px;
  flex-shrink: 0;
  line-height: 1.4;
}
@media (max-width: 640px) {
  .other-hotels-block__grid { grid-template-columns: 1fr; gap: 12px; }
}

/* Homepage mobile — przycisk pod sekcją */
.hp-mobile-more { display: none; }
@media (max-width: 768px) {
  .hp-mobile-more {
    display: block;
    margin-top: 16px;
    padding: 0 4px;
  }
  .hp-mobile-more .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
    display: flex;
  }
}

/* ════════════════════════════════════════════════════════════
   HOTELS FILTER BAR
   ════════════════════════════════════════════════════════════ */
.hotels-filter-bar {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  margin-bottom: 8px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.hfb-group { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.hfb-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .6px;
  color: var(--t2);
  min-width: 80px;
  flex-shrink: 0;
}
.hfb-pills { display: flex; flex-wrap: wrap; gap: 6px; }
.hfb-pill {
  display: inline-block;
  padding: 5px 14px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  border: 1.5px solid var(--border);
  color: var(--t2);
  background: transparent;
  transition: all .15s;
  line-height: 1.4;
}
.hfb-pill:hover { border-color: var(--nile); color: var(--nile); text-decoration: none; }
.hfb-pill--active { background: var(--nile); color: #fff !important; border-color: var(--nile); font-weight: 600; }
.hfb-pill--active-cat { background: var(--sand); color: #fff !important; border-color: var(--sand); font-weight: 600; }
.hfb-pill--active-sort { background: var(--dark); color: #fff !important; border-color: var(--dark); font-weight: 600; }
.hfb-divider { height: 1px; background: var(--border); margin: 0 -4px; }
/* Accordion button — widoczny tylko na mobile */
.hfb-acc-btn {
  display: none;
}
.hfb-acc-body {
  display: flex;
}

@media (max-width: 768px) {
  .hotels-filter-bar {
    padding: 0;
    gap: 0;
    border-radius: var(--radius);
    overflow: hidden;
  }
  .hfb-group {
    flex-direction: column;
    gap: 0;
    align-items: stretch;
  }
  .hfb-divider { margin: 0; }

  /* Accordion button na mobile */
  .hfb-acc-btn {
    display: flex;
    align-items: center;
    width: 100%;
    background: none;
    border: none;
    padding: 14px 18px;
    cursor: pointer;
    font-family: inherit;
    text-align: left;
    gap: 8px;
  }
  .hfb-acc-btn:active { background: var(--bg2); }
  .hfb-acc-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .6px;
    color: var(--t2);
    min-width: 90px;
  }
  .hfb-acc-val {
    font-size: 14px;
    font-weight: 600;
    color: var(--dark);
    flex: 1;
  }
  .hfb-acc-arrow {
    font-size: 18px;
    color: var(--t2);
    transition: transform .2s;
    line-height: 1;
  }

  /* Pills — ukryte, pokazują się po rozwinięciu */
  .hfb-acc-body {
    display: none;
    padding: 0 16px 14px;
    gap: 6px;
    flex-wrap: wrap;
  }
  .hfb-acc-body.hfb-acc-open {
    display: flex;
  }
  .hfb-pill { font-size: 13px; padding: 6px 14px; }
}

/* ── Wybór redakcji — badge na zdjęciu ─────────────────────── */
.hotel-card__editors-pick {
  position: absolute;
  top: 10px;
  left: 10px;
  background: #d97706;
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .6px;
  padding: 3px 9px;
  border-radius: 4px;
  pointer-events: none;
  z-index: 10;
  box-shadow: 0 1px 4px rgba(0,0,0,.25);
}

.article-card__footer { margin-top: auto; flex-shrink: 0; }
.article-card__btn { width: 100%; text-align: center; justify-content: center; }

/* Homepage desktop-only button */
.hp-desktop-more { display: block; text-align: center; margin-top: 28px; }
@media (max-width: 768px) { .hp-desktop-more { display: none; } }

/* ── Globalne CTA (bez afiliacji) ──────────────────────────────── */
.gcta {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px;
  border-radius: 14px;
  padding: 22px 26px;
  margin: 28px 0;
  text-decoration: none;
  transition: transform .15s, box-shadow .15s;
}
.gcta:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); text-decoration: none; }
.gcta--hotels  { background: #f0f9ff; border: 1px solid #bae6fd; }
.gcta--ranking { background: #fffbeb; border: 1px solid #fde68a; }
.gcta--guides  { background: #f0fdf4; border: 1px solid #bbf7d0; }
.gcta__body { min-width: 0; }
.gcta__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--dark);
  display: block;
  margin-bottom: 4px;
  line-height: 1.3;
}
.gcta__sub {
  font-size: 13px;
  color: var(--t2);
  line-height: 1.5;
}
.gcta__btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
  text-decoration: none;
  transition: filter .15s;
}
.gcta__btn:hover { filter: brightness(.92); text-decoration: none; }
.gcta--hotels  .gcta__btn { background: #0ea5e9; color: #fff; }
.gcta--ranking .gcta__btn { background: #d97706; color: #fff; }
.gcta--guides  .gcta__btn { background: #16a34a; color: #fff; }
@media (max-width: 560px) {
  .gcta { grid-template-columns: 1fr; gap: 12px; padding: 16px; }
  .gcta__btn { width: 100%; justify-content: center; }
}

/* ── Facebook Likebox ──────────────────────────────────────────── */
.fb-widget { background: #fff; border: 1.5px solid #e0e7ef !important; padding: 0 !important; overflow: hidden; }
.fb-widget__inner { padding: 16px; }
.fb-widget__top { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.fb-widget__icon { flex-shrink: 0; }
.fb-widget__name { font-weight: 700; font-size: 14px; color: var(--dark); line-height: 1.3; }
.fb-widget__sub { font-size: 12px; color: var(--t2); margin-top: 2px; }
.fb-widget__btn {
  display: block;
  background: #1877F2;
  color: #fff !important;
  text-align: center;
  padding: 10px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  text-decoration: none !important;
  transition: background .15s;
}
.fb-widget__btn:hover { background: #1460c8; }



/* ── Facebook Drawer ───────────────────────────────────────────── */
.fb-drawer {
  position: fixed;
  right: 0;
  top: 50%;
  z-index: 8000;
  display: flex;
  align-items: stretch;
  /* Panel + zakładka razem przesunięte — tylko zakładka widoczna */
  transform: translateY(-50%) translateX(240px);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
}
.fb-drawer--open {
  transform: translateY(-50%) translateX(0);
}
.fb-drawer__tab {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  transform: rotate(180deg);
  background: #1877F2;
  color: #fff;
  border: none;
  cursor: pointer;
  padding: 18px 10px;
  font-size: 13px;
  font-weight: 700;
  font-family: inherit;
  border-radius: 0 8px 8px 0;
  letter-spacing: .3px;
  box-shadow: -3px 0 12px rgba(0,0,0,.15);
  transition: background .15s;
  white-space: nowrap;
  flex-shrink: 0;
  order: 1;
}
.fb-drawer__tab:hover { background: #1460c8; }
.fb-drawer__panel {
  background: #fff;
  border: 1.5px solid #e0e7ef;
  border-right: none;
  border-radius: 12px 0 0 12px;
  padding: 20px 16px;
  width: 240px;
  box-shadow: -4px 0 24px rgba(0,0,0,.12);
  order: 2;
}
.fb-drawer__head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}
.fb-drawer__name {
  font-weight: 700;
  font-size: 13px;
  color: var(--dark);
  line-height: 1.3;
}
.fb-drawer__sub {
  font-size: 11px;
  color: var(--t2);
  margin-top: 2px;
}
.fb-drawer__btn {
  display: block;
  background: #1877F2;
  color: #fff !important;
  text-align: center;
  padding: 10px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none !important;
  margin-bottom: 12px;
  transition: background .15s;
}
.fb-drawer__btn:hover { background: #1460c8; }
.fb-drawer__desc {
  font-size: 12px;
  color: var(--t2);
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 480px) {
  .fb-drawer { transform: translateY(-50%) translateX(200px); }
  .fb-drawer--open { transform: translateY(-50%) translateX(0); }
  .fb-drawer__panel { width: 200px; padding: 16px 12px; }
  .fb-drawer__tab { font-size: 12px; padding: 14px 8px; }
}



/* ── FB Widget w sidebarze ─────────────────────────────────────── */
.fb-widget-new {
  background: linear-gradient(135deg, #e8f0fe, #f0f7ff);
  border: 1.5px solid #bdd0fb !important;
  border-radius: var(--radius-lg) !important;
  padding: 16px !important;
}
.fb-widget-new__top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}
.fb-widget-new__name {
  font-weight: 700;
  font-size: 14px;
  color: var(--dark);
  line-height: 1.3;
}
.fb-widget-new__sub {
  font-size: 11px;
  color: var(--t2);
  margin-top: 2px;
}
.fb-widget-new__desc {
  font-size: 13px;
  color: var(--t2);
  line-height: 1.6;
  margin: 0 0 12px;
}
.fb-widget-new__btn {
  display: block;
  background: #1877F2;
  color: #fff !important;
  text-align: center;
  padding: 10px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 13px;
  text-decoration: none !important;
  transition: background .15s;
}
.fb-widget-new__btn:hover { background: #1460c8; }

/* ── Mobile FB widget inline ───────────────────────────────────── */
.fb-widget-mobile { display: none; }
@media (max-width: 768px) {
  .fb-widget-mobile { display: block; margin: 28px 0; }
}
