/* ================================================================
   Awestruck — New Design Popup v2
   Scope: .exp-popup-v2  (applied to #experienceModal)
   home.js — ZERO CHANGES. All IDs/classes preserved from old popup.
   Load AFTER existing stylesheets.
   Fonts: Bricolage Grotesque, Space Grotesk, DM Sans
================================================================ */

/* ── Variables ─────────────────────────────────────────────── */
.exp-popup-v2 {
  --ep-blue:       #383BF1;
  --ep-blue-2:     #6f72ff;
  --ep-blue-soft:  #eef0ff;
  --ep-cream:      #fff5e7;
  --ep-yellow:     #FFD153;
  --ep-yellow-d:   #F6B800;
  --ep-green:      #2BC26A;
  --ep-ink:        #1a1a1a;
  --ep-gray:       #5e5e5e;
  --ep-line:       #e8e6e0;
  --ep-radius:     18px;
  --ep-display:    'Bricolage Grotesque', system-ui, sans-serif;
  --ep-sharp:      'Space Grotesk', system-ui, sans-serif;
  --ep-body:       'DM Sans', system-ui, sans-serif;
}

/* ── Modal shell ────────────────────────────────────────────── */
.exp-popup-v2 .modal-content {
  border: none;
  border-radius: 24px;
  background: #f8f4ee;
  overflow: hidden;
  font-family: var(--ep-body);
  color: var(--ep-ink);
  position: relative;
}
.exp-popup-v2 .modal-body {
  padding: 0;
  position: relative;
}

/* ── Close button ───────────────────────────────────────────── */
.exp-popup-v2 .exp-popup-close {
  position: absolute;
  top: 12px;
  right: 16px;
  z-index: 1060;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--ep-ink);
  color: #fff;
  border: none;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, transform 0.15s;
  font-family: var(--ep-sharp);
  box-shadow: 0 4px 12px rgba(0,0,0,0.25);
}
.exp-popup-v2 .exp-popup-close:hover {
  background: var(--ep-blue);
  transform: scale(1.08);
}
/* Hide old default BS close button if present */
.exp-popup-v2 .btn-close { display: none !important; }
.exp-popup-v2 .img-logo-fixed { display: none !important; }

/* ── Main two-column layout ─────────────────────────────────── */
.exp-popup-v2 .ep-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  padding: 24px 28px 20px;
  background: #fff;
  border-radius: 20px;
  margin: 20px;
  box-shadow: 0 20px 60px rgba(20,20,50,0.11);
}

/* ── LEFT column ────────────────────────────────────────────── */
.exp-popup-v2 .ep-left {
  display: flex;
  flex-direction: column;
  min-width: 0;
}


.exp-popup-v2 .ep-hero {
  border-radius: var(--ep-radius);
  overflow: hidden;
  height: 380px;
  position: relative;
  background: #2a2a2a;
}
.exp-popup-v2 .ep-hero-bottom {
  overflow: visible !important;
}

.exp-popup-v2 .package-share {
  position: absolute;
  bottom: 14px;
  right: 16px;
  z-index: 100;
}
.exp-popup-v2 .ep-hero .swiper-wrapper {
  height: 100%;
}
.exp-popup-v2 .ep-hero .swiper-slide {
  height: 100%;
}
.exp-popup-v2 .ep-hero .swiper-slide .portfolio-image {
  height: 100%;
}
.exp-popup-v2 .ep-hero .swiper-slide .portfolio-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Category badge on image */
.exp-popup-v2 .ep-category-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 10;
  background: rgba(255,255,255,0.9);
  color: var(--ep-blue);
  font-size: 12px !important;
  font-weight: 700;
  border-radius: 999px;
  padding: 4px 12px;
  backdrop-filter: blur(6px);
  display:none;
}
/* Name + share bar below image */
.exp-popup-v2 .ep-hero-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.72));
  padding: 32px 16px 14px;
  z-index: 5;
}
.exp-popup-v2 .ep-hero-bottom .package-name {
  color: #fff !important;
  font-family: var(--ep-display) !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  line-height: 1.2;
  flex: 1;
}
/* Share icons */
.exp-popup-v2 .package-share {
  position: relative;
  z-index: 10;
}
.exp-popup-v2 .ep-hero-bottom .share-toggle {
  cursor: pointer;
  color: #fff;
  font-size: 22px;
}
.exp-popup-v2 .share-icons {
  display: none;
  position: absolute;
  right: 0;
  bottom: 32px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 24px rgba(0,0,0,0.15);
  padding: 8px;
  flex-direction: column;
  gap: 4px;
  z-index: 20;
}
.exp-popup-v2 .share-toggle.active .share-icons,
.exp-popup-v2 .share-toggle:hover .share-icons {
  display: flex;
}
.exp-popup-v2 .share-btn {
  display: flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 8px;
  color: var(--ep-ink);
  text-decoration: none;
  font-size: 14px;
  transition: background 0.12s;
}
.exp-popup-v2 .share-btn:hover { background: var(--ep-blue-soft); }

/* Mobile title */
.exp-popup-v2 .ep-title-mobile {
  font-family: var(--ep-display);
  font-size: 22px;
  color: var(--ep-ink);
}

/* Provider / Duration row — matches Detail Page animated gradient border bar */
.exp-popup-v2 .ep-meta {
  margin-top: 14px;
  position: relative;
  border-radius: 999px;
  padding: 2px;
  background: linear-gradient(
    90deg,
    var(--ep-blue),
    var(--ep-blue-2),
    #c084fc,
    var(--ep-yellow),
    var(--ep-blue)
  );
  background-size: 300% 100%;
  animation: ep-meta-border-flow 6s linear infinite;
}
@keyframes ep-meta-border-flow {
  to { background-position: -300% 0; }
}
.exp-popup-v2 .ep-meta-inner {
  background: linear-gradient(90deg, var(--ep-blue), var(--ep-blue-2));
  color: #fff;
  border-radius: 999px;
  padding: 10px 8px 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--ep-sharp);
  font-size: 14px;
  font-weight: 600;
}
.exp-popup-v2 .ep-provider-label {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  font-family: var(--ep-sharp);
}
.exp-popup-v2 .ep-provider-label::before {
  content: "◉";
  margin-right: 8px;
  color: var(--ep-yellow);
  animation: ep-pulse-dot 1.6s ease-in-out infinite;
  display: inline-block;
}
@keyframes ep-pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.8); }
}
.exp-popup-v2 .ep-duration-label {
  color: black !important;
  background: #fff;
  padding: 5px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 13px;
  font-family: var(--ep-sharp);
}
.exp-popup-v2 .ep-duration-label .duration {
  color: var(--ep-blue);
  font-weight: 700;
}

/* Brand name */
.exp-popup-v2 .ep-brand,
.exp-popup-v2 .package-title {
  font-family: var(--ep-display) !important;
  font-size: 22px !important;
  font-weight: 700 !important;
  color: var(--ep-ink) !important;
  margin: 4px 0 12px !important;
}

/* Address (mobile) */
.exp-popup-v2 .booking-address {
  background: var(--ep-blue-soft);
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 13px;
}
.exp-popup-v2 .booking-address .map {
  color: var(--ep-blue);
  font-weight: 600;
  text-decoration: none;
  display: inline-block;
  margin-top: 4px;
}

/* Description */
.exp-popup-v2 .ep-desc-block,
.exp-popup-v2 .desc {
  font-size: 14px;
  line-height: 1.6;
  color: var(--ep-gray);
  background: var(--ep-cream);
  border-radius: 10px;
  padding: 12px 14px;
}
.exp-popup-v2 .desc b {
  color: var(--ep-ink);
}
.exp-popup-v2 .read-toggle {
  color: var(--ep-blue) !important;
  font-weight: 600;
  cursor: pointer;
}

/* ── Tabs ───────────────────────────────────────────────────── */
.exp-popup-v2 .ep-tabs {
  margin-top: 14px;
  flex: 1;
}
.exp-popup-v2 .ep-tab-btns {
  display: flex;
  gap: 4px;
  border-bottom: 2px solid var(--ep-line);
  margin-bottom: 12px;
}
.exp-popup-v2 .ep-tab-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border: none;
  background: none;
  font-size: 14px;
  font-weight: 600;
  color: var(--ep-gray);
  cursor: pointer;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  font-family: var(--ep-sharp);
  transition: color 0.15s, border-color 0.15s;
  border-radius: 8px 8px 0 0;
}
.exp-popup-v2 .ep-tab-btn:hover { color: var(--ep-blue); }
.exp-popup-v2 .ep-tab-btn.active {
  color: var(--ep-blue);
  border-bottom-color: var(--ep-blue);
  background: var(--ep-blue-soft);
}
.exp-popup-v2 .ep-tab-icon {
  width: 22px;
  height: 22px;
}
.exp-popup-v2 .ep-tab-panel { display: none; }
.exp-popup-v2 .ep-tab-panel.active { display: block; }

/* Reach grid */
.exp-popup-v2 .ep-reach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 10px;
}

