/**
 * Book Egypt Travel — Trip Single Page
 * Egyptian Heritage Design System: navy #14284A · gold #D9A441 · cream #FBF1DE
 */

/* --- Fix sticky sidebar (parent body has overflow-x: hidden) --- */
/* Override body overflow-x: hidden → clip so position: sticky works */
body.to_book-template-default,
body.single-to_book {
  overflow-x: clip !important;
}
.bet-trip-layout-wrap {
  overflow: clip;
}
.bet-trip-page > .bet-trip-layout-wrap {
  overflow-x: clip;
}

/* ============ 1. HERO BAND ============ */
.bet-trip-page .bet-trip-hero-band {
  background: linear-gradient(135deg, #071c3d 0%, #0e3a6e 100%) !important;
  padding: 36px 0 24px;
  color: #fff;
}
.bet-trip-page .bet-trip-hero-title,
.bet-trip-page .bet-trip-hero-title,
.bet-trip-page h1.bet-trip-hero-title {
  margin: 0 0 10px !important;
  font-family: var(--bet-font-head);
  font-size: clamp(28px, 4vw, 46px) !important;
  font-weight: 700 !important;
  line-height: 1.12 !important;
  color: #ffffff !important;
  text-shadow: none;
}
.bet-trip-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 10px;
  font-size: 13px;
  color: rgba(255,255,255,.85);
}
.bet-trip-hero-meta i { color: var(--bet-gold-bright); margin-right: 4px; }
.bet-trip-hero-stars { color: var(--bet-gold-bright); letter-spacing: 2px; }
.bet-trip-hero-rate { font-weight: 700; color: #fff; }

/* ============ 2. QUICK INFO STRIP ============ */
.bet-trip-quick-strip {
  background: #fff;
  border-bottom: 1px solid var(--bet-line);
  padding: 0;
  position: relative;
  z-index: 2;
}
.bet-trip-quick-line {
  display: flex;
  gap: 6px;
  padding: 12px 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.bet-trip-quick-line::-webkit-scrollbar { display: none; }
.bet-trip-chip {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
  padding: 8px 14px;
  font-size: 13px;
  color: var(--bet-navy);
  border-bottom: 2px solid transparent;
  transition: border-color .2s;
}
.bet-trip-chip:hover { border-bottom-color: var(--bet-gold); }
.bet-trip-chip > i {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--bet-navy);
  color: var(--bet-gold-bright);
  font-size: 11px;
  flex-shrink: 0;
}
.bet-trip-chip-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.bet-trip-chip-text small {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--bet-muted);
}
.bet-trip-chip-text strong {
  font-size: 13px;
  color: var(--bet-navy);
  font-weight: 700;
}

/* ============ 3. LAYOUT GRID ============ */
.bet-trip-layout-wrap {
  padding: 28px 0 56px;
}
.bet-trip-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 32px;
  align-items: start;
}
.bet-trip-main { min-width: 0; }

/* ============ 4. GALLERY ============ */
.bet-trip-gallery-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(20,40,74,.08);
}
.bet-trip-gallery {
  display: flex;
  flex-direction: column;
}
.bet-trip-gallery-hero {
  display: block;
  position: relative;
  overflow: hidden;
  line-height: 0;
  height: clamp(300px, 45vw, 480px);
  pointer-events: auto;
  max-width: none;
  flex: none;
  aspect-ratio: auto;
}
.bet-trip-gallery-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.bet-trip-gallery-hero:hover img {
  transform: scale(1.03);
}
.bet-trip-gallery-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  padding: 4px;
}
.bet-trip-gallery-thumb {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  aspect-ratio: 4/3;
  pointer-events: auto;
  max-width: none;
  flex: none;
}
.bet-trip-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s, opacity .3s;
}
.bet-trip-gallery-thumb:hover img { transform: scale(1.08); opacity: .85; }
.bet-trip-gallery-thumb--more::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(20,40,74,.55);
  border-radius: 8px;
  pointer-events: none;
}
.bet-trip-gallery-thumb-more {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
}
.bet-trip-hidden-link { display: none; }

/* ============ 5. FEATURES BOX ============ */
.bet-trip-features {
  display: flex;
  gap: 0;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(20,40,74,.08);
  margin-top: 20px;
  overflow: hidden;
}
.bet-trip-features-item {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px 24px;
  border-right: 1px solid var(--bet-line);
}
.bet-trip-features-item:last-child { border-right: none; }
.bet-trip-features-item i {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--bet-navy);
  color: var(--bet-gold-bright);
  font-size: 16px;
  flex-shrink: 0;
}
.bet-trip-features-item-text { display: flex; flex-direction: column; line-height: 1.2; }
.bet-trip-features-item-text small {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--bet-muted);
}
.bet-trip-features-item-text strong {
  font-size: 14px;
  color: var(--bet-navy);
  font-weight: 700;
}

/* ============ 6. CONTENT CARDS ============ */
.bet-trip-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 4px 20px rgba(20,40,74,.08);
  margin-top: 20px;
}
.bet-trip-card:first-child { margin-top: 0; }
.bet-trip-card-title {
  margin: 0 0 18px;
  font-family: var(--bet-font-head);
  font-size: 26px;
  font-weight: 700;
  color: var(--bet-navy);
  position: relative;
  padding-left: 16px;
}
.bet-trip-card-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 4px;
  border-radius: 3px;
  background: var(--bet-gradient-gold);
}

/* ============ 7. OVERVIEW ============ */
.bet-trip-content {
  color: var(--bet-kohl);
  font-size: 15px;
  line-height: 1.75;
}
.bet-trip-content p { margin: 0 0 12px; }
.bet-trip-content ul,
.bet-trip-content ol { margin: 0 0 12px 20px; }
.bet-trip-content li { margin-bottom: 5px; }
.bet-trip-content a {
  color: var(--bet-navy);
  text-decoration: underline;
  text-decoration-color: rgba(20,40,74,.2);
  text-underline-offset: 2px;
  font-weight: 600;
  transition: color .2s, text-decoration-color .2s;
}
.bet-trip-content a:hover {
  color: var(--bet-gold);
  text-decoration-color: var(--bet-gold);
}
.bet-trip-content strong { color: var(--bet-navy); font-weight: 700; }
.bet-trip-content .item_code,
.bet-trip-content .post-total-rating,
.bet-trip-content .item_info_price,
.bet-trip-content .babe_post_content_tab_titles,
.bet-trip-content .babe_post_content_tab_title_group {
  display: none !important;
}

