@charset "UTF-8";
/* ──────────────────────────────────────────
   DETAIL PAGE — Maldive Per Tutti
   ────────────────────────────────────────── */
[x-cloak] {
  display: none !important;
}

/* Main layout */
.det-main {
  padding-top: 100px;
  padding-bottom: 4rem;
  background: #F7F9FB;
}

/* Breadcrumb */
.det-breadcrumb {
  margin-bottom: 0.5rem;
}

.det-breadcrumb .breadcrumb-item,
.det-breadcrumb .breadcrumb-item a {
  font-size: 0.78rem;
  color: #7A8EA0;
  text-decoration: none;
}

.det-breadcrumb .breadcrumb-item.active {
  color: var(--navy);
}

.det-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
  color: #ccc;
}

/* Header */
.det-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.det-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin: 0;
  line-height: 1.15;
}

.det-stars {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--sun-gold);
  margin-top: 0.2rem;
}

.det-sun {
  height: 16px;
}

.det-header-right {
  text-align: right;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.det-location {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--ocean);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  justify-content: flex-end;
}

.det-transfer {
  font-size: 0.75rem;
  color: #7A8EA0;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  justify-content: flex-end;
}

/* ── Gallery ── */
.det-gallery {
  margin-bottom: 1.2rem;
}

.det-main-img {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 16/9;
}

.det-main-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s;
}

.det-main-img:hover img {
  transform: scale(1.02);
}

.gallery-expand {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: none;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s;
  z-index: 2;
}

.gallery-expand:hover {
  background: rgba(0, 0, 0, 0.6);
}

.gallery-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #fff;
  background: var(--navy);
  padding: 0.3rem 0.85rem;
  border-radius: 50px;
  z-index: 2;
}

.det-thumbs {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.6rem;
  overflow-x: auto;
  padding-bottom: 0.3rem;
}

.det-thumb {
  width: 100px;
  height: 68px;
  border-radius: 10px;
  overflow: hidden;
  border: 2.5px solid transparent;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.2s;
  padding: 0;
  background: none;
}

.det-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.det-thumb.active,
.det-thumb:hover {
  border-color: var(--ocean);
  box-shadow: 0 2px 10px rgba(14, 124, 154, 0.2);
}

/* ── Amenities ── */
.det-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-bottom: 1.5rem;
}

.det-amenity {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--navy-light);
  background: #fff;
  border: 1px solid rgba(13, 43, 69, 0.06);
  padding: 0.4rem 0.8rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.det-amenity i {
  color: var(--ocean);
  font-size: 0.8rem;
}

/* ── Quick Info ── */
.det-quick-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.qi-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  background: #fff;
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid rgba(13, 43, 69, 0.05);
}

.qi-item > i {
  font-size: 1.4rem;
  color: var(--ocean);
  flex-shrink: 0;
}

.qi-item strong {
  display: block;
  font-size: 0.78rem;
  color: var(--navy);
}

.qi-item span {
  font-size: 0.75rem;
  color: #7A8EA0;
}

/* ── Tabs ── */
.det-tabs {
  gap: 0.3rem;
  margin-bottom: 0;
  border: none;
}

.det-tab {
  font-size: 0.85rem;
  font-weight: 600;
  color: #7A8EA0;
  background: #fff;
  border: 1.5px solid rgba(13, 43, 69, 0.08);
  border-bottom: none;
  border-radius: 10px 10px 0 0;
  padding: 0.6rem 1.4rem;
  transition: all 0.2s;
  cursor: pointer;
}

.det-tab:hover {
  color: var(--navy);
  background: #fff;
  border-color: rgba(14, 124, 154, 0.2);
}

.det-tab.active {
  color: var(--ocean);
  border-bottom-color: #fff;
  position: relative;
  z-index: 2;
}

.det-tab-content {
  background: #fff;
  border-radius: 0 12px 12px 12px;
  padding: 2rem;
  border: 1.5px solid rgba(13, 43, 69, 0.06);
  margin-top: -1.5px;
  box-shadow: 0 2px 12px rgba(13, 43, 69, 0.04);
}

.det-section-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
}

.det-subsection {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin: 1.5rem 0 0.8rem;
}