/* Map card — matches detail page: grid background + blue pin + "Open in Maps" */
.exp-popup-v2 .ep-map-thumb {
  background: #e8eefe;
  border-radius: 16px;
  min-height: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  text-decoration: none;
  color: var(--ep-blue);
  font-size: 13px;
  font-weight: 600;
  transition: background 0.15s;
  position: relative;
  overflow: hidden;
  border: 1px solid #d4dbfa;
  /* Grid dot pattern like detail page map placeholder */
  background-image:
    linear-gradient(rgba(56,59,241,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(56,59,241,0.06) 1px, transparent 1px);
  background-size: 24px 24px;
  background-color: #eef0ff;
}
.exp-popup-v2 .ep-map-thumb:hover { background-color: #e3e6ff; }
.exp-popup-v2 .ep-map-pin {
  width: 36px;
  height: 44px;
  background: var(--ep-blue);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  box-shadow: 0 4px 12px rgba(56,59,241,0.35);
  position: relative;
}
.exp-popup-v2 .ep-map-pin::after {
  content: '';
  position: absolute;
  width: 14px;
  height: 14px;
  background: #fff;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.exp-popup-v2 .ep-map-hint {
  background: #fff;
  border-radius: 8px;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 700;
  color: var(--ep-blue);
  box-shadow: 0 2px 8px rgba(56,59,241,0.15);
}

/* Address card — matches detail page: "ADDRESS" label + text + Copy address button */
.exp-popup-v2 .ep-address-card {
  background: var(--ep-blue-soft);
  border-radius: 16px;
  padding: 16px 18px;
  font-size: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border: 1px solid #d4dbfa;
}
.exp-popup-v2 .ep-address-card b {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ep-blue);
  font-family: var(--ep-sharp);
}
.exp-popup-v2 .ep-address-card .add {
  font-size: 13px;
  color: var(--ep-ink);
  line-height: 1.5;
}
.exp-popup-v2 .ep-view-map {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: #fff;
  border: 1.5px solid var(--ep-blue);
  border-radius: 999px;
  padding: 5px 14px;
  color: var(--ep-blue);
  font-weight: 700;
  font-size: 12px;
  text-decoration: none;
  font-family: var(--ep-sharp);
  width: fit-content;
  transition: background 0.15s;
}
.exp-popup-v2 .ep-view-map:hover {
  background: var(--ep-blue);
  color: #fff;
}

/* Cancel policy text */
.exp-popup-v2 .ep-cancel-text {
  font-size: 12px;
  color: var(--ep-gray);
  margin-top: 8px;
}

/* ── RIGHT column ───────────────────────────────────────────── */
.exp-popup-v2 .ep-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Booking card */
.exp-popup-v2 .ep-booking-card {
  background: var(--ep-cream);
  border-radius: var(--ep-radius);
  padding: 18px 20px;
  position: relative;
  overflow: visible; /* must be visible for timeslot dropdown */
}
/* Shine is now clipped by a pseudo-element on the card's background layer only */
.exp-popup-v2 .ep-booking-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--ep-radius);
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}
/* Shine via a separate absolutely-positioned div clipped inside card bounds */
.exp-popup-v2 .ep-booking-card-shine {
  position: absolute;
  inset: 0;
  border-radius: var(--ep-radius);
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}
.exp-popup-v2 .ep-booking-card-shine::before {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
  animation: ep-shine 6s ease-in-out infinite;
  pointer-events: none;
}
@keyframes ep-shine {
  0%, 70% { left: -100%; }
  100% { left: 200%; }
}
/* Ensure form content sits above the shine layer */
.exp-popup-v2 .ep-booking-card > *:not(.ep-booking-card-shine) {
  position: relative;
  z-index: 2;
}
.exp-popup-v2 .ep-book-title,
.exp-popup-v2 .book-title {
  color: var(--ep-blue) !important;
  font-family: var(--ep-display) !important;
  font-size: 20px !important;
  font-weight: 800 !important;
  text-align: center !important;
  margin: 0 0 14px !important;
  letter-spacing: -0.02em;
}

/* Form grid */
.exp-popup-v2 .ep-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px 12px;
}
.exp-popup-v2 .ep-field {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.exp-popup-v2 .ep-field label {
  font-size: 13px;
  font-weight: 600;
  color: var(--ep-ink);
  font-family: var(--ep-sharp);
}
.exp-popup-v2 .ep-input,
.exp-popup-v2 .ep-field input,
.exp-popup-v2 .ep-field select {
  background: #fff !important;
  border: 1.5px solid #e8dcc6 !important;
  border-radius: 10px !important;
  padding: 9px 12px !important;
  font-size: 14px !important;
  font-family: var(--ep-body) !important;
  font-weight: 500;
  color: var(--ep-ink);
  transition: border-color 0.15s, box-shadow 0.15s;
  width: 100%;
}
.exp-popup-v2 .ep-input:focus,
.exp-popup-v2 .ep-field input:focus,
.exp-popup-v2 .ep-field select:focus {
  outline: none;
  border-color: var(--ep-blue) !important;
  box-shadow: 0 0 0 3px rgba(56,59,241,0.1);
}
.exp-popup-v2 .col-span-2 { grid-column: span 2; }

/* Qty control */
.exp-popup-v2 .ep-qty-control,
.exp-popup-v2 .quantity {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border: 1.5px solid #e8dcc6;
  border-radius: 10px;
  padding: 0 4px;
  overflow: hidden;
  height: 44px;
  min-height: 44px;
}
.exp-popup-v2 .ep-qty-btn,
.exp-popup-v2 .qty-minus,
.exp-popup-v2 .qty-plus {
  width: 34px !important;
  height: 34px !important;
  background: var(--ep-blue-soft) !important;
  color: var(--ep-blue) !important;
  border: none !important;
  border-radius: 7px !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  cursor: pointer;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  transition: background 0.12s, color 0.12s, transform 0.1s;
  padding: 0 !important;
  line-height: 1;
  flex-shrink: 0;
  align-self: center;
}
.exp-popup-v2 .ep-qty-btn:hover,
.exp-popup-v2 .qty-minus:hover,
.exp-popup-v2 .qty-plus:hover {
  /* background: var(--ep-blue) !important; */
  color: #fff !important;
}
.exp-popup-v2 .ep-qty-btn:active { transform: scale(0.92); }
.exp-popup-v2 .ep-qty-val,
.exp-popup-v2 .qty-text {
  font-family: var(--ep-sharp) !important;
  font-weight: 700 !important;
  font-size: 16px !important;
  text-align: center !important;
  border: none !important;
  background: transparent !important;
  width: 40px !important;
  flex: 1 !important;
  -moz-appearance: textfield;
  align-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 0 !important;
}
.exp-popup-v2 .qty-text::-webkit-inner-spin-button,
.exp-popup-v2 .qty-text::-webkit-outer-spin-button { -webkit-appearance: none; }

/* Hotel guest fields */
.exp-popup-v2 .ep-hotel-guest-row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
}
.exp-popup-v2 .ep-hotel-guest-col {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.exp-popup-v2 .ep-hotel-guest-col label {
  font-size: 12px;
  font-weight: 600;
  color: var(--ep-gray);
  font-family: var(--ep-sharp);
}

/* Price breakup box */
.exp-popup-v2 .ep-price-breakup {
  background: #fff;
  border-radius: 14px;
  padding: 14px 16px;
  font-size: 13px;
  border: 1px solid var(--ep-line);
}
.exp-popup-v2 .ep-pb-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
  color: var(--ep-gray);
}
.exp-popup-v2 .ep-pb-discount { color: var(--ep-green); }
.exp-popup-v2 .ep-pb-save { color: var(--ep-green); font-weight: 600; }
.exp-popup-v2 .ep-pb-total { font-weight: 800; font-size: 15px; color: var(--ep-ink); }
.exp-popup-v2 .ep-pb-hr { border-color: var(--ep-line); margin: 8px 0; }

/* Price bar — matches Detail Page exactly */
.exp-popup-v2 .ep-price-bar {
  background: linear-gradient(135deg, var(--ep-blue) 0%, #2d30d0 100%);
  color: #fff;
  border-radius: 16px;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  position: relative;
  overflow: visible; /* allow dropdown to show above */
  z-index: 10;
}
.exp-popup-v2 .ep-price-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 16px;
  background: radial-gradient(circle at 90% 50%, rgba(255,209,83,0.18) 0%, transparent 50%);
  pointer-events: none;
}
.exp-popup-v2 .ep-price-main {
  position: relative;
}
.exp-popup-v2 .ep-price-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.8;
  font-family: var(--ep-sharp);
  margin-bottom: 2px;
}
.exp-popup-v2 .ep-price-value,
.exp-popup-v2 .ep-price-bar .desktop-price {
  font-family: var(--ep-sharp) !important;
  font-size: 34px !important;
  font-weight: 700 !important;
  line-height: 1;
  color: #fff !important;
  display: block;
  letter-spacing: -0.02em;
}
.exp-popup-v2 .ep-price-sub {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 4px;
}
.exp-popup-v2 .ep-old-price,
.exp-popup-v2 .ep-price-bar .originlAmountFromPriceApi {
  color: var(--ep-yellow) !important;
  text-decoration: line-through;
  font-size: 14px;
  opacity: 0.85;
}
/* Save badge — animated like detail page */
.exp-popup-v2 .ep-save-badge {
  background: var(--ep-yellow);
  color: #000;
  padding: 1px 10px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 12px;
  font-family: var(--ep-sharp);
  animation: ep-save-attention 2.4s ease-in-out infinite;
  white-space: nowrap;
}
@keyframes ep-save-attention {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}
/* Info icon replaces Know More button */
.exp-popup-v2 .ep-info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  border: 1.5px solid rgba(255,255,255,0.5);
  flex-shrink: 0;
  transition: background 0.15s;
  font-family: var(--ep-sharp);
  line-height: 1;
}
.exp-popup-v2 .ep-info-icon:hover {
  background: rgba(255,255,255,0.35);
}
/* Hide old know-more text button */
.exp-popup-v2 .ep-know-more,
.exp-popup-v2 .ep-price-bar .know-more {
  display: none !important;
}
.exp-popup-v2 .ep-price-links {
  text-align: right;
  font-size: 11px;
  font-weight: 500;
  position: relative;
  flex: 0 0 auto;
}
.exp-popup-v2 .ep-price-links a {
  color: #fff !important;
  text-decoration: none;
  display: block;
  opacity: 0.85;
  line-height: 1.9;
}
.exp-popup-v2 .ep-price-links a:hover { opacity: 1; text-decoration: underline; }