/* ============ 8. TRIP HIGHLIGHTS ============ */
.bet-trip-highlights {
  background: linear-gradient(135deg, var(--bet-gold-pale) 0%, var(--bet-cream) 100%);
  border: 1px solid rgba(217,164,65,.2);
  border-radius: 16px;
  padding: 24px 28px;
  margin-top: 20px;
}
.bet-trip-highlights-title {
  margin: 0 0 16px;
  font-family: var(--bet-font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--bet-navy);
  display: flex;
  align-items: center;
  gap: 8px;
}
.bet-trip-highlights-title i { color: var(--bet-gold); }
.bet-trip-highlights-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 10px 20px;
}
.bet-trip-highlights-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--bet-kohl);
}
.bet-trip-highlights-item i {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #2f9e57;
  color: #fff;
  font-size: 10px;
  margin-top: 2px;
}

/* ============ 9. INCLUDED / EXCLUDED ============ */
.bet-trip-incex-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.bet-trip-incex-card {
  border-radius: 14px;
  border: 1px solid #d5e5d0;
  background: linear-gradient(180deg, #f4fbf2 0%, #fff 100%);
  padding: 18px;
}
.bet-trip-incex-card--out {
  border-color: #ecd6d1;
  background: linear-gradient(180deg, #fff7f6 0%, #fff 100%);
}
.bet-trip-incex-card h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(0,0,0,.06);
  font-family: var(--bet-font-head);
  color: var(--bet-navy);
  font-size: 15px;
  font-weight: 700;
}
.bet-trip-incex-card--in h3 i { color: #2f9e57; }
.bet-trip-incex-card--out h3 i { color: #d1584a; }
.bet-trip-incex-list ul { list-style: none; margin: 0; padding: 0; }
.bet-trip-incex-list li {
  position: relative;
  padding: 4px 0 4px 24px;
  font-size: 13px;
  line-height: 1.5;
  border-bottom: 1px dashed rgba(0,0,0,.05);
}
.bet-trip-incex-list li:last-child { border-bottom: none; }
.bet-trip-incex-list li::before {
  position: absolute;
  left: 0;
  top: 5px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 11px;
}
.bet-trip-incex-card--in .bet-trip-incex-list li::before { content: "\f00c"; color: #2f9e57; }
.bet-trip-incex-card--out .bet-trip-incex-list li::before { content: "\f00d"; color: #d1584a; }

/* ============ 10. ITINERARY ============ */
.bet-trip-itinerary-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.bet-trip-itinerary-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: 1px solid var(--bet-line);
  border-radius: 999px;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 600;
  color: var(--bet-navy);
  cursor: pointer;
  transition: border-color .2s, background .2s;
}
.bet-trip-itinerary-toggle:hover { border-color: var(--bet-gold); background: var(--bet-gold-pale); }
.bet-trip-itinerary-toggle i { transition: transform .3s; font-size: 10px; }
.bet-trip-itinerary-toggle.expanded i { transform: rotate(180deg); }
.bet-trip-itinerary { display: flex; flex-direction: column; gap: 6px; }
.bet-trip-itinerary-item {
  border: 1px solid rgba(20,40,74,.07);
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
  transition: box-shadow .3s, border-color .3s;
}
.bet-trip-itinerary-item[open] { border-color: var(--bet-gold); box-shadow: 0 4px 14px rgba(20,40,74,.06); }
.bet-trip-itinerary-item summary {
  list-style: none;
  cursor: pointer;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  font-family: var(--bet-font-head);
  color: var(--bet-navy);
  font-size: 14px;
  font-weight: 600;
  transition: background .2s;
}
.bet-trip-itinerary-item summary:hover { background: var(--bet-navy-soft); }
.bet-trip-itinerary-item summary::-webkit-details-marker,
.bet-trip-itinerary-item summary::marker { display: none; }
.bet-trip-itinerary-item summary .bet-trip-itinerary-step {
  display: flex;
  align-items: center;
  gap: 8px;
}
.bet-trip-itinerary-item summary .bet-trip-itinerary-step-num {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--bet-gold);
  color: var(--bet-navy);
  font-size: 11px;
  font-weight: 800;
  flex-shrink: 0;
}
.bet-trip-itinerary-item summary::after {
  content: "\f107";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--bet-gold);
  font-size: 12px;
  transition: transform .3s;
  flex-shrink: 0;
}
.bet-trip-itinerary-item[open] summary::after { transform: rotate(180deg); }
.bet-trip-itinerary-body {
  padding: 0 14px 12px;
  color: var(--bet-kohl);
  font-size: 13px;
  line-height: 1.65;
  border-top: 1px solid var(--bet-line-light);
}
.bet-trip-itinerary-body p { margin: 0 0 8px; }
.bet-trip-itinerary-body ul,
.bet-trip-itinerary-body ol { margin: 0 0 8px 18px; }

/* ============ 11. AVAILABILITY / CALENDAR ============ */
.bet-trip-widget--calendar .booking_form_calendar,
.bet-trip-widget--calendar .calendar_wrap,
.bet-trip-widget--calendar table { width: 100%; }
.bet-trip-widget--calendar #av-cal {
  border: 1px solid rgba(20,40,74,.1);
  border-radius: 12px;
  overflow: hidden;
}
.bet-trip-widget--calendar .cal-month-title {
  background: var(--bet-navy-soft);
  color: var(--bet-navy);
  font-family: var(--bet-font-head);
  font-size: 18px;
  padding: 10px 14px;
}

/* ============ 12. FAQ / WIDGETS ============ */
.bet-trip-widget .babe_post_content_title { display: none; }
.bet-trip-widget #block_steps,
.bet-trip-widget #block_faqs,
.bet-trip-widget #block_calendar,
.bet-trip-widget #block_related { margin: 0; }
.bet-trip-widget #block_steps .block_step,
.bet-trip-widget #block_faqs .block_faq {
  border: 1px solid rgba(20,40,74,.07);
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
  margin-bottom: 6px;
}
.bet-trip-widget #block_steps .block_step_title,
.bet-trip-widget #block_faqs .block_faq_title {
  padding: 14px 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background .2s;
}
.bet-trip-widget #block_steps .block_step_title:hover,
.bet-trip-widget #block_faqs .block_faq_title:hover { background: var(--bet-navy-soft); }
.bet-trip-widget #block_steps .block_step_title h4,
.bet-trip-widget #block_faqs .block_faq_title h4 {
  margin: 0;
  color: var(--bet-navy);
  font-size: 16px;
  font-family: var(--bet-font-head);
}
.bet-trip-widget #block_steps .block_step_content,
.bet-trip-widget #block_faqs .block_faq_content {
  padding: 0 16px 14px;
  color: var(--bet-kohl);
  font-size: 14px;
  line-height: 1.7;
}

