/* ==========================================================================
   Holiday Results v2 — scoped to .hv2-holiday-* classes only
   Requires home-v2.css :root tokens
   ========================================================================== */
body{
  font-family: var(--hv2-font-family, 'Plus Jakarta Sans', sans-serif);
}
.hv2-holiday-results-page {
  background: #f0f4f8;
  font-family: var(--hv2-font-family, 'Plus Jakarta Sans', sans-serif);
}

.hv2-holiday-results-wrap {
  background: #f0f4f8;
  padding-top: 0 !important; 
}

.hv2-holiday-results-wrap .container {
  max-width: 1240px;
}

.hv2-holiday-results-main {
  min-width: 0;
}

/* ==========================================================================
   Hero section
   ========================================================================== */

/* Hero column — remove Bootstrap gutter padding so hero is truly full-width */
.hv2-holiday-hero-col {
  padding-left: 0 !important;
  padding-right: 0 !important;
  /* Negate the row g-3 gutter-y so hero touches the page top */
/*  margin-top: calc(-1 * var(--bs-gutter-y, 0.75rem)) !important;*/
  position: relative;
  /* Creates room below the col for the floating search card */
  margin-bottom: 1rem;
}

/* Hero image/gradient band — full-width breakout from container */
.hv2-holiday-hero {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  /* Beach sunset gradient — overridden by inline style if HolidayImage exists */
  background: linear-gradient(165deg, #1a3a5c 0%, #2d6fa5 50%, #1e4070 100%);
  background-size: cover;
  background-position: center top;
  min-height: 280px;
  padding: 2.75rem 0 5rem; /* extra bottom creates space for card overlap */
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

.hv2-holiday-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom,
    rgba(0, 0, 0, 0.18) 0%,
    rgba(0, 0, 0, 0.65) 100%
  );
  z-index: 1;
}

/* Content block — max-width matches container so text aligns to grid */
.hv2-holiday-hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 max(1rem, calc((100vw - 1240px) / 2 + 1rem));
}

.hv2-holiday-hero__title {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 800;
  color: #fff;
  margin: 0 0 0.45rem;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.5);
  line-height: 1.2;
}

.hv2-holiday-hero__desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.88);
  max-width: 520px;
  margin: 0;
  line-height: 1.6;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.42);
}

/* Floating search card — negative margin pulls it up to overlap hero bottom */
.hv2-holiday-hero-search {
  margin-top: -3rem;
  position: relative;
  z-index: 20;
  padding: 0 0.75rem; /* restore horizontal breathing room */
}

/* ---------- Search bar card ---------- */
.hv2-holiday-search-wrap {
  margin-bottom: 1rem;
}

.hv2-holiday-search-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 0.75rem 1rem;
  box-shadow: 0 4px 24px rgba(17, 24, 39, 0.14);
}

.hv2-holiday-hero-search .hv2-holiday-search-card {
  box-shadow: 0 6px 30px rgba(17, 24, 39, 0.18);
}

.hv2-holiday-search-card .hotal-filter-card {
  background: transparent;
  border: none;
  padding: 0 !important;
  margin-bottom: 0 !important;
  box-shadow: none !important;
}

.hv2-holiday-modify-bar {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: 0;
  width: 100%;
}

.hv2-holiday-modify-field {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  text-align: left;
  padding: 0.35rem 0.85rem;
  background: none;
  border: none;
  border-right: 1px solid #dce4ef;
  border-radius: 0;
  cursor: pointer;
  transition: background 0.15s ease;
}

.hv2-holiday-modify-bar > .hv2-holiday-modify-field--wide {
  flex: 1.25 1 0;
}

.hv2-holiday-modify-field:hover,
.hv2-holiday-modify-field:focus-visible {
  background: #f8fafc;
  outline: none;
}

.hv2-holiday-modify-field__label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #8e8e8e;
  margin-bottom: 0.2rem;
}