/* Checkout button */
.exp-popup-v2 .ep-checkout-wrap { margin-top: 4px; }
.exp-popup-v2 .ep-checkout-btn,
.exp-popup-v2 .book-now-btnn .btn {
  width: 100%;
  background: var(--ep-yellow) !important;
  color: var(--ep-ink) !important;
  border: none !important;
  border-radius: 14px !important;
  padding: 16px 24px !important;
  font-size: 18px !important;
  font-weight: 700 !important;
  font-family: var(--ep-sharp) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  box-shadow: 0 4px 0 var(--ep-yellow-d), 0 8px 24px rgba(246,184,0,0.3) !important;
  transition: transform 0.1s, box-shadow 0.1s;
  position: relative;
  overflow: hidden;
  text-transform: none !important;
}
.exp-popup-v2 .ep-checkout-btn::before {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.5), transparent);
  animation: ep-checkout-shine 4s ease-in-out infinite;
}
@keyframes ep-checkout-shine {
  0%, 60% { left: -100%; }
  100% { left: 200%; }
}
.exp-popup-v2 .ep-checkout-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 5px 0 var(--ep-yellow-d), 0 12px 28px rgba(246,184,0,0.4) !important;
}
.exp-popup-v2 .ep-checkout-btn:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 var(--ep-yellow-d), 0 4px 12px rgba(246,184,0,0.3) !important;
}
.exp-popup-v2 .ep-checkout-tick,
.exp-popup-v2 .book-now-btnn .check-btn {
  width: 32px;
  height: 32px;
  background: var(--ep-green);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  flex-shrink: 0;
}

/* ── Trust strip ────────────────────────────────────────────── */
.exp-popup-v2 .ep-trust-strip {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 8px;
  background: #fff;
  border-radius: 16px;
  padding: 14px 20px;
  margin: 0 20px 20px;
}
.exp-popup-v2 .ep-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.exp-popup-v2 .ep-trust-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}
.exp-popup-v2 .ep-trust-title {
  font-size: 13px;
  font-weight: 700;
  color: var(--ep-ink);
  font-family: var(--ep-sharp);
}
.exp-popup-v2 .ep-trust-sub {
  font-size: 11px;
  color: var(--ep-gray);
}
.exp-popup-v2 .ep-trust-sub a { color: inherit; text-decoration: none; }
.exp-popup-v2 .ep-trust-sub a:hover { color: var(--ep-blue); }

/* ── Mobile sticky bar ──────────────────────────────────────── */
.exp-popup-v2 .ep-mobile-bar {
  position: sticky;
  bottom: 0;
  z-index: 100;
  background: #fff;
  border-top: 1px solid var(--ep-line);
  padding: 8px 12px;
}
.exp-popup-v2 .ep-mobile-price {
  font-family: var(--ep-sharp);
  font-size: 20px;
  font-weight: 700;
  color: var(--ep-ink);
}

/* ── Notify button ──────────────────────────────────────────── */
.exp-popup-v2 .ep-btn-notify {
  background: var(--ep-blue) !important;
  color: #fff !important;
  border-radius: 10px !important;
  padding: 12px 28px !important;
  font-weight: 700 !important;
  border: none !important;
  width: 100%;
}

/* ── price breakup toggle text ──────────────────────────────── */
.exp-popup-v2 .know-more-text {
  font-size: 12px;
  color: #fff;
  text-decoration: underline;
  cursor: pointer;
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════ */

/* Tablet */
@media (max-width: 991px) {
  .exp-popup-v2 .ep-layout {
    grid-template-columns: 1fr;
    margin: 12px;
    padding: 16px;
    gap: 16px;
  }
  .exp-popup-v2 .ep-hero { height: 280px; }
  .exp-popup-v2 .ep-trust-strip {
    grid-template-columns: 1fr 1fr;
    margin: 0 12px 16px;
  }
  .exp-popup-v2 .ep-price-bar { flex-direction: column; align-items: flex-start; gap: 10px; }
}

/* Mobile */
@media (max-width: 575px) {
  .exp-popup-v2 .ep-layout { margin: 8px; padding: 12px; }
  .exp-popup-v2 .ep-hero { height: 240px; }
  .exp-popup-v2 .ep-form-grid { grid-template-columns: 1fr; }
  .exp-popup-v2 .ep-trust-strip {
    grid-template-columns: 1fr 1fr;
    margin: 0 8px 12px;
    padding: 10px 12px;
  }
  .exp-popup-v2 .ep-reach-grid { grid-template-columns: 1fr; }
  .exp-popup-v2 .ep-hotel-guest-row { grid-template-columns: 1fr; }
  .exp-popup-v2 .ep-price-value,
  .exp-popup-v2 .ep-price-bar .desktop-price { font-size: 28px !important; }
}

/* Tab JS — triggered by data-target switching */

/* ══════════════════════════════════════════════════════════════
   ADDITIONAL FIXES — v2.1
══════════════════════════════════════════════════════════════ */

/* ── Timeslot dropdown: z-index so it appears ABOVE price bar ── */
.exp-popup-v2 #temptimeslot,
.exp-popup-v2 .ep-field.standard-booking-field {
  position: relative;
  z-index: 50;
}
/* nice-select dropdown panel opens DOWNWARD with very high z-index */
.exp-popup-v2 .niceselect .list,
.exp-popup-v2 #temptimeslot .nice-select .list {
  top: 100% !important;
  bottom: auto !important;
  z-index: 99999 !important;
  transform-origin: top center;
  position: absolute !important;
  min-width: 100%;
  max-height: 220px;
  overflow-y: auto;
}
/* For native select fallback — make it z-index safe */
.exp-popup-v2 .ep-booking-card {
  position: relative;
  z-index: 15;
  overflow: visible !important;
}
/* Price bar and checkout must have LOWER z-index than timeslot dropdown */
.exp-popup-v2 .ep-price-bar {
  z-index: 10 !important;
}
.exp-popup-v2 .ep-checkout-wrap {
  z-index: 10 !important;
}
.exp-popup-v2 .ep-right {
  position: relative;
  overflow: visible !important;
}

/* ── People counter: fix button layout ─────────────────────── */
.exp-popup-v2 .ep-qty-control,
.exp-popup-v2 .quantity {
  height: 44px !important;
  min-height: 44px !important;
  display: flex !important;
  align-items: center !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
}
.exp-popup-v2 .ep-qty-btn,
.exp-popup-v2 .qty-minus,
.exp-popup-v2 .qty-plus {
  width: 34px !important;
  height: 34px !important;
  min-width: 34px !important;
  flex-shrink: 0 !important;
  margin: 0 2px !important;
  align-self: center !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}
.exp-popup-v2 .ep-qty-val,
.exp-popup-v2 .qty-text {
  flex: 1 !important;
  text-align: center !important;
  align-self: center !important;
}

/* ── Description: hide the standalone desc block, only show inside What's Included ── */
.exp-popup-v2 .ep-desc-block.desc {
  display: none !important;
}

/* ── What's Included tab — description with Read More ─────── */
.exp-popup-v2 .ep-tab-panel#ep-panel-included .ep-included-desc {
  font-size: 14px;
  line-height: 1.65;
  color: var(--ep-gray);
  margin-bottom: 10px;
}
.exp-popup-v2 .ep-included-desc-text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  transition: all 0.3s;
}
.exp-popup-v2 .ep-included-desc-text.expanded {
  -webkit-line-clamp: unset;
  display: block;
}
.exp-popup-v2 .ep-read-more-btn {
  font-family: var(--ep-sharp);
  color: var(--ep-blue);
  font-weight: 700;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
}
.exp-popup-v2 .ep-read-more-btn::after {
  content: "→";
  transition: transform 0.2s;
}
.exp-popup-v2 .ep-read-more-btn:hover::after {
  transform: translateX(3px);
}
.exp-popup-v2 .ep-read-more-btn.expanded::after {
  content: "↑";
}

/* ── FAQs tab ──────────────────────────────────────────────── */
.exp-popup-v2 #ep-panel-faqs {
  display: none;
}
.exp-popup-v2 #ep-panel-faqs.active {
  display: block;
}
.exp-popup-v2 .ep-faq-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 8px;
}
.exp-popup-v2 .ep-faq-item {
  background: #fff;
  border: 1.5px solid var(--ep-line);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.exp-popup-v2 .ep-faq-item.open {
  border-color: var(--ep-blue);
  box-shadow: 0 6px 18px rgba(56, 59, 241, 0.1);
}
.exp-popup-v2 .ep-faq-item.hidden-faq {
  display: none;
}
.exp-popup-v2 .ep-faq-list.expanded .ep-faq-item.hidden-faq {
  display: block;
}
.exp-popup-v2 .ep-faq-summary {
  list-style: none;
  cursor: pointer;
  padding: 11px 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  user-select: none;
}
.exp-popup-v2 .ep-q-num {
  font-family: var(--ep-sharp);
  font-size: 11px;
  font-weight: 700;
  color: var(--ep-blue);
  background: var(--ep-blue-soft);
  padding: 3px 8px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  flex: 0 0 auto;
}
.exp-popup-v2 .ep-q-text {
  flex: 1;
  font-family: var(--ep-sharp);
  font-size: 14px;
  font-weight: 600;
  color: var(--ep-ink);
}
.exp-popup-v2 .ep-q-toggle {
  width: 24px;
  height: 24px;
  background: var(--ep-ink);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0.5,0,0.3,1), background 0.2s;
  flex: 0 0 auto;
}
.exp-popup-v2 .ep-q-toggle svg {
  width: 12px;
  height: 12px;
}
.exp-popup-v2 .ep-faq-item:hover .ep-q-toggle {
  background: var(--ep-blue);
}
.exp-popup-v2 .ep-faq-item.open .ep-q-toggle {
  background: var(--ep-blue);
  transform: rotate(180deg);
}
.exp-popup-v2 .ep-faq-answer {
  padding: 0 14px 12px 50px;
  font-size: 13.5px;
  line-height: 1.6;
  color: #444;
  display: none;
}
.exp-popup-v2 .ep-faq-answer::before {
  content: "";
  display: block;
  height: 1px;
  background: var(--ep-line);
  margin: 0 0 10px;
}
.exp-popup-v2 .ep-faq-item.open .ep-faq-answer {
  display: block;
}
/* Show more FAQs button */
.exp-popup-v2 .ep-faq-more-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
  padding: 8px 18px;
  border: 1.5px dashed var(--ep-blue);
  border-radius: 999px;
  background: none;
  color: var(--ep-blue);
  font-family: var(--ep-sharp);
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s;
}
.exp-popup-v2 .ep-faq-more-btn:hover {
  background: var(--ep-blue-soft);
}
.exp-popup-v2 .ep-faq-more-btn .arrow {
  transition: transform 0.3s;
  display: inline-block;
}
.exp-popup-v2 .ep-faq-list.expanded .ep-faq-more-btn .arrow {
  transform: rotate(180deg);
}