/* ============ 13. REVIEWS ============ */
.bet-trip-widget--reviews .comments-area { margin-top: 0; }
.bet-trip-widget--reviews .comment-respond,
.bet-trip-widget--reviews .comments-title { margin-top: 16px; }
.bet-trip-widget--reviews .comment-list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 14px;
}
.bet-trip-widget--reviews .comment {
  background: #fff;
  border: 1px solid rgba(20,40,74,.06);
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 2px 10px rgba(20,40,74,.04);
}
.bet-trip-widget--reviews .comment-body { margin: 0; }
.bet-trip-widget--reviews .comment-author {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--bet-font-head); color: var(--bet-navy); font-size: 15px;
}
.bet-trip-widget--reviews .comment-author img {
  width: 40px; height: 40px; border-radius: 50%; object-fit: cover;
  border: 2px solid var(--bet-gold);
}
.bet-trip-widget--reviews .comment-metadata {
  font-size: 11px; letter-spacing: .06em; text-transform: uppercase;
  color: var(--bet-muted); margin-top: 2px;
}
.bet-trip-widget--reviews .comment-content {
  margin-top: 10px; font-size: 14px; line-height: 1.7; color: var(--bet-kohl);
}
.bet-trip-widget--reviews .reply { margin-top: 10px; }
.bet-trip-widget--reviews .reply a { font-weight: 700; color: var(--bet-gold); }

/* ============ 14. RELATED TOURS (carousel) ============ */
.bet-trip-related-section { padding: 48px 0 56px; }
.bet-trip-related-section .bet-section-head--inline { margin-bottom: 28px; }
.bet-related-swiper { overflow: visible; }
.bet-related-swiper .swiper-slide { height: auto; }
.bet-related-swiper .bet-card { height: 100%; }
.bet-related-swiper .swiper-button-prev,
.bet-related-swiper .swiper-button-next {
  color: var(--bet-navy);
  background: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(20,40,74,.12);
  border: 1px solid var(--bet-line);
}
.bet-related-swiper .swiper-button-prev::after,
.bet-related-swiper .swiper-button-next::after {
  font-size: 16px;
}
.bet-related-swiper .swiper-button-prev { left: -22px; }
.bet-related-swiper .swiper-button-next { right: -22px; }
.bet-related-swiper .swiper-pagination { margin-top: 20px; }
.bet-related-swiper .swiper-pagination-bullet {
  background: var(--bet-navy);
  opacity: .25;
  width: 8px;
  height: 8px;
}
.bet-related-swiper .swiper-pagination-bullet-active { opacity: 1; background: var(--bet-gold); }

/* ============ 15. SIDEBAR ============ */
.bet-trip-sidebar { position: relative; }
.bet-trip-sidebar-sticky {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 0;
  align-self: start;
}

/* --- Merged Price + Booking Card --- */
.bet-trip-book-wrap {
  background: #fff;
  border: 1px solid rgba(20,40,74,.08);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(20,40,74,.06);
}

/* --- Price Row (one line) --- */
.bet-trip-price-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, #081a39 0%, #0e3a6e 100%);
  padding: 14px 20px;
}
.bet-trip-price-label {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.65);
  white-space: nowrap;
}
.bet-trip-price-amount {
  font-family: var(--bet-font-head);
  font-size: 28px;
  font-weight: 700;
  color: var(--bet-gold-bright);
  line-height: 1;
}
.bet-trip-price-per {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.7);
}

/* --- Form Head --- */
.bet-trip-form-head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px 0;
}
.bet-trip-form-head i {
  color: var(--bet-gold);
  font-size: 13px;
}
.bet-trip-form-head span {
  font-family: var(--bet-font-head);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--bet-navy);
}

/* --- Booking Form Card (compact, light bg) --- */
.bet-trip-booking-card {
  background: transparent;
  border: none;
  padding: 8px 18px 14px;
}
.bet-trip-booking-card:empty { display: none; }

/* --- Reset plugin defaults --- */
.bet-trip-booking-card #request_booking_form_block,
.bet-trip-booking-card #request_booking_form {
  border: none;
  padding: 0;
  background: transparent;
  margin: 0;
}
.bet-trip-booking-card .input_group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.bet-trip-booking-card .request_booking_input {
  margin: 0;
}
.bet-trip-booking-card .request_booking_input label {
  display: block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #8e9cb7;
  margin-bottom: 2px;
}