.det-tab-content p {
  font-size: 0.88rem;
  color: var(--navy-light);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.det-features {
  list-style: none;
  padding: 0;
}

.det-features li {
  font-size: 0.86rem;
  color: var(--navy-light);
  line-height: 1.6;
  margin-bottom: 0.6rem;
  display: flex;
  gap: 0.5rem;
}

.det-features i {
  color: var(--sun-gold);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.det-info-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.det-info-card {
  background: #F7F9FB;
  border-radius: 12px;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.det-info-card i {
  font-size: 1.2rem;
  color: var(--ocean);
  margin-bottom: 0.2rem;
}

.det-info-card strong {
  font-size: 0.8rem;
  color: var(--navy);
}

.det-info-card span {
  font-size: 0.78rem;
  color: #7A8EA0;
}

/* Map */
.det-map-container {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(13, 43, 69, 0.06);
}

.det-map-details p {
  font-size: 0.85rem;
  color: #7A8EA0;
  margin-bottom: 0.3rem;
}

.det-map-details i {
  margin-right: 0.3rem;
}

/* Reviews */
.det-reviews-summary {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(13, 43, 69, 0.06);
}

.det-score {
  text-align: center;
  flex-shrink: 0;
}

.det-score-num {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.det-score-stars {
  color: var(--sun-gold);
  font-size: 0.9rem;
  margin: 0.3rem 0;
}

.det-score-count {
  font-size: 0.75rem;
  color: #7A8EA0;
}

.det-score-bars {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 0;
}

.det-bar-row {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.78rem;
  color: #7A8EA0;
}

.det-bar-row > span:first-child {
  width: 70px;
  flex-shrink: 0;
  text-align: right;
}

.det-bar-row > span:last-child {
  width: 30px;
  font-weight: 600;
  color: var(--navy);
}

.det-bar {
  flex: 1;
  height: 8px;
  background: #EDF3F6;
  border-radius: 4px;
  overflow: hidden;
}

.det-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--ocean), var(--turquoise));
  border-radius: 4px;
}

.det-review-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.det-review {
  background: #F7F9FB;
  border-radius: 12px;
  padding: 1.2rem;
}

.det-review-head {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.6rem;
}

.det-review-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ocean), var(--turquoise));
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.det-review-head strong {
  font-size: 0.85rem;
  color: var(--navy);
  display: block;
}

.det-review-head small {
  font-size: 0.72rem;
  color: #7A8EA0;
}

.det-review-rating {
  margin-left: auto;
  color: var(--sun-gold);
  font-size: 0.75rem;
}

.det-review p {
  font-size: 0.85rem;
  color: var(--navy-light);
  line-height: 1.6;
  margin: 0;
  font-style: italic;
}

/* Static rooms section (pre-search) */
.static-rooms-section {
  margin-top: 1.5rem;
}

.static-rooms-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1rem;
}

/* ── Booking sidebar ── */
.det-sidebar-sticky {
  position: sticky;
  top: 100px;
  z-index: 10;
}

.det-booking {
  background: #fff;
  border-radius: 16px;
  padding: 1.8rem;
  box-shadow: 0 4px 20px rgba(13, 43, 69, 0.06);
  border: 1px solid rgba(13, 43, 69, 0.04);
  margin-bottom: 1.2rem;
}

/* Override search form to full-width inside .det-booking */
.det-booking #travio-search-form .inputs-grid {
  grid-template-columns: 1fr !important;
}

.det-booking #travio-search-form .row,
.det-booking #travio-search-form [class*=col-] {
  flex: none;
  width: 100%;
  max-width: 100%;
}

.det-booking-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  margin-bottom: 1.2rem;
}

/* Quick Facts */
.det-facts {
  background: #fff;
  border-radius: 16px;
  padding: 1.5rem;
  box-shadow: 0 4px 20px rgba(13, 43, 69, 0.06);
  border: 1px solid rgba(13, 43, 69, 0.04);
}

.det-facts-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #7A8EA0;
  margin-bottom: 1rem;
}

.det-fact {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(13, 43, 69, 0.04);
}

.det-fact:last-child {
  border-bottom: none;
}

.det-fact > i {
  font-size: 1rem;
  color: var(--ocean);
  width: 24px;
  text-align: center;
  flex-shrink: 0;
}