/* ── Tablet responsive overrides ───────────────────────────── */
@media (max-width: 991px) {
  .exp-popup-v2 .ep-price-bar { overflow: visible; }
}
@media (max-width: 575px) {
  .exp-popup-v2 .ep-price-value,
  .exp-popup-v2 .ep-price-bar .desktop-price { font-size: 26px !important; }
  .exp-popup-v2 .ep-price-label { font-size: 10px; }
}
/* ═══════════════════════════════════════════════════════════
   v2.2 COMPREHENSIVE FIXES
   1. Shine: clipped inside card, never bleeds to image
   2. Price bar: matches detail page exactly
   3. Info icon: works without .know-more
   4. Timeslot: opens DOWNWARD with z-index 99999
   5. People counter: proper inline flex alignment
════════════════════════════════════════════════════════════ */

/* ── HORIZONTAL SCROLL FIX: prevent modal body overflow ── */
.exp-popup-v2 .modal-body {
  overflow-x: hidden !important;
}
.exp-popup-v2 .ep-layout {
  overflow-x: hidden;
}

/* ── PRICE BAR: exact match to detail page ─────────────── */
.exp-popup-v2 .ep-price-bar {
  background: linear-gradient(135deg, #383BF1 0%, #2d30d0 100%) !important;
  color: #fff !important;
  border-radius: 16px !important;
  padding: 18px 22px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 12px !important;
  position: relative !important;
  overflow: hidden !important;
  z-index: 10 !important;
  margin-bottom: 0 !important;
}
/* Subtle radial highlight like detail page */
.exp-popup-v2 .ep-price-bar::after {
  content: '';
  position: absolute;
  right: 0; top: 0; bottom: 0;
  width: 45%;
  background: radial-gradient(circle at 90% 50%, rgba(255,209,83,0.18) 0%, transparent 60%);
  pointer-events: none;
  border-radius: 0 16px 16px 0;
}
/* Remove old ::before that may conflict */
.exp-popup-v2 .ep-price-bar::before {
  display: none !important;
}

/* Price label (TOTAL FOR N PERSON) */
.exp-popup-v2 .ep-price-bar .ep-price-label,
.exp-popup-v2 .ep-price-bar .desktop-price-label {
  font-size: 12px !important;
  font-weight: 700 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.1em !important;
  opacity: 0.85 !important;
  color: #fff !important;
  font-family: var(--ep-sharp) !important;
  margin-bottom: 3px !important;
}

/* Large price number */
.exp-popup-v2 .ep-price-bar .desktop-price,
.exp-popup-v2 .ep-price-bar .ep-price-value {
  font-family: var(--ep-sharp) !important;
  font-size: 36px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  color: #fff !important;
  letter-spacing: -0.02em !important;
  display: block !important;
}

/* Sub-row: old price + save badge + info icon */
.exp-popup-v2 .ep-price-sub {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  flex-wrap: nowrap !important;
  margin-top: 5px !important;
}

/* Strikethrough original price — yellow like detail page */
.exp-popup-v2 .ep-price-bar .originlAmountFromPriceApi,
.exp-popup-v2 .ep-old-price {
  color: var(--ep-yellow) !important;
  text-decoration: line-through !important;
  font-size: 15px !important;
  opacity: 0.9 !important;
  font-weight: 500 !important;
}

/* Save badge — yellow pill */
.exp-popup-v2 .ep-save-badge {
  background: var(--ep-yellow) !important;
  color: #1a1a1a !important;
  padding: 2px 10px !important;
  border-radius: 999px !important;
  font-weight: 700 !important;
  font-size: 12px !important;
  font-family: var(--ep-sharp) !important;
  white-space: nowrap !important;
  animation: ep-save-attention 2.4s ease-in-out infinite !important;
}

/* Info icon — refined, matching detail page aesthetic */
.exp-popup-v2 .ep-info-icon {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 22px !important;
  height: 22px !important;
  border-radius: 50% !important;
  background: rgba(255,255,255,0.25) !important;
  color: #fff !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  cursor: pointer !important;
  border: 1.5px solid rgba(255,255,255,0.6) !important;
  flex-shrink: 0 !important;
  transition: background 0.15s, transform 0.15s !important;
  font-family: var(--ep-sharp) !important;
  line-height: 1 !important;
  font-style: italic !important;
  padding: 0 !important;
  background-clip: unset !important;
}
.exp-popup-v2 .ep-info-icon:hover {
  background: rgba(255,255,255,0.4) !important;
  transform: scale(1.1) !important;
}

/* Terms & Cancellation links on right */
.exp-popup-v2 .ep-price-links {
  text-align: right !important;
  font-size: 12px !important;
  font-weight: 500 !important;
  flex-shrink: 0 !important;
  position: relative;
  z-index: 1;
}
.exp-popup-v2 .ep-price-links a {
  color: rgba(255,255,255,0.88) !important;
  text-decoration: none !important;
  display: block !important;
  line-height: 2 !important;
  white-space: nowrap;
}
.exp-popup-v2 .ep-price-links a:hover {
  color: #fff !important;
  text-decoration: underline !important;
}

/* ── CHECKOUT BUTTON: yellow like detail page ──────────── */
.exp-popup-v2 .ep-checkout-btn,
.exp-popup-v2 .book-now-btnn .btn {
  background: var(--ep-yellow) !important;
  color: #1a1a1a !important;
  font-weight: 700 !important;
  font-size: 17px !important;
  font-family: var(--ep-sharp) !important;
  border-radius: 14px !important;
  border: none !important;
  width: 100% !important;
  padding: 14px 20px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  box-shadow: 0 4px 0 #d9a000, 0 8px 24px rgba(246,184,0,0.3) !important;
  position: relative !important;
  overflow: hidden !important;
  cursor: pointer !important;
  margin-top: 6px !important;
}

/* ── TIMESLOT: open downward, above price bar ──────────── */
.exp-popup-v2 .ep-booking-card {
  overflow: visible !important;
  z-index: 100 !important;
  position: relative !important;
}
.exp-popup-v2 .ep-form-grid {
  overflow: visible !important;
  position: relative;
}
.exp-popup-v2 #temptimeslot {
  position: relative !important;
  z-index: 9999 !important;
}
.exp-popup-v2 .niceselect {
  position: relative !important;
}
.exp-popup-v2 .niceselect .list,
.exp-popup-v2 #temptimeslot .nice-select .list,
.exp-popup-v2 .nice-select.open .list {
  top: calc(100% + 4px) !important;
  bottom: auto !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 99999 !important;
  position: absolute !important;
  max-height: 200px !important;
  overflow-y: auto !important;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15) !important;
  border-radius: 10px !important;
  border: 1.5px solid #e8dcc6 !important;
  background: #fff !important;
}

/* ── PEOPLE COUNTER: definitive fix ────────────────────── */
.exp-popup-v2 .ep-qty-control,
.exp-popup-v2 .quantity.xs-mb-15px {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  justify-content: space-between !important;
  flex-wrap: nowrap !important;
  height: 44px !important;
  min-height: 44px !important;
  overflow: hidden !important;
  padding: 0 4px !important;
}
.exp-popup-v2 .qty-minus,
.exp-popup-v2 .qty-plus,
.exp-popup-v2 .ep-qty-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-direction: row !important;
  width: 32px !important;
  height: 32px !important;
  min-width: 32px !important;
  max-width: 32px !important;
  flex-shrink: 0 !important;
  align-self: center !important;
  margin: 0 2px !important;
  font-size: 18px !important;
  line-height: 1 !important;
  padding: 0 !important;
}
.exp-popup-v2 .qty-text,
.exp-popup-v2 .ep-qty-val {
  flex: 1 1 0 !important;
  text-align: center !important;
  align-self: center !important;
  height: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  border: none !important;
  background: transparent !important;
  -moz-appearance: textfield !important;
  padding: 0 !important;
  min-width: 0 !important;
}

/* ═══════════════════════════════════════════════════════════════
   v2.3 — DEFINITIVE PEOPLE COUNTER FIX
   Highest specificity — overrides everything including Bootstrap
════════════════════════════════════════════════════════════════ */

/* Container: strict single-row flex, fixed height */
#experienceModal .ep-field .ep-qty-control,
#experienceModal .ep-field .quantity,
.exp-popup-v2 .ep-booking-card .ep-qty-control,
.exp-popup-v2 .ep-booking-card .quantity {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: 100% !important;
  height: 44px !important;
  min-height: 44px !important;
  max-height: 44px !important;
  box-sizing: border-box !important;
  overflow: hidden !important;
  padding: 4px !important;
  border-radius: 10px !important;
  /* background: #fff !important; */
  /* border: 1.5px solid #e8dcc6 !important; */
  gap: 0 !important;
}