/* --- Inputs / Date --- */
.bet-trip-booking-card .request_booking_input input[type="text"],
.bet-trip-booking-card .request_booking_input input[type="email"],
.bet-trip-booking-card .request_booking_input input:not([type="hidden"]),
.bet-trip-booking-card input,
.bet-trip-booking-card textarea,
.bet-trip-booking-card select {
  width: 100% !important;
  background: #f4f7fb !important;
  border: 1px solid rgba(20,40,74,.08) !important;
  border-radius: 8px !important;
  padding: 0 10px !important;
  height: 34px !important;
  min-height: 34px !important;
  max-height: 34px !important;
  line-height: 32px !important;
  font-size: 13px !important;
  font-family: inherit !important;
  color: var(--bet-navy) !important;
  transition: border-color .2s, background .2s;
  box-sizing: border-box !important;
  margin: 0 !important;
  -webkit-appearance: none !important;
  appearance: none !important;
}
.bet-trip-booking-card input::placeholder,
.bet-trip-booking-card textarea::placeholder { color: #b0bdd0 !important; }
.bet-trip-booking-card input:focus,
.bet-trip-booking-card textarea:focus,
.bet-trip-booking-card select:focus {
  outline: none !important;
  border-color: var(--bet-gold) !important;
  background: #fff !important;
}
.bet-trip-booking-card .booking-date {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #f4f7fb !important;
  border: 1px solid rgba(20,40,74,.08) !important;
  border-radius: 8px !important;
  padding: 0 10px !important;
  height: 34px !important;
  min-height: 34px !important;
  transition: border-color .2s;
}
.bet-trip-booking-card .booking-date:focus-within {
  border-color: var(--bet-gold) !important;
  background: #fff !important;
}
.bet-trip-booking-card .booking-date i {
  color: var(--bet-gold);
  font-size: 12px;
  flex-shrink: 0;
}
.bet-trip-booking-card .booking-date input {
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  height: 32px !important;
  min-height: 32px !important;
  line-height: 32px !important;
  color: var(--bet-navy) !important;
  flex: 1;
  min-width: 0;
}
.bet-trip-booking-card .request_booking_input textarea {
  height: 36px !important;
  min-height: 36px !important;
  line-height: 1.3 !important;
  padding: 5px 10px !important;
  resize: none;
}

/* --- Submit Button (navy) --- */
.bet-trip-booking-card .submit_group {
  margin-top: 4px;
}
.bet-trip-booking-card .submit_group .btn,
.bet-trip-booking-card .submit_group button,
.bet-trip-booking-card .submit_group input[type="submit"] {
  width: 100%;
  border-radius: 10px;
  min-height: 38px;
  font-weight: 800;
  font-size: 12px;
  letter-spacing: .04em;
  background: linear-gradient(135deg, #081a39 0%, #0e3a6e 100%);
  color: #fff;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(20,40,74,.15);
  transition: transform .2s, box-shadow .2s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.bet-trip-booking-card .submit_group .btn:hover,
.bet-trip-booking-card .submit_group button:hover,
.bet-trip-booking-card .submit_group input[type="submit"]:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(20,40,74,.2);
}
.bet-trip-booking-card .submit_group .btn i,
.bet-trip-booking-card .submit_group button i { font-size: 12px; }

/* --- Also support BA calendar booking form --- */
.bet-trip-booking-card #booking_form_block {
  border: none;
  padding: 0;
  background: transparent;
}
.bet-trip-booking-card #booking_form .booking-form-block {
  margin-bottom: 6px;
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(20,40,74,.06);
}
.bet-trip-booking-card #booking_form .booking-form-block:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.bet-trip-booking-card #booking_form .booking_form_input_label {
  color: #8e9cb7;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 3px;
  display: block;
}
.bet-trip-booking-card #booking_form .booking-date,
.bet-trip-booking-card #booking_form #booking-guests-result,
.bet-trip-booking-card #booking_form .booking_meeting_point_line {
  background: #f4f7fb;
  border: 1px solid rgba(20,40,74,.08);
  border-radius: 8px;
  padding: 8px 11px;
}
.bet-trip-booking-card #booking_form input,
.bet-trip-booking-card #booking_form select,
.bet-trip-booking-card #booking_form textarea {
  border: 1px solid rgba(20,40,74,.08) !important;
  background: #f4f7fb !important;
  font-size: 13px !important;
  line-height: 32px !important;
  height: 34px !important;
  min-height: 34px !important;
  max-height: 34px !important;
  padding: 0 10px !important;
  color: var(--bet-navy) !important;
  border-radius: 8px !important;
  font-family: inherit !important;
  -webkit-appearance: none !important;
  appearance: none !important;
}
.bet-trip-booking-card #booking_form .booking-date {
  height: 34px !important;
  min-height: 34px !important;
}
.bet-trip-booking-card #booking_form .booking-date input {
  line-height: 32px !important;
  height: 32px !important;
  min-height: 32px !important;
  padding: 0 !important;
}
.bet-trip-booking-card #booking_form input::placeholder,
.bet-trip-booking-card #booking_form textarea::placeholder { color: #b0bdd0; }
.bet-trip-booking-card #booking_form input:focus,
.bet-trip-booking-card #booking_form select:focus,
.bet-trip-booking-card #booking_form textarea:focus { outline: none; }
.bet-trip-booking-card #booking_form .submit_group .btn,
.bet-trip-booking-card #booking_form .submit_group button,
.bet-trip-booking-card #booking_form .submit_group input[type="submit"] {
  width: 100%;
  border-radius: 10px;
  min-height: 40px;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: .04em;
  background: linear-gradient(135deg, #081a39 0%, #0e3a6e 100%);
  color: #fff;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(20,40,74,.15);
  transition: transform .2s, box-shadow .2s;
}
.bet-trip-booking-card #booking_form .submit_group .btn:hover,
.bet-trip-booking-card #booking_form .submit_group button:hover,
.bet-trip-booking-card #booking_form .submit_group input[type="submit"]:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(20,40,74,.2);
}
.bet-trip-booking-card #total_group {
  background: var(--bet-navy);
  border: none;
  border-radius: 8px;
  padding: 10px;
  color: #fff;
  font-weight: 700;
  text-align: center;
  font-size: 13px;
}
.bet-trip-booking-card .booking-form-block,
.bet-trip-booking-card .babe_booking_form { padding: 0; }

/* --- Enquiry Button --- */
.bet-trip-enquiry-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 10px 18px;
  border: 1.5px solid var(--bet-navy);
  border-radius: 12px;
  background: transparent;
  color: var(--bet-navy);
  font-family: var(--bet-font-body);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s, color .2s;
  box-sizing: border-box;
}
.bet-trip-enquiry-btn:hover {
  background: var(--bet-navy);
  color: #fff;
}

