/* ============================================================
   KahwinHub — Customer Venue Marketplace | customer.css
   ============================================================ */

:root {
  --bg: #F4FCFB;
  --teal-soft: #E0F7F5;
  --teal-light: #B2EBE8;
  --teal-mid: #14B8A6;
  --teal-deep: #0D9488;
  --teal-dark: #0F5F58;
  --sidebar-bg: #042F2E;
  --pink-soft: #FFF0F6;
  --pink-light: #FBD0E7;
  --pink-mid: #F472B6;
  --pink-deep: #DB2777;
  --white: #FFFFFF;
  --text: #0A1F1E;
  --text-mid: #2C4A47;
  --muted: #7A9E9B;
  --card-border: #E0F5F3;
  --shadow-sm: 0 2px 8px rgba(20,184,166,.07);
  --shadow-md: 0 8px 24px rgba(4,47,46,.09);
  --shadow-lg: 0 16px 40px rgba(4,47,46,.13);
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --font-head: 'Plus Jakarta Sans', system-ui, sans-serif;
  --font-body: 'Plus Jakarta Sans', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
body {
  font-family: var(--font-body);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

/* ─── 0. TOP VIP SPONSORED ADS SLIDESHOW CAROUSEL ─── */
.sponsored-hero-section {
  background: #021716;
  border-bottom: 2px solid rgba(245,158,11,.4);
  position: relative;
  overflow: hidden;
}
.sponsored-slideshow-wrapper {
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  height: 180px;
}
.sponsored-slides-track {
  display: flex;
  width: 100%;
  height: 100%;
  transition: transform .5s cubic-bezier(0.4, 0, 0.2, 1);
}
.sponsored-slide-item {
  min-width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 48px;
  position: relative;
  text-decoration: none;
  overflow: hidden;
  box-sizing: border-box;
}

.ss-bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.65);
  z-index: 1;
}
.ss-overlay-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(2,23,22,0.95) 0%, rgba(2,23,22,0.65) 50%, rgba(2,23,22,0.3) 100%);
  z-index: 2;
}

.ss-content-left {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  gap: 6px;
  max-width: 65%;
}
.ss-badge-row { display: flex; align-items: center; gap: 8px; }
.sac-badge {
  display: inline-block;
  background: rgba(245,158,11,.9);
  color: #042F2E;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .5px;
  padding: 3px 10px;
  border-radius: 20px;
}
.sac-sponsor-tag { font-size: 11px; color: #E0FAFA; opacity: .85; }

.sac-title {
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
  color: #FFFFFF;
  letter-spacing: -0.3px;
  text-shadow: 0 2px 8px rgba(0,0,0,.4);
}
.sac-sub { font-size: 13px; color: #B2EBE8; font-weight: 500; }

.ss-content-right {
  position: relative;
  z-index: 3;
}
.sac-btn-action {
  padding: 10px 22px;
  background: linear-gradient(135deg, #F59E0B, #D97706);
  color: #042F2E;
  font-size: 12.5px;
  font-weight: 800;
  border-radius: 50px;
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(245,158,11,.4);
  transition: all .2s;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.sponsored-slide-item:hover .sac-btn-action { transform: scale(1.05); background: white; color: #042F2E; }

/* ARROWS & DOTS */
.ssc-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(0,0,0,.5);
  backdrop-filter: blur(4px);
  color: white;
  border: 1px solid rgba(255,255,255,.2);
  display: grid;
  place-items: center;
  font-size: 24px;
  cursor: pointer;
  z-index: 10;
  transition: all .2s;
}
.ssc-arrow:hover { background: var(--teal-mid); border-color: var(--teal-mid); }
.ssc-arrow.prev { left: 14px; }
.ssc-arrow.next { right: 14px; }

.sponsored-dots-row {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
  z-index: 10;
}
.s-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.4);
  cursor: pointer;
  transition: all .25s ease;
}
.s-dot.active { width: 24px; border-radius: 10px; background: #F59E0B; }

@media (max-width: 768px) {
  .sponsored-slideshow-wrapper { height: 160px; }
  .sponsored-slide-item { padding: 14px 20px; }
  .sac-title { font-size: 17px; }
  .sac-sub { display: none; }
  .ssc-arrow { display: none; }
}

/* ─── 1. NAVBAR STYLES ─── */
.cust-navbar {
  position: sticky;
  top: 0;
  background: rgba(255,255,255,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--card-border);
  z-index: 100;
}
.cust-nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 12px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cust-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; }
.logo-icon-svg {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--teal-soft);
  display: grid;
  place-items: center;
  border: 1px solid var(--teal-light);
}
.cust-brand { display: flex; flex-direction: column; }
.cb-name {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--sidebar-bg);
  line-height: 1;
}
.cb-tagline {
  font-size: 8.5px;
  font-weight: 800;
  letter-spacing: 1px;
  color: var(--teal-deep);
}