/* Minus and plus buttons: fixed square, centered, inline */
#experienceModal .ep-field .ep-qty-control .qty-minus,
#experienceModal .ep-field .ep-qty-control .qty-plus,
#experienceModal .ep-field .ep-qty-control .ep-qty-btn,
#experienceModal .ep-field .quantity .qty-minus,
#experienceModal .ep-field .quantity .qty-plus,
.exp-popup-v2 .ep-booking-card .qty-minus,
.exp-popup-v2 .ep-booking-card .qty-plus {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
  flex-grow: 0 !important;
  width: 32px !important;
  height: 32px !important;
  min-width: 32px !important;
  max-width: 32px !important;
  min-height: 32px !important;
  max-height: 32px !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
  border-radius: 7px !important;
  background: #eef0ff;
  color: #383BF1 !important;
  font-size: 20px !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  cursor: pointer !important;
  vertical-align: middle !important;
  box-sizing: border-box !important;
  float: none !important;
  position: static !important;
}

/* Input: fills remaining space, perfectly centered text */
#experienceModal .ep-field .ep-qty-control .qty-text,
#experienceModal .ep-field .ep-qty-control .ep-qty-val,
#experienceModal .ep-field .quantity .qty-text,
.exp-popup-v2 .ep-booking-card .qty-text,
.exp-popup-v2 .ep-booking-card .ep-qty-val {
  flex: 1 1 auto !important;
  display: block !important;
  width: 0 !important; /* let flex size it */
  min-width: 0 !important;
  height: 32px !important;
  line-height: 32px !important;
  text-align: center !important;
  border: none !important;
  outline: none !important;
  background: transparent !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  color: #1a1a1a !important;
  padding: 0 !important;
  margin: 0 !important;
  -moz-appearance: textfield !important;
  float: none !important;
  position: static !important;
  vertical-align: middle !important;
  box-sizing: border-box !important;
}
#experienceModal .ep-field .ep-qty-control .qty-text::-webkit-inner-spin-button,
#experienceModal .ep-field .ep-qty-control .qty-text::-webkit-outer-spin-button,
#experienceModal .ep-field .quantity .qty-text::-webkit-inner-spin-button,
#experienceModal .ep-field .quantity .qty-text::-webkit-outer-spin-button {
  -webkit-appearance: none !important;
  margin: 0 !important;
}
/* ═══════════════════════════════════════════════════════════════
   POPUP MOBILE RESPONSIVENESS — v3
   Strategy: popup HTML now uses BOTH ep- AND detail-page classes
   (.booking-card, .aw-field, .aw-checkout, .price-bar, .total-amt etc.)
   so awestruck-details-v2.css + awestruck-details-mobile.css apply directly.
   These rules handle POPUP-SPECIFIC layout only.
════════════════════════════════════════════════════════════════ */

/* ── ep-right: ensure aw-v2 scoped styles work ── */
#experienceModal .ep-right.aw-v2 {
  padding: 0 !important;
  background: transparent !important;
  border-radius: 0 !important;
  color: inherit !important;
}

/* ── booking-card inside popup: use same variables as detail page ── */
#experienceModal .booking-card {
  --aw-cream: #fff5e7;
  overflow: visible !important;
}

/* ── ep-layout: two-column desktop, single-column mobile ── */
@media (max-width: 991px) {
  .exp-popup-v2 .ep-layout {
    grid-template-columns: 1fr !important;
    margin: 12px !important;
    padding: 16px !important;
    gap: 16px !important;
  }
  .exp-popup-v2 .ep-hero { height: 280px !important; }
  .exp-popup-v2 .ep-form-grid { grid-template-columns: 1fr 1fr !important; }
}
@media (max-width: 575px) {
  .exp-popup-v2 .ep-layout { margin: 8px !important; padding: 12px !important; }
  .exp-popup-v2 .ep-hero { height: 220px !important; }
  .exp-popup-v2 .ep-form-grid { grid-template-columns: 1fr !important; }
}

/* ── price-bar mobile: fixed bottom (popup-specific, ep- scoped) ──
   awestruck-details-mobile.css handles .aw-v2 .price-bar for the
   detail PAGE. Popup uses #experienceModal .price-bar for safety. */
@media (max-width: 768px) {
  #experienceModal .price-bar {
    position: fixed !important;
    left: 0 !important; right: 0 !important; bottom: 0 !important;
    z-index: 998 !important;
    border-radius: 0 !important; margin: 0 !important;
    padding: 8px 155px 8px 16px !important;
    min-height: 66px !important;
    overflow: visible !important;
  }
  #experienceModal .total-lbl { display: none !important; }
  #experienceModal .links { display: none !important; }
  #experienceModal .total-amt,
  #experienceModal .desktop-price { font-size: 26px !important; }

  /* Checkout button: fixed to right of price bar */
  #experienceModal .ep-checkout-wrap {
    position: fixed !important;
    right: 10px !important; bottom: 8px !important;
    z-index: 999 !important;
    width: auto !important; margin: 0 !important;
  }
  #experienceModal .ep-checkout-btn,
  #experienceModal .aw-checkout {
    min-width: 140px !important; width: auto !important;
    border-radius: 12px !important;
    padding: 10px 16px !important;
    font-size: 15px !important;
    box-shadow: 0 8px 16px rgba(0,0,0,0.28) !important;
  }

  /* Padding bottom for modal body so content not hidden by fixed bar */
  #experienceModal .modal-body { padding-bottom: 80px !important; }
  #experienceModal .not-is-coming-container { padding-bottom: 80px; }

  .exp-popup-v2 .ep-tab-icon{
    display: none !important;
  }
  .exp-popup-v2 .ep-provider-label {
  font-size: 13px;
  }
  .exp-popup-v2 .ep-duration-label{
    font-size: 11px;
  }
    .exp-popup-v2 .ep-book-title,
  .exp-popup-v2 .book-title {
    font-size: 22px !important;
  }
}

/* ── ep-layout: left column scrolls, right column follows ── */
@media (max-width: 991px) {
  .exp-popup-v2 .ep-right.aw-v2 {
    /* On mobile, right column (booking form) comes after left column */
    order: 2;
  }
  .exp-popup-v2 .ep-left { order: 1; }
}

/* ── lp-partner-section: single column on mobile ── */
@media (max-width: 991px) {
  #experienceModal .lp-partner-section { grid-template-columns: 1fr !important; }
  #experienceModal .lp-partner-section form { grid-template-columns: 1fr !important; }
  #experienceModal .lp-partner-section .lp-full { grid-column: span 1 !important; }
  #experienceModal .lp-partner-section button { grid-column: span 1 !important; }
}

/* ── Prevent aw-checkout from affecting detail page on mobile ──
   awestruck-details-mobile.css styles .aw-checkout globally (no .aw-v2 scope).
   The popup checkout inherits these which is actually CORRECT - same styles wanted.
   Only override if popup needs to differ: */
#experienceModal .aw-checkout {
  width: 100%;
}
/* ═══════════════════════════════════════════════════════════════
   POPUP v2 — FINAL FIXES (v5)
   1. Desktop ep-price-bar: blue gradient, clean
   2. Mobile ep-mobile-bar: hidden (detail page style via main CSS)
   3. ep-price-bar: hidden on mobile, show mobile-bar
   4. ep-info-icon: always 22px, SVG only
   5. Contact form desktop: scoped inside popup aw-v2
════════════════════════════════════════════════════════════════ */

/* ── ep-info-icon: locked size, SVG fills it ──────────────── */
#experienceModal .ep-info-icon {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 22px !important;
  height: 22px !important;
  min-width: 22px !important;
  max-width: 22px !important;
  min-height: 22px !important;
  max-height: 22px !important;
  border-radius: 50% !important;
  background: rgba(255,255,255,0.2) !important;
  border: 1.5px solid rgba(255,255,255,0.5) !important;
  color: #fff !important;
  font-size: 0 !important;
  cursor: pointer !important;
  flex-shrink: 0 !important;
  padding: 0 !important;
  margin: 0 !important;
  vertical-align: middle !important;
  overflow: hidden !important;
  line-height: 1 !important;
}
#experienceModal .ep-info-icon svg {
  width: 14px !important;
  height: 14px !important;
  flex-shrink: 0 !important;
  display: block !important;
}
#experienceModal .ep-info-icon:hover {
  background: rgba(255,255,255,0.35) !important;
}

/* ── Desktop: ep-price-bar visible, ep-mobile-bar hidden ─────── */
#experienceModal .ep-price-bar { display: flex !important; }
#experienceModal .ep-checkout-wrap { display: block !important; }
#experienceModal .modal-booking.ep-mobile-bar { display: none !important; }

