/* ============================================================
   MOBILE-APP HOME — shown only on small screens (<=768px)
   Scoped under .bh-mob-home so desktop/old design is untouched.
   ============================================================ */

.bh-mob-home,
.bh-mob-home * {
  box-sizing: border-box;
}

.bh-mob-home {
  --text: #111;
  --muted: #555;
  --border: #d8d8d8;
  --teal: #16b6c4;
  --star: #f4b400;
  --page: #f8f9fa;

  width: 100%;
  max-width: 768px;
  min-height: 100vh;
  margin: 0 auto;
  background: var(--page);
  position: relative;
  padding-bottom: 96px;
overflow: hidden;
  font-family: "Roboto", Arial, sans-serif;
  color: var(--text);
  text-align: left;
}

.bh-mob-home input, .bh-mob-home button, .bh-mob-home select, .bh-mob-home textarea {
  font-family: inherit;
}

.bh-mob-home h1,
.bh-mob-home h2,
.bh-mob-home h3,
.bh-mob-home h4 {
  color: var(--text);
}

.bh-mob-home button {
  color: var(--text);
}

/* Shown only on mobile */
.bh-mob-home {
  display: none;
}

@media (max-width: 768px) {
  .bh-mob-home {
    display: block;
  }

  .bh-desk-home {
    display: none;
  }

  .bh-sticky-cart {
    bottom: 96px !important;
  }
}

/* ===== SEARCH ===== */
.bh-mob-home .top {
  padding: 0;
}

.bh-mob-home .sm-search {
  position: relative;
  display: none;
}

.bh-mob-home .sm-search.show {
  display: block;
  padding: 12px 16px 6px;
  animation: smSearchIn .18s ease;
}

@keyframes smSearchIn {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: translateY(0); }
}

.bh-mob-home .search-box {
  height: 46px;
  background: white;
  border: 2px solid #ddd;
  border-radius: 24px;
  display: flex;
  align-items: center;
  padding-left: 15px;
  box-shadow: 0 3px 8px rgba(0,0,0,.06);
  margin: 0;
  transition: border-color .12s ease;
}

.bh-mob-home .search-box:focus-within {
  border-color: #ff6d00;
}

.bh-mob-home .search-box input {
  flex: 1;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  font: 400 15px "Roboto", sans-serif;
  color: #333;
}

.bh-mob-home .search-box input::placeholder {
  color: #9a9a9a;
}

.bh-mob-home .search-box button {
  width: 42px;
  height: 40px;
  border: 0;
  background: transparent;
  font-size: 17px;
  cursor: pointer;
  color: #ff6d00;
}

.bh-mob-home .sm-suggest {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  margin: 0;
  padding: 4px 0;
  list-style: none;
  background: #fff;
  border: 1px solid #e5e5e5;
  border-radius: 14px;
  box-shadow: 0 10px 28px rgba(0,0,0,.14);
  z-index: 60;
  overflow: hidden;
}

.bh-mob-home .sm-suggest li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  cursor: pointer;
}

.bh-mob-home .sm-suggest li:hover,
.bh-mob-home .sm-suggest li.active {
  background: #fff3e8;
}

.bh-mob-home .sm-suggest img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: cover;
  background: #f0f0f0;
  flex: 0 0 40px;
}

.bh-mob-home .sm-suggest .sm-ico {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border-radius: 10px;
  background: #fff0e0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  color: #ff6d00;
}