.det-fact strong {
  font-size: 0.78rem;
  color: var(--navy);
  display: block;
}

.det-fact span {
  font-size: 0.72rem;
  color: #7A8EA0;
}

/* ── Booking Configurator ── */
.bk-section {
  margin-top: 3rem;
  padding-top: 2rem;
}

.bk-divider {
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
}

.bk-divider::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(13, 43, 69, 0.1);
}

.bk-divider span {
  position: relative;
  background: #F7F9FB;
  padding: 0 1.5rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
}

/* Steps */
.bk-steps {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.bk-step {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.2rem;
  background: #fff;
  border: 2px solid rgba(13, 43, 69, 0.06);
  border-radius: 14px;
  cursor: pointer;
  transition: all 0.25s;
  font-family: "Outfit", sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: #7A8EA0;
  position: relative;
}

.bk-step small {
  display: block;
  font-size: 0.7rem;
  font-weight: 400;
  color: #7A8EA0;
  margin-top: 0.1rem;
}

.bk-step i {
  font-size: 1.2rem;
}

.bk-step.active {
  border-color: var(--ocean);
  color: var(--navy);
  background: rgba(14, 124, 154, 0.03);
  box-shadow: 0 2px 12px rgba(14, 124, 154, 0.08);
}

.bk-step.active i {
  color: var(--ocean);
}

.bk-step:hover:not(.active) {
  border-color: rgba(13, 43, 69, 0.12);
}

/* Panel */
.bk-panel-title {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.2rem;
}

/* Room Cards */
.bk-room {
  display: flex;
  gap: 1.2rem;
  background: #fff;
  border: 2px solid rgba(13, 43, 69, 0.06);
  border-radius: 16px;
  padding: 1.2rem;
  margin-bottom: 1rem;
  transition: all 0.3s;
  position: relative;
}

.bk-room:hover {
  box-shadow: 0 4px 20px rgba(13, 43, 69, 0.06);
}

.bk-room--selected {
  border-color: var(--ocean);
  background: rgba(14, 124, 154, 0.015);
  box-shadow: 0 4px 20px rgba(14, 124, 154, 0.08);
}

.bk-room-img {
  width: 180px;
  flex-shrink: 0;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.bk-room-img img {
  width: 100%;
  height: 130px;
  object-fit: cover;
  border-radius: 12px;
}

.bk-room-dots {
  display: flex;
  gap: 0.3rem;
  justify-content: center;
  margin-top: 0.4rem;
}

.bk-room-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(13, 43, 69, 0.12);
}

.bk-room-dots span.active {
  background: var(--ocean);
}

.bk-room-info {
  flex: 1;
  min-width: 0;
}

.bk-room-name {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 0.2rem;
}

.bk-room-board {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--ocean);
  display: flex;
  align-items: center;
  gap: 0.3rem;
  margin-bottom: 0.4rem;
}

.bk-room-desc {
  font-size: 0.8rem;
  color: #7A8EA0;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.bk-room-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  flex-shrink: 0;
  min-width: 140px;
  text-align: right;
}

.bk-avail {
  font-size: 0.7rem;
  font-weight: 500;
  color: #22C55E;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.bk-price-tag {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.bk-price-tag small {
  font-size: 0.7rem;
  font-weight: 400;
  color: #7A8EA0;
}

.bk-room-toggle label {
  font-size: 0.72rem;
  color: #7A8EA0;
  cursor: pointer;
}

.bk-room--selected .bk-room-toggle label {
  color: var(--ocean);
  font-weight: 600;
}

.form-check-input:checked {
  background-color: var(--ocean);
  border-color: var(--ocean);
}

/* Room amenity chips */
.bk-room-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  margin-top: 0.4rem;
}
.bk-room-amenities span {
  font-size: 0.65rem;
  color: #7A8EA0;
  background: #F3F6F9;
  padding: 0.2rem 0.5rem;
  border-radius: 50px;
}

/* Extras */
.bk-extras-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.bk-extra {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border: 1.5px solid rgba(13, 43, 69, 0.05);
  border-radius: 12px;
  padding: 0.85rem 1.1rem;
  transition: all 0.2s;
}

.bk-extra--included {
  background: rgba(14, 124, 154, 0.02);
  border-color: rgba(14, 124, 154, 0.08);
}