.cust-nav-links { display: flex; align-items: center; gap: 14px; }
.cn-link {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-mid);
  text-decoration: none;
  padding: 8px 14px;
  border-radius: 50px;
  transition: all .2s;
  position: relative;
}
.cn-link:hover { background: var(--teal-soft); color: var(--teal-dark); }
.cn-link.active { color: var(--teal-deep); font-weight: 700; }
.compare-counter-badge {
  background: var(--pink-deep);
  color: white;
  font-size: 10px;
  font-weight: 800;
  padding: 2px 7px;
  border-radius: 20px;
  margin-left: 4px;
}

.btn-vendor-portal {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--sidebar-bg);
  color: #E0FAFA;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 12.5px;
  font-weight: 700;
  text-decoration: none;
  transition: all .2s;
  box-shadow: 0 2px 8px rgba(4,47,46,.2);
}
.btn-vendor-portal:hover { transform: translateY(-1px); background: var(--teal-dark); }

/* ─── HERO SEARCH SECTION (AGODA STYLE) ─── */
.hero-search-section {
  position: relative;
  background: linear-gradient(135deg, #042F2E 0%, #0D9488 60%, #F472B6 100%);
  color: white;
  padding: 60px 24px 80px;
  text-align: center;
}
.hero-content-wrap {
  max-width: 1000px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
.hero-badge {
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.3);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .8px;
  padding: 6px 16px;
  border-radius: 50px;
  backdrop-filter: blur(8px);
}
.hero-heading {
  font-family: var(--font-body);
  font-size: 30px;
  font-weight: 800;
  line-height: 1.25;
  color: white;
  letter-spacing: -0.4px;
  text-shadow: 0 2px 10px rgba(0,0,0,.2);
}
.hero-subtext {
  font-size: 15px;
  color: rgba(255,255,255,.85);
  max-width: 650px;
}

/* FLOATING AGODA SEARCH BOX (DESKTOP & LUXURY MOBILE) */
.agoda-search-box {
  background: white;
  border-radius: 60px;
  padding: 8px 10px 8px 24px;
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1060px;
  box-shadow: 0 16px 40px rgba(0,0,0,.25), 0 2px 6px rgba(20,184,166,.1);
  margin-top: 24px;
  gap: 12px;
  text-align: left;
  border: 1px solid rgba(255,255,255,.3);
  box-sizing: border-box;
}

/* DESKTOP: Sebaris penuh mendatar (Horizontal Flex) */
.agoda-mobile-grid {
  display: flex;
  align-items: center;
  flex: 1;
  gap: 8px;
  width: auto;
}

.asb-col {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1;
  min-width: 140px;
  padding: 6px 12px;
  border-radius: 14px;
  background: transparent;
  border: none;
  transition: background .2s;
  position: relative;
}
.asb-col:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -4px;
  top: 20%;
  height: 60%;
  width: 1px;
  background: var(--card-border);
}
.asb-col:hover, .asb-col:focus-within {
  background: var(--teal-soft);
}
.asb-label {
  font-size: 9.5px;
  font-weight: 800;
  color: var(--teal-deep);
  letter-spacing: .6px;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}
.asb-input, .asb-select {
  border: none;
  background: transparent;
  outline: none;
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text);
  width: 100%;
  cursor: pointer;
  padding: 2px 0;
}
.asb-input::placeholder { color: var(--muted); font-weight: 500; font-size: 13px; }

.asb-btn-search {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--teal-mid), var(--teal-deep));
  color: white;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  padding: 14px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(20,184,166,.4);
  transition: all .2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.asb-btn-search:hover { transform: scale(1.03); box-shadow: 0 6px 20px rgba(20,184,166,.55); }

/* ─── MOBILE BOTTOM NAV (CUSTOMER VIEW) ─── */
.customer-bottom-nav {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 64px;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--card-border);
  box-shadow: 0 -4px 20px rgba(0,0,0,.06);
  z-index: 120;
  justify-content: space-around;
  align-items: center;
  padding: 0 8px;
}
.cbn-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  color: var(--muted);
  text-decoration: none;
  font-size: 11px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 12px;
  transition: all .2s;
  position: relative;
}
.cbn-item.active { color: var(--teal-deep); font-weight: 700; }
.cbn-icon { font-size: 20px; line-height: 1; }
.cbn-badge {
  position: absolute;
  top: 2px;
  right: 10px;
  background: var(--pink-deep);
  color: white;
  font-size: 9px;
  font-weight: 800;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

/* ─── CATEGORY TABS SECTION (HOTEL AGODA STYLE) ─── */
.category-tabs-section {
  background: white;
  border-bottom: 1px solid var(--card-border);
  padding: 14px 24px;
}
.category-tabs-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
}
.cat-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 50px;
  background: var(--bg);
  border: 1.5px solid var(--card-border);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-mid);
  cursor: pointer;
  transition: all .2s;
  white-space: nowrap;
}
.cat-pill:hover { background: var(--teal-soft); border-color: var(--teal-light); color: var(--teal-dark); }
.cat-pill.active {
  background: var(--teal-mid);
  color: white;
  border-color: var(--teal-mid);
  box-shadow: 0 2px 8px rgba(20,184,166,.3);
}