.hv2-holiday-modify-field__value {
  font-size: 17px;
  font-weight: 600;
  color: #1f1f1f;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
}

.hv2-holiday-modify-field__icon {
  margin-right: 0.35rem;
  color: #1f1f1f;
  font-size: 0.85rem;
}

.hv2-holiday-modify-field__icon--calendar {
  color: #3b82f6;
}

.hv2-holiday-modify-search-btn {
  flex: 0 0 auto;
  align-self: stretch;
  min-width: 7.25rem;
  margin-left: 0.65rem;
  background: #ef4444 !important;
  border-color: #ef4444 !important;
  border-radius: 10px !important;
  font-weight: 700;
  font-size: 1rem;
  color: #fff !important;
  padding: 0.65rem 1.5rem;
  white-space: nowrap;
}

.hv2-holiday-modify-search-btn:hover,
.hv2-holiday-modify-search-btn:focus {
  background: #dc2626 !important;
  border-color: #dc2626 !important;
  color: #fff !important;
}

.hv2-holiday-modify-xs {
  width: 100%;
}

.hv2-holiday-modify-xs h3 {
  width: 100% !important;
  float: none !important;
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0;
}

.hv2-holiday-modify-xs span {
  display: inline-block !important;
  font-size: 0.75rem;
  color: #6b7280;
}

.hv2-holiday-modify-xs b {
  font-size: 0.8rem;
  color: #111827;
}

/* ---------- Filter sidebar panel ---------- */
.hv2-holiday-filter-panel {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  box-shadow: 0 1px 3px rgba(17, 24, 39, 0.06);
  padding: 1rem 1.1rem;
  position: sticky;
  top: 1rem;
}

.hv2-holiday-filter-panel__head.widget.filters {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #e5e7eb;
}

.hv2-holiday-filter-panel__head .title {
  margin: 0;
  padding: 0;
  border: none;
  font-size: 1.05rem;
  font-weight: 700;
  color: #111827;
}

.hv2-holiday-filter-panel__head .title i {
  display: none;
}

.hv2-holiday-filter-panel__reset {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #2563eb !important;
  text-decoration: none;
}

.hv2-holiday-filter-panel__section {
  margin-bottom: 1.1rem;
  padding-bottom: 0;
  border: none;
}

.hv2-holiday-filter-panel__section:last-of-type {
  margin-bottom: 0.85rem;
}

.hv2-holiday-filter-panel__section-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 0.75rem;
}

.hv2-holiday-filter-panel__input {
  border: 1px solid #dce4ef;
  border-radius: 8px;
  font-size: 0.875rem;
  padding: 0.5rem 0.75rem;
  margin-bottom: 0.35rem;
}

.hv2-holiday-filter-panel__input:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.15);
}

.hv2-holiday-filter-option {
  margin-bottom: 0.55rem;
}

.hv2-holiday-filter-option:last-child {
  margin-bottom: 0;
}

.hv2-holiday-filter-checkbox-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin: 0;
  cursor: pointer;
  font-size: 0.875rem;
  font-weight: 500;
  color: #6b7280;
}

.hv2-holiday-filter-checkbox {
  width: 18px;
  height: 18px;
  min-width: 18px;
  border: 2px solid #d1d5db;
  border-radius: 4px;
  margin: 0;
  flex-shrink: 0;
  cursor: pointer;
}

.hv2-holiday-filter-checkbox:checked {
  background-color: #2563eb;
  border-color: #2563eb;
}

.hv2-holiday-filter-checkbox-text {
  line-height: 1.35;
}

.hv2-holiday-filter-active-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.65rem;
}

.hv2-holiday-filter-pill {
  display: inline-flex;
  align-items: center;
  background: #e0f2fe;
  color: #2563eb;
  border: 1px solid #bae6fd;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.65rem;
}

.hv2-holiday-flight-toggle {
  display: flex;
  gap: 0.5rem;
}