.bk-extra-name {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--navy);
}

.bk-extra-tag {
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--sun-gold);
  background: rgba(245, 166, 35, 0.1);
  padding: 0.15rem 0.5rem;
  border-radius: 50px;
  margin-left: 0.5rem;
  display: inline-block;
}

.bk-tag-green {
  color: #22C55E;
  background: rgba(34, 197, 94, 0.08);
}

.bk-val-included {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--ocean);
}

.bk-extra-right {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-shrink: 0;
}

.bk-extra-price {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
}

.bk-price-green {
  color: #22C55E;
}

.bk-extra--discount {
  border-color: rgba(34, 197, 94, 0.15);
  background: rgba(34, 197, 94, 0.02);
}

/* Modify search button */
.bk-modify-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  width: 100%;
  padding: 0.6rem 1rem;
  margin-bottom: 0.8rem;
  background: rgba(14, 124, 154, 0.04);
  border: 1.5px dashed rgba(14, 124, 154, 0.25);
  border-radius: 10px;
  color: var(--ocean);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s;
}

.bk-modify-btn:hover {
  background: rgba(14, 124, 154, 0.08);
  border-color: var(--ocean);
}

/* Summary */
.bk-summary {
  background: #fff;
  border-radius: 16px;
  padding: 1.8rem;
  box-shadow: 0 4px 24px rgba(13, 43, 69, 0.07);
  border: 1px solid rgba(13, 43, 69, 0.04);
}

.bk-summary-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 1.2rem;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid rgba(13, 43, 69, 0.06);
}

.bk-summary-resort {
  text-align: center;
  margin-bottom: 1.2rem;
}

.bk-summary-img {
  width: 100%;
  height: 140px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 0.6rem;
}

.bk-summary-stars {
  color: var(--sun-gold);
  font-size: 0.7rem;
  margin-bottom: 0.15rem;
}

.bk-summary-resort h6 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin: 0 0 0.15rem;
}

.bk-summary-loc {
  font-size: 0.72rem;
  color: #7A8EA0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
}

.bk-summary-dates {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(13, 43, 69, 0.05);
}

.bk-sum-label {
  display: block;
  font-size: 0.62rem;
  color: #7A8EA0;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.bk-summary-dates strong {
  font-size: 0.82rem;
  color: var(--navy);
}

.bk-summary-room {
  background: #F7F9FB;
  border-radius: 10px;
  padding: 0.8rem 1rem;
  margin-bottom: 0.8rem;
}

.bk-summary-room strong {
  display: block;
  font-size: 0.88rem;
  color: var(--navy);
}

.bk-summary-room small {
  font-size: 0.75rem;
  color: #7A8EA0;
}

.bk-summary-extras {
  margin-bottom: 0.8rem;
}

.bk-sum-extra-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--navy-light);
  padding: 0.35rem 0;
  border-bottom: 1px dashed rgba(13, 43, 69, 0.06);
}

.bk-sum-extra-row:last-child {
  border-bottom: none;
}

.bk-sum-discount {
  color: #22C55E;
}

.bk-summary-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-top: 2px solid rgba(13, 43, 69, 0.08);
  margin-top: 0.5rem;
}

.bk-summary-total span:first-child {
  font-size: 0.85rem;
  color: #7A8EA0;
}

.bk-total-amount {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--ocean);
}