/* ── Mobile: ep-price-bar hidden, ep-mobile-bar (modal-booking) fixed ── */
@media (max-width: 991px) {
  /* Hide the desktop-style ep-price-bar and checkout on mobile */
  #experienceModal .ep-price-bar { display: none !important; }
  #experienceModal .ep-checkout-wrap { display: none !important; }

  /* Show and style the mobile bar — matches detail page layout exactly */
  #experienceModal .modal-booking.ep-mobile-bar {
    display: block !important;
    position: fixed !important;
    left: 0 !important; right: 0 !important; bottom: 0 !important;
    z-index: 1050 !important;
    background: #2d30d0 !important;
    border-top: 1px solid rgba(0,0,0,0.08) !important;
    padding: 0 !important;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.12) !important;
  }

  /* Price section: left side */
  #experienceModal .price-info-section {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 2px !important;
  }
  /* discount-badge (Save ₹X): above price */
  #experienceModal .discount-badge {
    background: #FFD153 !important;
    color: #000 !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    padding: 2px 10px !important;
    border-radius: 999px !important;
    display: block !important;
    font-family: 'Space Grotesk', sans-serif !important;
    white-space: nowrap !important;
    min-height: 0 !important;
  }
  #experienceModal .discount-badge:empty { display: none !important; }
  /* price-info-top: price + info icon + strikethrough */
  #experienceModal .price-info-top {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
  }
  /* Current price: large, dark */

  /* Info icon */
  #experienceModal .price-info-icon {
    width: 20px !important;
    height: 20px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    cursor: pointer !important;
    flex-shrink: 0 !important;
  }
  #experienceModal .price-info-icon img {
    width: 18px !important;
    height: 18px !important;
    object-fit: contain !important;
  }
  /* Strikethrough old price */
  #experienceModal .old-pricemobile.originlAmountFromPriceApi {
    font-size: 13px !important;
    color: #8a8a8a !important;
    text-decoration: line-through !important;
    line-height: 1 !important;
  }
  /* Right side: Checkout button */
  #experienceModal .book-bbbtn {
    position: fixed !important;
    right: 10px !important;
    bottom: 8px !important;
    left: auto !important;
    width: 50px !important;
    z-index: 999 !important;
    border-radius: 12px !important;
    margin: 0 !important;
    padding: 10px 40px 10px 16px !important;
    font-size: 16px !important;
    font-weight: 800 !important;
    background: #2d30d0 !important;
    color: white !important;
    text-transform: capitalize !important;
    white-space: nowrap !important;
    min-width: 138px !important;
    height: auto !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 6px !important;
    letter-spacing: 0 !important;
    overflow: visible !important;
    box-shadow: -8px 0 0 #fef3c7, -8px 2px 3px rgba(0,0,0,0.12), -16px 0 0 #fde68a, -16px 3px 4px rgba(0,0,0,0.16), -24px 0 0 #fcd34d, -24px 4px 6px rgba(0,0,0,0.20), -3px 0 4px rgba(0,0,0,0.18), 0 8px 16px rgba(0,0,0,0.28), inset 0 -2px 3px rgba(0,0,0,0.12) !important;
    transition: transform 0.15s ease !important;
  }
  #experienceModal .book-bbbtn .price-range {
    font-size: 16px !important;
    font-weight: 800 !important;
    color: #1a1a1a !important;
  }
  #experienceModal .book-bbbtn .check-btn1 {
    width: 24px !important;
    height: 24px !important;
    background: #2BC26A !important;
    border-radius: 50% !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
  }
  #experienceModal .book-bbbtn .check-btn1 svg {
    width: 14px !important;
    height: 14px !important;
    stroke: #fff !important;
  }
  /* Push content up so it's not hidden behind fixed bar */
  #experienceModal .modal-body { padding-bottom: 80px !important; }
  #experienceModal .not-is-coming-container { padding-bottom: 80px !important; }
}

/* ── ep-layout single column on mobile ─────────────────────── */
@media (max-width: 991px) {
  .exp-popup-v2 .ep-layout {
    grid-template-columns: 1fr !important;
    margin: 12px !important; padding: 16px !important; gap: 16px !important;
  }
  .exp-popup-v2 .ep-hero { height: 280px !important; }
}
@media (max-width: 575px) {
  .exp-popup-v2 .ep-layout { margin: 8px !important; padding: 12px !important; }
  .exp-popup-v2 .ep-hero { height: 220px !important; }
  .exp-popup-v2 .ep-form-grid { grid-template-columns: 1fr !important; }
}

/* ── Contact form: desktop layout (inside .aw-v2 reach-section) ─── */
/* These styles ensure the popup reach-section matches detail page on desktop */
@media (min-width: 992px) {
#experienceModal .aw-section--contact.reach-section {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 0 !important;
  }

  #experienceModal .trust-strip--sidebar {
    display: flex !important;
    flex-direction: column !important;
    gap: 16px !important;
    padding: 20px !important;
    background: rgba(255,255,255,0.06) !important;
    border-radius: 16px !important;
    border: 1px solid rgba(255,255,255,0.10) !important;
    animation: none !important;
    transform: none !important;
    mask-image: none !important;
    -webkit-mask-image: none !important;
    overflow: visible !important;
    width: auto !important;
  }
  #experienceModal .trust-strip--sidebar .trust-item {
    flex: 0 0 auto !important;
    border-right: none !important;
    margin-right: 0 !important;
    animation: none !important;
    padding: 0 !important;
  }
  #experienceModal .trust-strip--sidebar .trust-title { color: #fff !important; font-size: 13px !important; font-weight: 700 !important; }
  #experienceModal .trust-strip--sidebar .trust-sub,
  #experienceModal .trust-strip--sidebar .trust-contacts a { color: rgba(255,255,255,0.65) !important; font-size: 11px !important; text-decoration: none !important; }
  #experienceModal .trust-strip--sidebar .trust-contacts a:hover { color: #FFD153 !important; }
}

@media (max-width: 991px) {
  #experienceModal .trust-strip--sidebar { display: none !important; }
  #experienceModal .aw-v2.ep-popup-extra-sections { padding: 0 12px 16px !important; }
}

/* ── lp-partner-section: single col on mobile ─────────────── */
@media (max-width: 991px) {
  #experienceModal .lp-partner-section { grid-template-columns: 1fr !important; }
  #experienceModal .lp-partner-section form { grid-template-columns: 1fr !important; }
  #experienceModal .lp-partner-section .lp-full,
  #experienceModal .lp-partner-section button { grid-column: span 1 !important; }
}

/* ── Dark mode for mobile bar ──────────────────────────────── */
/* [data-bs-theme="dark"] #experienceModal .modal-booking.ep-mobile-bar {
  background: #16161a !important;
  border-top-color: rgba(255,255,255,0.08) !important;
} */
[data-bs-theme="dark"] #experienceModal .modal-booking .price.ep-mobile-price {
  color: #f2f2f2 !important;
}
[data-bs-theme="dark"] #experienceModal .old-pricemobile.originlAmountFromPriceApi {
  color: rgba(255,255,255,0.5) !important;
}
/* ═══════════════════════════════════════════════════════════════
   POPUP v2 — v5 FINAL FIXES (corrected)
════════════════════════════════════════════════════════════════ */

/* ── 1. Mobile hero: show name + share on ALL devices ────────── */
.exp-popup-v2 .ep-hero-bottom .package-name {
  display: block !important;
  color: #fff !important;
  font-family: 'Bricolage Grotesque', system-ui, sans-serif !important;
  font-size: 22px !important;
  font-weight: 800 !important;
  line-height: 1.15 !important;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4) !important;
  flex: 1 !important;
  padding-right: 12px !important;
}
.exp-popup-v2 .ep-hero-bottom .share-toggle,
.exp-popup-v2 .ep-hero-bottom .package-share {
  display: flex !important;
  opacity: 1 !important;
}

/* ── 2. Booking form: MOBILE/TABLET ONLY (≤991px) ──────────────
   Desktop form is untouched — these rules only apply on small screens */
@media (max-width: 991px) {
  /* Field wrapper: cream bg, dark border */
  .exp-popup-v2 .aw-field,
  .exp-popup-v2 .ep-field {
    position: relative !important;
    background: #FAF8F3 !important;
    border-radius: 14px !important;
    padding: 10px 14px !important;
    border: 1.5px solid #0F0D0B !important;
    transition: border-color 200ms ease, box-shadow 200ms ease !important;
  }
  /* Labels: small uppercase */
  .exp-popup-v2 .aw-field label,
  .exp-popup-v2 .ep-field label {
    display: block !important;
    font-family: 'Space Grotesk', system-ui, sans-serif !important;
    font-size: 10px !important;
    font-weight: 600 !important;
    letter-spacing: 0.14em !important;
    text-transform: uppercase !important;
    color: rgba(15,13,11,0.55) !important;
    margin-bottom: 2px !important;
    line-height: 1 !important;
  }
  /* Inputs: transparent, no border */
  .exp-popup-v2 .aw-field input,
  .exp-popup-v2 .aw-field select,
  .exp-popup-v2 .ep-booking-card .quantity,
  .exp-popup-v2 .aw-field textarea,
  .exp-popup-v2 .ep-field input:not([type="hidden"]),
  .exp-popup-v2 .ep-field select {
    background: transparent !important;
    border: 0 !important;
    outline: none !important;
    padding: 0 !important;
    font-family: 'DM Sans', system-ui, sans-serif !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    color: #0F0D0B !important;
    width: 100% !important;
    box-shadow: none !important;
    border-radius: 0 !important;
  }
  .exp-popup-v2 .aw-field:focus-within,
  .exp-popup-v2 .ep-field:focus-within {
    border-color: #383BF1 !important;
    box-shadow: 0 0 0 4px rgba(56,59,241,0.10) !important;
  }
  /* Valid state */
  .exp-popup-v2 .aw-field.is-valid,
  .exp-popup-v2 .ep-field.is-valid {
    border-color: rgba(43,194,106,0.55) !important;

  }
  .exp-popup-v2 .aw-field:has(#bookingNumberOfPeople)::after { display: none !important; }
  .exp-popup-v2 .aw-field.is-valid::after,
  .exp-popup-v2 .ep-field.is-valid::after {
    content: "" !important;
    position: absolute !important;
    top: 50% !important; right: 14px !important;
    width: 22px !important; height: 22px !important;
    transform: translateY(-50%) scale(0) !important;
    background: #2BC26A url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='3.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E") center / 14px 14px no-repeat !important;
    border-radius: 999px !important;
    animation: popup-tick-pop 320ms cubic-bezier(.2,.9,.25,1.2) forwards !important;
    pointer-events: none !important;
  }
  /* Booking card on mobile: full-width single column */
  .exp-popup-v2 .ep-form-grid {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }
  /* Book title: gradient on mobile */
  .exp-popup-v2 .ep-book-title,
  .exp-popup-v2 .book-title {
    font-family: 'Bricolage Grotesque', system-ui, sans-serif !important;
    font-weight: 900 !important;
    font-size: clamp(22px, 8vw, 34px) ;
    letter-spacing: -0.03em !important;
    line-height: 1 !important;
    margin: 0 0 18px !important;
    background: #FFD153 !important;
    -webkit-background-clip: text !important;
    background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    color: transparent !important;
    text-align: left !important;
  }
}

@keyframes popup-tick-pop {
  0%   { transform: translateY(-50%) scale(0) rotate(-30deg); }
  60%  { transform: translateY(-50%) scale(1.18) rotate(8deg); }
  100% { transform: translateY(-50%) scale(1) rotate(0); }
}

/* ── Terms & Cancellation row ─────────────────────────────────── */
.exp-popup-v2 .ep-terms-row {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  margin-top: 12px !important;
  flex-wrap: wrap !important;
}
.exp-popup-v2 .ep-terms-row a {
  color: rgba(15,13,11,0.55) !important;
  text-decoration: none !important;
  font-family: 'Space Grotesk', system-ui, sans-serif !important;
  font-size: 12px !important;
  font-weight: 600 !important;
  letter-spacing: 0.02em !important;
  transition: color 0.15s !important;
}
.exp-popup-v2 .ep-terms-row a:hover { color: #383BF1 !important; }
.exp-popup-v2 .ep-terms-sep {
  color: rgba(15,13,11,0.3) !important;
  font-size: 12px !important;
}

/* ── 3. ep-info-icon: always 20px circle, SVG only ───────────── */
#experienceModal .ep-info-icon {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 20px !important;
  height: 20px !important;
  min-width: 20px !important;
  max-width: 20px !important;
  min-height: 20px !important;
  max-height: 20px !important;
  border-radius: 50% !important;
  background: rgba(255,255,255,0.22) !important;
  border: 1.5px solid rgba(255,255,255,0.55) !important;
  color: #fff !important;
  font-size: 0 !important;
  cursor: pointer !important;
  flex-shrink: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
}
#experienceModal .ep-info-icon svg {
  width: 11px !important;
  height: 11px !important;
  display: block !important;
  flex-shrink: 0 !important;
}
#experienceModal .ep-info-icon:hover { background: rgba(255,255,255,0.35) !important; }

