/* ─────────────────────────────────────────────────────────────
   packages-v2.css — packages listing: hero banner + sidebar
   filters + horizontal card list. Scoped to body.pk2 only.
   Brand: saffron #E8832A · deep #1A2A3A · cream #FDF6EE · border #F0DCC0
   ───────────────────────────────────────────────────────────── */

/* ── Hero banner (photo + navy tint, matches .pd2 .detail-hero) ── */
.pk2 .pk2-hero {
  position: relative; height: 320px; background: #1A2A3A;
  display: flex; align-items: center; justify-content: center; text-align: center;
  overflow: hidden;
}
.pk2 .pk2-hero > img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; filter: saturate(1.05);
}
.pk2 .pk2-hero::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(26,42,58,.88) 0%, rgba(26,42,58,.35) 55%, rgba(26,42,58,.15) 100%);
  pointer-events: none;
}
.pk2 .pk2-hero-text { position: relative; z-index: 2; padding: 0 20px; }
.pk2 .pk2-hero-text .eyebrow {
  color: #E8832A; font-size: 13px; font-weight: 600;
  letter-spacing: 2px; text-transform: uppercase; margin-bottom: 8px;
}
.pk2 .pk2-hero-text h1 {
  color: #fff; font-family: 'Poppins', sans-serif;
  font-size: clamp(26px, 3.6vw, 40px); line-height: 1.2; margin: 0 0 10px;
}
.pk2 .pk2-hero-text .breadcrumb {
  display: flex; gap: 8px; justify-content: center;
  font-size: 13px; color: rgba(255,255,255,.7);
}
.pk2 .pk2-hero-text .breadcrumb a { color: rgba(255,255,255,.9); text-decoration: none; }
.pk2 .pk2-hero-text .breadcrumb a:hover { color: #E8832A; }
.pk2 .pk2-hero-text .pk2-intro {
  color: rgba(255,255,255,.78); font-size: 14px; max-width: 620px; margin: 10px auto 0;
}

/* ── Layout: sidebar left + list right ── */
.pk2 .pk2-layout {
  display: grid; grid-template-columns: 280px minmax(0, 1fr);
  gap: 28px; align-items: start;
}

/* ── Sidebar ── */
.pk2 .pk2-sidebar { position: sticky; top: 90px; }
.pk2 .pk2-filter-card {
  background: #fff; border: 1px solid #F0DCC0; border-radius: 14px;
  padding: 20px; box-shadow: 0 2px 14px rgba(26,42,58,.05);
}
.pk2 .pk2-filter-card h3 {
  font-size: 16px; color: #1A2A3A; margin: 0 0 14px;
  display: flex; align-items: center; gap: 8px;
}
.pk2 .pk2-filter-card h3 i { color: #E8832A; }
.pk2 .pk2-fgroup { padding: 14px 0; border-top: 1px dashed #F0DCC0; }
.pk2 .pk2-fgroup:first-of-type { border-top: 0; padding-top: 0; }
.pk2 .pk2-fgroup > label.pk2-flabel,
.pk2 .pk2-flabel {
  display: block; font-size: 12px; font-weight: 700; color: #1A2A3A;
  text-transform: uppercase; letter-spacing: 1px; margin-bottom: 10px;
}
.pk2 .pk2-search {
  width: 100%; padding: 10px 12px; font-size: 14px; font-family: inherit;
  border: 1px solid #F0DCC0; border-radius: 8px; background: #FDF6EE; color: #1A2A3A;
}
.pk2 .pk2-search:focus { outline: 2px solid rgba(232,131,42,.35); border-color: #E8832A; }
.pk2 .pk2-check {
  display: flex; align-items: center; gap: 9px; font-size: 14px;
  color: #45566a; padding: 5px 0; cursor: pointer;
}
.pk2 .pk2-check input { accent-color: #E8832A; width: 15px; height: 15px; cursor: pointer; }
.pk2 .pk2-check .cnt { margin-left: auto; font-size: 12px; color: #9aa7b5; }
.pk2 .pk2-price-row { display: flex; justify-content: space-between; font-size: 13px; color: #45566a; margin-bottom: 6px; }
.pk2 .pk2-price-row strong { color: #E8832A; }
.pk2 input[type="range"].pk2-range { width: 100%; accent-color: #E8832A; }
.pk2 .pk2-clear {
  width: 100%; margin-top: 14px; padding: 10px; font-size: 13px; font-weight: 600;
  font-family: inherit; color: #1A2A3A; background: #FDF6EE;
  border: 1px solid #F0DCC0; border-radius: 8px; cursor: pointer;
}
.pk2 .pk2-clear:hover { background: #E8832A; color: #fff; border-color: #E8832A; }
.pk2 .pk2-filter-toggle { display: none; }

/* ── Results meta ── */
.pk2 .pk2-results { display: flex; justify-content: space-between; align-items: center; margin-bottom: 18px; flex-wrap: wrap; gap: 8px; }
.pk2 .pk2-results p { font-size: 14px; color: #6b7a89; margin: 0; }
.pk2 .pk2-results strong { color: #1A2A3A; }
.pk2 .pk2-results .note { font-size: 12.5px; color: #E8832A; }
.pk2 .pk2-empty {
  display: none; background: #fff; border: 1px dashed #F0DCC0; border-radius: 14px;
  padding: 40px 20px; text-align: center; color: #6b7a89; font-size: 14px;
}

/* ── Horizontal card list ── */
.pk2 .pk2-list { display: flex; flex-direction: column; gap: 18px; }
.pk2 .pk2-card {
  display: grid; grid-template-columns: 300px minmax(0, 1fr);
  background: #fff; border: 1px solid #F0DCC0; border-radius: 14px;
  overflow: hidden; box-shadow: 0 2px 14px rgba(26,42,58,.05);
  transition: box-shadow .2s ease, transform .2s ease;
}
.pk2 .pk2-card:hover { box-shadow: 0 8px 24px rgba(26,42,58,.12); transform: translateY(-2px); }
.pk2 .pk2-card.pk2-hidden { display: none; }
.pk2 .pk2-card-img { position: relative; min-height: 200px; }
.pk2 .pk2-card-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.pk2 .pk2-badge {
  position: absolute; top: 12px; left: 12px; z-index: 1;
  background: #E8832A; color: #fff; font-size: 11px; font-weight: 700;
  padding: 4px 10px; border-radius: 20px; text-transform: uppercase; letter-spacing: .5px;
}
.pk2 .pk2-badge.green { background: #2e9e5b; }
.pk2 .pk2-tier {
  position: absolute; bottom: 12px; left: 12px; z-index: 1;
  background: rgba(26,42,58,.85); color: #fff; font-size: 11px; font-weight: 600;
  padding: 4px 10px; border-radius: 6px;
}
.pk2 .pk2-card-body { padding: 18px 22px; display: flex; flex-direction: column; }
.pk2 .pk2-card-body h2 {
  font-family: 'Poppins', sans-serif; font-size: 19px; color: #1A2A3A;
  margin: 0 0 8px; line-height: 1.3;
}
.pk2 .pk2-card-body h2 a { color: inherit; text-decoration: none; }
.pk2 .pk2-card-body h2 a:hover { color: #E8832A; }
.pk2 .pk2-meta { display: flex; flex-wrap: wrap; gap: 14px; font-size: 13px; color: #6b7a89; margin-bottom: 10px; }
.pk2 .pk2-meta i { color: #E8832A; margin-right: 4px; }
.pk2 .pk2-facilities { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 12px; }
.pk2 .pk2-facilities .facility {
  font-size: 12px; color: #45566a; background: #FDF6EE;
  border: 1px solid #F0DCC0; border-radius: 6px; padding: 4px 9px;
}
.pk2 .pk2-facilities .facility i { color: #E8832A; margin-right: 4px; }
.pk2 .pk2-card-foot {
  margin-top: auto; display: flex; align-items: center; gap: 12px;
  flex-wrap: wrap; padding-top: 12px; border-top: 1px dashed #F0DCC0;
}
.pk2 .pk2-price { line-height: 1.15; }
.pk2 .pk2-price .from { display: block; font-size: 11px; color: #9aa7b5; text-transform: uppercase; letter-spacing: 1px; }
.pk2 .pk2-price .amount { font-family: 'Poppins', sans-serif; font-size: 22px; font-weight: 700; color: #E8832A; }
.pk2 .pk2-price .per { font-size: 12px; color: #6b7a89; margin-left: 4px; }
.pk2 .pk2-card-foot .pk2-actions { margin-left: auto; display: flex; gap: 10px; }
.pk2 .pk2-btn {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 13px; font-weight: 600; font-family: inherit;
  padding: 9px 16px; border-radius: 8px; text-decoration: none; cursor: pointer;
  transition: background .15s ease, color .15s ease;
}
.pk2 .pk2-btn-primary { background: #E8832A; color: #fff; border: 1px solid #E8832A; }
.pk2 .pk2-btn-primary:hover { background: #cf7020; }
.pk2 .pk2-btn-outline { background: #fff; color: #1A2A3A; border: 1px solid #F0DCC0; }
.pk2 .pk2-btn-outline:hover { background: #1A2A3A; color: #fff; border-color: #1A2A3A; }

/* ── Responsive ── */
@media (max-width: 991px) {
  .pk2 .pk2-layout { grid-template-columns: 1fr; gap: 18px; }
  .pk2 .pk2-sidebar { position: static; }
  .pk2 .pk2-filter-toggle {
    display: flex; align-items: center; justify-content: space-between; width: 100%;
    background: #fff; border: 1px solid #F0DCC0; border-radius: 10px;
    padding: 12px 16px; font-size: 14px; font-weight: 600; font-family: inherit;
    color: #1A2A3A; cursor: pointer; margin-bottom: 10px;
  }
  .pk2 .pk2-filter-toggle i.fa-sliders-h { color: #E8832A; margin-right: 8px; }
  .pk2 .pk2-filter-card { display: none; }
  .pk2 .pk2-sidebar.open .pk2-filter-card { display: block; }
}
@media (max-width: 640px) {
  .pk2 .pk2-hero { height: 260px; }
  .pk2 .pk2-card { grid-template-columns: 1fr; }
  .pk2 .pk2-card-img { min-height: 0; height: 190px; }
  .pk2 .pk2-card-foot .pk2-actions { margin-left: 0; width: 100%; }
  .pk2 .pk2-card-foot .pk2-actions .pk2-btn { flex: 1; justify-content: center; }
}