/* --- Help / Support Card --- */
.bet-trip-help-card {
  background: linear-gradient(135deg, #eef4fb 0%, #f5f8fc 100%);
  color: var(--bet-navy);
  border: 1px solid rgba(20,40,74,.08);
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 2px 10px rgba(20,40,74,.04);
}
.bet-trip-help-card h4 {
  margin: 0 0 10px;
  font-family: var(--bet-font-head);
  font-size: 14px;
  font-weight: 700;
  color: var(--bet-navy);
}
.bet-trip-help-card a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  color: #4a5f80;
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  border-bottom: 1px solid rgba(20,40,74,.06);
  transition: color .2s;
}
.bet-trip-help-card a:last-child { border-bottom: none; }
.bet-trip-help-card a:hover { color: var(--bet-navy); }
.bet-trip-help-card a .bet-trip-help-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff;
  color: var(--bet-gold);
  font-size: 13px;
  flex-shrink: 0;
  box-shadow: 0 1px 4px rgba(20,40,74,.06);
}
.bet-trip-help-card a:hover .bet-trip-help-icon { background: #fff; color: var(--bet-navy); }

/* ============ 15b. SIDEBAR SPACING ============ */
.bet-trip-sidebar-sticky {
  gap: 16px;
}

/* ============ 16. REVIEWS REDESIGN ============ */
.bet-trip-card--reviews {
  --bet-review-bg: #f8fafc;
  --bet-review-line: rgba(20,40,74,.06);
  padding: 22px;
}
@media (max-width: 768px) {
  .bet-trip-card--reviews { padding: 18px 16px; }
}

/* --- Review list: hide WP defaults --- */
.bet-trip-card--reviews #comments {
  margin: 0;
  padding: 0;
}
.bet-trip-card--reviews #comments > h2.comments-title,
.bet-trip-card--reviews #comments .pingbacklist,
.bet-trip-card--reviews #comments .comment-reply-title #cancel-comment-reply-link {
  display: none;
}
.bet-trip-card--reviews #comments ol.comment-list,
.bet-trip-card--reviews #comments .gav-comment-list > ol {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.bet-trip-card--reviews #comments ol.comment-list > li,
.bet-trip-card--reviews #comments ol.comment-list .the-comment {
  margin: 0;
  padding: 0;
  border: none;
  background: transparent;
}
.bet-trip-card--reviews #comments ol.comment-list > li:before {
  display: none;
}

/* --- Single review card --- */
.bet-trip-card--reviews #comments ol.comment-list .the-comment {
  display: flex;
  gap: 12px;
  background: var(--bet-review-bg);
  border: 1px solid var(--bet-review-line);
  border-radius: 12px;
  padding: 14px;
}
.bet-trip-card--reviews #comments ol.comment-list .the-comment .media-comment-left,
.bet-trip-card--reviews #comments ol.comment-list .the-comment .author-image {
  flex-shrink: 0;
}
.bet-trip-card--reviews #comments ol.comment-list .the-comment .author-image img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
}
.bet-trip-card--reviews #comments ol.comment-list .the-comment .media-comment-body,
.bet-trip-card--reviews #comments ol.comment-list .the-comment .comment-box {
  flex: 1;
  min-width: 0;
}
.bet-trip-card--reviews #comments ol.comment-list .the-comment .author-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 10px;
  margin-bottom: 6px;
}
.bet-trip-card--reviews #comments ol.comment-list .the-comment .author-meta .fn,
.bet-trip-card--reviews #comments ol.comment-list .the-comment .author-meta cite {
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  color: var(--bet-navy);
}
.bet-trip-card--reviews #comments ol.comment-list .the-comment .author-meta .fn a {
  color: var(--bet-navy);
  text-decoration: none;
}
.bet-trip-card--reviews #comments ol.comment-list .the-comment .comment-info,
.bet-trip-card--reviews #comments ol.comment-list .the-comment .author-meta > span {
  font-size: 12px;
  color: var(--bet-muted);
}
.bet-trip-card--reviews #comments ol.comment-list .the-comment .comment-info a {
  color: var(--bet-muted);
  text-decoration: none;
}

/* --- Star ratings (overall only) --- */
.bet-trip-card--reviews #comments ol.comment-list .the-comment .comment-total-rating-stars {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  color: var(--bet-gold);
  font-size: 12px;
  margin-bottom: 6px;
}
.bet-trip-card--reviews #comments ol.comment-list .the-comment .comment-total-rating-value {
  margin-left: 6px;
  font-weight: 700;
  color: var(--bet-navy);
  font-size: 13px;
}
.bet-trip-card--reviews #comments ol.comment-list .the-comment .comment-rating-ul {
  display: none !important;
}

/* --- Review text --- */
.bet-trip-card--reviews #comments ol.comment-list .the-comment .comment-body {
  font-size: 13px;
  line-height: 1.6;
  color: var(--bet-kohl);
}
.bet-trip-card--reviews #comments ol.comment-list .the-comment .comment-body p {
  margin: 0 0 6px;
}
.bet-trip-card--reviews #comments ol.comment-list .the-comment .comment-body p:last-child {
  margin-bottom: 0;
}

/* --- Reply action --- */
.bet-trip-card--reviews #comments ol.comment-list .the-comment .comment-action-wrap {
  margin-top: 10px;
}
.bet-trip-card--reviews #comments ol.comment-list .the-comment .comment-reply-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--bet-navy);
  text-decoration: none;
  padding: 4px 10px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--bet-review-line);
  transition: background .2s, color .2s;
}
.bet-trip-card--reviews #comments ol.comment-list .the-comment .comment-reply-link:hover {
  background: var(--bet-navy);
  color: #fff;
}

/* --- Add a review form --- */
.bet-trip-card--reviews #comments .gav-comment-list {
  margin-bottom: 0 !important;
}
.bet-trip-card--reviews #comments #respond,
.bet-trip-card--reviews #comments .comment-form-main,
.bet-trip-card--reviews #comments .comment-form-inner,
.bet-trip-card--reviews #comments .comment-respond {
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid var(--bet-review-line);
  border: none;
  background: transparent;
}
.bet-trip-card--reviews #comments #respond #reply-title {
  margin: 0 0 10px;
  font-family: var(--bet-font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--bet-navy);
  padding: 0;
  border: none;
}
.bet-trip-card--reviews #comments #respond #commentform {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0;
  border: none;
}
.bet-trip-card--reviews #comments #respond #commentform .h-info {
  display: none;
}
.bet-trip-card--reviews #comments #respond #commentform .comment-form-cookies-consent {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 0;
  font-size: 12px;
  color: var(--bet-muted);
}
.bet-trip-card--reviews #comments #respond #commentform .comment-form-cookies-consent input {
  margin-top: 2px;
  flex-shrink: 0;
}