.hv2-holiday-flight-toggle__btn {
  flex: 1 1 50%;
  border: 1px solid #dce4ef;
  background: #fff;
  color: #6b7280;
  border-radius: 10px;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.5rem 0.65rem;
  cursor: default;
}

.hv2-holiday-flight-toggle__btn--active {
  background: #2563eb;
  border-color: #2563eb;
  color: #fff;
}

.hv2-holiday-filter-panel .price_filter .ui-slider.ui-slider-horizontal.ui-widget.ui-widget-content.ui-corner-all {
  background: #e5e7eb !important;
  border: none !important;
  border-radius: 999px !important;
  height: 6px !important;
  width: 100% !important;
  margin: 0.25rem 0 0.75rem !important;
}

.hv2-holiday-filter-panel .price_filter .ui-slider .ui-slider-range {
  background: #2563eb !important;
  border-radius: 999px !important;
}

.hv2-holiday-filter-panel .price_filter .ui-slider-handle.ui-state-default.ui-corner-all {
  width: 18px !important;
  height: 18px !important;
  top: 50% !important;
  margin-top: -9px !important;
  margin-left: -9px !important;
  background: #2563eb !important;
  border: 3px solid #fff !important;
  border-radius: 50% !important;
  box-shadow: 0 1px 4px rgba(37, 99, 235, 0.35) !important;
  cursor: grab !important;
}

.hv2-holiday-filter-panel__price-amount {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.15rem;
}

.hv2-holiday-filter-panel__price-amount input[type='text'] {
  width: auto;
  flex: 1 1 50%;
  border: none;
  background: transparent;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #6b7280;
  padding: 0;
  box-shadow: none;
}

.hv2-holiday-filter-panel__price-amount .right-price {
  text-align: right;
}

.hv2-holiday-flash-sale {
  display: flex;
  gap: 0.75rem;
  background: #fef9c3;
  border: 1px solid #fde047;
  border-radius: 14px;
  padding: 0.9rem;
  margin-top: 0.5rem;
}

.hv2-holiday-flash-sale__icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ca8a04;
  flex-shrink: 0;
  font-size: 1rem;
}

.hv2-holiday-flash-sale__title {
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
  color: #713f12;
  margin-bottom: 0.25rem;
}

.hv2-holiday-flash-sale__text {
  font-size: 0.75rem;
  color: #854d0e;
  margin: 0 0 0.65rem;
  line-height: 1.45;
}

.hv2-holiday-flash-sale__btn {
  border: none;
  border-radius: 8px;
  background: #78350f;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  padding: 0.45rem 0.85rem;
  cursor: default;
}

.filter-toggle.mobile-sidebar .hv2-holiday-filter-panel {
  border-radius: 0;
}

@media (max-width: 991.98px) {
  /* Hero responsive */
  .hv2-holiday-hero {
    min-height: 200px;
    padding: 2rem 0 4rem;
  }

  .hv2-holiday-hero-search {
    margin-top: -2.5rem;
    padding: 0 0.5rem;
  }

  .hv2-holiday-hero__title {
    font-size: 1.5rem;
  }

  .hv2-holiday-hero__desc {
    font-size: 0.875rem;
    max-width: 100%;
  }

  /* Search bar responsive */
  .hv2-holiday-modify-bar {
    flex-wrap: wrap;
  }

  .hv2-holiday-modify-field {
    border-right: none;
    border-bottom: 1px solid #dce4ef;
    width: 50%;
    flex: 1 1 50%;
  }

  .hv2-holiday-modify-search-btn {
    width: 100%;
    margin-left: 0;
    margin-top: 0.5rem;
  }
}

@media (max-width: 575.98px) {
  .hv2-holiday-hero {
    min-height: 180px;
    padding: 1.5rem 0 3.5rem;
  }

  .hv2-holiday-hero-search {
    margin-top: -2rem;
    padding: 0 0.25rem;
  }

  .hv2-holiday-modify-field {
    width: 100%;
    flex: 1 1 100%;
  }
}