/* ─── LISTINGS SECTION ─── */
.listings-section {
  max-width: 1280px;
  margin: 0 auto;
  padding: 36px 24px 120px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.listings-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 14px;
}
.listings-title {
  font-family: var(--font-body);
  font-size: 24px;
  font-weight: 800;
  color: var(--sidebar-bg);
  line-height: 1.15;
  letter-spacing: -0.4px;
  margin-bottom: 4px;
}
.listings-subtitle { font-size: 13px; color: var(--muted); }
.listings-sort { display: flex; align-items: center; gap: 8px; font-size: 12.5px; color: var(--muted); }
.sort-select {
  padding: 7px 14px;
  border-radius: 50px;
  border: 1px solid var(--card-border);
  background: white;
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
}

/* ─── VENUE CARDS GRID (2 COLUMNS) ─── */
.customer-venue-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.c-venue-card {
  background: white;
  border: 1px solid var(--card-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: all .25s;
}
.c-venue-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

.cv-photo-wrapper {
  height: 220px;
  position: relative;
  overflow: hidden;
}
.cv-photo-img {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cv-badge-live {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--pink-deep);
  color: white;
  font-size: 10.5px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(219,39,119,.4);
}
.cv-badge-live.pink  { background: #EC4899; }
.cv-badge-live.gold  { background: #D97706; }
.cv-badge-live.green { background: #059669; }

/* ⭐ BOOSTED / MONETIZED HALL BADGE & CARD HIGHLIGHT */
.cv-badge-boosted {
  background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%) !important;
  color: #FFFFFF !important;
  font-weight: 800 !important;
  box-shadow: 0 3px 12px rgba(217, 119, 6, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.4);
  animation: pulseGoldBadge 2s infinite ease-in-out;
}

@keyframes pulseGoldBadge {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.c-venue-card[data-boosted="true"] {
  border: 2px solid #FBBF24;
  box-shadow: 0 6px 24px rgba(245, 158, 11, 0.15);
}

.c-venue-card[data-boosted="true"]:hover {
  box-shadow: 0 12px 32px rgba(245, 158, 11, 0.25);
  border-color: #F59E0B;
}

.btn-3d-tour {
  position: absolute;
  bottom: 14px;
  right: 14px;
  background: rgba(0,0,0,.7);
  backdrop-filter: blur(6px);
  color: white;
  border: 1px solid rgba(255,255,255,.3);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 11.5px;
  font-weight: 700;
  cursor: pointer;
  transition: all .2s;
}
.btn-3d-tour:hover { background: var(--teal-mid); border-color: var(--teal-mid); }
.cv-photo-center-icon { font-size: 64px; opacity: .4; filter: drop-shadow(0 4px 12px rgba(0,0,0,.3)); }

.compare-checkbox-label {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(4px);
  padding: 5px 12px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 700;
  color: var(--sidebar-bg);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
  transition: all .2s;
}
.compare-checkbox-label:hover { background: white; transform: scale(1.05); }
.compare-chk { accent-color: var(--teal-mid); width: 15px; height: 15px; cursor: pointer; }

/* CARD CONTENT */
.cv-content {
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex: 1;
}
.cv-header { display: flex; justify-content: space-between; align-items: flex-start; gap: 10px; }
.cv-category-tag { font-size: 10px; font-weight: 800; letter-spacing: .8px; color: var(--teal-deep); }
.cv-name {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--sidebar-bg);
  line-height: 1.1;
  margin: 2px 0 3px;
}
.cv-location { font-size: 12px; color: var(--muted); }
.cv-capacity-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  padding: 6px 10px;
  font-size: 11px;
  font-weight: 500;
  color: var(--muted);
  margin-top: 4px;
}
.cv-status-badge.available {
  color: #16A34A;
  font-weight: 600;
  font-size: 10.5px;
}
.cv-rating-pill {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  background: var(--bg);
  border: 1px solid var(--card-border);
  padding: 4px 10px;
  border-radius: 8px;
  flex-shrink: 0;
}
.cv-rating-pill span { font-size: 13.5px; font-weight: 800; color: var(--sidebar-bg); }
.cv-rating-pill small { font-size: 9.5px; color: var(--muted); }

.cv-facilities-list { display: flex; flex-wrap: wrap; gap: 6px; }
.cv-faci-chip {
  font-size: 11px;
  font-weight: 600;
  background: var(--bg);
  color: var(--text-mid);
  padding: 3px 9px;
  border-radius: 6px;
  border: 1px solid var(--card-border);
}
.cv-pax-row {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-mid);
  background: var(--teal-soft);
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--teal-light);
}
.font-bold { font-weight: 700; }
.text-green { color: #15803D; }

.cv-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 10px;
  border-top: 1px solid var(--card-border);
  margin-top: auto;
  gap: 12px;
  flex-wrap: wrap;
}
.cv-price-block { display: flex; flex-direction: column; gap: 2px; }
.cv-old-price-row { display: flex; align-items: center; gap: 6px; }
.cv-old-price { font-size: 11.5px; color: var(--muted); text-decoration: line-through; }
.cv-save-pill {
  font-size: 9.5px;
  font-weight: 800;
  padding: 2px 6px;
  border-radius: 4px;
  background: #FCE7F3;
  color: var(--pink-deep);
  border: 1px solid #FBCFE8;
}
.cv-save-pill.gold {
  background: #FEF3C7;
  color: #B45309;
  border-color: #FDE68A;
}
.cv-price-now { display: flex; align-items: baseline; gap: 4px; }
.cpn-currency { font-size: 13px; font-weight: 700; color: var(--teal-deep); }
.cpn-amount { font-family: var(--font-head); font-size: 26px; font-weight: 700; color: var(--teal-deep); line-height: 1; }
.cpn-term { font-size: 11px; color: var(--muted); }