/* Form grid: name + email */
.bet-trip-card--reviews #comments #respond #commentform .cm-your-name,
.bet-trip-card--reviews #comments #respond #commentform .cm-your-email,
.bet-trip-card--reviews #comments #respond #commentform .form-group {
  margin: 0;
  width: 100%;
}
@media (min-width: 640px) {
  .bet-trip-card--reviews #comments #respond #commentform {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .bet-trip-card--reviews #comments #respond #commentform .comment-form-rating,
  .bet-trip-card--reviews #comments #respond #commentform .cm-your-comment,
  .bet-trip-card--reviews #comments #respond #commentform .comment-form-cookies-consent,
  .bet-trip-card--reviews #comments #respond #commentform .form-submit,
  .bet-trip-card--reviews #comments #respond #commentform .h-info {
    grid-column: 1 / -1;
  }
}

/* Inputs */
.bet-trip-card--reviews #comments #respond #commentform input[type="text"],
.bet-trip-card--reviews #comments #respond #commentform input[type="email"],
.bet-trip-card--reviews #comments #respond #commentform textarea {
  width: 100%;
  background: #f4f7fb;
  border: 1px solid rgba(20,40,74,.08);
  border-radius: 10px;
  padding: 9px 12px;
  font-size: 14px;
  color: var(--bet-navy);
  font-family: inherit;
  transition: border-color .2s, background .2s;
  box-sizing: border-box;
}
.bet-trip-card--reviews #comments #respond #commentform textarea {
  min-height: 90px;
  resize: vertical;
  line-height: 1.5;
}
.bet-trip-card--reviews #comments #respond #commentform input:focus,
.bet-trip-card--reviews #comments #respond #commentform textarea:focus {
  outline: none;
  border-color: var(--bet-gold);
  background: #fff;
}

/* Rating categories */
.bet-trip-card--reviews #comments #respond #commentform .comment-form-rating {
  margin: 0;
}
.bet-trip-card--reviews #comments #respond #commentform .comment-form-rating > label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--bet-navy);
  margin-bottom: 8px;
}
.bet-trip-card--reviews #comments #respond #commentform .comment-form-rating-ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bet-trip-card--reviews #comments #respond #commentform .comment-form-rating-ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--bet-review-line);
  border-radius: 10px;
  padding: 7px 12px;
  min-width: 0;
}
.bet-trip-card--reviews #comments #respond #commentform .comment-form-rating-criterion {
  font-size: 13px;
  font-weight: 600;
  color: var(--bet-navy);
  text-transform: capitalize;
  flex-shrink: 0;
  white-space: nowrap;
}
.bet-trip-card--reviews #comments #respond #commentform .comment-form-rating-stars {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: nowrap;
  gap: 4px;
  color: var(--bet-gold);
  font-size: 15px;
  cursor: pointer;
  flex-shrink: 0;
}
.bet-trip-card--reviews #comments #respond #commentform .comment-form-rating-stars .star {
  line-height: 1;
  flex-shrink: 0;
}

/* Submit button */
.bet-trip-card--reviews #comments #respond #commentform .form-submit {
  margin: 0;
}
.bet-trip-card--reviews #comments #respond #commentform #submit {
  width: 100%;
  border-radius: 12px;
  min-height: 42px;
  padding: 9px 18px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .04em;
  background: linear-gradient(135deg, #081a39 0%, #0e3a6e 100%);
  color: #fff;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(20,40,74,.15);
  transition: transform .2s, box-shadow .2s;
}
.bet-trip-card--reviews #comments #respond #commentform #submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(20,40,74,.2);
}

/* ============ 17. ENQUIRY MODAL ============ */
.bet-modal-overlay {
  position: fixed; inset: 0; z-index: 99999;
  background: rgba(20,40,74,.6);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; visibility: hidden;
  transition: opacity .3s, visibility .3s;
}
.bet-modal-overlay.open { opacity: 1; visibility: visible; }
.bet-modal {
  background: #fff;
  border-radius: 20px;
  width: 100%; max-width: 640px; max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 32px 80px rgba(20,40,74,.3);
  transform: translateY(20px) scale(.97);
  transition: transform .3s;
}
.bet-modal-overlay.open .bet-modal { transform: translateY(0) scale(1); }
.bet-modal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid var(--bet-line);
}
.bet-modal-header h3 {
  margin: 0;
  font-family: var(--bet-font-head);
  font-size: 20px;
  font-weight: 700;
  color: var(--bet-navy);
}
.bet-modal-close {
  width: 34px; height: 34px;
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%; border: none;
  background: var(--bet-navy-soft);
  color: var(--bet-navy);
  font-size: 18px;
  cursor: pointer;
  transition: background .2s;
}
.bet-modal-close:hover { background: var(--bet-line); }
.bet-modal-body { padding: 20px 24px 24px; }