/* ---------- Results meta ---------- */
.hv2-holiday-results-meta h6,
.hv2-holiday-results-count {
  font-size: 0.875rem;
  font-weight: 500;
  color: #6b7280;
  margin-bottom: 0.75rem;
}

/* ---------- Quick filters + sort toolbar ---------- */
.hv2-holiday-toolbar-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.hv2-holiday-quick-filters {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.hv2-holiday-chip {
  border: 1px solid #e5e7eb;
  background: #fff;
  color: #374151;
  border-radius: 999px;
  padding: 0.4rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.hv2-holiday-chip:hover {
  border-color: #3b82f6;
  color: #2563eb;
}

.hv2-holiday-chip--active {
  background: #e0f2fe;
  border-color: #3b82f6;
  color: #2563eb;
}

.hv2-holiday-sort-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid #dce4ef;
  border-radius: 10px;
  background: #fff;
  padding: 0.45rem 0.85rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: #374151;
}

.hv2-holiday-sort-pill__label {
  color: #6b7280;
  font-weight: 500;
}

.hv2-holiday-sort-pill__value {
  font-weight: 600;
  color: #111827;
}

/* ---------- Promotional banner ---------- */
.hv2-holiday-offer-banner-wrap {
  margin-bottom: 1rem;
}

.hv2-holiday-offer-banner {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  background: #fef3c7;
  border: 1px solid #fde68a;
  border-radius: 14px;
  padding: 0.85rem 1.1rem;
}

.hv2-holiday-offer-banner__icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #92400e;
  flex-shrink: 0;
  font-size: 1rem;
}

.hv2-holiday-offer-banner__text {
  flex: 1 1 auto;
  min-width: 0;
}

.hv2-holiday-offer-banner__title {
  display: block;
  font-size: 0.95rem;
  font-weight: 700;
  color: #78350f;
  margin-bottom: 0.15rem;
}

.hv2-holiday-offer-banner__sub {
  display: block;
  font-size: 0.78rem;
  color: #92400e;
}

.hv2-holiday-offer-banner__btn {
  border: none;
  border-radius: 8px;
  background: #78350f;
  color: #fff;
  font-size: 0.8125rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  white-space: nowrap;
  cursor: default;
}

/* ---------- Holiday package card ---------- */
.hv2-holiday-results-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hv2-holiday-card {
  background: #fff !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 16px !important;
  box-shadow: 0 2px 12px rgba(17, 24, 39, 0.07) !important;
  padding: 1rem !important;
  overflow: hidden;
}

.hv2-holiday-card .hotel_box {
  padding: 0 !important;
}

.hv2-holiday-card__layout {
  align-items: stretch;
  --bs-gutter-x: 1.25rem;
}

.hv2-holiday-card__image-col {
  position: relative;
}

.hv2-holiday-card__image-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  min-height: 200px;
  background: #f3f4f6;
}

.hv2-holiday-card__img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  max-height: 240px;
  object-fit: cover;
  display: block;
  border-radius: 12px !important;
}

.hv2-holiday-card__duration-badge {
  position: absolute;
  top: 0.65rem;
  left: 0.65rem;
  z-index: 2;
  background: rgba(17, 24, 39, 0.78);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.65rem;
  border-radius: 8px;
  letter-spacing: 0.02em;
}

.hv2-holiday-card__body-col {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.hv2-holiday-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.hv2-holiday-card__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 0.25rem;
  line-height: 1.35;
}

.hv2-holiday-card__subtitle {
  font-size: 0.8125rem;
  color: #6b7280;
  margin: 0;
  line-height: 1.4;
}

.hv2-holiday-card__deal-badge {
  display: none !important;
}

.hv2-holiday-card__rating-box {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  flex-shrink: 0;
  background: #eff6ff;
  border-radius: 12px;
  padding: 0.45rem 0.5rem 0.45rem 0.75rem;
}