.cv-actions-row { display: flex; gap: 6px; align-items: center; }
.btn-wa-inquire {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #25D366;
  color: white;
  display: grid;
  place-items: center;
  font-size: 18px;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(37,211,102,.3);
  transition: transform .2s;
}
.btn-wa-inquire:hover { transform: scale(1.08); }
.btn-book-now {
  padding: 10px 18px;
  background: linear-gradient(135deg, var(--teal-mid), var(--teal-deep));
  color: white;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(20,184,166,.35);
  transition: all .2s;
  white-space: nowrap;
}
.btn-book-now:hover { transform: translateY(-1px); box-shadow: 0 5px 16px rgba(20,184,166,.5); }

/* ─── FLOATING COMPARISON BAR (3-5 VENUES) ─── */
.floating-compare-bar {
  display: none;
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 48px);
  max-width: 1000px;
  background: #042F2E;
  color: white;
  border: 1.5px solid var(--teal-mid);
  border-radius: 60px;
  padding: 10px 16px 10px 24px;
  box-shadow: 0 16px 40px rgba(0,0,0,.35);
  z-index: 150;
  animation: slideUpBar .3s ease;
}
@keyframes slideUpBar {
  from { opacity: 0; transform: translate(-50%, 20px); }
  to   { opacity: 1; transform: translate(-50%, 0); }
}
.floating-compare-bar.show { display: block; }
.fcb-container { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.fcb-left { display: flex; align-items: center; gap: 10px; }
.fcb-icon { font-size: 24px; }
.fcb-left strong { font-size: 14px; color: #E0FAFA; display: block; }
.fcb-left p { font-size: 11px; color: var(--muted); margin: 0; }

.fcb-chips-list { display: flex; gap: 6px; flex-wrap: wrap; flex: 1; }
.fcb-chip {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(20,184,166,.2);
  border: 1px solid var(--teal-light);
  color: #E0FAFA;
  font-size: 11.5px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
}
.fcb-chip-del { background: transparent; border: none; color: white; cursor: pointer; font-size: 12px; }

.fcb-actions { display: flex; gap: 8px; align-items: center; }
.fcb-btn-clear { background: transparent; border: none; color: var(--muted); font-size: 12px; font-weight: 600; cursor: pointer; padding: 6px 10px; }
.fcb-btn-clear:hover { color: white; text-decoration: underline; }
.fcb-btn-compare {
  background: linear-gradient(135deg, var(--teal-mid), var(--pink-mid));
  color: white;
  font-family: var(--font-body);
  font-size: 13.5px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  box-shadow: 0 3px 12px rgba(244,114,182,.4);
  transition: all .2s;
}
.fcb-btn-compare:hover { transform: scale(1.04); }

/* ─── SIDE-BY-SIDE COMPARE TABLE MODAL ─── */
.extra-large-modal { width: 1000px; max-width: 95vw; }
.compare-table-responsive { overflow-x: auto; max-height: 75vh; }
.compare-table { width: 100%; border-collapse: collapse; text-align: left; }
.compare-table th, .compare-table td { padding: 14px 18px; border-bottom: 1px solid var(--card-border); font-size: 13px; }
.compare-table th:first-child, .compare-table td:first-child {
  position: sticky;
  left: 0;
  background: white;
  font-weight: 700;
  color: var(--sidebar-bg);
  z-index: 2;
  border-right: 1.5px solid var(--card-border);
  min-width: 150px;
}
.compare-table thead th { background: var(--bg); text-align: center; }
.cmp-head-title { font-family: var(--font-head); font-size: 18px; font-weight: 700; color: var(--sidebar-bg); }
.cmp-head-cat { font-size: 11px; color: var(--teal-deep); font-weight: 700; }
.cmp-price-tag { font-family: var(--font-head); font-size: 22px; font-weight: 700; color: var(--teal-deep); }
.btn-table-book {
  width: 100%;
  padding: 8px 12px;
  background: var(--teal-mid);
  color: white;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  margin-top: 8px;
}

/* ─── CHECKOUT MODAL STYLING ─── */
.escrow-guarantee-banner {
  background: #DCFCE7;
  border: 1px solid #86EFAC;
  border-radius: var(--radius-sm);
  padding: 12px 14px;
  display: flex;
  gap: 10px;
  align-items: center;
  color: #14532D;
  font-size: 12px;
}
.egb-icon { font-size: 24px; flex-shrink: 0; }
.egb-text strong { display: block; font-size: 12.5px; }

.pay-method-options { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.pmo-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  background: var(--bg);
  border: 1.5px solid var(--card-border);
  border-radius: var(--radius-sm);
  cursor: pointer;
  position: relative;
  transition: all .2s;
}
.pmo-item:has(input:checked) { border-color: var(--teal-mid); background: var(--teal-soft); }
.pmo-content strong { display: block; font-size: 12.5px; color: var(--text); }
.pmo-content span { font-size: 11px; color: var(--muted); }
.pmo-badge { position: absolute; top: -6px; right: 8px; background: var(--pink-deep); color: white; font-size: 8.5px; font-weight: 800; padding: 2px 6px; border-radius: 4px; }

.qr-mockup-box {
  background: var(--bg);
  border: 1.5px dashed var(--teal-light);
  border-radius: var(--radius-md);
  padding: 18px;
  text-align: center;
}
.qr-code-placeholder { display: flex; flex-direction: column; align-items: center; gap: 4px; color: var(--sidebar-bg); }

.checkout-summary-box {
  background: var(--bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius-sm);
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.csb-row { display: flex; justify-content: space-between; font-size: 13px; color: var(--text-mid); }
.csb-row.highlight { font-size: 15px; color: var(--teal-deep); font-weight: 700; border-top: 1px dashed var(--card-border); padding-top: 6px; }
.csb-sub { font-size: 10.5px; color: var(--muted); }

/* ─── 3D TOUR MODAL ─── */
.tour-screen-placeholder {
  height: 380px;
  background: linear-gradient(135deg, #042F2E 0%, #0F5F58 50%, #042F2E 100%);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  padding: 24px;
  color: white;
}
.tour-360-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--pink-deep);
  color: white;
  font-size: 10px;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 20px;
}
.btn-play-tour {
  padding: 12px 24px;
  background: var(--teal-mid);
  color: white;
  font-size: 13.5px;
  font-weight: 700;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(20,184,166,.4);
  transition: transform .2s;
}
.btn-play-tour:hover { transform: scale(1.05); }

/* ─── MODAL BACKDROP ─── */
.modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(4,47,46,.6);
  backdrop-filter: blur(6px);
  z-index: 250;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-box {
  background: white;
  border-radius: var(--radius-lg);
  width: 520px;
  max-width: 95vw;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 60px rgba(0,0,0,.25);
  animation: slideUp .25s ease;
}
.modal-box.large-modal { width: 680px; }
@keyframes slideUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }
.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  border-bottom: 1px solid var(--card-border);
  position: sticky;
  top: 0;
  background: white;
  z-index: 3;
}
.modal-title { font-family: var(--font-head); font-size: 22px; font-weight: 700; color: var(--sidebar-bg); }
.modal-subtitle { font-size: 12px; color: var(--muted); margin-top: 2px; }
.modal-close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--bg);
  color: var(--muted);
  font-size: 14px;
  display: grid;
  place-items: center;
  cursor: pointer;
  border: none;
  transition: all .2s;
}
.modal-close:hover { background: var(--pink-soft); color: var(--pink-deep); }
.modal-body { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 14px; }

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-label { font-size: 11px; font-weight: 700; color: var(--text-mid); letter-spacing: .4px; }
.form-input, .form-select {
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  border: 1.5px solid var(--card-border);
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--text);
  background: var(--bg);
}
.form-input:focus, .form-select:focus { outline: none; border-color: var(--teal-mid); background: white; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-submit {
  width: 100%;
  padding: 12px;
  background: linear-gradient(135deg, var(--teal-mid), var(--teal-deep));
  color: white;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--radius-sm);
  border: none;
  box-shadow: 0 3px 10px rgba(20,184,166,.35);
  transition: all .2s;
  cursor: pointer;
}
.form-submit:hover { transform: translateY(-1px); box-shadow: 0 5px 16px rgba(20,184,166,.5); }