/* ── 4. Mobile bar: info icon RIGHT of discount-badge ────────── */
@media (max-width: 991px) {
  /* Row 1: badge + info icon side by side */
  #experienceModal .ep-bar-top-row {
    display: flex !important;
    align-items: center !important;
    gap: 5px !important;
    margin-bottom: 1px !important;
  }
  #experienceModal .ep-bar-top-row .discount-badge {
    background: #FFD153 !important;
    color: #000 !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    padding: 2px 10px !important;
    border-radius: 999px !important;
    display: inline-block !important;
    font-family: 'Space Grotesk', sans-serif !important;
    white-space: nowrap !important;
  }
  #experienceModal .ep-bar-top-row .discount-badge:empty { display: none !important; }
  #experienceModal .ep-bar-top-row .price-info-icon {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 18px !important;
    height: 18px !important;
    flex-shrink: 0 !important;
    cursor: pointer !important;
  }
  #experienceModal .ep-bar-top-row .price-info-icon img {
    width: 16px !important;
    height: 16px !important;
    object-fit: contain !important;
  }
  /* Row 2: price + strikethrough tight together */
  #experienceModal .price-info-top {
    display: flex !important;
    align-items: baseline !important;
    gap: 5px !important;
    flex-wrap: nowrap !important;
  }
  #experienceModal .modal-booking .price.ep-mobile-price {
    font-family: 'Space Grotesk', sans-serif !important;
    font-size: 24px !important;
    font-weight: 800 !important;
    color: white !important;
    line-height: 1 !important;
    white-space: nowrap !important;
  }
  #experienceModal .old-pricemobile.originlAmountFromPriceApi {
    font-size: 13px !important;
    color: #8a8a8a !important;
    text-decoration: line-through !important;
    line-height: 1 !important;
    white-space: nowrap !important;
    margin-left: 0 !important;
  }
}

/* ── 5. Trust strip: seamless marquee ────────────────────────── */
/* Wrapper: overflow hidden + edge fade */
.exp-popup-v2 .ep-trust-wrap {
  overflow: hidden !important;
  width: 100% !important;
  /* edge fade */
  mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%) !important;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 5%, #000 95%, transparent 100%) !important;
}

/* Strip: width = content (2 sets), animate translateX(-50%) = exactly 1 set */
.exp-popup-v2 .ep-trust-strip {
  display: flex !important;
  flex-wrap: nowrap !important;
  width: max-content !important;
  align-items: center !important;
  gap: 32px !important;
  padding: 16px 0 !important;
  
}
.exp-popup-v2 .ep-trust-strip:hover { animation-play-state: paused !important; }

@keyframes ep-trust-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.exp-popup-v2 .ep-trust-item {
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  flex: 0 0 auto !important;
  white-space: nowrap !important;
}
.exp-popup-v2 .ep-trust-icon {
  width: 36px !important;
  height: 36px !important;
  flex-shrink: 0 !important;
}
.exp-popup-v2 .ep-trust-title {
  font-size: 13px !important;
  font-weight: 700 !important;
  color: var(--ep-ink) !important;
  font-family: var(--ep-sharp) !important;
  white-space: nowrap !important;
}
.exp-popup-v2 .ep-trust-sub {
  font-size: 11px !important;
  color: var(--ep-gray) !important;
  white-space: nowrap !important;
}
.exp-popup-v2 .ep-trust-sub a { color: inherit !important; text-decoration: none !important; }

/* ── 6. Ad sections: desktop/mobile split ───────────────────── */
@media (min-width: 992px) {
  #experienceModal .aw-section--desktop-ad { display: block !important; }
  #experienceModal .aw-section--mobile-ad { display: none !important; }
  #experienceModal .awd-app-cta { display: block !important; }
}
@media (max-width: 991px) {
  #experienceModal .aw-section--desktop-ad { display: none !important; }
  #experienceModal .aw-section--mobile-ad { display: block !important; }
}

/* ── 7. Contact form + Trust badges: fix colors/overflow ──────── */
#experienceModal .aw-v2 .reach-section .contact-form h2 { color: #fff !important; }
#experienceModal .aw-v2 .reach-section .contact-form p { color: rgba(255,255,255,0.65) !important; }
#experienceModal .aw-v2 .reach-section input,
#experienceModal .aw-v2 .reach-section textarea,
#experienceModal .aw-v2 .reach-section select {
  color: rgba(255,255,255,0.9) !important;
  background: rgba(255,255,255,0.06) !important;
  border: 1px solid rgba(255,255,255,0.15) !important;
  border-radius: 10px !important;
  padding: 12px 14px !important;
  font-size: 14px !important;
  width: 100% !important;
  box-sizing: border-box !important;
}
#experienceModal .aw-v2 .reach-section input::placeholder,
#experienceModal .aw-v2 .reach-section textarea::placeholder { color: rgba(255,255,255,0.4) !important; }
#experienceModal .aw-v2 .reach-section input:focus,
#experienceModal .aw-v2 .reach-section textarea:focus { border-color: #FFD153 !important; outline: none !important; }

/* Trust badge cards: fix white text on white, centering, overflow */
#experienceModal .trust-strip--sidebar {
  display: flex !important;
  flex-direction: column !important;
  gap: 16px !important;
  padding: 20px !important;
  background: rgba(255,255,255,0.06) !important;
  border-radius: 16px !important;
  border: 1px solid rgba(255,255,255,0.10) !important;
  overflow: hidden !important;
  animation: none !important;
  transform: none !important;
  mask-image: none !important;
  -webkit-mask-image: none !important;
  width: auto !important;
}
#experienceModal .trust-strip--sidebar .trust-item {
  display: flex !important;
  align-items: flex-start !important;
  gap: 12px !important;
  flex: 0 0 auto !important;
  border-right: none !important;
  margin: 0 !important;
  padding: 0 !important;
  animation: none !important;
  overflow: hidden !important;
  width: 100% !important;
}
#experienceModal .trust-strip--sidebar .trust-icon {
  width: 36px !important;
  height: 36px !important;
  flex-shrink: 0 !important;
  display: block !important;
}
#experienceModal .trust-strip--sidebar .trust-text {
  display: flex !important;
  flex-direction: column !important;
  gap: 2px !important;
  min-width: 0 !important;
  overflow: hidden !important;
}
#experienceModal .trust-strip--sidebar .trust-title {
  color: #fff !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  font-family: 'Space Grotesk', sans-serif !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}
#experienceModal .trust-strip--sidebar .trust-sub {
  color: rgba(255,255,255,0.65) !important;
  font-size: 11px !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  white-space: nowrap !important;
}
#experienceModal .trust-strip--sidebar .trust-contacts a {
  color: rgba(255,255,255,0.65) !important;
  text-decoration: none !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  display: block !important;
  white-space: nowrap !important;
}
#experienceModal .trust-strip--sidebar .trust-contacts a:hover { color: #FFD153 !important; }
@media (max-width: 991px) {
  #experienceModal .trust-strip--sidebar { display: none !important; }
}

/* ── 8. Mobile layout ──────────────────────────────────────────── */
@media (max-width: 991px) {
  .exp-popup-v2 .ep-layout {
    grid-template-columns: 1fr !important;
    margin: 12px !important; padding: 16px !important; gap: 16px !important;
  }
  .exp-popup-v2 .ep-hero { height: 280px !important; }
  .exp-popup-v2 .ep-booking-card,
  #experienceModal .booking-card {
    background: #FFF5E7 !important;
    border-radius: 20px !important;
    padding: 22px !important;
    border: 1px solid rgba(15,13,11,0.06) !important;
    overflow: visible !important;
  }
}
@media (max-width: 575px) {
  .exp-popup-v2 .ep-layout { margin: 8px !important; padding: 12px !important; }
  .exp-popup-v2 .ep-hero { height: 220px !important; }
}