.hv2-holiday-card__rating-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.hv2-holiday-card__rating-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: #111827;
}

.hv2-holiday-card__rating-sub {
  font-size: 0.65rem;
  color: #6b7280;
}

.hv2-holiday-card__rating-score {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  height: 2rem;
  padding: 0 0.35rem;
  border-radius: 8px;
  background: #2563eb;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
}

/* Inclusions */
.hv2-holiday-card__inclusions {
  margin: 0.65rem 0;
}

.hv2-holiday-card__inclusions-label {
  display: none;
}

.hv2-holiday-card .holidayIcon {
  margin-bottom: 0.5rem;
}

.hv2-holiday-card__inclusion-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.85rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.hv2-holiday-card__inclusion-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 500;
  color: #4b5563;
}

.hv2-holiday-card__inclusion-item .include-icon {
  font-size: 0.72rem;
  color: #6b7280;
  width: auto;
  height: auto;
}

.hv2-holiday-card__cities {
  font-size: 0.78rem;
  color: #6b7280;
  margin-bottom: 0.5rem;
}

.hv2-holiday-card__cities strong {
  color: #374151;
  font-weight: 600;
}

.hv2-holiday-card__features {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1rem;
  margin-top: 0.35rem;
}

.hv2-holiday-card__feature {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 600;
  color: #059669;
}

.hv2-holiday-card__feature-icon {
  font-size: 0.72rem;
  color: #10b981;
}