/* TOAST */
#custToast {
  position: fixed;
  bottom: 28px;
  right: 28px;
  background: var(--sidebar-bg);
  color: #E0FAFA;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  padding: 13px 22px;
  border-radius: 12px;
  box-shadow: 0 8px 28px rgba(0,0,0,.2);
  z-index: 999;
  transition: opacity .3s, transform .3s;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
}
#custToast.show { opacity: 1; transform: translateY(0); }

/* Hide mobile bottom nav on desktop */
.customer-bottom-nav, .cust-bottom-nav {
  display: none;
}

/* ============================================================
   RESPONSIVE DESIGN (PRO MOBILE APP VIEW)
   ============================================================ */

@media (max-width: 960px) {
  /* 2-COLUMN COMPACT MOBILE GRID */
  .customer-venue-grid { 
    grid-template-columns: repeat(2, 1fr) !important; 
    gap: 12px !important; 
  }
  
  .hero-search-section { padding: 28px 16px 42px; }
  .hero-heading { font-size: 22px; line-height: 1.25; letter-spacing: -0.3px; }
  .hero-subtext { font-size: 12px; line-height: 1.5; }
  .hero-badge { font-size: 9.5px; padding: 3px 10px; }

  /* ─── MOBILE SPONSORED BANNER ─── */
  .sponsored-slideshow-wrapper { height: 130px; }
  .sponsored-slide-item { padding: 14px 20px; }
  .sac-title { font-size: 16px; line-height: 1.2; }
  .sac-sub { font-size: 11.5px; display: -webkit-box; -webkit-line-clamp: 1; -webkit-box-orient: vertical; overflow: hidden; }
  .sac-btn-action { padding: 7px 14px; font-size: 11px; }

  /* ─── MOBILE SEARCH CARD (AGODA / AIRBNB APP STYLE) ─── */
  .agoda-search-box {
    flex-direction: column;
    border-radius: var(--radius-lg);
    padding: 12px;
    background: white;
    gap: 8px;
    box-shadow: 0 16px 40px rgba(0,0,0,.3);
    margin-top: 10px;
  }
  
  /* 2x2 grid for inputs on mobile */
  .agoda-mobile-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
    width: 100%;
  }

  .asb-col {
    background: var(--bg);
    border: 1.5px solid var(--card-border);
    border-radius: var(--radius-sm);
    padding: 8px 10px;
    width: 100%;
    min-width: unset;
  }
  .asb-col:not(:last-child)::after {
    display: none;
  }
  .asb-col.full-width {
    grid-column: span 2;
  }
  .asb-col:focus-within {
    border-color: var(--teal-mid);
    background: white;
  }
  .asb-label {
    font-size: 8.5px;
    font-weight: 800;
    color: var(--teal-deep);
    margin-bottom: 2px;
  }
  .asb-input, .asb-select {
    font-size: 12px;
    font-weight: 700;
    color: var(--text);
  }
  .asb-divider { display: none; }
  
  .asb-btn-search {
    width: 100%;
    padding: 12px;
    font-size: 13px;
    border-radius: var(--radius-sm);
    margin-top: 2px;
  }

  /* Category pills mobile */
  .category-tabs-section { padding: 10px 14px; }
  .cat-pill { padding: 7px 14px; font-size: 12px; }

  /* Floating compare bar in mobile */
  .floating-compare-bar {
    bottom: 74px; /* above mobile bottom nav */
    width: calc(100% - 24px);
    border-radius: var(--radius-md);
    padding: 10px 14px;
  }
  .fcb-left strong { font-size: 12px; }
  .fcb-left p { display: none; }
  .fcb-btn-compare { padding: 7px 14px; font-size: 11.5px; }

  /* Mobile bottom navigation (Shopee / TikTok Style Fixed App Bar) */
  .customer-bottom-nav, .cust-bottom-nav {
    display: flex !important;
    position: fixed !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    height: 62px !important;
    background: rgba(255, 255, 255, 0.96) !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border-top: 1px solid #E0F5F3 !important;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08) !important;
    z-index: 9999 !important;
    padding: 4px 10px !important;
    justify-content: space-around !important;
    align-items: center !important;
    box-sizing: border-box !important;
  }

  .cbn-item {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    color: #64748B !important;
    font-size: 10.5px !important;
    font-weight: 700 !important;
    flex: 1 !important;
    position: relative !important;
    transition: all .2s ease !important;
  }

  .cbn-item.active {
    color: #0D9488 !important;
  }

  .cbn-icon {
    font-size: 20px !important;
    line-height: 1 !important;
    margin-bottom: 3px !important;
  }

  .cbn-badge {
    position: absolute !important;
    top: -2px !important;
    right: 22% !important;
    background: #DB2777 !important;
    color: white !important;
    font-size: 9px !important;
    font-weight: 800 !important;
    padding: 1px 5px !important;
    border-radius: 10px !important;
  }

  .listings-section { padding: 16px 12px 120px; }
  .listings-title { font-size: 18px; }
  .cust-nav-links .cn-link { display: none; }
  .btn-vendor-portal { padding: 6px 12px; font-size: 11px; }

  /* ─── 2-COLUMN COMPACT VENUE CARD STYLING ─── */
  .c-venue-card {
    border-radius: 12px;
  }
  .cv-photo-wrapper {
    height: 125px;
  }
  .cv-badge-live {
    font-size: 8.5px;
    padding: 2px 7px;
    top: 8px;
    left: 8px;
  }
  .compare-checkbox-label {
    top: 8px;
    right: 8px;
    padding: 3px 8px;
    font-size: 9.5px;
  }
  .btn-3d-tour {
    display: none; /* keep clean on compact card */
  }
  .cv-content {
    padding: 10px 10px 12px;
    gap: 6px;
  }
  .cv-category-tag {
    font-size: 8.5px;
  }
  .cv-name {
    font-size: 13.5px;
    font-weight: 800;
    line-height: 1.25;
    margin: 1px 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .cv-location {
    font-size: 10.5px;
  }
  .cv-capacity-strip {
    padding: 3px 6px;
    font-size: 9.5px;
    margin-top: 2px;
  }
  .cv-rating-pill {
    padding: 2px 6px;
  }
  .cv-rating-pill span {
    font-size: 11px;
  }
  .cv-rating-pill small {
    display: none;
  }
  .cv-facilities-list {
    display: none; /* hide lengthy facility chips on 2-col mobile */
  }
  .cv-footer {
    padding-top: 6px;
    margin-top: 2px;
    border-top: 1px solid var(--card-border);
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .cp-label {
    font-size: 8.5px;
  }
  .cpn-amount {
    font-size: 15px;
    font-weight: 800;
  }
  .cv-actions-row {
    width: 100%;
  }
  .btn-book-now {
    width: 100%;
    text-align: center;
    padding: 7px 10px;
    font-size: 11px;
    font-weight: 800;
    border-radius: 6px;
  }
}

/* ============================================================
   HOMEPAGE PARTNER PROMO STRIP BANNER (COMPACT & SLEEK APP STYLE)
   ============================================================ */
.promo-strip-wrapper {
  max-width: 720px; /* Ngam-ngam sama lebar dengan kotak carian hero */
  margin: 12px auto 0;
  padding: 0 12px;
  width: 100%;
}

.promo-strip-banner {
  background: #FFFFFF;
  border: 1.5px solid #A7F3D0;
  border-radius: 50px;
  padding: 8px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  box-shadow: 0 3px 12px rgba(16, 185, 129, 0.12);
  cursor: pointer;
  transition: all .2s ease;
  user-select: none;
}

.promo-strip-banner:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(16, 185, 129, 0.2);
  border-color: #10B981;
}