.bk-summary-note {
  background: rgba(14, 124, 154, 0.04);
  border-radius: 10px;
  padding: 0.65rem 0.8rem;
  font-size: 0.75rem;
  color: var(--navy-light);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.bk-summary-note i {
  color: var(--ocean);
  flex-shrink: 0;
}

.bk-btn-continue {
  background: linear-gradient(135deg, #E63946, #FF6B6B);
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
  border: none;
  border-radius: 12px;
  height: 52px;
  transition: all 0.3s;
  letter-spacing: 0.03em;
}

.bk-btn-continue:hover {
  background: linear-gradient(135deg, #D32F3F, #E63946);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(230, 57, 70, 0.3);
}

.bk-save-link {
  display: block;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--ocean);
  margin-top: 0.8rem;
  text-decoration: none;
  transition: color 0.2s;
}

.bk-save-link:hover {
  color: var(--navy);
}

.bk-save-note {
  font-size: 0.7rem;
  color: #7A8EA0;
  text-align: center;
  margin-top: 0.3rem;
  line-height: 1.4;
}

/* Mobile booking bar (fixed bottom, < 992px, when results) */
.mobile-booking-bar {
  display: none;
}
@media (max-width: 991.98px) {
  .mobile-booking-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    background: #fff;
    border-top: 1px solid rgba(13, 43, 69, 0.08);
    padding: 0.75rem 1.2rem;
    box-shadow: 0 -4px 16px rgba(13, 43, 69, 0.08);
  }
}

.mobile-booking-price {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
}

.mobile-booking-price small {
  font-size: 0.7rem;
  font-weight: 400;
  color: #7A8EA0;
  display: block;
}

.mobile-booking-btn {
  background: linear-gradient(135deg, var(--navy), var(--ocean));
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  padding: 0.6rem 1.4rem;
  cursor: pointer;
  transition: all 0.25s;
  flex-shrink: 0;
}

.mobile-booking-btn:hover {
  opacity: 0.9;
}

@media (max-width: 991.98px) {
  body.has-booking-bar {
    padding-bottom: 80px;
  }
}

/* ── Sidebar booking info ── */
.det-booking-price {
  text-align: center;
  padding: 0.6rem 0;
}

.det-booking-from {
  display: block;
  font-size: 0.68rem;
  color: #7A8EA0;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.det-booking-amount {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--navy);
}

.det-booking-hr {
  border-color: rgba(13, 43, 69, 0.06);
  margin: 0.8rem 0;
}

.det-booking-info {
  margin-bottom: 1rem;
}

.dbi-row {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  color: #7A8EA0;
  margin-bottom: 0.4rem;
}

.dbi-row i {
  color: var(--ocean);
}

.btn-booking-whatsapp {
  background: #25D366;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  border: none;
  border-radius: 10px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  text-decoration: none;
}

.btn-booking-whatsapp:hover {
  background: #1EBE5A;
  color: #fff;
  transform: translateY(-1px);
}

/* ── Responsive ── */
@media (max-width: 991.98px) {
  .det-header {
    flex-direction: column;
  }
  .det-header-right {
    text-align: left;
  }
  .det-header-right span {
    justify-content: flex-start;
  }
  .det-reviews-summary {
    flex-direction: column;
    align-items: center;
  }
  .det-info-grid {
    grid-template-columns: 1fr;
  }
  .det-booking {
    position: static;
  }
  .bk-room {
    flex-direction: column;
  }
  .bk-room-img {
    width: 100%;
  }
  .bk-room-img img {
    height: 180px;
  }
  .bk-room-price {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    margin-top: 0.6rem;
    min-width: auto;
  }
  .bk-steps {
    flex-direction: column;
  }
  .bk-summary {
    position: static;
    margin-top: 1.5rem;
  }
}
@media (max-width: 575.98px) {
  .det-main {
    padding-top: 85px;
  }
  .det-thumb {
    width: 70px;
    height: 48px;
  }
  .det-tab {
    font-size: 0.78rem;
    padding: 0.5rem 1rem;
  }
  .det-tab-content {
    padding: 1.2rem;
  }
  .bk-room-price {
    flex-wrap: wrap;
  }
  .bk-price-tag {
    font-size: 1.3rem;
  }
  .bk-total-amount {
    font-size: 1.6rem;
  }
}
/* ── Search form inside sidebar (detail page) ── */
.det-booking #travio-search-form [class*=col-] {
  flex: 0 0 100%;
  max-width: 100%;
}
.det-booking #travio-search-form #quick-destinations-cnt {
  display: none !important;
}
.det-booking #travio-search-form .input-el {
  background: #F7F9FB;
  border: 1.5px solid rgba(13, 43, 69, 0.1);
  border-radius: 10px;
}
.det-booking #travio-search-form .input-el i {
  color: var(--ocean);
  font-size: 0.85rem;
}
.det-booking #travio-search-form .btn-search {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border: none;
  height: 48px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: 10px;
}
.det-booking #travio-search-form .btn-search:hover {
  background: linear-gradient(135deg, var(--ocean), var(--turquoise));
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(14, 124, 154, 0.3);
}