/* ============ 18. GALLERY LIGHTBOX ============ */
.bet-lightbox {
  background: rgba(4,15,30,.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.bet-lightbox-stage {
  position: relative;
  max-width: min(920px, 90vw);
  max-height: 82vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.bet-lightbox-stage img {
  display: block;
  max-width: 100%;
  max-height: 78vh;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
  user-select: none;
  -webkit-user-drag: none;
}
.bet-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 50%;
  background: rgba(10,34,57,.65);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  transition: background .2s, border-color .2s;
  z-index: 2;
}
.bet-lightbox-nav:hover {
  background: var(--bet-gold);
  border-color: var(--bet-gold);
  color: var(--bet-navy);
}
.bet-lightbox-prev { left: -60px; }
.bet-lightbox-next { right: -60px; }
.bet-lightbox-counter {
  position: absolute;
  bottom: 14px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(10,34,57,.7);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  padding: 5px 14px;
  border-radius: 20px;
  letter-spacing: .04em;
}

/* ============ 18. AVAILABILITY CALENDAR REDESIGN ============ */
.bet-trip-widget--calendar #av-cal {
  font-family: var(--bet-font-body, inherit);
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(20,40,74,.06);
  border: 1px solid rgba(20,40,74,.08);
}

/* --- Week day names --- */
.bet-trip-widget--calendar .cal-week-names {
  display: flex;
  background: linear-gradient(135deg, #081a39 0%, #0e3a6e 100%);
  margin: 0;
  padding: 0;
}
.bet-trip-widget--calendar .cal-week-name {
  flex: 1;
  text-align: center;
  padding: 10px 2px;
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .04em;
  border: none;
  background: transparent;
}

/* --- Month navigation bar --- */
.bet-trip-widget--calendar .cal-month-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  background: #f8fafc;
  border-bottom: 1px solid rgba(20,40,74,.06);
  color: var(--bet-navy, #14284A);
  font-size: 15px;
  font-weight: 700;
  text-align: center;
}
.bet-trip-widget--calendar .cal-month-prev,
.bet-trip-widget--calendar .cal-month-next {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background: #fff;
  color: var(--bet-navy, #14284A);
  border: 1px solid rgba(20,40,74,.08);
  cursor: pointer;
  transition: background .2s, color .2s;
  float: none;
  margin: 0;
}
.bet-trip-widget--calendar .cal-month-prev:hover,
.bet-trip-widget--calendar .cal-month-next:hover {
  background: var(--bet-navy, #14284A);
  color: #fff;
}
.bet-trip-widget--calendar .cal-month-prev i,
.bet-trip-widget--calendar .cal-month-next i {
  font-size: 12px;
}

/* --- Dates grid --- */
.bet-trip-widget--calendar .cal-dates-block {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 8px;
  gap: 4px;
  background: #fff;
}

/* --- Base cell --- */
.bet-trip-widget--calendar .cal-cell {
  position: relative;
  flex: 0 0 calc((100% - 24px) / 7);
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 4px 2px 3px;
  border: 1px solid rgba(20,40,74,.06);
  border-radius: 10px;
  text-align: center;
  background: #fff;
  transition: transform .15s, box-shadow .15s, background .2s;
}
.bet-trip-widget--calendar .cal-cell.cal-cell-invisible {
  border: none;
  background: transparent;
  min-height: 0;
}
.bet-trip-widget--calendar .cal-cell:nth-child(7n+1) {
  border-left: 1px solid rgba(20,40,74,.06);
}

/* --- Day number --- */
.bet-trip-widget--calendar .cal-cell .cal-cell-date {
  font-size: 12px;
  font-weight: 700;
  color: var(--bet-navy, #14284A);
  line-height: 1;
  margin: 0;
  text-align: center;
}
.bet-trip-widget--calendar .cal-cell.cal-cell-empty .cal-cell-date,
.bet-trip-widget--calendar .cal-cell.cal-cell-disabled .cal-cell-date {
  color: #b0bdd0;
}

/* --- Empty / disabled cells --- */
.bet-trip-widget--calendar .cal-cell.cal-cell-empty,
.bet-trip-widget--calendar .cal-cell.cal-cell-disabled {
  background: #f4f7fb;
  border-color: rgba(20,40,74,.04);
  cursor: default;
}
.bet-trip-widget--calendar .cal-cell.cal-cell-disabled-last,
.bet-trip-widget--calendar .cal-cell.cal-cell-disabled-first,
.bet-trip-widget--calendar .cal-cell.cal-cell-stop-date {
  background: #eef2f7;
  background-image: none !important;
  cursor: default;
}

/* --- Available / active cells --- */
.bet-trip-widget--calendar .cal-cell.cal-cell-active {
  cursor: pointer;
  background: #f0fdf4;
  border-color: rgba(47,158,87,.25);
}
.bet-trip-widget--calendar .cal-cell.cal-cell-active:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(47,158,87,.18);
  background: #dcfce7;
}
.bet-trip-widget--calendar .cal-cell.cal-cell-active.cal-cell-start-day {
  background: #d1fae5;
  border-color: rgba(47,158,87,.45);
}
.bet-trip-widget--calendar .cal-cell.cal-cell-active.cal-cell-start-day:hover {
  background: #bbf7d0;
}
/* Keep non-start-day active cells green too (override BA plugin neutral grey) */
.bet-trip-widget--calendar .cal-cell.cal-cell-active:not(.cal-cell-start-day) {
  background: #f0fdf4;
  border-color: rgba(47,158,87,.25);
}
.bet-trip-widget--calendar .cal-cell.cal-cell-active:not(.cal-cell-start-day):hover {
  background: #dcfce7;
}

/* --- Price --- */
.bet-trip-widget--calendar .cal-cell .cal-cell-pricefrom {
  display: block;
  font-size: 10px;
  font-weight: 700;
  color: var(--bet-navy, #14284A);
  line-height: 1.2;
  margin: 1px 0 0;
  min-height: 12px;
  text-align: center;
}

/* --- Availability badge --- */
.bet-trip-widget--calendar .cal-cell.cal-cell-active::after {
  content: 'Available';
  display: block;
  font-size: 8px;
  font-weight: 800;
  letter-spacing: .03em;
  text-transform: uppercase;
  color: #2f9e57;
  background: transparent;
  padding: 0;
  border-radius: 0;
  line-height: 1;
  margin: 1px 0 0;
  text-align: center;
}

/* --- Selected cell --- */
.bet-trip-widget--calendar .cal-cell.cal-cell-active.cal-cell-selected,
.bet-trip-widget--calendar .cal-cell.cal-cell-disabled-first.cal-cell-selected {
  background: var(--bet-navy, #14284A) !important;
  border-color: var(--bet-navy, #14284A) !important;
  color: #fff;
}
.bet-trip-widget--calendar .cal-cell.cal-cell-active.cal-cell-selected .cal-cell-date,
.bet-trip-widget--calendar .cal-cell.cal-cell-active.cal-cell-selected .cal-cell-pricefrom,
.bet-trip-widget--calendar .cal-cell.cal-cell-active.cal-cell-selected::after {
  color: #fff;
}
.bet-trip-widget--calendar .cal-cell.cal-cell-active.cal-cell-selected::after {
  background: transparent;
}

/* --- Rate details popup (keep hidden by default, show on hover) --- */
.bet-trip-widget--calendar .view-rate-details {
  display: none;
  position: absolute;
  z-index: 20;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 8px 30px rgba(20,40,74,.18);
  border: 1px solid rgba(20,40,74,.08);
  padding: 12px;
  width: 260px;
  text-align: left;
  font-size: 13px;
}
.bet-trip-widget--calendar .cal-cell:hover .view-rate-details {
  display: block;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
}

/* --- Mobile overrides: force price + badge visible --- */
@media (max-width: 767px) {
  .bet-trip-widget--calendar .cal-cell {
    min-height: 46px;
    padding: 3px 1px 2px;
    border-radius: 6px;
  }
  .bet-trip-widget--calendar .cal-cell .cal-cell-date {
    font-size: 11px;
    margin: 0;
  }
  .bet-trip-widget--calendar .cal-cell .cal-cell-pricefrom {
    display: block !important;
    font-size: 9px;
    min-height: 11px;
    margin: 1px 0 0;
  }
  .bet-trip-widget--calendar .cal-cell.cal-cell-active::after {
    font-size: 7px;
    padding: 0;
    margin: 1px 0 0;
  }
}

/* ============ 20. MOBILE BOOKING STICKY BUTTON + MODAL ============ */
.bet-mobile-book-btn,
.bet-mobile-book-overlay {
  display: none;
}

@media (max-width: 1080px) {
  .bet-trip-book-wrap {
    display: none;
  }

  .bet-mobile-book-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 9990;
    padding: 14px 20px;
    border-radius: 14px;
    border: none;
    background: linear-gradient(135deg, #081a39 0%, #0e3a6e 100%);
    color: #fff;
    font-family: var(--bet-font-head);
    font-size: 15px;
    font-weight: 700;
    letter-spacing: .02em;
    cursor: pointer;
    box-shadow: 0 6px 24px rgba(20,40,74,.35);
    transition: transform .2s, box-shadow .2s;
  }
  .bet-mobile-book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(20,40,74,.45);
  }
  .bet-mobile-book-btn i {
    font-size: 16px;
    color: var(--bet-gold-bright);
  }

  .bet-mobile-book-overlay {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(20,40,74,.65);
    backdrop-filter: blur(4px);
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s, visibility .3s;
  }
  .bet-mobile-book-overlay.open {
    opacity: 1;
    visibility: visible;
  }

  .bet-mobile-book-modal {
    background: #fff;
    width: 100%;
    max-height: 88vh;
    border-radius: 24px 24px 0 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transform: translateY(100%);
    transition: transform .3s ease-out;
  }
  .bet-mobile-book-overlay.open .bet-mobile-book-modal {
    transform: translateY(0);
  }

  .bet-mobile-book-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--bet-line);
    flex-shrink: 0;
  }
  .bet-mobile-book-header h3 {
    margin: 0;
    font-family: var(--bet-font-head);
    font-size: 18px;
    font-weight: 700;
    color: var(--bet-navy);
  }
  .bet-mobile-book-close {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: none;
    background: var(--bet-navy-soft);
    color: var(--bet-navy);
    font-size: 22px;
    line-height: 1;
    cursor: pointer;
  }

  .bet-mobile-book-body {
    padding: 16px 20px 28px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  /* Force the moved booking form to be visible inside the modal */
  .bet-mobile-book-body #bet-booking-form-root,
  .bet-mobile-book-body .bet-trip-book-wrap {
    display: block !important;
    box-shadow: none;
    border: none;
    border-radius: 0;
  }
  .bet-mobile-book-body .bet-trip-price-row {
    border-radius: 14px;
    margin-bottom: 12px;
  }
}

/* ============ 21. RESPONSIVE ============ */
@media (max-width: 1080px) {
  .bet-trip-layout { grid-template-columns: 1fr; }
  .bet-trip-sidebar-sticky { position: static !important; }
  .bet-trip-help-card { position: static !important; }
  .bet-trip-layout-wrap { padding: 20px 0 36px; }
  .bet-trip-features { flex-direction: column; }
  .bet-trip-features-item { border-right: none; border-bottom: 1px solid var(--bet-line); }
  .bet-trip-features-item:last-child { border-bottom: none; }
}
@media (max-width: 768px) {
  .bet-trip-page .bet-trip-hero-band { padding: 24px 0 16px; }
  .bet-trip-card { padding: 20px 16px; }
  .bet-trip-card-title { font-size: 22px; }
  .bet-trip-highlights { padding: 18px 16px; }
  .bet-trip-highlights-grid { grid-template-columns: 1fr; }
  .bet-trip-incex-grid { grid-template-columns: 1fr; }
  .bet-trip-gallery-hero { height: clamp(220px, 55vw, 320px); }
  .bet-trip-gallery-row { grid-template-columns: repeat(2, 1fr); }
  .bet-trip-price-row { flex-direction: row; }
  .bet-trip-related-section { padding: 32px 0 36px; }
  .bet-related-swiper .swiper-button-prev,
  .bet-related-swiper .swiper-button-next { display: none; }
}
@media (max-width: 1279px) {
  .bet-related-swiper .swiper-button-prev { left: 0; }
  .bet-related-swiper .swiper-button-next { right: 0; }
}
@media (max-width: 640px) {
  .bet-trip-gallery-row { grid-template-columns: repeat(2, 1fr); }
  .bet-trip-price-card .bet-trip-price-amount { font-size: 32px; }
  .bet-lightbox-prev { left: 8px; }
  .bet-lightbox-next { right: 8px; }
  .bet-lightbox-nav { width: 40px; height: 40px; font-size: 18px; }
  .bet-lightbox-stage { max-width: 96vw; }
  .bet-lightbox-stage img { max-height: 70vh; border-radius: 6px; }
}