.psb-left {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  min-width: 0;
}

.psb-gift-icon {
  font-size: 18px;
  line-height: 1;
  flex-shrink: 0;
  animation: pulseGift 2.2s infinite ease-in-out;
}

@keyframes pulseGift {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.15) rotate(5deg); }
}

.psb-text-group {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.psb-badge-free {
  color: #042F2E;
  font-weight: 800;
  font-size: 12.5px;
  letter-spacing: .2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.psb-sub {
  color: #0D9488;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

.psb-right {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-shrink: 0;
}

.psb-custom-img {
  height: 24px;
  object-fit: contain;
}

/* HIGH-VISIBILITY COMPACT CLICK HERE CTA BUTTON */
.psb-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 5px 12px;
  background: linear-gradient(135deg, #0D9488 0%, #042F2E 100%);
  color: #FFFFFF;
  border-radius: 50px;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: .3px;
  box-shadow: 0 2px 8px rgba(13, 148, 136, 0.3);
  transition: all .2s ease;
  white-space: nowrap;
}

.psb-arrow-icon {
  font-size: 11px;
  transition: transform .2s;
}

.promo-strip-banner:hover .psb-cta-btn {
  background: linear-gradient(135deg, #059669 0%, #064E3B 100%);
  box-shadow: 0 3px 12px rgba(5, 150, 105, 0.4);
}

.promo-strip-banner:hover .psb-arrow-icon {
  transform: translateX(2px);
}

@media (max-width: 560px) {
  .promo-strip-wrapper {
    margin: 10px auto 0;
    padding: 0 8px;
  }
  .promo-strip-banner {
    padding: 6px 10px;
    border-radius: 50px;
    gap: 6px;
  }
  .psb-gift-icon {
    font-size: 16px;
  }
  .psb-badge-free {
    font-size: 11.5px;
  }
  .psb-sub {
    display: none; /* Sembunyikan subtitle panjang di skrin kecil */
  }
  .psb-cta-btn {
    padding: 4px 10px;
    font-size: 10.5px;
  }
}

/* ─── POPUP MODAL (IPHONE LUXURY STYLE) ─── */
.promo-popup-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(4, 47, 46, 0.7);
  backdrop-filter: blur(8px);
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 16px;
  animation: fadeInModal .25s ease;
}

@keyframes fadeInModal {
  from { opacity: 0; }
  to { opacity: 1; }
}

.promo-popup-card {
  background: #FFFFFF;
  border-radius: 24px;
  width: 440px;
  max-width: 95vw;
  max-height: 90vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
  border: 1.5px solid rgba(245, 158, 11, 0.3);
  animation: scaleUpModal .25s ease;
}

@keyframes scaleUpModal {
  from { transform: scale(0.92) translateY(16px); }
  to { transform: scale(1) translateY(0); }
}

.ppc-header {
  background: linear-gradient(135deg, #042F2E 0%, #064E3B 60%, #022C22 100%);
  padding: 20px 20px 16px;
  position: relative;
  border-bottom: 2px solid #F59E0B;
  text-align: center;
}

.ppc-close-btn {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #FDE68A;
  border: none;
  font-size: 16px;
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: all .2s;
}

.ppc-close-btn:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

.ppc-title {
  color: #F59E0B;
  font-family: var(--font-head);
  font-size: 23px;
  font-weight: 800;
  margin: 4px 0 2px;
  line-height: 1.2;
  letter-spacing: -.3px;
}

.ppc-desc {
  color: #D1FAE5;
  font-size: 12px;
  line-height: 1.45;
  margin: 0 auto;
  max-width: 340px;
}

.ppc-body {
  padding: 16px 18px;
  overflow-y: auto;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #FCFDFD;
}

.ppc-poster-img {
  width: 100%;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
  margin-bottom: 4px;
}

/* LIST VOUCHERS GOLD CARDS */
.ppc-vouchers-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ppc-voucher-item {
  background: linear-gradient(135deg, #FFFDF5 0%, #FFFBEB 100%);
  border: 1.5px solid #FDE68A;
  border-radius: 12px;
  padding: 10px 14px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0 2px 6px rgba(245, 158, 11, 0.08);
}

.pvi-left {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.pvi-name {
  font-size: 13px;
  font-weight: 800;
  color: #042F2E;
}

.pvi-sub {
  font-size: 11px;
  color: #B45309;
  font-weight: 600;
}

.pvi-lock {
  font-size: 16px;
  opacity: .7;
}

.ppc-steps-box {
  background: #F0FDF4;
  border: 1px solid #BBF7D0;
  border-radius: 12px;
  padding: 12px 14px;
  margin-top: 4px;
}

.psb-heading {
  font-size: 12px;
  font-weight: 800;
  color: #166534;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 6px;
}

.ppc-steps-box ul {
  margin: 0;
  padding-left: 18px;
  font-size: 11.5px;
  color: #14532D;
  line-height: 1.55;
}

.ppc-steps-box ul li {
  margin-bottom: 4px;
}

.ppc-footer {
  padding: 14px 18px;
  background: #FFFFFF;
  border-top: 1px solid #E2E8F0;
}

.ppc-btn-cta {
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  background: linear-gradient(135deg, #042F2E 0%, #0D9488 100%);
  color: #FFFFFF;
  font-size: 14px;
  font-weight: 800;
  border: none;
  cursor: pointer;
  letter-spacing: .4px;
  box-shadow: 0 4px 14px rgba(4, 47, 46, 0.3);
  transition: all .2s;
}

.ppc-btn-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13, 148, 136, 0.45);
}

@media (max-width: 560px) {
  .promo-strip-banner {
    padding: 8px 14px;
    border-radius: 20px;
  }
  .psb-badge-free, .psb-title {
    font-size: 11.5px;
  }
  .psb-sub {
    font-size: 10.5px;
  }
  .psb-mini-icons {
    display: none;
  }
}