.hv2-holiday-card__description,
.hv2-holiday-card .holidayresulttext {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* Price column */
.hv2-holiday-card__price-col {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  text-align: right;
  min-height: 100%;
}

.hv2-holiday-card .holiday_price {
  width: 100%;
  text-align: right;
}

.hv2-holiday-card__discount-pill {
  display: inline-block;
  background: #fef2f2;
  color: #dc2626;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  margin-bottom: 0.35rem;
}

.hv2-holiday-card .hubName {
  font-size: 0.75rem;
  color: #9ca3af;
  font-weight: 500;
  margin-bottom: 0.15rem;
}

.hv2-holiday-card .price.extraBoldfont {
  font-size: 1.55rem !important;
  font-weight: 800 !important;
  color: #111827 !important;
  line-height: 1.15;
}

.hv2-holiday-card .tp-product-price-3.old-price,
.hv2-holiday-card .Label-xfcdo.old-price {
  display: block;
  font-size: 0.875rem !important;
  font-weight: 500 !important;
  color: #9ca3af !important;
  text-decoration: line-through;
  margin-bottom: 0.1rem;
}

.hv2-holiday-card .priceNote {
  font-size: 0.78rem;
  color: #6b7280;
  font-weight: 500;
}

.hv2-holiday-card .button-holder {
/*  width: 100%;*/
  margin-top: 0.85rem;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.5rem;
}

.hv2-holiday-card .viewDetails {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: 100%;
  background: #2563eb !important;
  border: 1px solid #2563eb !important;
  color: #fff !important;
  border-radius: 10px !important;
  font-weight: 700 !important;
  font-size: 0.9rem !important;
  padding: 0.6rem 1rem !important;
  text-decoration: none !important;
}

.hv2-holiday-card .viewDetails:hover {
  background: #1d4ed8 !important;
  border-color: #1d4ed8 !important;
  color: #fff !important;
}

.hv2-holiday-card .enquireNow {
  width: 100%;
  background: #fff !important;
  border: 1px solid #2563eb !important;
  color: #2563eb !important;
  border-radius: 10px !important;
  font-weight: 600 !important;
  font-size: 0.875rem !important;
  padding: 0.55rem 1rem !important;
}

.hv2-holiday-card .enquireNow:hover {
  background: #eff6ff !important;
}

/* ---------- Pagination ---------- */
.hv2-holiday-pagination-wrap .hotal-filter-card {
  background: #fff !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 12px !important;
  box-shadow: 0 1px 2px rgba(17, 24, 39, 0.04);
}

.hv2-holiday-pagination-wrap .pagination {
  margin: 0;
  gap: 0.35rem;
}

.hv2-holiday-pagination-wrap .pagination li {
  list-style: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  height: 2rem;
  padding: 0 0.5rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 600;
  color: #374151;
  cursor: pointer;
  border: 1px solid transparent;
}

.hv2-holiday-pagination-wrap .pagination li.active {
  background: #2563eb;
  color: #fff;
}

.hv2-holiday-pagination-wrap .pagination li:hover:not(.active) {
  background: #f3f4f6;
}

/* ---------- Trending destinations ---------- */
.hv2-holiday-trending {
  margin-top: 2rem;
  padding-top: 0.5rem;
}

.hv2-holiday-trending__title {
  font-size: 1.15rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 1rem;
}

.hv2-holiday-trending__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.hv2-holiday-trending__card {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  text-decoration: none;
  display: block;
  box-shadow: 0 4px 14px rgba(17, 24, 39, 0.12);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.hv2-holiday-trending__card--manali {
  background: linear-gradient(160deg, #60a5fa 0%, #1e3a5f 100%);
}

.hv2-holiday-trending__card--kerala {
  background: linear-gradient(160deg, #34d399 0%, #065f46 100%);
}

.hv2-holiday-trending__card--goa {
  background: linear-gradient(160deg, #fbbf24 0%, #b45309 100%);
}

.hv2-holiday-trending__card--andaman {
  background: linear-gradient(160deg, #38bdf8 0%, #0c4a6e 100%);
}

.hv2-holiday-trending__card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(17, 24, 39, 0.18);
}

.hv2-holiday-trending__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.72) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1rem;
}

.hv2-holiday-trending__name {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  margin: 0 0 0.2rem;
}

.hv2-holiday-trending__price {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.78rem;
  font-weight: 500;
  margin: 0;
}

/* ---------- Error / empty states ---------- */
.hv2-holiday-results-page .tts-api-error-msg {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid #e5e7eb;
}

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
  .hv2-holiday-card__price-col {
    align-items: flex-start;
    text-align: left;
    margin-top: 0.75rem;
  }

  .hv2-holiday-card .holiday_price {
    text-align: left;
  }

  .hv2-holiday-trending__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575.98px) {
  .hv2-holiday-toolbar-wrap {
    flex-direction: column;
    align-items: stretch;
  }

  .hv2-holiday-trending__grid {
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
  }

  .hv2-holiday-card__header {
    flex-direction: column;
  }

  .hv2-holiday-card__rating-box {
    align-self: flex-start;
  }
}

/* ==========================================================================
   Holiday Card v2 — Figma-aligned — prefix: hv2-hc__
   ========================================================================== */

/* ── Outer card shell ── */
.hv2-hc {
  background: #fff !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 14px !important;
  box-shadow: 0 2px 16px rgba(17, 24, 39, 0.08) !important;
  padding: 0 !important;
  overflow: hidden;
  transition: box-shadow 0.2s ease;
}

.hv2-hc:hover {
  box-shadow: 0 6px 28px rgba(17, 24, 39, 0.13) !important;
}

.hv2-hc .hotel_box {
  padding: 0 !important;
}

.hv2-hc__layout {
  min-height: 220px;
}

/* ── Image column ── */
.hv2-hc__img-col {
  position: relative;
}

.hv2-hc__img-wrap {
  position: relative;
  height: 100%;
  min-height: 220px;
  overflow: hidden;
}

.hv2-hc__img {
  width: 100%;
  height: 100%;
  min-height: 220px;
/*  max-height: 280px;*/
  object-fit: cover;
  display: block;
  border-radius: 14px 0 0 14px;
}

/* Duration badge */
.hv2-hc__badge {
  position: absolute;
  top: 0.7rem;
  left: 0.7rem;
  z-index: 3;
  background: rgba(17, 24, 39, 0.82);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3rem 0.65rem;
  border-radius: 8px;
  letter-spacing: 0.03em;
  backdrop-filter: blur(2px);
  line-height: 1.3;
  white-space: nowrap;
}

/* ── Image bottom gradient overlay (Figma: text over image) ── */
.hv2-hc__img-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  background: linear-gradient(to top, rgba(10, 10, 20, 0.82) 0%, rgba(10, 10, 20, 0.45) 55%, transparent 100%);
  padding: 2.5rem 0.75rem 0.7rem;
  border-radius: 0 0 0 14px;
  pointer-events: none;
}

.hv2-hc__img-name {
  color: #fff;
  font-size: 0.825rem;
  font-weight: 700;
  margin: 0 0 0.2rem;
  line-height: 1.3;
  text-shadow: 0 1px 5px rgba(0, 0, 0, 0.6);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hv2-hc__img-cities {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.68rem;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

/* ── Body column ── */
.hv2-hc__body {
  padding: 1.15rem 1.35rem;
  display: flex;
  flex-direction: column;
}

/* ── Header: title block + rating box ── */
.hv2-hc__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.hv2-hc__title-block {
  flex: 1 1 auto;
  min-width: 0;
}

.hv2-hc__title {
  font-size: 1.2rem !important;
  font-weight: 700 !important;
  color: #111827 !important;
  margin: 0 0 0.25rem !important;
  line-height: 1.3;
  white-space: normal !important;
  overflow: visible !important;
  text-overflow: unset !important;
}

.hv2-hc__subtitle {
  font-size: 0.8125rem;
  color: #6b7280;
  margin: 0;
  line-height: 1.4;
}

/* Rating box (shows only when holiday.Rating is present) */
.hv2-hc__rating {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
  background: #eff6ff;
  border-radius: 10px;
  padding: 0.4rem 0.45rem 0.4rem 0.75rem;
}

.hv2-hc__rating-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.hv2-hc__rating-label {
  font-size: 0.72rem;
  font-weight: 700;
  color: #111827;
}

.hv2-hc__rating-sub {
  font-size: 0.64rem;
  color: #6b7280;
}

.hv2-hc__rating-score {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  height: 2rem;
  padding: 0 0.3rem;
  border-radius: 8px;
  background: #2563eb;
  color: #fff;
  font-size: 0.875rem;
  font-weight: 700;
}

/* ── Mid section: inclusions (left) | features (right) ── */
.hv2-hc__mid {
  display: flex;
  gap: 0;
  flex: 1 1 auto;
  margin-bottom: 0.85rem;
}

/* Inclusions — text list with small icons */
.hv2-hc__inclusions {
  flex: 1 1 55%;
  min-width: 0;
  padding-right: 0.75rem;
}

/* 2-column grid — 9 inclusions now show in ~5 compact rows */
.hv2-hc__inc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.28rem 0.6rem;
}

.hv2-hc__inc-item {
  display: flex !important;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.775rem !important;
  color: #4b5563;
  margin: 0 !important;
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.hv2-hc__inc-icon {
  font-size: 0.65rem;
  color: #9ca3af;
  flex-shrink: 0;
  width: 13px;
  text-align: center;
}

/* kept for backward compatibility — no longer used in card */
.hv2-hc__cities {
  color: #6b7280;
  font-size: 0.775rem !important;
  margin-top: 0.25rem !important;
}

.hv2-hc__cities strong {
  color: #374151;
}

/* Features — right column with vertical divider */
.hv2-hc__features {
  flex: 0 0 auto;
  min-width: 10rem;
  border-left: 1px solid #e5e7eb;
  padding-left: 1rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.5rem;
}

.hv2-hc__feat {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #059669;
}

.hv2-hc__feat-icon {
  font-size: 0.68rem;
}

/* ── HR divider (Figma) ── */
.hv2-hc__divider {
  border: none !important;
  border-top: 1px solid #f3f4f6 !important;
  margin: 0 0 0.85rem !important;
}

/* ── Footer: price (left) + CTA (right) ── */
.hv2-hc__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.hv2-hc__price-block {
  flex: 1 1 auto;
  text-align: left !important;
  padding: 0 !important;
  gap: 0 !important;
  height: auto !important;
  justify-content: flex-start !important;
}

.hv2-hc__price-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0.2rem;
}

.hv2-hc__price-old {
  font-size: 0.875rem !important;
  font-weight: 400 !important;
  color: #9ca3af !important;
  text-decoration: line-through;
  display: inline !important;
  margin: 0 !important;
}

.hv2-hc__price-cur {
  font-size: 1.6rem !important;
  font-weight: 800 !important;
  color: #111827 !important;
  line-height: 1.1;
  margin: 0 !important;
}

.hv2-hc__price-unit {
  font-size: 0.8rem !important;
  color: #6b7280 !important;
  font-weight: 500 !important;
  margin: 0 !important;
  display: inline !important;
}

.hv2-hc__price-note {
  font-size: 0.75rem;
  color: #9ca3af;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.hv2-hc__disc-tag {
  display: inline-flex !important;
  align-items: center;
  background: #fef2f2 !important;
  color: #dc2626 !important;
  font-size: 0.7rem !important;
  font-weight: 700 !important;
  padding: 0.15rem 0.5rem !important;
  border-radius: 999px !important;
  margin: 0 !important;
  border: none !important;
  line-height: 1.4;
}

/* ── CTA buttons ── */
.hv2-hc__cta {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.45rem;
  flex-shrink: 0;
  min-width: 8rem;
  margin-top: 0 !important;
}

.hv2-hc__view-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.4rem;
  background: #2563eb !important;
  border: 1px solid #2563eb !important;
  color: #fff !important;
  border-radius: 10px !important;
  font-weight: 700 !important;
  font-size: 0.9rem !important;
  padding: 0.65rem 1.35rem !important;
  text-decoration: none !important;
  white-space: nowrap;
}

.hv2-hc__view-btn:hover {
  background: #1d4ed8 !important;
  border-color: #1d4ed8 !important;
  color: #fff !important;
}

.hv2-hc__book-btn {
  background: #fff !important;
  border: 1px solid #d1d5db !important;
  color: #374151 !important;
  border-radius: 10px !important;
  font-weight: 600 !important;
  font-size: 0.8rem !important;
  padding: 0.45rem 1rem !important;
  width: 100%;
  text-align: center;
}

.hv2-hc__book-btn:hover {
  background: #f9fafb !important;
  border-color: #9ca3af !important;
}

/* ── Responsive ── */
@media (max-width: 991.98px) {
  .hv2-hc__features {
    min-width: 8.5rem;
  }
}

@media (max-width: 767.98px) {
  .hv2-hc__img {
    border-radius: 14px 14px 0 0;
    min-height: 200px;
    max-height: 200px;
  }

  .hv2-hc__img-overlay {
    border-radius: 0 0 0 0;
  }

  .hv2-hc__inc-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hv2-hc__body {
    padding: 0.9rem;
  }

  .hv2-hc__mid {
    flex-direction: column;
  }

  .hv2-hc__inclusions {
    padding-right: 0;
    margin-bottom: 0.65rem;
  }

  .hv2-hc__features {
    border-left: none;
    border-top: 1px solid #e5e7eb;
    padding-left: 0;
    padding-top: 0.65rem;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0.65rem 1rem;
    min-width: 0;
  }

  .hv2-hc__footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .hv2-hc__cta {
    width: 100%;
    flex-direction: row;
  }

  .hv2-hc__view-btn,
  .hv2-hc__book-btn {
    flex: 1 1 50%;
  }
}

@media (max-width: 575.98px) {
  .hv2-hc__title {
    font-size: 1.05rem !important;
  }

  .hv2-hc__price-cur {
    font-size: 1.35rem !important;
  }
}