/* ── 9. Mobile bar: layout + Checkout button ──────────────────── */
@media (max-width: 991px) {
  #experienceModal .ep-price-bar { display: none !important; }
  #experienceModal .ep-checkout-wrap { display: none !important; }
  #experienceModal .modal-booking.ep-mobile-bar {
    display: block !important;
    position: fixed !important;
    left: 0 !important; right: 0 !important; bottom: 0 !important;
    z-index: 1050 !important;
    background: #fff !important;
    border-top: 1px solid rgba(0,0,0,0.08) !important;
    padding: 0 !important;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.12) !important;
  }
  #experienceModal .modal-booking.ep-mobile-bar .btn {
    padding: 8px 14px !important;
    border-radius: 0 !important;
    background: #2d30d0 !important;
    border: none !important;
    width: 100% !important;
  }
  #experienceModal .price-info-section {
    display: flex !important;
    flex-direction: column !important;
    gap: 0 !important;
  }
  #experienceModal .book-bbbtn {
        position: fixed !important;
        right: 10px !important;
        bottom: 8px !important;
        left: auto !important;
        width: 50px !important;
        z-index: 999 !important;
        font-size: 16px !important;
        font-weight: 800 !important;
        color: rgb(0, 0, 0) !important;
        text-transform: capitalize !important;
        min-width: 138px !important;
        height: auto !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: flex-start !important;
        letter-spacing: 0px !important;
        box-shadow: rgb(254, 243, 199) -8px 0px 0px, rgba(0, 0, 0, 0.12) -8px 2px 3px, rgb(253, 230, 138) -16px 0px 0px, rgba(0, 0, 0, 0.16) -16px 3px 4px, rgb(252, 211, 77) -24px 0px 0px, rgba(0, 0, 0, 0.2) -24px 4px 6px, rgba(0, 0, 0, 0.18) -3px 0px 4px, rgba(0, 0, 0, 0.28) 0px 8px 16px, rgba(0, 0, 0, 0.12) 0px -2px 3px inset !important;
        border-radius: 12px !important;
        margin: 0px !important;
        padding: 10px 40px 10px 16px !important;
        background: rgb(255, 255, 255) !important;
        white-space: nowrap !important;
        gap: 6px !important;
        overflow: visible !important;
        transition: transform 0.15s !important;
  }
  #experienceModal .book-bbbtn .price-range { font-size: 16px !important; font-weight: 800 !important; color: #1a1a1a !important; }
  #experienceModal .book-bbbtn .check-btn1 {
    width: 24px !important; height: 24px !important;
    background: #2BC26A !important; border-radius: 50% !important;
    display: flex !important; align-items: center !important; justify-content: center !important; flex-shrink: 0 !important;
  }
  #experienceModal .book-bbbtn .check-btn1 svg { width: 14px !important; height: 14px !important; stroke: #fff !important; }
  #experienceModal .modal-body { padding-bottom: 80px !important; }
  #experienceModal .not-is-coming-container { padding-bottom: 80px !important; }
}
/* Desktop: show ep-price-bar */
@media (min-width: 992px) {
  #experienceModal .ep-price-bar { display: flex !important; }
  #experienceModal .ep-checkout-wrap { display: block !important; }
  #experienceModal .modal-booking.ep-mobile-bar { display: none !important; }
  .exp-popup-v2 .ep-terms-row{
    display:none !important;
  }
  #experienceModal .ep-trending-badge .ep-fire-img {
  height: 32px !important;
  width: auto !important;
}
}

/* ── partner section mobile ─────────────────────────────────── */
@media (max-width: 991px) {
  #experienceModal .lp-partner-section { grid-template-columns: 1fr !important; }
  #experienceModal .lp-partner-section form { grid-template-columns: 1fr !important; }
  #experienceModal .lp-partner-section .lp-full,
  #experienceModal .lp-partner-section button { grid-column: span 1 !important; }
}

  #experienceModal .ep-trending-badge .ep-fire-img {
  height: 32px !important;
  width: auto !important;
}

#experienceModal .highlight-badge-text img {
  height: 14px !important;
  width: auto !important;
}


/* ------------ */
.exp-popup-v2 .share-icons{
  background: none !important;
}
.package-share .share-btn{
  background-color: var(--ep-yellow) !important;
}

/* ===== */

#experienceModal .ep-field .quantity,
.exp-popup-v2 .ep-booking-card .ep-qty-control,
.exp-popup-v2 .ep-booking-card .quantity
 { background: #fff !important;
}



#bookingTimeSlot,
.ep-select,
.nice-select,
.nice-select .current {
    font-size: 15px !important; /* same as other inputs */
}
#bookingDate,
#bookingName,
#bookingEmail,
#bookingMobile,
.ep-field input,
.ep-field select {
    font-size: 15px !important;
}

#experienceModal .nice-select,
#experienceModal .ep-select,
#experienceModal #bookingTimeSlot {
    border: 1.5px solid #e8dcc6 !important;
    border-radius: 10px !important; /* baki inputs cha radius je asel te */
    background: #fff !important;
    /* min-height: 48px !important; */
}

#experienceModal .nice-select .current {
    font-size: 15px !important;
    color: #444 !important;
}

/* New css*/
@media (min-width: 991px) {
.highlight-badge:not(.green-badge){
  height: 100px !important;
  width: auto !important;
}
}

#experienceModal .ep-field .quantity,
.exp-popup-v2 .ep-booking-card .ep-qty-control,
.exp-popup-v2 .ep-booking-card .quantity
 { background: #fff !important;
}



#bookingTimeSlot,
.ep-select,
.nice-select,
.nice-select .current {
    font-size: 15px !important; /* same as other inputs */
}
#bookingDate,
#bookingName,
#bookingEmail,
#bookingMobile,
.ep-field input,
.ep-field select {
    font-size: 15px !important;
}

#experienceModal .nice-select,
#experienceModal .ep-select,
#experienceModal #bookingTimeSlot {
    border: 1.5px solid #e8dcc6 !important;
    border-radius: 10px !important; /* baki inputs cha radius je asel te */
    background: #fff !important;
    /* min-height: 48px !important; */
}

#experienceModal .nice-select .current {
    font-size: 15px !important;
    color: #444 !important;
}

.msgContainer{
  margin-top: 12px !important;
}

.highlight-badge-container:has(.green-badge) .highlight-badge-img > img:nth-child(1) {
    margin-right: 2.5% !important;
}
.highlight-badge-container:has(.green-badge) .highlight-badge-img > img:nth-child(1) {
    width: 7.886vw;
    -o-object-fit: contain;
    object-fit: contain;
}


/* Partner form autofill fix */
.lp-partner-section input:-webkit-autofill,
.lp-partner-section input:-webkit-autofill:hover,
.lp-partner-section input:-webkit-autofill:focus,
.lp-partner-section textarea:-webkit-autofill {
  -webkit-text-fill-color: #ffffff !important;
  -webkit-box-shadow: 0 0 0px 1000px var(--lp-primary) inset !important;
  transition: background-color 5000s ease-in-out 0s;
  caret-color: #ffffff !important;
}

/* Popup desktop: keep info icon beside the real white price, without extra circle */
@media (min-width: 992px) {
  #experienceModal .ep-price-main {
    display: grid !important;
    grid-template-columns: max-content auto !important;
    align-items: center !important;
    column-gap: 6px !important;
  }

  #experienceModal .ep-price-main .ep-price-label,
  #experienceModal .ep-price-main .ep-price-sub {
    grid-column: 1 / -1 !important;
  }

  #experienceModal .ep-price-main .ep-info-icon {
    width: 18px !important;
    height: 18px !important;
    min-width: 18px !important;
    max-width: 18px !important;
    min-height: 18px !important;
    max-height: 18px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: visible !important;
  }

  #experienceModal .ep-price-main .ep-info-icon:hover {
    background: transparent !important;
    transform: scale(1.08) !important;
  }

  #experienceModal .ep-price-main .ep-info-icon img {
    width: 18px !important;
    height: 18px !important;
    display: block !important;
    filter: brightness(0) invert(1) !important;
  }
}

@media (max-width: 991px) {
  #experienceModal .ep-bar-top-row .price-info-icon img {
    filter: brightness(0) invert(1) !important;
  }

  #experienceModal .nice-select,
#experienceModal .ep-select,
#experienceModal #bookingTimeSlot {
    border: none !important;
    border-radius: 10px !important; /* baki inputs cha radius je asel te */
    background: none !important;
    /* min-height: 48px !important; */
}
}
@media (min-width:991px ) and (max-width: 1200px){
.highlight-badge-img:not(.green-badge){
  height: 100px !important;
}
.portfolio-box{
  width: 470px !important;
}
}

@media (max-width: 991px) {
.captcha{
    padding: 5px 10px !important;
    margin-top: 5px !important;
}

#experienceModal .highlight-badge-container .highlight-badge-img > img{
  width:95px !important;
  height:84px !important;
}
}

[data-bs-theme="dark"].exp-popup-v2 .ep-duration-label{
color:black !important;

}

.dropdown-item{
  color:black !important;
}

/* uncomment to show the share on the similar and discover more section*/
/* #similar-experiences-container .share-wrap,
#popup-similar-container .share-wrap,
#discover-more-container .share-wrap,
#popup-discover-more-container .share-wrap,
#popup-discover-container .share-wrap {
  display: none !important;
}
*/

#popupShareToggle {
  display: none !important;
} 


/* Keep popup hero share clickable above Swiper image layers. */
#experienceModal .ep-hero-bottom {
  z-index: 1000 !important;
  pointer-events: auto !important;
}

#experienceModal #popupShareToggle {
  position: relative !important;
  z-index: 1001 !important;
  pointer-events: auto !important;
}

#experienceModal #popupShareToggle .share-icons,
#experienceModal #popupShareToggle .share-btn {
  pointer-events: auto !important;
}

#experienceModal #popupShareToggle.open .share-icons {
  display: flex !important;
}

[data-bs-theme="dark"] .exp-popup-v2 .ep-terms-row a{
  color:white !important;
}