.bh-mob-home .sm-suggest .sm-mid {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.bh-mob-home .sm-suggest .sm-title {
  font-size: 14px;
  font-weight: 600;
  color: #222;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bh-mob-home .sm-suggest .sm-sub {
  font-size: 11px;
  color: #888;
}

.bh-mob-home .sm-suggest .sm-price {
  margin-left: auto;
  font-size: 13px;
  font-weight: 700;
  color: #ff6d00;
  white-space: nowrap;
}

.bh-mob-home .sm-suggest .sm-hint {
  padding: 14px;
  text-align: left;
  font-size: 13px;
  color: #777;
  cursor: pointer;
}

/* ===== CATEGORIES ===== */
.bh-mob-home .categories {
  padding: 2px 20px 0;
  position: relative;
  margin-top: -80px;
}

.bh-mob-home .categories h2 {
  font-size: 24px;
  margin: 4px 0 5px;
  font-weight: 700;
  color: #222;
}

.bh-mob-home .category-row {
  display: flex;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
  padding-top: 4px;
  padding-bottom: 4px;
}

.bh-mob-home .category-row::-webkit-scrollbar {
  display: none;
}

.bh-mob-home .category {
  flex: 0 0 calc(20% - 8px);
  min-width: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  padding: 0;
  font: 500 13px "Roboto", sans-serif;
  color: var(--text);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

.bh-mob-home .category.active {
  color: var(--teal);
  font-weight: 600;
}

.bh-mob-home .cat-icon {
  width: 100%;
  max-width: 88px;
  height: 64px;
  aspect-ratio: 11 / 8;
  border-radius: 12px;
  border: 1px solid #c5dcdc;
  background: #e8f8e8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 34px;
  line-height: 1;
  margin: 0 auto 6px;
  flex-shrink: 0;
  box-shadow: 0 0 0 1px #c5dcdc, 0 0 0 2px #fff;
  transition: box-shadow .15s ease;
  overflow: hidden;
}

.bh-mob-home .cat-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.bh-mob-home .category > span:last-child {
  line-height: 1.25;
  display: block;
}

.bh-mob-home .category.active .cat-icon {
  border: 1px solid #c5dcdc;
  box-shadow: 0 0 0 2px #c5dcdc;
}

.bh-mob-home .category:nth-child(2) .cat-icon { background: #e8f3ff; }
.bh-mob-home .category:nth-child(3) .cat-icon { background: #e8fbfa; }
.bh-mob-home .category:nth-child(4) .cat-icon { background: #ffe8ec; }
.bh-mob-home .category:nth-child(5) .cat-icon { background: #e5f8fb; }
.bh-mob-home .category:nth-child(6) .cat-icon { background: #fff1d8; }
.bh-mob-home .category:nth-child(7) .cat-icon { background: #f1e8ff; }
.bh-mob-home .category:nth-child(8) .cat-icon { background: #e8fff0; }
.bh-mob-home .category:nth-child(9) .cat-icon { background: #fff6e8; }
.bh-mob-home .category:nth-child(n+10) .cat-icon { background: #e8f3ff; }

/* ===== TOUR SECTION ===== */
.bh-mob-home .tour-section {
  padding: 0;
  scroll-margin-top: 10px;
}

.bh-mob-home .tour-title-row {
  display: flex;
  align-items: center;
  gap: 14px;
  background: #c5dcdc;
  padding: 0 16px 80px;
  padding-left: 6px;
}

.bh-mob-home .tour-title-text {
  flex: 0 0 50%;
  width: 58%;
  min-width: 0;
}

.bh-mob-home .tour-title-image {
  flex: 0 0 50%;
  width: 50%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
}

/* ===== BEST SELLING & TRENDING ===== */
.bh-mob-home .best-seller-section {
  padding: 16px 0 0;
}

.bh-mob-home .best-seller-title {
  font-size: 20px;
  font-weight: 800;
  color: #0b2a47;
  margin: 0 16px 12px;
}

.bh-mob-home .best-seller-title .best-seller-count {
  font-weight: 400;
  font-size: 12px;
  margin-left: 6px;
}

.bh-mob-home .best-seller-list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.bh-mob-home .best-seller-card {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0 0.5px;
}

.bh-mob-home .best-seller-card.bs-more {
  display: none;
}

.bh-mob-home .best-seller-section.expanded .best-seller-card.bs-more {
  display: block;
}

.bh-mob-home .best-seller-card .tx-pkg-card,
.bh-mob-home .best-seller-card .tx-pkg-body,
.bh-mob-home .best-seller-card .tx-pkg-thumb-wrap {
  margin: 0;
  padding: 1px;
  width: 100%;
  max-width: 100%;
  border-radius: 14px;
  overflow: hidden;
}

.bh-mob-home .best-seller-view-more-row {
  display: flex;
  justify-content: center;
  margin-top: 0px;
  margin-bottom: 24px;
}

.bh-mob-home .best-seller-view-more {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.bh-mob-home .best-seller-view-more i {
  font-size: 12px;
  display: inline-block;
  line-height: 1;
}

/* BACKUP - dark navy pill redesign
.view-more-btn {
  background-color: #0b2a47;
  color: #ffffff;
  font-family: sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 9px 26px;
  border: none;
  border-radius: 24px;
  cursor: pointer;
  line-height: 1.2;
  box-shadow: 0 2px 8px rgba(11, 42, 71, 0.25);
  transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}
.view-more-btn:hover {
  background-color: #1565c0;
  box-shadow: 0 4px 12px rgba(21, 101, 192, 0.35);
  transform: translateY(-1px);
}
END BACKUP */

.view-more-btn {
  background-color: #c5dcdc;
  color: #0b2a47;
  font-family: sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 9px 26px;
  border: none;
  border-radius: 24px;
  cursor: pointer;
  line-height: 1.2;
  box-shadow: 0 2px 8px rgba(197, 220, 220, 0.4);
  transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

.view-more-btn:hover {
  background-color: #b2d2d2;
  box-shadow: 0 4px 12px rgba(197, 220, 220, 0.5);
  transform: translateY(-1px);
}

.bh-mob-home .tour-section h1 {
  margin: 0;
  font-size: 40px;
  line-height: 1.1;
  font-weight: 900;
}

.bh-mob-home .intro {
  font-family: 'Quicksand', sans-serif;
  font-size: 22px;
  line-height: 1.1;
  margin: 0 0 12px;
  color: #333;
}

.bh-mob-home .intro small {
  display: block;
  margin-top: 2px;
}

.bh-mob-home .duration-tabs {
  display: flex;
  gap: 8px;
  margin-bottom: 14px;
  overflow-x: auto;
  scrollbar-width: none;
}

.bh-mob-home .duration-tabs::-webkit-scrollbar {
  display: none;
}

.bh-mob-home .duration-tabs button {
  white-space: nowrap;
  height: 48px;
  padding: 0 16px;
  border-radius: 14px;
  border: 1px solid #3b8b93;
  background-color: #706b6b;
  font: 500 18px "Roboto", sans-serif;
  cursor: pointer;
  color: white;
}

.bh-mob-home .duration-tabs button.selected {
  border: 1px solid #fffaff;
  font-weight: 700;
  background: #3b8b93;
}

.bh-mob-home .duration-tabs small {
  font-size: 17px;
  font-weight: 500;
}

/* ===== TOUR CARDS ===== */
.bh-mob-home .tour-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.bh-mob-home .tour-cat-group.hidden {
  display: none;
}

.bh-mob-home .tour-cat-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.bh-mob-home .tour-cat-heading {
  font-size: 20px;
  font-weight: 800;
  color: #0b2a47;
  margin: 0 16px 2px;
  letter-spacing: 1px;
}

.bh-mob-home .tour-cat-heading .best-seller-count {
  font-weight: 400;
  font-size: 12px;
  margin-left: 6px;
}

.bh-mob-home .tour-card.hidden {
  display: none;
}

.bh-mob-home .tour-card {
  display: block;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0 0.5px;
}

.bh-mob-home .tour-card > .tx-pkg-card,
.bh-mob-home .tour-card .tx-pkg-body,
.bh-mob-home .tour-card .tx-pkg-thumb-wrap {
  margin: 0;
  padding: 1px;
  width: 100%;
  max-width: 100%;
  border-radius: 14px;
  overflow: hidden;
}

.bh-mob-home .tour-card .tx-pkg-thumb-wrap {
  margin-right: 10px;
}

.bh-mob-home .tour-card .tx-pkg-body.textp {
  margin-left: 0px;
  position: relative;
}

.bh-mob-home .best-seller-card .tx-pkg-thumb-wrap {
  margin-right: 10px;
}

.bh-mob-home .best-seller-card .tx-pkg-body.textp {
  margin-left: 0px;
  position: relative;
}

.bh-mob-home .tour-card .tx-pkg-cta,
.bh-mob-home .best-seller-card .tx-pkg-cta {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0px;
  z-index: 2;
  padding: 4px 23px;
  background: #3b8b93;
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.3px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  line-height: 1.1;
  text-align: center;
  transition: background 0.15s, transform 0.1s;
  margin-right: 10px;
  flex-shrink: 0;
}

.bh-mob-home .tour-card .tx-pkg-body .tx-pkg-buy,
.bh-mob-home .best-seller-card .tx-pkg-body .tx-pkg-buy {
  flex-wrap: nowrap;
}

.bh-mob-home .tour-card .tx-pkg-body,
.bh-mob-home .best-seller-card .tx-pkg-body {
  font-size: 12px;
}

.bh-mob-home .tour-card .tx-pkg-body .tx-pkg-locations,
.bh-mob-home .best-seller-card .tx-pkg-body .tx-pkg-locations,
.bh-mob-home .tour-card .tx-pkg-body .tx-pkg-feature-bar,
.bh-mob-home .best-seller-card .tx-pkg-body .tx-pkg-feature-bar,
.bh-mob-home .tour-card .tx-pkg-body .tx-pkg-feature,
.bh-mob-home .best-seller-card .tx-pkg-body .tx-pkg-feature {
  font-size: 12px;
}

.bh-mob-home .tour-card .tx-pkg-body .tx-pkg-feature .tx-pkg-feature-label,
.bh-mob-home .best-seller-card .tx-pkg-body .tx-pkg-feature .tx-pkg-feature-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--tx-muted);
}

.bh-mob-home .tour-card .tx-pkg-body .tx-pkg-dur-badge,
.bh-mob-home .best-seller-card .tx-pkg-body .tx-pkg-dur-badge {
  font-size: 12px;
}

.bh-mob-home .tour-card > img,
.bh-mob-home .tour-card > .img-fallback {
  position: absolute;
  left: 12px;
  top: 12px;
  width: 182px;
  height: 178px;
  object-fit: contain;
  border-radius: 15px;
  background: #e8f3ff;
}

.bh-mob-home .tour-card > .img-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 72px;
}

.bh-mob-home .tour-content {
  margin-left: 195px;
  min-height: 172px;
  padding-top: 0;
}

.bh-mob-home .rating {
  font-size: 17px;
  line-height: 1.5;
  white-space: nowrap;
}

.bh-mob-home .rating span {
  color: var(--star);
  font-size: 28px;
  vertical-align: -2px;
  margin-right: 3px;
}

.bh-mob-home .rating b {
  font-weight: 400;
  color: #222;
  padding: 0 3px;
}

.bh-mob-home .tour-content h3 {
  font-size: 21px;
  line-height: 1.3;
  margin: 4px 0 8px;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bh-mob-home .tour-content p {
  font-size: 16px;
  line-height: 1.55;
  margin: 0;
  padding-right: 165px;
  color: #222;
}

.bh-mob-home .price-row {
  position: absolute;
  left: 212px;
  bottom: 20px;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.bh-mob-home .old-price {
  color: #777;
  font-size: 17px;
  text-decoration: line-through;
}

.bh-mob-home .price-row strong {
  font-size: 22px;
}

.bh-mob-home .details {
  position: absolute;
  right: 12px;
  bottom: 18px;
  height: 46px;
  min-width: 148px;
  padding: 0 16px;
  border: 0;
  border-radius: 12px;
  color: white;
  background: var(--teal);
  font: 500 18px "Roboto", sans-serif;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform .15s ease, opacity .15s ease;
}

.bh-mob-home .details:hover {
  opacity: .9;
  transform: translateY(-1px);
}

.bh-mob-home .tour-empty {
  padding: 26px 16px;
  text-align: center;
  color: #777;
  border: 1.5px dashed #ccc;
  border-radius: 16px;
  background: #fff;
  font-size: 16px;
}

.bh-mob-home .tour-empty b {
  display: block;
  color: #333;
  font-size: 20px;
  margin-bottom: 4px;
}

/* ===== BOTTOM NAV ===== */
.bh-mob-home .bottom-nav {
  position: fixed;
  z-index: 990;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: min(768px, 100%);
  height: 84px;
  background: rgba(255,255,255,.98);
  border-top: 1px solid #d7d7d7;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-top: 6px;
  box-shadow: 0 -3px 10px rgba(0,0,0,.04);
}

.bh-mob-home .nav-item {
  color: #111;
  text-decoration: none;
  text-align: center;
  font-size: 14px;
  line-height: 1.25;
}

.bh-mob-home .nav-icon {
  display: block;
  height: 44px;
  font-size: 34px;
  line-height: 40px;
  font-weight: 400;
}

.bh-mob-home .nav-item.active {
  color: var(--teal);
  font-weight: 600;
}

@media (max-width: 600px) {
  .bh-mob-home .top {
    padding: 0px 12px 0px;
  }

  .bh-mob-home .search-box {
    height: 44px;
    padding-left: 13px;
  }

  .bh-mob-home .search-box input {
    font-size: 14px;
  }

  .bh-mob-home .search-box button {
    width: 40px;
    height: 38px;
    font-size: 16px;
  }

  .bh-mob-home .categories {
    padding-left: 12px;
    padding-right: 12px;
    margin-top: -63px;
  }

  .bh-mob-home .categories h2 {
    font-size: 20px;
  }

  .bh-mob-home .category {
    font-size: 12px;
  }

  .bh-mob-home .cat-icon {
    font-size: 24px;
    max-width: 56px;
    height: 50px;
  }

.bh-mob-home .tour-section {
    margin-left: 0;
    margin-right: 0;
    width: 100%;
    max-width: 100%;
  }

  .bh-mob-home .tour-list {
    width: 100%;
    max-width: 100%;
  }

  .bh-mob-home .tour-card {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .bh-mob-home .tour-section h1 {
    font-size: 28px;
    padding-left: 7px;
    padding-top: 0px;
  }

  .bh-mob-home .tour-title-row {
    padding-left: 0;
    padding-right: 16px;
    padding-bottom: 60px;
    padding-top: 14px;
  }

  .bh-mob-home .intro {
    font-size: 14px;
    line-height: 1.1;
    margin-bottom: 8px;
    padding-left: 10px;
  }

  .bh-mob-home .desktop-break {
    display: none;
  }

  .bh-mob-home .duration-tabs {
    gap: 8px;
    margin-left: 10px;
  }

  .bh-mob-home .duration-tabs button {
    height: 24px;
    padding: 0 6px;
    font-size: 12px;
    border-radius: 10px;
  }

  .bh-mob-home .duration-tabs small {
    font-size: 12px;
  }

  .bh-mob-home .tour-card {
    display: block;
    width: auto;
    max-width: 100%;
    margin-left: 2.5px;
    margin-right: 3px;
    margin-top: 0px;
    min-width: 0;
  }

  .bh-mob-home .best-seller-card {
    width: auto;
    margin-left: 2.5px;
    margin-right: 3px;
    min-width: 0;
  }

  .bh-mob-home .tour-card > .tx-pkg-card {
    width: auto;
    margin-left: 0px;
    margin-right: 0px;
  }

  .bh-mob-home .tour-list,
  .bh-mob-home .best-seller-list {
    width: 100%;
    box-sizing: border-box;
    padding-left: 2.5px;
    padding-right: 2.5px;
  }

  .bh-mob-home .tour-card > img,
  .bh-mob-home .tour-card > .img-fallback {
    left: 12px;
    top: 12px;
    width: 110px;
    height: 145px;
    border-radius: 11px;
  }

  .bh-mob-home .tour-card > .img-fallback {
    font-size: 44px;
  }

  .bh-mob-home .tour-content {
    margin-left: 121px;
    min-height: 145px;
  }

  .bh-mob-home .rating {
    font-size: 12px;
  }

  .bh-mob-home .rating span {
    font-size: 20px;
  }

  .bh-mob-home .tour-content h3 {
    font-size: 15px;
    margin-top: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .bh-mob-home .tour-content p {
    font-size: 11px;
    padding-right: 62px;
  }

  .bh-mob-home .price-row {
    left: 133px;
    bottom: 16px;
    gap: 5px;
  }

  .bh-mob-home .old-price {
    font-size: 12px;
  }

  .bh-mob-home .price-row strong {
    font-size: 16px;
  }

  .bh-mob-home .details {
    right: 5px;
    bottom: 6px;
    min-width: 48px;
    height: 35px;
    padding: 0 9px;
    font-size: 13px;
    border-radius: 10px;
  }

  .bh-mob-home .bottom-nav {
    height: 82px;
  }

  .bh-mob-home .nav-item {
    font-size: 12px;
  }

  .bh-mob-home .nav-icon {
    height: 39px;
    font-size: 30px;
    line-height: 34px;
  }
}

/* ============================================================
   MOBILE-APP PACKAGE DETAIL (packages/show) — shown <=768px
   Port of kerala_tours_third_page/detail.css, scoped.
   ============================================================ */

.bh-mob-detail {
  display: none;
}

@media (max-width: 768px) {
  .bh-mob-detail {
    display: block;
  }

  .bh-desk-show {
    display: none;
  }
}

.bh-mob-detail,
.bh-mob-detail * {
  box-sizing: border-box;
}

.bh-mob-detail {
  width: 100%;
  max-width: 768px;
  min-height: 100vh;
  margin: 0 auto;
  background: #f4f8fc;
  padding-bottom: 78px;
  position: relative;
  color: #0b2a47;
  text-align: left;
  --d-teal: #0b2a47;
  --d-blue: #1565c0;
  --d-ink: #1565c0;
  --d-gold: #f5b301;
}

.bh-mob-detail h1,
.bh-mob-detail h2 {
  color: #0b2a47;
}

.bh-mob-detail button {
  color: #0b2a47;
}

.bh-mob-detail .d-header {
  height: 86px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  padding: 0 20px;
  gap: 18px;
  color: #0b2a47;
  background: transparent;
}

.bh-mob-detail .d-header a,
.bh-mob-detail .d-header button {
  color: #0b2a47;
  text-decoration: none;
  font: 30px Arial, sans-serif;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  flex-shrink: 0;
}

.bh-mob-detail .d-header a i {
  font-size: 26px;
  line-height: 1;
  display: inline-block;
}

.bh-mob-detail .d-header .d-head-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.25;
}

.bh-mob-detail .d-header .d-head-info h1 {
  margin: 0;
  font-size: 25px;
  color: #0b2a47;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.bh-mob-detail .d-header .d-meta {
  font-weight: 400;
  font-size: 13px;
  color: #4a4d50;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 600;
}

.bh-mob-detail .d-header .d-meta-sep {
  width: 1px;
  height: 12px;
  background: #b8c6d4;
  align-self: center;
  margin: 0 8px;
  display: inline-block;
  vertical-align: middle;
}

.bh-mob-detail .d-header .d-meta-rating {
  color: #f57f17;
  font-weight: 800;
}

.bh-mob-detail .d-header .d-meta-rating .fa-star {
  color: #f59e0b;
  font-size: 12px;
}

.bh-mob-detail .d-header .d-meta-rating small {
  color: #5b6b7a;
  font-weight: 500;
}

.bh-mob-detail .d-header .d-search {
  transform: rotate(-20deg);
}

.bh-mob-detail .hero {
  height: 214px;
  margin: 0;
  border-radius: 0;
  overflow: hidden;
  position: relative;
}

.bh-mob-detail .hero-track {
  display: flex;
  height: 100%;
  transition: transform .3s ease;
}

.bh-mob-detail .hero-track img {
  width: 100%;
  flex: 0 0 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  background: #fff;
}

.bh-mob-detail .hero-fallback-ph {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 70px;
  color: #1565c0;
  background: linear-gradient(135deg,#e6edf7,#f2f6fc);
}

.bh-mob-detail .hero button.prev,
.bh-mob-detail .hero button.next {
  position: absolute;
  bottom: 4px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(11,42,71,.68);
  color: #fff;
  border: 0;
  padding: 0;
  box-shadow: 0 3px 8px rgba(0,0,0,.25);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  user-select: none;
  font-size: 14px;
}

.bh-mob-detail .hero button.prev i,
.bh-mob-detail .hero button.next i {
  position: static;
  width: auto;
  height: auto;
  border-radius: 0;
  background: none;
  box-shadow: none;
  font-style: normal;
  font-size: 14px;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.bh-mob-detail .hero .prev { left: 12px; }
.bh-mob-detail .hero .next { right: 12px; }

.bh-mob-detail .dots {
  position: absolute;
  bottom: 13px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 9px;
  align-items: center;
}

.bh-mob-detail .dots i {
  position: static;
  transform: none;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255,255,255,.8);
  display: block;
}

.bh-mob-detail .dots i.on {
  width: 28px;
  border-radius: 9px;
  background: #fff;
}

.bh-mob-detail .info {
  height: 55px;
  margin: 0 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #dbe6f2;
  font-size: 20px;
  gap: 12px;
  color: #0b2a47;
}

.bh-mob-detail .info strong { white-space: nowrap; color: #1565c0; }
.bh-mob-detail .info span { font-weight: 600; white-space: nowrap; }
.bh-mob-detail .info em { font-style: normal; color: #f5b301; font-size: 25px; text-shadow: 0 1px 0 rgba(0,0,0,.06); }
.bh-mob-detail .info small { font-size: 18px; font-weight: 500; color: #64748b; }

.bh-mob-detail .features {
  min-height: 55px;
  margin: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #dbe6f2;
  font-size: 16px;
  white-space: nowrap;
  gap: 10px;
  overflow-x: auto;
  scrollbar-width: none;
}

.bh-mob-detail .features::-webkit-scrollbar { display: none; }

.bh-mob-detail .features span {
  color: #666;
  text-align: left;
  font-size: 9px;
  line-height: 0.5;
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1px;
}

.bh-mob-detail .features .feat-txt {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  margin-top: 3px;
}

.bh-mob-detail .features em {
  font-style: normal;
  display: block;
  text-align: left;
}

.bh-mob-detail .features b {
  display: flex;
  align-items: center;
  gap: 2px;
  font-weight: 600;
  text-align: left;
  line-height: 1;
}

.bh-mob-detail .features b .d-feat-check {
  color: #1565c0;
  font-size: 10px;
  flex-shrink: 0;
}

.bh-mob-detail .features .tick {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-style: normal;
  color: #3b8b93;
  font-size: 14px;
  line-height: 1;
  margin-right: 6px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 1px solid #3b8b93;
  flex-shrink: 0;
}

.bh-mob-detail .summary {
  background: #c5dcdc;
  padding: 13px 20px;
}

.bh-mob-detail .summary h2 { margin: 0 0 9px; font-size: 20px; color: #0b2a47; letter-spacing: .3px; }

.bh-mob-detail .summary nav {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: nowrap;
  overflow-x: auto;
  scrollbar-width: none;
}

.bh-mob-detail .summary nav::-webkit-scrollbar { display: none; }

.bh-mob-detail .summary button {
  position: relative;
  height: 26px;
  min-width: 69px;
  padding: 0 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 40px;
  background: rgb(184, 227, 227);
  color: #231f1f;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  box-sizing: border-box;
  box-shadow: inset 0 1px 1px rgba(255, 255, 255, 0.10), inset 0 -1px 2px rgba(0, 30, 45, 0.12);
  text-shadow: none;
  transition: all 0.2s ease;
  z-index: 1;
}

.bh-mob-detail .summary button::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 40px;
  padding: 1px;
  background:
    conic-gradient(
      from 210deg,
      rgba(255, 255, 255, 0.95) 0%,
      rgba(255, 255, 255, 0.95) 30%,
      rgba(255, 255, 255, 0) 30%,
      rgba(255, 255, 255, 0) 50%,
      rgba(255, 255, 255, 0.95) 50%,
      rgba(255, 255, 255, 0.95) 80%,
      rgba(255, 255, 255, 0) 80%,
      rgba(255, 255, 255, 0) 100%
    );
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  mask-composite: exclude;
  pointer-events: none;
}

.bh-mob-detail .summary button::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 37px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.bh-mob-detail .summary button.active {
  background: rgb(58, 138, 146);
  color: #fff;
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.14),
    inset 0 -1px 2px rgba(0, 30, 45, 0.10);
}

.bh-mob-detail .summary button:hover {
  background: rgba(140, 195, 214, 0.40);
  box-shadow:
    inset 0 1px 1px rgba(255, 255, 255, 0.14),
    inset 0 -1px 2px rgba(0, 30, 45, 0.10);
}

.bh-mob-detail .content {
  padding: 7px 20px;
}

.bh-mob-detail .panel {
  border-bottom: 1px solid #dbe6f2;
  padding-bottom: 6px;
  margin-bottom: 12px;
}

.bh-mob-detail .panel:last-child {
  border-bottom: 0;
  margin-bottom: 0;
}

.bh-mob-detail .panel-title {
  margin: 14px 0 9px;
  font-size: 17px;
  color: #0b2a47;
  letter-spacing: .3px;
  background: #c5dcdc;
  padding: 8px 12px;
  border-radius: 6px;
}

.bh-mob-detail .day {
  border-bottom: 1px solid #dbe6f2;
  padding: 10px 0;
  cursor: pointer;
  font-size: 17px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
}

.bh-mob-detail .day strong { line-height: 1.2; }
.bh-mob-detail .day.open strong { color: var(--d-ink); }
.bh-mob-detail .day-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--d-ink);
  transition: transform 0.25s ease;
}
.bh-mob-detail .day-arrow i { font-size: 12px; color: var(--d-ink); }
.bh-mob-detail .day.open .day-arrow { transform: rotate(180deg); }
.bh-mob-detail .day p {
  display: none;
  grid-column: 1 / -1;
  margin: 0;
  padding: 0;
  font-size: 17px;
  line-height: 1.45;
  color: #37474f;
}
.bh-mob-detail .day.open p { display: block; }
.bh-mob-detail .day .day-more {
  display: none;
  grid-column: 1 / -1;
  margin: 4px 0 0;
}
.bh-mob-detail .day.open .day-more { display: flex; }

.bh-mob-detail [data-panel-body="itinerary"] { margin: 0; padding: 0; border-bottom: 0; }
.bh-mob-detail [data-panel-body="itinerary"] .panel-title { margin: 6px 0 4px; padding: 6px 10px; font-size: 15px; }
.bh-mob-detail [data-panel-body="itinerary"] .day { padding: 7px 0; font-size: 15px; gap: 10px; }
.bh-mob-detail [data-panel-body="itinerary"] .day-arrow { width: 24px; height: 24px; }
.bh-mob-detail [data-panel-body="itinerary"] .day-arrow i { font-size: 10px; }
.bh-mob-detail [data-panel-body="itinerary"] .day p { font-size: 14px; line-height: 1.2; padding: 0; }

.bh-mob-detail [data-panel-body="overview"] { margin: 0; padding: 0; border-bottom: 0; }
.bh-mob-detail [data-panel-body="overview"] .panel-title { margin: 6px 0 4px; padding: 6px 10px; font-size: 15px; }
.bh-mob-detail [data-panel-body="overview"] .bh-rich { font-size: 14px; line-height: 1.2; }
.bh-mob-detail [data-panel-body="overview"] .bh-rich p,
.bh-mob-detail [data-panel-body="overview"] .bh-rich h4,
.bh-mob-detail [data-panel-body="overview"] .bh-rich h5 { margin: 2px 0; padding: 0; }
.bh-mob-detail [data-panel-body="overview"] .bh-rich p:last-child,
.bh-mob-detail [data-panel-body="overview"] .bh-rich h4:last-child,
.bh-mob-detail [data-panel-body="overview"] .bh-rich h5:last-child { margin-bottom: 0; }
.bh-mob-detail [data-panel-body="overview"] > p { font-size: 14px; line-height: 1.2; margin: 0 0 4px; }
.bh-mob-detail [data-panel-body="overview"] .tx-overview-table { font-size: 13px; line-height: 1.2; margin-bottom: 10px; }
.bh-mob-detail [data-panel-body="overview"] .tx-overview-table th,
.bh-mob-detail [data-panel-body="overview"] .tx-overview-table td { padding: 6px 10px; }

.bh-mob-detail [data-panel-body="inclusions"] { margin: 0; padding: 0; border-bottom: 0; }
.bh-mob-detail [data-panel-body="inclusions"] .panel-title { margin: 6px 0 4px; padding: 6px 10px; font-size: 15px; }
.bh-mob-detail [data-panel-body="inclusions"] .panel-sub { margin: 5px 0 3px; font-size: 14px; line-height: 1.2; }
.bh-mob-detail [data-panel-body="inclusions"] .tx-list-check { gap: 2px; }
.bh-mob-detail [data-panel-body="inclusions"] .tx-list-check li { padding: 0; font-size: 14px; line-height: 1.2; }

.bh-mob-detail .content h2 { font-size: 20px; margin: 14px 0 6px; color: var(--d-ink); }
.bh-mob-detail .content > p { font-size: 17px; line-height: 1.45; margin: 0 0 4px; color: #37474f; }

.bh-mob-detail .content .panel-sub {
  font-size: 17px;
  font-weight: 700;
  margin: 16px 0 8px;
  color: var(--d-ink);
}

.bh-mob-detail .tx-list-check {
  gap: 9px;
}

.bh-mob-detail .tx-list-check li {
  font-size: 16px;
  line-height: 1.45;
  color: #37474f;
  align-items: center;
}

.bh-mob-detail .tx-list-check li::before { content: none; }

.bh-mob-detail .tx-list-check li i {
  font-size: 15px;
  flex-shrink: 0;
}

.bh-mob-detail .tx-list-check li i.d-check { color: #2e7d32; }
.bh-mob-detail .tx-list-check li i.d-no { color: #b91c1c; }
.bh-mob-detail .tx-list-check li i.d-ink { color: var(--d-ink); }

.bh-mob-detail .bh-rich {
  font-size: 17px;
  line-height: 1.5;
  color: #37474f;
}

.bh-mob-detail [data-panel-body="itinerary"] .bh-rich { font-size: 14px; line-height: 1.4; }
.bh-mob-detail [data-panel-body="itinerary"] .bh-rich p,
.bh-mob-detail [data-panel-body="itinerary"] .bh-rich h4,
.bh-mob-detail [data-panel-body="itinerary"] .bh-rich h5 { margin: 2px 0; padding: 0; }
.bh-mob-detail [data-panel-body="itinerary"] .bh-rich p:last-child,
.bh-mob-detail [data-panel-body="itinerary"] .bh-rich h4:last-child,
.bh-mob-detail [data-panel-body="itinerary"] .bh-rich h5:last-child { margin-bottom: 0; }
.bh-mob-detail [data-panel-body="itinerary"] .tx-list-check { gap: 3px; }
.bh-mob-detail [data-panel-body="itinerary"] .tx-list-check li { font-size: 14px; line-height: 1.4; }

.bh-mob-detail .bh-itinerary-item summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 3px 5px;
  font-weight: 700;
  font-size: 0.92rem;
  background: var(--bh-gray-50);
  transition: var(--bh-transition);
}

.bh-mob-detail .bh-itinerary-item p {
  font-size: 15px;
  line-height: 1.45;
  color: #37474f;
}

.bh-mob-detail .hotel { padding: 10px 0; border-bottom: 1px solid #dbe6f2; }
.bh-mob-detail .hotel strong { display: block; font-size: 17px; color: #0b2a47; }
.bh-mob-detail .hotel-stars { color: #f5b301; letter-spacing: 2px; text-shadow: 0 1px 0 rgba(0,0,0,.05); }
.bh-mob-detail .hotel em { display: block; font-style: normal; color: #5b6b7a; margin-top: 2px; font-size: 15px; }

.bh-mob-detail .review { padding: 10px 0; border-bottom: 1px solid #dbe6f2; }
.bh-mob-detail .review > strong { color: #0b2a47; }
.bh-mob-detail .review-stars { color: #f5b301; letter-spacing: 1px; margin-left: 8px; }
.bh-mob-detail .review p { margin: 6px 0 4px; font-size: 15px; line-height: 1.45; color: #37474f; }
.bh-mob-detail .review em { font-style: normal; color: #5b6b7a; font-size: 13px; }

.bh-mob-detail .map-wrap {
  position: relative;
  width: 100%;
  height: 280px;
  margin: 14px 0 6px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #d3e0f5;
  box-shadow: 0 6px 16px rgba(11,42,71,.16);
}

.bh-mob-detail .map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.bh-mob-detail .d-footer {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
width: min(768px, 100%);
  height: 62px;
  background: #f1e6e1;
  color: #222;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 26px;
  z-index: 990;
  box-shadow: 0 -4px 16px rgba(11,42,71,.22);
}

.bh-mob-detail .d-footer .price {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.bh-mob-detail .d-footer .price .old {
  font-size: 16px;
  text-decoration: line-through;
  color: rgba(34,34,34,.55);
}

.bh-mob-detail .d-footer strong { font-size: 28px; color: #ff4d3a; }

.bh-mob-detail .d-footer a {
  background: #c5dcdc;
  color: #0b2a47;
  text-decoration: none;
  border-radius: 12px;
  padding: 11px 25px;
  font-size: 18px;
  font-weight: 600;
  box-shadow: 0 4px 10px rgb(241, 230, 225);
}

@media (max-width: 600px) {
.bh-mob-detail .d-header { height: auto; min-height: 37px; padding: 7px 15px; position: absolute; top: 0; left: 0; right: 0; background: #f2e8e8d6; }
  .bh-mob-detail .d-header .d-head-info h1 { font-size: 22px; }
  .bh-mob-detail .d-header .d-meta { font-size: 12px; }
  .bh-mob-detail .d-header a,
  .bh-mob-detail .d-header .d-search { font-size: 30px; }
  .bh-mob-detail .hero { margin: 0; height: 213px; }
  .bh-mob-detail .info { margin: 0 15px; height: 52px; font-size: 16px; }
  .bh-mob-detail .info small { font-size: 14px; }
  .bh-mob-detail .features { margin: 0 15px; min-height: 38px; font-size: 13px; gap: 8px; }
.bh-mob-detail .summary { padding: 12px 15px; }
  .bh-mob-detail .summary h2,
  .bh-mob-detail .content h2 { font-size: 18px; }
.bh-mob-detail .summary nav { gap: 9px; }
  .bh-mob-detail .content { padding: 7px 15px; }
  .bh-mob-detail .day { font-size: 14px; }
  .bh-mob-detail .day p,
  .bh-mob-detail .content > p,
  .bh-mob-detail .review p { font-size: 14px; }
.bh-mob-detail .d-footer { height: 58px; padding: 0 17px; }
  .bh-mob-detail .d-footer strong { font-size: 24px; }
  .bh-mob-detail .d-footer a { font-size: 16px; padding: 6px 16px; line-height: 1; }
}

@media (max-width: 768px) {
  .bh-install-indicator {
    right: 14px;
    bottom: 98px;
    width: 52px;
    height: 52px;
    font-size: 22px;
  }
  .bh-install-menu {
    right: 12px;
    bottom: 154px;
  }
}