/**
 * Theme polish for travel-booking-engine public UI.
 * Keeps plugin markup/JS hooks; elevates look to CIPYAR design system.
 */

body.cipyar-theme .tbe-public,
body.cipyar-theme .tbe-public * {
  font-family: "Vazirmatn", Tahoma, sans-serif;
}

body.cipyar-theme .tbe-public {
  --tbe-primary: var(--cip-primary);
  --tbe-primary-dark: var(--cip-primary-dark);
  --tbe-primary-light: var(--cip-primary-soft);
  --tbe-accent: var(--cip-accent);
  --tbe-gold: var(--cip-gold);
  --tbe-radius: var(--cip-radius);
  --tbe-shadow: var(--cip-shadow);
}

/* Buttons */
body.cipyar-theme .tbe-btn {
  border-radius: 999px !important;
  font-weight: 400;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

body.cipyar-theme .tbe-btn--primary {
  background: var(--cip-primary) !important;
  border-color: var(--cip-primary) !important;
  box-shadow: 0 8px 22px rgba(0, 37, 85, 0.2);
}

body.cipyar-theme .tbe-btn--primary:hover {
  background: var(--cip-primary-dark) !important;
  transform: translateY(-1px);
}

body.cipyar-theme .tbe-btn--outline {
  border-color: var(--cip-border) !important;
  color: var(--cip-primary) !important;
}

/* Archive shell (enhanced by theme template) */
.cip-archive {
  padding: 0 0 3.5rem;
}

.cip-archive__hero {
  background:
    radial-gradient(circle at 90% 10%, rgba(201, 162, 39, 0.14), transparent 35%),
    linear-gradient(180deg, var(--cip-surface-muted), #fff);
  padding: 2.25rem 0 1.75rem;
  border-bottom: 1px solid var(--cip-border);
  margin-bottom: 1.75rem;
}

.cip-archive__layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.cip-filters {
  background: #fff;
  border: 1px solid var(--cip-border);
  border-radius: var(--cip-radius);
  padding: 1.15rem;
  box-shadow: 0 4px 18px rgba(0, 37, 85, 0.04);
  position: sticky;
  top: calc(var(--cip-header-h) + 1rem);
}

.cip-filters__title {
  margin: 0 0 1rem;
  font-size: 1.05rem;
}

.cip-filters__group {
  margin-bottom: 1.15rem;
  padding-bottom: 1.15rem;
  border-bottom: 1px solid var(--cip-border);
}

.cip-filters__group:last-of-type {
  border-bottom: 0;
  margin-bottom: 0.75rem;
  padding-bottom: 0;
}

.cip-filters__label {
  display: block;
  font-weight: 700;
  font-size: 0.88rem;
  margin-bottom: 0.55rem;
}

.cip-filters input[type="text"],
.cip-filters input[type="number"],
.cip-filters select {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--cip-border);
  border-radius: 10px;
  padding: 0.5rem 0.75rem;
  background: var(--cip-surface-muted);
}

.cip-filters__radios,
.cip-filters__checks {
  display: grid;
  gap: 0.45rem;
}

.cip-filters__radios label,
.cip-filters__checks label {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.9rem;
  cursor: pointer;
}

.cip-filters__range {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.cip-filters__submit {
  width: 100%;
  min-height: 46px;
  border: 0;
  border-radius: 999px;
  background: var(--cip-primary);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
}

.cip-filters__submit:hover {
  background: var(--cip-primary-dark);
}

.cip-archive__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.cip-archive__count {
  color: var(--cip-text-muted);
  font-size: 0.92rem;
}

.cip-archive__tools {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.cip-view-toggle {
  display: inline-flex;
  border: 1px solid var(--cip-border);
  border-radius: 10px;
  overflow: hidden;
}

.cip-view-toggle button {
  width: 40px;
  height: 40px;
  border: 0;
  background: #fff;
  cursor: pointer;
  color: var(--cip-text-muted);
}

.cip-view-toggle button.is-active {
  background: var(--cip-primary-soft);
  color: var(--cip-primary);
}

.cip-filters-toggle {
  display: none;
  min-height: 40px;
  padding: 0 1rem;
  border: 1px solid var(--cip-border);
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  font-weight: 600;
}

/* Tour cards inside plugin markup */
body.cipyar-theme .tbe-tour-card {
  border: 1px solid var(--cip-border);
  border-radius: var(--cip-radius);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 16px rgba(0, 37, 85, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

body.cipyar-theme .tbe-tour-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--cip-shadow-hover);
}

body.cipyar-theme .tbe-tour-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  display: block;
}

body.cipyar-theme .tbe-tour-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

body.cipyar-theme .tbe-tour-card:hover .tbe-tour-card__media img {
  transform: scale(1.05);
}

body.cipyar-theme .tbe-tour-card__badge {
  position: absolute;
  top: 0.75rem;
  inset-inline-start: 0.75rem;
  background: #00172f;
  border-radius: 999px;
  padding: 0.25rem 0.65rem;
  font-size: 0.75rem;
  font-weight: 700;
}

body.cipyar-theme .tbe-tour-card__destination {
  color: var(--cip-primary) !important;
  font-weight: 600;
  font-size: 0.82rem;
}

body.cipyar-theme .tbe-tour-card__price {
  color: var(--cip-primary);
}

body.cipyar-theme .tbe-catalog__grid {
  gap: 1.25rem;
}

body.cipyar-theme .tbe-archive {
  max-width: none;
  padding: 0;
}

body.cipyar-theme .tbe-archive__header {
  text-align: right;
}

body.cipyar-theme .tbe-pagination .page-numbers,
body.cipyar-theme .tbe-pagination a,
body.cipyar-theme .tbe-pagination span {
  border-radius: 10px !important;
}

body.cipyar-theme .tbe-pagination .current {
  background: var(--cip-primary) !important;
  border-color: var(--cip-primary) !important;
}

/* Single tour — CIPYAR booking UI (matches design mock) */
body.cipyar-theme .tbe-single-tour {
  padding-bottom: 3rem;
  background: linear-gradient(to bottom, #ffffff, #f6f7f8);
}

body.cipyar-theme .tbe-single__breadcrumb {
  width: min(100% - 32px, var(--cip-container));
  margin: 1rem auto 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.76rem;
  color: var(--cip-text-muted);
}

body.cipyar-theme .tbe-single__breadcrumb a {
  color: var(--cip-text-muted);
  text-decoration: none;
  transition: color 0.2s ease;
}

body.cipyar-theme .tbe-single__breadcrumb a:hover {
  color: var(--cip-primary);
}

body.cipyar-theme .tbe-single__breadcrumb-sep {
  color: rgba(0, 37, 85, 0.25);
}

body.cipyar-theme .tbe-single__breadcrumb-current {
  max-width: min(50vw, 360px);
  overflow: hidden;
  color: var(--cip-primary);
  font-weight: 700;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Hero with floating card */
body.cipyar-theme .cip-tour-hero {
  width: min(100% - 32px, var(--cip-container));
  margin: 0 auto 1.5rem;
  position: relative;
  isolation: isolate;
}

body.cipyar-theme .cip-tour-hero__media {
  position: relative;
  width: 100%;
  height: 460px;
  border-radius: 24px;
  overflow: hidden;
  background: #dce4df;
  box-shadow: 0 20px 55px rgba(34, 49, 42, 0.14);
}

body.cipyar-theme .cip-tour-hero__media::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 42%, rgba(25, 31, 27, 0.08) 76%, rgba(25, 31, 27, 0.22)),
    linear-gradient(0deg, rgba(20, 26, 22, 0.32), transparent 48%);
}

body.cipyar-theme .cip-tour-hero__media::after {
  content: "";
  position: absolute;
  z-index: 1;
  inset-inline: 0;
  bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--cip-gold), #e2c66d 38%, transparent 78%);
}

body.cipyar-theme .cip-tour-hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  max-width: none;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transform: scale(1.01);
  transition: transform 0.8s ease;
}

body.cipyar-theme .cip-tour-hero:hover .cip-tour-hero__img {
  transform: scale(1.045);
}

body.cipyar-theme .cip-tour-hero__fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  background:
    radial-gradient(circle at 20% 30%, rgba(201, 162, 39, 0.24), transparent 40%),
    linear-gradient(135deg, #cedbd3, #8fb9ad);
}

body.cipyar-theme .cip-tour-hero__fav {
  position: absolute;
  z-index: 3;
  top: 1rem;
  inset-inline-end: 1rem;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(10px);
  color: #c45c5c;
  display: grid;
  place-items: center;
  cursor: pointer;
  box-shadow: 0 8px 22px rgba(0, 18, 43, 0.16);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

body.cipyar-theme .cip-tour-hero__fav:hover {
  transform: scale(1.06);
  background: #fff;
}

body.cipyar-theme .cip-tour-hero__fav.is-active {
  color: #fff;
  background: linear-gradient(145deg, #d76868, #b93f4c);
  border-color: transparent;
}

body.cipyar-theme .cip-tour-hero__card {
  position: absolute;
  z-index: 2;
  inset-inline-start: 1.5rem;
  bottom: 1.5rem;
  width: min(610px, calc(100% - 3rem));
  margin: 0;
  padding: 1.25rem 1.35rem 1.3rem;
  color: var(--cip-text);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 19px;
  background:#fffffff2;
  box-shadow: 0 18px 45px rgba(27, 38, 31, 0.18);
}

body.cipyar-theme .cip-tour-hero__eyebrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.65rem;
}

body.cipyar-theme .cip-tour-hero__eyebrow > span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: #8e6f14;
  font-size: 0.68rem;
  font-weight: 800;
}

body.cipyar-theme .cip-tour-hero__eyebrow svg {
  width: 15px;
  height: 15px;
}

body.cipyar-theme .cip-tour-hero__eyebrow .cip-tour-hero__availability {
  padding: 0.24rem 0.52rem;
  color: #087867;
  border: 1px solid rgba(8, 120, 103, 0.16);
  border-radius: 999px;
  background: rgba(8, 120, 103, 0.07);
  font-size: 0.62rem;
}

body.cipyar-theme .cip-tour-hero__availability i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #62e1bd;
  box-shadow: 0 0 0 3px rgba(98, 225, 189, 0.12);
}

body.cipyar-theme .cip-tour-hero__title {
  margin: 0 0 0.7rem;
  color: #26352e;
  font-size: clamp(1.35rem, 2.3vw, 1.85rem);
  font-weight: 800;
  line-height: 1.5;
}

body.cipyar-theme .cip-tour-hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.75rem;
  font-size: 0.75rem;
  color: #54645b;
}

body.cipyar-theme .cip-tour-hero__place,
body.cipyar-theme .cip-tour-hero__duration,
body.cipyar-theme .cip-tour-hero__departure {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.32rem 0.55rem;
  border: 1px solid rgba(34, 49, 42, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.68);
}

body.cipyar-theme .cip-tour-hero__meta svg {
  color: #168c80;
}

body.cipyar-theme .cip-tour-hero__excerpt {
  margin: 0;
  max-width: 52rem;
  font-size: 0.82rem;
  line-height: 1.85;
  color: #66756d;
}

/* Hotel single: classic hero (tour page uses .cip-tour-hero instead) */
body.cipyar-theme .tbe-single-hotel .tbe-single__breadcrumb {
  width: 100%;
  margin: 0 0 0.85rem;
}

body.cipyar-theme .tbe-single-hotel .tbe-single__hero {
  width: 100%;
  margin: 0 0 1.5rem;
  border-radius: var(--cip-radius-lg);
  overflow: hidden;
  min-height: 320px;
  position: relative;
}

body.cipyar-theme .tbe-single-hotel .tbe-single__hero--has-image {
  background: var(--cip-primary-dark);
}

body.cipyar-theme .tbe-single-hotel .tbe-single__hero-img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

body.cipyar-theme .tbe-single-hotel .tbe-single__hero-content {
  position: relative;
  z-index: 1;
  padding: 2.5rem 1.75rem 1.75rem;
  background: linear-gradient(180deg, transparent 10%, rgba(0, 26, 60, 0.78));
  color: #fff;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

body.cipyar-theme .tbe-single-hotel .tbe-single__title {
  color: #fff !important;
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  margin: 0 0 0.5rem;
}

body.cipyar-theme .tbe-single-hotel .tbe-single__destination,
body.cipyar-theme .tbe-single-hotel .tbe-single__hero-meta {
  color: rgba(255, 255, 255, 0.92) !important;
}

body.cipyar-theme .tbe-single-hotel .tbe-hotel__latin,
body.cipyar-theme .tbe-single-hotel .tbe-hotel__lead {
  color: rgba(255, 255, 255, 0.88);
}

body.cipyar-theme .tbe-single-hotel .tbe-single__hero-meta {
  list-style: none;
  margin: 0.75rem 0 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.1rem;
}

body.cipyar-theme .tbe-single-hotel .tbe-single__hero-meta li {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

/* Hotel layout: main + contact sidebar. Tour uses .cip-tour-book__layout (sidebar first). */
body.cipyar-theme .tbe-single__layout {
  width: min(100% - 32px, var(--cip-container));
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 1.5rem;
  align-items: start;
}

body.cipyar-theme .tbe-single-hotel .tbe-single__layout {
  width: 100%;
}

body.cipyar-theme .cip-tour-book__layout {
  width: min(100% - 32px, var(--cip-container));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 300px minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
}

body.cipyar-theme .cip-tour-book__layout > .tbe-single__sidebar {
  align-self: stretch;
}

body.cipyar-theme .cip-book-step__title {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 0.85rem;
  font-size: 1.12rem;
  font-weight: 800;
  color: var(--cip-text);
}

body.cipyar-theme .cip-book-step__num {
  display: inline-grid;
  place-items: center;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 999px;
  /* background: #fff; */
  color: var(--cip-primary);
  font-size: 0.85rem;
  font-weight: 800;
  flex-shrink: 0;
  border: 1px solid rgb(0 37 85 / 15%);
}

body.cipyar-theme .tbe-single__section-title {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 1.12rem;
  margin: 0 0 1.15rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(0, 37, 85, 0.08);
  font-weight: 800;
  color: var(--cip-primary-dark);
}

body.cipyar-theme .tbe-single__section-title::before {
  content: "";
  width: 11px;
  height: 11px;
  border: 3px solid #fff;
  border-radius: 4px;
  background: linear-gradient(145deg, var(--cip-gold), var(--cip-accent));
  box-shadow: 0 0 0 1px rgba(0, 37, 85, 0.1), 0 4px 10px rgba(1, 146, 162, 0.18);
  transform: rotate(45deg);
  flex-shrink: 0;
}

body.cipyar-theme .tbe-single__main {
  display: grid;
  align-content: start;
  gap: 1rem;
  min-width: 0;
}

body.cipyar-theme .tbe-single__section {
  position: relative;
  margin-bottom: 0 !important;
  overflow: hidden;
  background:
    radial-gradient(circle at 100% 0, rgba(1, 146, 162, 0.035), transparent 16rem),
    #fff;
  border: 1px solid rgba(0, 37, 85, 0.09);
  border-radius: 20px;
  padding: 1.35rem 1.45rem;
  box-shadow: 0 8px 28px rgba(0, 37, 85, 0.045);
}

body.cipyar-theme .tbe-single__section--hotels {
  padding: 1.4rem 1.45rem 1.55rem;
  background:
    linear-gradient(180deg, rgba(245, 249, 247, 0.72), #fff 9rem);
}

body.cipyar-theme .tbe-hotels-heading {
  position: relative;
  margin: -1.4rem -1.45rem 1.15rem;
  padding: 1.25rem 1.45rem 1.05rem;
  border-bottom: 1px solid rgba(0, 37, 85, 0.08);

}

body.cipyar-theme .tbe-hotels-heading .cip-book-step__title {
  margin-bottom: 0.25rem;
  color: var(--cip-primary-dark);
}

body.cipyar-theme .tbe-hotels-heading__lead {
  margin: 0;
  padding-inline-start: 2.35rem;
  color: var(--cip-text-muted);
  font-size: 0.78rem;
  line-height: 1.65;
}

/* Sticky stack: date panel + summary (plugin JS fixes #tbe-booking-panel) */
body.cipyar-theme .cip-book-sticky {
  position: sticky !important;
  top: calc(var(--cip-header-h) + 1rem) !important;
  right: auto !important;
  left: auto !important;
  width: auto !important;
  margin-bottom: 1.5rem;
  z-index: 40;
  filter: drop-shadow(0 18px 35px rgba(0, 37, 85, 0.08));
}

/* Date panel — keep static so sticky applies to the whole stack, not only dates */
body.cipyar-theme .cip-tour-book .cip-book-panel,
body.cipyar-theme .cip-tour-book .tbe-booking-panel {
  position: static;
}

body.cipyar-theme .cip-book-panel,
body.cipyar-theme .tbe-booking-panel {
  position: relative;
  border: 1px solid rgba(0, 37, 85, 0.1);
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 37, 85, 0.06);
  background:
    radial-gradient(circle at 100% 0, rgba(1, 146, 162, 0.06), transparent 14rem),
    #fff;
  padding: 0 1.1rem 1.1rem;
  overflow: visible;
}

body.cipyar-theme .tbe-booking-panel__price {
  display: none;
}

body.cipyar-theme .cip-book-panel__header {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 -1.1rem 1.15rem;
  padding: 1rem 1.05rem;
  overflow: hidden;
  color: #fff;
  border-radius: 19px 19px 0 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(1, 146, 162, 0.38), transparent 10rem),
    linear-gradient(130deg, #001a3c, #00376f);
}

body.cipyar-theme .cip-book-panel__header::after {
  content: "";
  position: absolute;
  inset-inline-end: -18px;
  bottom: -28px;
  width: 86px;
  height: 86px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 14px rgba(255, 255, 255, 0.025);
}

body.cipyar-theme .cip-book-panel__header-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: 13px;
  background: linear-gradient(145deg, var(--cip-accent), #007481);
  box-shadow: 0 8px 18px rgba(1, 146, 162, 0.22);
}

body.cipyar-theme .cip-book-panel__header-icon svg {
  width: 20px;
  height: 20px;
}

body.cipyar-theme .cip-book-panel__header > span:last-child {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 0.12rem;
}

body.cipyar-theme .cip-book-panel__header small {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.65rem;
}

body.cipyar-theme .cip-book-panel__header strong {
  color: #fff;
  font-size: 0.87rem;
  line-height: 1.55;
}

body.cipyar-theme .cip-book-panel .cip-book-step__title {
  gap: 0.55rem;
  margin-bottom: 0.8rem;
  font-size: 0.88rem;
}

body.cipyar-theme .cip-book-panel .cip-book-step__num {
  width: 1.55rem;
  height: 1.55rem;
  color: var(--cip-primary);
  border: 1px solid rgb(0 37 85 / 15%);
  font-size: 0.7rem;
}

body.cipyar-theme .tbe-date-picker {
  margin-bottom: 0;
}

body.cipyar-theme .tbe-date-picker__list {
  display: grid;
  gap: 0.6rem;
}

body.cipyar-theme .tbe-date-option__card {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: 0.7rem;
  padding: 0.78rem !important;
  border-radius: 14px !important;
  border: 1px solid #e5ebe8 !important;
  background: #fbfcfc !important;
  box-shadow: none;
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

body.cipyar-theme .tbe-date-option__radio {
  width: 1.2rem;
  height: 1.2rem;
  margin-top: 0;
  border-radius: 7px;
  border: 1.5px solid #bac6c0;
  background: #fff;
  flex-shrink: 0;
  position: relative;
}

body.cipyar-theme .tbe-date-option__radio::after {
  content: "✓";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: transparent;
  font-size: 0.72rem;
  font-weight: 900;
}

body.cipyar-theme .tbe-date-option__body {
  display: grid;
  gap: 0.38rem;
  min-width: 0;
  flex: 1;
}

body.cipyar-theme .tbe-date-option__label {
  font-size: 0.84rem;
  font-weight: 500;
  color: var(--cip-text);
  line-height: 1.45;
}

body.cipyar-theme .tbe-date-option__range {
  font-size: 0.76rem;
  color: var(--cip-text-muted);
  line-height: 1.4;
  margin-top: -0.25rem;
}

body.cipyar-theme .tbe-date-option__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  flex-wrap: wrap;
}

body.cipyar-theme .tbe-date-option__price {
  display: grid;
  gap: 0.1rem;
}

body.cipyar-theme .tbe-date-option__price em {
  font-style: normal;
  font-size: 0.7rem;
  color: var(--cip-text-muted);
}

body.cipyar-theme .tbe-date-option__price b {
  font-size: 0.78rem;
  font-weight: 800;
  color: var(--cip-primary);
}

body.cipyar-theme .tbe-date-option__status {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.15rem 0.4rem;
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 700;
}

body.cipyar-theme .tbe-date-option__status--ok {
  color: #007b70;
  background: #e9f7f4;
}

body.cipyar-theme .tbe-date-option__status--ok i {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--cip-accent);
  display: inline-block;
}

body.cipyar-theme .tbe-date-option__status--off {
  color: #b4232f;
  background: #fff0f1;
}

body.cipyar-theme .tbe-date-option:hover .tbe-date-option__card {
  border-color: rgba(1, 146, 162, 0.38) !important;
  transform: translateY(-1px);
  box-shadow: 0 7px 18px rgba(0, 37, 85, 0.065);
}

body.cipyar-theme .tbe-date-option input:checked + .tbe-date-option__card {
  border-color: var(--cip-primary) !important;
  background: linear-gradient(120deg, rgba(230, 233, 238, 0.75), rgba(236, 248, 248, 0.78)) !important;
  box-shadow: 0 0 0 1px rgba(0, 37, 85, 0.08), 0 8px 20px rgba(0, 37, 85, 0.07);
}

body.cipyar-theme .tbe-date-option input:checked + .tbe-date-option__card .tbe-date-option__radio {
  border-color: var(--cip-primary);
  background: var(--cip-primary);
}

body.cipyar-theme .tbe-date-option input:checked + .tbe-date-option__card .tbe-date-option__radio::after {
  color: #fff;
}

body.cipyar-theme .cip-date-calendar-btn {
  width: 100%;
  margin-top: 0.75rem;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border: 1px dashed rgba(1, 146, 162, 0.38);
  border-radius: 12px;
  background: rgba(1, 146, 162, 0.045);
  color: var(--cip-primary);
  font-weight: 700;
  font-size: 0.8rem;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

body.cipyar-theme .cip-date-calendar-btn:hover {
  color: #fff;
  background: var(--cip-accent);
  border-color: var(--cip-accent);
}

body.cipyar-theme .cip-book-panel__assurance {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 0.85rem;
  padding-top: 0.85rem;
  border-top: 1px dashed var(--cip-border);
}

body.cipyar-theme .cip-book-panel__assurance > svg {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  padding: 5px;
  color: var(--cip-accent);
  border-radius: 9px;
  background: rgba(1, 146, 162, 0.09);
}

body.cipyar-theme .cip-book-panel__assurance > span {
  display: grid;
  gap: 0.08rem;
}

body.cipyar-theme .cip-book-panel__assurance strong {
  color: var(--cip-text);
  font-size: 0.68rem;
}

body.cipyar-theme .cip-book-panel__assurance small {
  color: var(--cip-text-muted);
  font-size: 0.6rem;
}

/* Price calendar modal */
body.cip-price-cal-open {
  overflow: hidden;
}

.cip-price-cal[hidden] {
  display: none !important;
}

.cip-price-cal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 1.25rem;
}

.cip-price-cal__backdrop {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 30%, rgba(1, 146, 162, 0.13), transparent 30rem),
    rgba(0, 18, 43, 0.68);
  backdrop-filter: blur(7px);
  border: 0;
  cursor: pointer;
  animation: cip-cal-fade 0.22s ease-out both;
}

.cip-price-cal__dialog {
  position: relative;
  z-index: 1;
  width: min(100%, 760px);
  max-height: min(92vh, 760px);
  overflow: auto;
  overscroll-behavior: contain;
  background: #fff;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 0 35px 90px rgba(0, 18, 43, 0.34);
  animation: cip-cal-enter 0.3s cubic-bezier(0.2, 0.75, 0.25, 1) both;
}

@keyframes cip-cal-fade {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes cip-cal-enter {
  from { opacity: 0; transform: translateY(16px) scale(0.97); }
  to { opacity: 1; transform: none; }
}

.cip-price-cal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 1.5rem;
  color: #fff;
  background:
    radial-gradient(circle at 10% 10%, rgba(1, 146, 162, 0.35), transparent 16rem),
    linear-gradient(125deg, #001a3c, #00366f);
}

.cip-price-cal__heading {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.cip-price-cal__heading > span:last-child {
  display: grid;
  gap: 0.18rem;
}

.cip-price-cal__heading-icon {
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  display: grid;
  place-items: center;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 15px;
  background: linear-gradient(145deg, var(--cip-accent), #007685);
  box-shadow: 0 10px 25px rgba(1, 146, 162, 0.26);
}

.cip-price-cal__heading-icon svg {
  width: 24px;
  height: 24px;
}

.cip-price-cal__header h2 {
  margin: 0;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 800;
}

.cip-price-cal__header p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.76rem;
}

.cip-price-cal__close {
  width: 40px;
  height: 40px;
  flex: 0 0 40px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.78);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.cip-price-cal__close:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  transform: rotate(6deg);
}

.cip-price-cal__body {
  padding: 1.35rem 1.5rem 1.1rem;
  background:
    radial-gradient(circle at 50% 0, rgba(1, 146, 162, 0.045), transparent 18rem),
    #fff;
}

.cip-price-cal__nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  min-height: 60px;
  margin-bottom: 1.1rem;
  padding: 0.45rem 0.55rem;
  border: 1px solid var(--cip-border);
  border-radius: 16px;
  background: var(--cip-surface-muted);
}

.cip-price-cal__month-wrap {
  display: grid;
  justify-items: center;
  gap: 0.12rem;
}

.cip-price-cal__month-wrap small {
  color: var(--cip-text-muted);
  font-size: 0.66rem;
}

.cip-price-cal__month {
  color: var(--cip-primary);
  font-size: 1.05rem;
  font-weight: 800;
}

.cip-price-cal__nav-btn {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0, 37, 85, 0.09);
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  color: var(--cip-primary);
  box-shadow: 0 4px 12px rgba(0, 37, 85, 0.06);
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.cip-price-cal__nav-btn svg {
  width: 18px;
  height: 18px;
}

.cip-price-cal__nav-btn:hover {
  color: #fff;
  background: var(--cip-primary);
  transform: translateY(-1px);
}

.cip-price-cal__weekdays,
.cip-price-cal__grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
  gap: 0.45rem;
}

.cip-price-cal__weekdays {
  margin-bottom: 0.55rem;
  text-align: center;
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--cip-text-muted);
}

.cip-price-cal__weekdays span:last-child {
  color: #c94f4f;
}

.cip-price-cal__cell {
  position: relative;
  min-width: 0;
  min-height: 68px;
  overflow: hidden;
  border: 1px solid #edf1ef;
  border-radius: 13px;
  background: #f8faf9;
  padding: 0.45rem 0.2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.15rem;
  font-family: inherit;
  color: var(--cip-text);
  cursor: default;
}

.cip-price-cal__cell.is-empty {
  background: transparent;
  min-height: 0;
  padding: 0;
  border: 0;
}

.cip-price-cal__cell.is-muted {
  color: #aeb7b2;
  background: #fbfcfc;
}

.cip-price-cal__cell.is-available {
  background: linear-gradient(145deg, #f0faf9, #e5f5f4);
  border-color: rgba(1, 146, 162, 0.24);
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.cip-price-cal__cell.is-available::before {
  content: "";
  position: absolute;
  top: 6px;
  inset-inline-end: 6px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cip-accent);
  box-shadow: 0 0 0 3px rgba(1, 146, 162, 0.1);
}

.cip-price-cal__cell.is-available:hover {
  transform: translateY(-3px);
  border-color: var(--cip-accent);
  box-shadow: 0 10px 22px rgba(1, 146, 162, 0.13);
}

.cip-price-cal__cell.is-selected {
  background: linear-gradient(145deg, var(--cip-primary), #003f7f);
  border-color: var(--cip-primary);
  color: #fff;
  box-shadow: 0 10px 22px rgba(0, 37, 85, 0.2);
}

.cip-price-cal__cell.is-selected::before {
  background: var(--cip-gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 39, 0.18);
}

.cip-price-cal__cell.is-selected .cip-price-cal__price {
  color: rgba(255, 255, 255, 0.88);
}

.cip-price-cal__cell.is-unavailable {
  color: #a77777;
  background: repeating-linear-gradient(135deg, #fff8f8, #fff8f8 6px, #fdf3f3 6px, #fdf3f3 12px);
  border-color: #f3dada;
}

.cip-price-cal__day {
  font-size: 0.93rem;
  font-weight: 800;
  line-height: 1.2;
}

.cip-price-cal__price {
  font-size: 0.6rem;
  font-weight: 700;
  color: #006d79;
  line-height: 1.2;
  text-align: center;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  direction: ltr;
}

.cip-price-cal__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.5rem 1.15rem;
  border-top: 1px solid var(--cip-border);
  background: #fafcfb;
}

.cip-price-cal__legend {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1rem;
}

.cip-price-cal__legend span {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--cip-text-muted);
  font-size: 0.68rem;
}

.cip-price-cal__legend i {
  width: 10px;
  height: 10px;
  border-radius: 3px;
}

.cip-price-cal__legend i.is-available {
  background: #d9f2ef;
  border: 1px solid rgba(1, 146, 162, 0.35);
}

.cip-price-cal__legend i.is-selected {
  background: var(--cip-primary);
}

.cip-price-cal__legend i.is-unavailable {
  background: #f9e3e3;
  border: 1px solid #efcaca;
}

.cip-price-cal__hint {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0;
  font-size: 0.68rem;
  color: var(--cip-text-muted);
  line-height: 1.6;
  white-space: nowrap;
}

.cip-price-cal__hint svg {
  width: 16px;
  height: 16px;
  flex: 0 0 16px;
  color: var(--cip-accent);
}

/* Summary card */
body.cipyar-theme .cip-book-summary {
  position: relative;
  margin-top: 0.85rem;
  padding: 1rem 1.05rem 1.05rem;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(245, 249, 247, 0.92), rgba(255, 255, 255, 0.98));
  border: 1px solid rgba(0, 37, 85, 0.09);
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(0, 37, 85, 0.045);
}

body.cipyar-theme .cip-book-summary::after {
  content: "";
  position: absolute;
  inset-inline-end: -28px;
  top: -28px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(1, 146, 162, 0.045);
}

body.cipyar-theme .cip-book-summary__title {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 0.85rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--cip-border);
  font-size: 0.84rem;
  font-weight: 800;
}

body.cipyar-theme .cip-book-summary__title-icon {
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  display: grid;
  place-items: center;
  color: var(--cip-primary);
  border-radius: 9px;
  background: var(--cip-primary-soft);
}

body.cipyar-theme .cip-book-summary__title-icon svg {
  width: 16px;
  height: 16px;
}

body.cipyar-theme .cip-book-summary__list {
  margin: 0;
  display: grid;
  gap: 0;
}

body.cipyar-theme .cip-book-summary__list > div {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
  padding: 0.48rem 0;
  font-size: 0.75rem;
}

body.cipyar-theme .cip-book-summary__list dt {
  margin: 0;
  color: var(--cip-text-muted);
  font-weight: 500;
}

body.cipyar-theme .cip-book-summary__list dd {
  margin: 0;
  font-weight: 700;
  color: var(--cip-text);
  text-align: end;
}

body.cipyar-theme .cip-book-summary__total {
  margin-top: 0.25rem;
  padding-top: 0.75rem !important;
  border-top: 1px dashed var(--cip-border);
}

body.cipyar-theme .cip-book-summary__total dd {
  color: var(--cip-primary);
  font-size: 0.83rem;
  font-weight: 800;
}

/* Hotel cards */
body.cipyar-theme .tbe-pkg-hotels {
  display: grid;
  gap: 0.95rem;
  border: 0;
  border-radius: 0;
  overflow: visible;
  background: transparent;
}

body.cipyar-theme .tbe-pkg-hotel {
  display: grid !important;
  grid-template-columns: 128px minmax(0, 1fr) 156px;
  gap: 1rem;
  align-items: center;
  margin: 0;
  padding: 0.7rem;
  border: 1px solid var(--cip-border);
  border-radius: 14px;
  background: #fff;
  box-shadow: none;
  transition: border-color 0.2s ease;
}

body.cipyar-theme .tbe-pkg-hotel:hover {
  border-color: rgba(1, 146, 162, 0.3);
}

body.cipyar-theme .tbe-pkg-hotel--recommended {
  border-color: rgba(201, 162, 39, 0.3);
}

body.cipyar-theme .tbe-pkg-hotel__media {
  position: relative;
  width: 100%;
  height: auto;
  min-height: 100px;
  aspect-ratio: 1;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(145deg, var(--cip-primary-soft), var(--cip-border));
}

body.cipyar-theme .tbe-pkg-hotel__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

body.cipyar-theme .tbe-pkg-hotel:hover .tbe-pkg-hotel__media img {
  transform: scale(1.02);
}

body.cipyar-theme .tbe-pkg-hotel__placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: var(--cip-text-muted);
}

body.cipyar-theme .tbe-pkg-hotel__body {
  min-width: 0;
}

body.cipyar-theme .tbe-pkg-hotel__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.55rem;
  margin-bottom: 0.65rem;
}

body.cipyar-theme .tbe-pkg-hotel__title {
  margin: 0;
  font-size: 1rem;
  font-weight: 500;
  color: var(--cip-primary-dark);
}

body.cipyar-theme .tbe-pkg-hotel__title a {
  color: inherit;
  text-decoration: none;
}

body.cipyar-theme .tbe-pkg-hotel__badge {
  position: static;
  display: inline-flex;
  background: transparent;
  color: #876b12;
  border: 0;
  font-size: 0.66rem;
  font-weight: 700;
  padding: 0;
  border-radius: 0;
  box-shadow: none;
}

body.cipyar-theme .tbe-pkg-hotel__rating {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

body.cipyar-theme .tbe-pkg-hotel__stars {
  color: #e6b422 !important;
  display: inline-flex;
  gap: 1px;
}

body.cipyar-theme .tbe-pkg-hotel__rating em {
  display: none;
}

body.cipyar-theme .tbe-pkg-hotel__amenities {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

body.cipyar-theme .tbe-pkg-hotel__amenities li {
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  font-size: 0.7rem;
  color: var(--cip-text-muted);
}

body.cipyar-theme .tbe-pkg-hotel__amenities span {
  display: none;
}

body.cipyar-theme .tbe-pkg-hotel__amenities svg {
  color: var(--cip-text-muted);
  flex-shrink: 0;
}

body.cipyar-theme .tbe-pkg-hotel__rates {
  margin-top: 0.75rem;
}

body.cipyar-theme .tbe-pkg-hotel__rate-chip {
  border-radius: 0;
  border: 0;
  border-inline-start: 1px solid var(--cip-border);
  background: transparent;
  padding: 0 0.65rem;
}

body.cipyar-theme .tbe-pkg-hotel__action {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: center;
  gap: 0.55rem;
  min-height: 100%;
  padding: 0.25rem 0.75rem 0.25rem 0;
  border-inline-start: 1px solid var(--cip-border);
  background: transparent;
  text-align: center;
}

body.cipyar-theme .tbe-pkg-hotel__price-label {
  display: block;
  font-size: 0.72rem;
  color: var(--cip-text-muted);
  margin-bottom: 0.15rem;
}

body.cipyar-theme .tbe-pkg-hotel__price-value {
  display: block;
  font-size: 1rem;
  font-weight: 500;
  color: var(--cip-primary);
  line-height: 1.3;
}

body.cipyar-theme .tbe-pkg-hotel__cta {
  width: 100%;
  min-height: 42px;
  border-radius: 9px !important;
  background: var(--cip-accent) !important;
  box-shadow: none;
  font-size: 0.82rem;
  white-space: nowrap;
}

body.cipyar-theme .tbe-pkg-hotel__cta:hover {
  background: var(--cip-primary) !important;
}

body.cipyar-theme .tbe-pkg-hotel__details {
  display: none;
}

body.cipyar-theme .cip-tour-help {
  width: min(100% - 32px, var(--cip-container));
  margin: 1.75rem auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 0.75rem;
  padding: 1.1rem 1.25rem;
  color: var(--cip-text);
  font-size: 0.95rem;
  background: linear-gradient(120deg, var(--cip-primary-soft), #fff 70%);
  border: 1px solid var(--cip-border);
  border-radius: 16px;
}

body.cipyar-theme .cip-tour-help p {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  margin: 0;
}

body.cipyar-theme .cip-tour-help a {
  color: var(--cip-primary);
  font-weight: 800;
  text-decoration: none;
  margin-inline-start: 0.35rem;
}

body.cipyar-theme .cip-tour-help svg {
  color: var(--cip-primary);
  flex-shrink: 0;
}

body.cipyar-theme .tbe-similar-tours {
  width: min(100% - 32px, var(--cip-container));
  margin: 2rem auto 0;
  border: 0 !important;
  padding: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

body.cipyar-theme .cip-trust-box {
  display: none;
}

body.cipyar-theme .tbe-fact-card,
body.cipyar-theme .tbe-box {
  border-radius: var(--cip-radius) !important;
  border-color: var(--cip-border) !important;
}

body.cipyar-theme .tbe-itinerary__day {
  border-color: var(--cip-border) !important;
  border-radius: var(--cip-radius) !important;
}

body.cipyar-theme .tbe-itinerary__day-badge {
  background: var(--cip-primary) !important;
}

body.cipyar-theme .tbe-similar-tours {
  width: min(100% - 32px, var(--cip-container));
  margin: 2rem auto 0;
  border: 0 !important;
  padding: 0 !important;
  background: transparent !important;
}

/* Booking modal */
body.cipyar-theme .tbe-booking-modal {
  z-index: 2100;
  padding: 1.25rem;
}

body.cipyar-theme .tbe-booking-modal__backdrop {
  background:
    radial-gradient(circle at 50% 20%, rgba(1, 146, 162, 0.13), transparent 34rem),
    rgba(0, 18, 43, 0.72);
  backdrop-filter: blur(8px);
}

body.cipyar-theme .tbe-booking-modal__dialog {
  width: min(1120px, calc(100vw - 2.5rem));
  max-height: calc(100vh - 2.5rem);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 26px !important;
  background: #fff;
  box-shadow: 0 38px 100px rgba(0, 18, 43, 0.38);
  animation: cip-booking-enter 0.3s cubic-bezier(0.2, 0.75, 0.25, 1) both;
}

@keyframes cip-booking-enter {
  from { opacity: 0; transform: translateY(18px) scale(0.975); }
  to { opacity: 1; transform: none; }
}

body.cipyar-theme .tbe-booking-modal__header {
  position: relative;
  min-height: 102px;
  padding: 1.25rem 1.5rem;
  overflow: hidden;
  border: 0;
  color: #fff;
  background:
    radial-gradient(circle at 8% 5%, rgba(1, 146, 162, 0.42), transparent 18rem),
    radial-gradient(circle at 90% 120%, rgba(201, 162, 39, 0.12), transparent 15rem),
    linear-gradient(125deg, #00172f, #00366f);
}

body.cipyar-theme .tbe-booking-modal__header::after {
  content: "";
  position: absolute;
  inset-inline-end: 12%;
  bottom: -48px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  border-radius: 50%;
  box-shadow: 0 0 0 22px rgba(255, 255, 255, 0.025);
}

body.cipyar-theme .tbe-booking-modal__heading {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

body.cipyar-theme .tbe-booking-modal__heading-icon {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  display: grid;
  place-items: center;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 17px;
  background: linear-gradient(145deg, var(--cip-accent), #007582);
  box-shadow: 0 11px 25px rgba(1, 146, 162, 0.25);
}

body.cipyar-theme .tbe-booking-modal__heading-icon svg {
  width: 25px;
  height: 25px;
}

body.cipyar-theme .tbe-booking-modal__heading > div {
  display: grid;
  gap: 0.08rem;
}

body.cipyar-theme .tbe-booking-modal__eyebrow {
  color: var(--cip-gold);
  font-size: 0.66rem;
  font-weight: 700;
}

body.cipyar-theme .tbe-booking-modal__title {
  margin: 0;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 800;
}

body.cipyar-theme .tbe-booking-modal__subtitle {
  margin: 0.1rem 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.74rem;
}

body.cipyar-theme .tbe-booking-modal__close {
  position: relative;
  z-index: 2;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  color: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.08);
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

body.cipyar-theme .tbe-booking-modal__close:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.16);
  transform: rotate(6deg);
}

body.cipyar-theme .tbe-booking-modal__form {
  display: flex;
  flex-direction: column;
  max-height: calc(100vh - 8.9rem);
  min-height: 0;
}

body.cipyar-theme .tbe-booking-modal__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  min-height: 0;
  overflow: auto;
  background: #fff;
}

body.cipyar-theme .tbe-booking-modal__col {
  min-width: 0;
  padding: 1.35rem 1.45rem;
}

body.cipyar-theme .tbe-booking-modal__col--rooms {
  background:
    radial-gradient(circle at 100% 0, rgba(1, 146, 162, 0.055), transparent 18rem),
    #f7faf9;
  border-inline-end: 1px solid var(--cip-border);
}

body.cipyar-theme .tbe-room-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.9rem;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(0, 37, 85, 0.09);
  border-radius: 17px;
  background: #fff;
  box-shadow: 0 7px 20px rgba(0, 37, 85, 0.05);
}

body.cipyar-theme .tbe-room-hero__eyebrow {
  margin: 0 0 0.2rem;
  color: var(--cip-accent);
  font-size: 0.66rem;
  font-weight: 700;
}

body.cipyar-theme .tbe-room-hero__title {
  margin: 0 0 0.2rem;
  color: var(--cip-primary-dark);
  font-size: 1.02rem;
  font-weight: 800;
}

body.cipyar-theme .tbe-room-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.65rem;
  margin: 0;
  color: var(--cip-text-muted);
  font-size: 0.72rem;
}

body.cipyar-theme .tbe-room-hero__nights,
body.cipyar-theme .tbe-booking-modal__date-summary {
  padding: 0.25rem 0.5rem;
  color: var(--cip-primary);
  border-radius: 8px;
  background: var(--cip-primary-soft);
  font-size: 0.7rem;
}

body.cipyar-theme .tbe-booking-modal__date-summary {
  display: grid;
  gap: 0.08rem;
  min-width: 105px;
  padding: 0.55rem 0.65rem;
  text-align: center;
}

body.cipyar-theme .tbe-booking-modal__date-summary[hidden],
body.cipyar-theme .tbe-room-list__empty[hidden] {
  display: none !important;
}

body.cipyar-theme .tbe-booking-modal__date-summary strong {
  color: var(--cip-text-muted);
  font-size: 0.6rem;
}

body.cipyar-theme .tbe-room-list__hint {
  margin: 0 0 0.85rem;
  padding: 0.65rem 0.75rem;
  color: var(--cip-text-muted);
  border-inline-start: 3px solid var(--cip-accent);
  border-radius: 8px;
  background: rgba(1, 146, 162, 0.05);
  font-size: 0.7rem;
  line-height: 1.75;
}

body.cipyar-theme .tbe-room-list {
  display: grid;
  gap: 0.7rem;
}

body.cipyar-theme .tbe-room-card {
  border: 1px solid rgba(0, 37, 85, 0.09) !important;
  border-radius: 15px !important;
  background: #fff;
  box-shadow: 0 4px 14px rgba(0, 37, 85, 0.04);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

body.cipyar-theme .tbe-room-card:hover {
  border-color: rgba(1, 146, 162, 0.3) !important;
  box-shadow: 0 9px 24px rgba(0, 37, 85, 0.07);
}

body.cipyar-theme .tbe-booking-modal__field {
  display: grid;
  gap: 0.35rem;
  margin: 0 0 0.8rem;
}

body.cipyar-theme .tbe-booking-modal__field label {
  color: var(--cip-text);
  font-size: 0.72rem;
  font-weight: 700;
}

body.cipyar-theme .tbe-booking-modal__field input,
body.cipyar-theme .tbe-booking-modal__field textarea {
  width: 100%;
  min-height: 45px;
  padding: 0.65rem 0.8rem;
  color: var(--cip-text);
  border: 1px solid var(--cip-border);
  border-radius: 11px;
  outline: none;
  background: #fbfcfc;
  font-size: 0.8rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

body.cipyar-theme .tbe-booking-modal__field textarea {
  min-height: 72px;
  resize: vertical;
}

body.cipyar-theme .tbe-booking-modal__field input:focus,
body.cipyar-theme .tbe-booking-modal__field textarea:focus {
  border-color: var(--cip-accent);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(1, 146, 162, 0.1);
}

body.cipyar-theme .tbe-booking-modal__section-label {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 0.75rem;
  margin: 1rem 0 0.6rem;
  padding-top: 0.85rem;
  border-top: 1px solid var(--cip-border);
}

body.cipyar-theme .tbe-booking-modal__section-label strong {
  color: var(--cip-primary-dark);
  font-size: 0.82rem;
}

body.cipyar-theme .tbe-booking-modal__section-label span {
  color: var(--cip-text-muted);
  font-size: 0.58rem;
}

body.cipyar-theme .tbe-booking-modal__passengers {
  display: grid;
  gap: 0.45rem;
}

body.cipyar-theme .tbe-stepper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.62rem 0.72rem;
  border: 1px solid var(--cip-border);
  border-radius: 12px;
  background: #fbfcfc;
}

body.cipyar-theme .tbe-stepper__info {
  display: grid;
  gap: 0.05rem;
}

body.cipyar-theme .tbe-stepper__info strong {
  font-size: 0.75rem;
}

body.cipyar-theme .tbe-stepper__info span {
  color: var(--cip-text-muted);
  font-size: 0.6rem;
}

body.cipyar-theme .tbe-stepper__controls {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.2rem;
  border-radius: 10px;
  background: #fff;
}

body.cipyar-theme .tbe-stepper__btn {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  color: var(--cip-primary);
  border: 1px solid var(--cip-border);
  border-radius: 8px !important;
  background: var(--cip-primary-soft);
  font-size: 1rem;
  transition: color 0.2s ease, background 0.2s ease;
}

body.cipyar-theme .tbe-stepper__btn:hover {
  color: #fff;
  background: var(--cip-primary);
}

body.cipyar-theme .tbe-stepper__value {
  min-width: 28px;
  text-align: center;
  color: var(--cip-primary-dark);
  font-size: 0.8rem;
  font-weight: 800;
}

body.cipyar-theme .tbe-booking-accordions {
  display: grid;
  gap: 0.45rem;
  margin-top: 0.8rem;
}

body.cipyar-theme .tbe-booking-acc {
  overflow: hidden;
  border: 1px solid var(--cip-border);
  border-radius: 11px;
  background: #fbfcfc;
}

body.cipyar-theme .tbe-booking-acc summary {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 0.7rem;
  color: var(--cip-primary-dark);
  font-size: 0.72rem;
  font-weight: 700;
  cursor: pointer;
}

body.cipyar-theme .tbe-booking-acc__body {
  padding: 0.65rem 0.75rem;
  border-top: 1px solid var(--cip-border);
  background: #fff;
  font-size: 0.68rem;
}

body.cipyar-theme .tbe-booking-modal__check {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.8rem;
  padding: 0.65rem 0.75rem;
  border: 1px dashed rgba(201, 162, 39, 0.4);
  border-radius: 11px;
  background: rgba(201, 162, 39, 0.06);
  font-size: 0.72rem;
  cursor: pointer;
}

body.cipyar-theme .tbe-booking-modal__footer {
  position: sticky;
  bottom: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--cip-border);
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 -10px 28px rgba(0, 37, 85, 0.06);
}

body.cipyar-theme .tbe-booking-total {
  display: grid;
  gap: 0.08rem;
}

body.cipyar-theme .tbe-booking-total > strong {
  color: var(--cip-text-muted);
  font-size: 0.68rem;
}

body.cipyar-theme .tbe-booking-total > span {
  color: var(--cip-primary);
  font-size: 1.12rem;
  font-weight: 500;
}

body.cipyar-theme .tbe-booking-total__breakdown {
  color: var(--cip-text-muted);
  font-size: 0.6rem;
}

body.cipyar-theme .tbe-booking-modal__submit {
  min-width: 190px;
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: 0;
  border-radius: 13px !important;
  background: linear-gradient(135deg, var(--cip-primary), #003f7e) !important;
  box-shadow: 0 10px 24px rgba(0, 37, 85, 0.2);
  font-size: 0.85rem;
  font-weight: 800;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

body.cipyar-theme .tbe-booking-modal__submit:hover {
  background: linear-gradient(135deg, var(--cip-accent), #00727f) !important;
  box-shadow: 0 12px 28px rgba(1, 146, 162, 0.22);
  transform: translateY(-1px);
}

body.cipyar-theme .tbe-booking-modal__submit svg {
  width: 17px;
  height: 17px;
}

@media (max-width: 800px) {
  body.cipyar-theme .tbe-booking-modal {
    align-items: end;
    padding: 0;
  }

  body.cipyar-theme .tbe-booking-modal__dialog {
    width: 100%;
    max-height: 96vh;
    border-radius: 22px 22px 0 0 !important;
    border-bottom: 0;
  }

  body.cipyar-theme .tbe-booking-modal__form {
    max-height: calc(96vh - 92px);
  }

  body.cipyar-theme .tbe-booking-modal__grid {
    grid-template-columns: 1fr;
  }

  body.cipyar-theme .tbe-booking-modal__col--rooms {
    border-inline-end: 0;
    border-bottom: 1px solid var(--cip-border);
  }
}

@media (max-width: 520px) {
  body.cipyar-theme .tbe-booking-modal__header {
    min-height: 88px;
    padding: 1rem;
  }

  body.cipyar-theme .tbe-booking-modal__heading {
    gap: 0.65rem;
  }

  body.cipyar-theme .tbe-booking-modal__heading-icon {
    width: 44px;
    height: 44px;
    flex-basis: 44px;
    border-radius: 14px;
  }

  body.cipyar-theme .tbe-booking-modal__title {
    font-size: 1.05rem;
  }

  body.cipyar-theme .tbe-booking-modal__subtitle {
    max-width: 220px;
    font-size: 0.62rem;
  }

  body.cipyar-theme .tbe-booking-modal__col {
    padding: 1rem;
  }

  body.cipyar-theme .tbe-room-hero {
    align-items: flex-start;
    flex-direction: column;
  }

  body.cipyar-theme .tbe-booking-modal__date-summary {
    width: 100%;
  }

  body.cipyar-theme .tbe-booking-modal__footer {
    padding: 0.8rem 1rem;
  }

  body.cipyar-theme .tbe-booking-modal__submit {
    min-width: 140px;
  }
}

/* Hotels archive/single */
body.cipyar-theme .tbe-archive--hotels {
  padding-bottom: 3rem;
}

body.cipyar-theme .tbe-archive__header--hotels {
  display: grid;
  gap: 0.35rem;
  margin-bottom: 1.75rem;
}

body.cipyar-theme .tbe-archive__count {
  color: var(--cip-text-muted);
  margin: 0;
  font-size: 0.95rem;
}

body.cipyar-theme .tbe-hotel-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

body.cipyar-theme .tbe-hotel-card {
  border-radius: var(--cip-radius);
  border: 1px solid var(--cip-border);
  overflow: hidden;
  background: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
}

body.cipyar-theme .tbe-hotel-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--cip-shadow);
}

body.cipyar-theme .tbe-hotel-card__media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: var(--cip-surface-muted);
}

body.cipyar-theme .tbe-hotel-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.cipyar-theme .tbe-hotel-card__placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: var(--cip-text-muted);
}

body.cipyar-theme .tbe-hotel-card__stars {
  position: absolute;
  inset-inline-start: 0.65rem;
  bottom: 0.65rem;
  display: inline-flex;
  gap: 0.1rem;
  color: var(--cip-gold);
  background: rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  padding: 0.2rem 0.45rem;
}

body.cipyar-theme .tbe-hotel-card__body {
  padding: 1rem 1rem 1.15rem;
  display: grid;
  gap: 0.45rem;
  flex: 1;
}

body.cipyar-theme .tbe-hotel-card__latin {
  margin: 0;
  font-size: 0.85rem;
  color: var(--cip-text-muted);
  font-weight: 600;
  text-align: left;
  direction: ltr;
  min-height: 1.2em;
}

body.cipyar-theme .tbe-hotel-card__title {
  margin: 0;
  font-size: 1rem;
  line-height: 1.45;
  min-height: 2.9em;
}

body.cipyar-theme .tbe-hotel-card__meta-row {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  font-size: 0.85rem;
  color: var(--cip-text-muted);
}

body.cipyar-theme .tbe-hotel__latin {
  margin: 0.25rem 0 0;
  color: rgba(255, 255, 255, 0.85);
  direction: ltr;
  text-align: left;
}

body.cipyar-theme .tbe-hotel__stars {
  color: var(--cip-gold);
  display: inline-flex;
  gap: 0.15rem;
}

@media (max-width: 1100px) {
  body.cipyar-theme .tbe-hotel-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 800px) {
  body.cipyar-theme .tbe-hotel-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  body.cipyar-theme .tbe-hotel-grid {
    grid-template-columns: 1fr;
  }
}

/* Confirmation / contract / request */
body.cipyar-theme .tbe-confirmation,
body.cipyar-theme .tbe-contract,
body.cipyar-theme .tbe-request-form {
  width: min(100% - 32px, 760px);
  margin: 2rem auto 3rem;
}

body.cipyar-theme .tbe-confirmation__hero {
  border-radius: var(--cip-radius-lg) !important;
  border: 1px solid var(--cip-border);
  box-shadow: var(--cip-shadow);
}

body.cipyar-theme .tbe-confirmation__hero--success {
  background: var(--cip-primary-soft) !important;
}

/* Booking confirmation */
body.cipyar-theme .tbe-booking-confirmation {
  position: relative;
  min-height: 70vh;
  padding: clamp(1.5rem, 4vw, 3.5rem) 0 4rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 4%, rgba(201, 162, 39, 0.1), transparent 22rem),
    radial-gradient(circle at 92% 14%, rgba(0, 106, 167, 0.09), transparent 24rem),
    linear-gradient(180deg, #f8fbff 0%, #fff 52%);
}

body.cipyar-theme .tbe-booking-confirmation::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  background-image: radial-gradient(rgba(0, 37, 85, 0.15) 0.7px, transparent 0.7px);
  background-size: 20px 20px;
  mask-image: linear-gradient(to bottom, #000, transparent 45%);
}

body.cipyar-theme .tbe-booking-confirmation .tbe-confirmation {
  position: relative;
  z-index: 1;
  width: min(100% - 32px, 920px);
  margin: 0 auto;
}

body.cipyar-theme .tbe-booking-confirmation .tbe-confirmation__hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(2rem, 5vw, 3.5rem);
  text-align: center;
  background: rgba(255, 255, 255, 0.92) !important;
  border: 1px solid rgba(0, 37, 85, 0.1);
  border-radius: 28px !important;
  box-shadow:
    0 24px 65px rgba(0, 37, 85, 0.1),
    0 2px 8px rgba(0, 37, 85, 0.04);
  backdrop-filter: blur(10px);
}

body.cipyar-theme .tbe-booking-confirmation .tbe-confirmation__hero::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 340px;
  height: 340px;
  inset-block-start: -230px;
  left: 50%;
  border-radius: 50%;
  transform: translateX(-50%);
  background: currentColor;
  opacity: 0.06;
}

body.cipyar-theme .tbe-booking-confirmation .tbe-confirmation__hero--success {
  --cip-confirmation-color: #087a56;
  color: #087a56;
  border-top: 4px solid #20a474;
}

body.cipyar-theme .tbe-booking-confirmation .tbe-confirmation__hero--warning {
  --cip-confirmation-color: #a05b08;
  color: #a05b08;
  border-top: 4px solid #e9a23b;
}

body.cipyar-theme .tbe-booking-confirmation .tbe-confirmation__hero--error {
  --cip-confirmation-color: #b53d46;
  color: #b53d46;
  border-top: 4px solid #dc5963;
}

body.cipyar-theme .tbe-booking-confirmation .tbe-confirmation__status {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 32px;
  padding: 0.35rem 0.8rem;
  color: currentColor;
  background: currentColor;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 800;
}

body.cipyar-theme .tbe-booking-confirmation .tbe-confirmation__status::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 1px;
  background: #fff;
  border-radius: inherit;
  opacity: 0.92;
}

body.cipyar-theme .tbe-booking-confirmation .tbe-confirmation__status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0 4px color-mix(in srgb, currentColor 14%, transparent);
}

body.cipyar-theme .tbe-booking-confirmation .tbe-confirmation__icon-wrap {
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  margin: 1.5rem auto 1.1rem;
  border: 1px solid color-mix(in srgb, currentColor 18%, transparent);
  border-radius: 50%;
  background: color-mix(in srgb, currentColor 5%, #fff);
  box-shadow: 0 0 0 12px color-mix(in srgb, currentColor 5%, transparent);
}

body.cipyar-theme .tbe-booking-confirmation .tbe-confirmation__icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  color: #fff;
  border-radius: 50%;
  background: var(--cip-confirmation-color);
  box-shadow: 0 12px 28px color-mix(in srgb, var(--cip-confirmation-color) 28%, transparent);
  animation: cip-confirmation-pop 0.55s cubic-bezier(0.2, 0.8, 0.25, 1.25) both;
}

body.cipyar-theme .tbe-booking-confirmation .tbe-confirmation__icon svg {
  color: #fff;
}

body.cipyar-theme .tbe-booking-confirmation .tbe-confirmation__title {
  margin: 0;
  color: var(--cip-primary);
  font-size: clamp(1.55rem, 4vw, 2.35rem);
  font-weight: 900;
  line-height: 1.45;
  letter-spacing: -0.035em;
}

body.cipyar-theme .tbe-booking-confirmation .tbe-confirmation__lead {
  max-width: 620px;
  margin: 0.65rem auto 0;
  color: var(--cip-text-muted);
  font-size: clamp(0.94rem, 2vw, 1.05rem);
  line-height: 2;
}

body.cipyar-theme .tbe-booking-confirmation .tbe-confirmation__references {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
  max-width: 620px;
  margin: 1.65rem auto 0;
}

body.cipyar-theme .tbe-booking-confirmation .tbe-confirmation__reference {
  padding: 0.9rem 1.1rem;
  text-align: start;
  background: #f7f9fc;
  border: 1px solid var(--cip-border);
  border-radius: 14px;
}

body.cipyar-theme .tbe-booking-confirmation .tbe-confirmation__reference dt {
  margin-bottom: 0.3rem;
  color: var(--cip-text-muted);
  font-size: 0.76rem;
  font-weight: 600;
}

body.cipyar-theme .tbe-booking-confirmation .tbe-confirmation__reference dd {
  margin: 0;
  overflow-wrap: anywhere;
  color: var(--cip-primary);
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.04em;
}

body.cipyar-theme .tbe-booking-confirmation .tbe-confirmation__hint {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  max-width: 620px;
  margin: 1rem auto 0;
  padding: 0.8rem 1rem;
  text-align: start;
  color: #5e4b12;
  background: #fff9e8;
  border: 1px solid rgba(201, 162, 39, 0.24);
  border-radius: 12px;
  font-size: 0.82rem;
  line-height: 1.8;
}

body.cipyar-theme .tbe-booking-confirmation .tbe-confirmation__hint svg {
  flex: 0 0 auto;
  color: var(--cip-gold);
}

body.cipyar-theme .tbe-booking-confirmation .tbe-confirmation__hero-action {
  display: flex;
  justify-content: center;
  margin-top: 1.5rem;
}

body.cipyar-theme .tbe-booking-confirmation .tbe-confirmation__confetti i {
  position: absolute;
  z-index: -1;
  width: 7px;
  height: 12px;
  border-radius: 3px;
  background: var(--cip-gold);
  opacity: 0.65;
  transform: rotate(25deg);
}

body.cipyar-theme .tbe-booking-confirmation .tbe-confirmation__confetti i:nth-child(1) { inset: 14% auto auto 12%; }
body.cipyar-theme .tbe-booking-confirmation .tbe-confirmation__confetti i:nth-child(2) { inset: 27% 10% auto auto; background: #20a474; transform: rotate(-35deg); }
body.cipyar-theme .tbe-booking-confirmation .tbe-confirmation__confetti i:nth-child(3) { inset: 53% auto auto 6%; background: var(--cip-accent); transform: rotate(70deg); }
body.cipyar-theme .tbe-booking-confirmation .tbe-confirmation__confetti i:nth-child(4) { inset: 62% 7% auto auto; transform: rotate(45deg); }
body.cipyar-theme .tbe-booking-confirmation .tbe-confirmation__confetti i:nth-child(5) { inset: 9% 22% auto auto; background: var(--cip-accent); transform: rotate(80deg); }
body.cipyar-theme .tbe-booking-confirmation .tbe-confirmation__confetti i:nth-child(6) { inset: 12% auto auto 25%; background: #20a474; transform: rotate(-60deg); }

body.cipyar-theme .tbe-booking-confirmation .tbe-voucher {
  margin-top: 1.75rem;
}

body.cipyar-theme .tbe-booking-confirmation .tbe-voucher__toolbar {
  padding-inline: 0.25rem;
}

body.cipyar-theme .tbe-booking-confirmation .tbe-voucher__card {
  overflow: hidden;
  border: 1px solid rgba(0, 37, 85, 0.1);
  border-radius: 22px;
  box-shadow: 0 18px 45px rgba(0, 37, 85, 0.08);
}

body.cipyar-theme .tbe-booking-confirmation .tbe-confirmation__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

body.cipyar-theme .tbe-booking-confirmation .tbe-confirmation__nav .tbe-btn,
body.cipyar-theme .tbe-booking-confirmation .tbe-confirmation__hero-action .tbe-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.65rem 1.25rem;
}

@keyframes cip-confirmation-pop {
  from {
    opacity: 0;
    transform: scale(0.5) rotate(-12deg);
  }
  to {
    opacity: 1;
    transform: scale(1) rotate(0);
  }
}

@media (max-width: 640px) {
  body.cipyar-theme .tbe-booking-confirmation {
    padding-top: 1rem;
  }

  body.cipyar-theme .tbe-booking-confirmation .tbe-confirmation__hero {
    padding: 1.65rem 1rem;
    border-radius: 20px !important;
  }

  body.cipyar-theme .tbe-booking-confirmation .tbe-confirmation__icon-wrap {
    width: 96px;
    height: 96px;
    margin-top: 1.25rem;
  }

  body.cipyar-theme .tbe-booking-confirmation .tbe-confirmation__icon {
    width: 62px;
    height: 62px;
  }

  body.cipyar-theme .tbe-booking-confirmation .tbe-confirmation__references {
    grid-template-columns: 1fr;
  }

  body.cipyar-theme .tbe-booking-confirmation .tbe-confirmation__nav {
    align-items: stretch;
    flex-direction: column;
  }

  body.cipyar-theme .tbe-booking-confirmation .tbe-confirmation__nav .tbe-btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.cipyar-theme .tbe-booking-confirmation .tbe-confirmation__icon {
    animation: none;
  }
}

body.cipyar-theme .tbe-voucher {
  border-radius: var(--cip-radius) !important;
  border-color: var(--cip-border) !important;
}

body.cipyar-theme .tbe-voucher__header {
  background: linear-gradient(120deg, var(--cip-primary), var(--cip-accent)) !important;
}

/* Mobile sticky booking CTA hint bar */
.cip-mobile-book {
  display: none;
  position: fixed;
  inset-inline: 0;
  bottom: 0;
  z-index: 80;
  background: #fff;
  border-top: 1px solid var(--cip-border);
  padding: 0.75rem 1rem;
  box-shadow: 0 -8px 28px rgba(0, 37, 85, 0.1);
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.cip-mobile-book__price {
  display: grid;
  gap: 0.1rem;
}

.cip-mobile-book__price span {
  font-size: 0.78rem;
  color: var(--cip-text-muted);
}

.cip-mobile-book__price strong {
  color: var(--cip-primary);
  font-size: 1.05rem;
}

.cip-mobile-book .tbe-btn,
.cip-mobile-book button {
  flex: 0 0 auto;
  min-width: 140px;
}

.cip-filters-drawer-backdrop {
  display: none;
}

body.cipyar-theme .tbe-archive-hotels-page .tbe-archive,
body.cipyar-theme .tbe-single-hotel {
  width: min(100% - 32px, var(--cip-container));
  margin-inline: auto;
  padding-top: 1.25rem;
  padding-bottom: 3rem;
}

@media (max-width: 960px) {
  .cip-archive__layout {
    grid-template-columns: 1fr;
  }

  .cip-filters-toggle {
    display: inline-flex;
    align-items: center;
  }

  .cip-filters {
    position: fixed;
    inset-block: 0;
    inset-inline-start: 0;
    width: min(100%, 340px);
    z-index: 1200;
    border-radius: 0;
    transform: translateX(-110%);
    transition: transform 0.28s ease;
    overflow: auto;
    top: 0;
  }

  html[dir="rtl"] .cip-filters {
    transform: translateX(110%);
  }

  .cip-filters.is-open {
    transform: none !important;
  }

  .cip-filters-drawer-backdrop.is-open {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1100;
  }

  body.cipyar-theme .tbe-single__layout,
  body.cipyar-theme .cip-tour-book__layout {
    grid-template-columns: 1fr;
  }

  body.cipyar-theme .tbe-single__sidebar {
    order: -1;
  }

  body.cipyar-theme .tbe-single-hotel .tbe-single__hero-content,
  body.cipyar-theme .tbe-single-hotel .tbe-single__hero-img {
    min-height: 280px;
  }

  body.cipyar-theme .cip-book-sticky,
  body.cipyar-theme .tbe-booking-panel {
    position: static !important;
  }

  body.cipyar-theme .cip-tour-hero__card {
    position: relative;
    inset: auto;
    width: auto;
    margin: -4rem 1rem 0;
    color: var(--cip-text);
    border-color: rgba(0, 37, 85, 0.09);
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(16px);
    box-shadow: 0 16px 38px rgba(0, 26, 60, 0.12);
  }

  body.cipyar-theme .cip-tour-hero__title {
    color: #26352e;
  }

  body.cipyar-theme .cip-tour-hero__eyebrow > span {
    color: #9a7614;
  }

  body.cipyar-theme .cip-tour-hero__eyebrow .cip-tour-hero__availability {
    color: #00766b;
    border-color: rgba(1, 146, 162, 0.18);
    background: rgba(1, 146, 162, 0.08);
  }

  body.cipyar-theme .cip-tour-hero__meta {
    color: var(--cip-text-muted);
  }

  body.cipyar-theme .cip-tour-hero__place,
  body.cipyar-theme .cip-tour-hero__duration,
  body.cipyar-theme .cip-tour-hero__departure {
    border-color: var(--cip-border);
    background: var(--cip-surface-muted);
  }

  body.cipyar-theme .cip-tour-hero__meta svg {
    color: var(--cip-accent);
  }

  body.cipyar-theme .cip-tour-hero__excerpt {
    color: var(--cip-text-muted);
  }

  body.cipyar-theme .tbe-pkg-hotel {
    grid-template-columns: 110px minmax(0, 1fr) !important;
  }

  body.cipyar-theme .tbe-pkg-hotel__action {
    grid-column: 1 / -1;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding-top: 0.35rem;
    padding-inline-start: 0;
    border-inline-start: 0;
    border-top: 1px dashed var(--cip-border);
  }

  body.cipyar-theme .tbe-pkg-hotel__price {
    text-align: right;
    flex: 1 1 auto;
  }

  body.cipyar-theme .tbe-pkg-hotel__cta {
    width: auto;
    min-width: 140px;
    flex: 0 0 auto;
  }

  .cip-mobile-book {
    display: flex;
  }

  body.single-tbe_tour {
    padding-bottom: 76px;
  }

  body.single-tbe_tour .cip-back-top {
    bottom: 5.75rem;
  }
}

@media (max-width: 640px) {
  .cip-price-cal {
    align-items: end;
    padding: 0;
  }

  .cip-price-cal__dialog {
    width: 100%;
    max-height: 94vh;
    border-radius: 22px 22px 0 0;
    border-bottom: 0;
  }

  .cip-price-cal__header {
    padding: 1rem;
  }

  .cip-price-cal__heading {
    gap: 0.65rem;
  }

  .cip-price-cal__heading-icon {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
    border-radius: 13px;
  }

  .cip-price-cal__header h2 {
    font-size: 1.02rem;
  }

  .cip-price-cal__header p {
    font-size: 0.65rem;
  }

  .cip-price-cal__body {
    padding: 1rem 0.75rem 0.85rem;
  }

  .cip-price-cal__nav {
    min-height: 54px;
    margin-bottom: 0.85rem;
  }

  .cip-price-cal__weekdays,
  .cip-price-cal__grid {
    gap: 0.25rem;
  }

  .cip-price-cal__weekdays span {
    font-size: 0;
  }

  .cip-price-cal__weekdays span::after {
    content: attr(data-short);
    font-size: 0.68rem;
  }

  .cip-price-cal__cell {
    min-height: 54px;
    padding: 0.3rem 0.1rem;
    border-radius: 10px;
  }

  .cip-price-cal__day {
    font-size: 0.82rem;
  }

  .cip-price-cal__price {
    font-size: 0.5rem;
  }

  .cip-price-cal__footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.65rem;
    padding: 0.85rem 1rem 1rem;
  }

  .cip-price-cal__hint {
    white-space: normal;
  }

  body.cipyar-theme .cip-tour-hero__media {
    height: 220px;
    border-radius: 17px;
  }

  body.cipyar-theme .cip-tour-hero__card {
    margin: -2.5rem 0.65rem 0;
    padding: 1rem 1.05rem;
    border-radius: 16px;
  }

  body.cipyar-theme .cip-tour-hero__title {
    font-size: 1.2rem;
  }

  body.cipyar-theme .cip-tour-hero__eyebrow {
    margin-bottom: 0.5rem;
  }

  body.cipyar-theme .cip-tour-hero__meta {
    margin-bottom: 0.6rem;
  }

  body.cipyar-theme .cip-tour-hero__departure {
    display: none;
  }

  body.cipyar-theme .tbe-pkg-hotel {
    grid-template-columns: 1fr !important;
    gap: 0.85rem;
  }

  body.cipyar-theme .tbe-pkg-hotel__media {
    min-height: 160px;
    aspect-ratio: 16 / 9;
  }

  body.cipyar-theme .tbe-pkg-hotel__action {
    flex-direction: column;
    align-items: stretch;
  }

  body.cipyar-theme .tbe-pkg-hotel__price {
    text-align: center;
  }

  body.cipyar-theme .tbe-pkg-hotel__cta {
    width: 100%;
  }

  body.cipyar-theme .tbe-hotels-heading {
    margin: -1.1rem -1.1rem 1rem;
    padding: 1rem 1.1rem 0.9rem;
  }

  body.cipyar-theme .tbe-hotels-heading__lead {
    padding-inline-start: 0;
  }

  body.cipyar-theme .tbe-single__section--hotels,
  body.cipyar-theme .tbe-single__section {
    padding: 1.1rem;
  }

  body.cipyar-theme .tbe-pkg-hotel__amenities span {
    display: none;
  }

  body.cipyar-theme .tbe-single__services {
    grid-template-columns: 1fr;
  }

  body.cipyar-theme .tbe-single__facts {
    grid-template-columns: 1fr 1fr;
  }
}

/* Single tour: hidden-state fix (plugin toggles these via [hidden]) */
body.cipyar-theme .tbe-pkg-hotel__soldout[hidden],
body.cipyar-theme .tbe-pkg-hotel__cta[hidden],
body.cipyar-theme .tbe-pkg-hotel__price[hidden],
body.cipyar-theme .tbe-pkg-hotel__rates[hidden] {
  display: none !important;
}

body.cipyar-theme .tbe-pkg-hotel__soldout {
  text-align: center;
  font-weight: 700;
}

/* Single tour: main content presentation */
body.cipyar-theme .tbe-single__facts {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(155px, 1fr));
  gap: 0.75rem;
}

body.cipyar-theme .tbe-fact-card {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
  padding: 0.9rem;
  border: 1px solid var(--cip-border) !important;
  background: linear-gradient(145deg, #f8fbfa, #fff);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

body.cipyar-theme .tbe-fact-card:hover {
  transform: translateY(-2px);
  border-color: rgba(1, 146, 162, 0.3) !important;
  box-shadow: 0 9px 22px rgba(0, 37, 85, 0.07);
}

body.cipyar-theme .tbe-fact-card__icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  display: grid;
  place-items: center;
  color: var(--cip-accent);
  border-radius: 13px;
  background: rgba(1, 146, 162, 0.09);
}

body.cipyar-theme .tbe-fact-card__body {
  display: grid;
  gap: 0.12rem;
  min-width: 0;
}

body.cipyar-theme .tbe-fact-card__label {
  color: var(--cip-text-muted);
  font-size: 0.68rem;
}

body.cipyar-theme .tbe-fact-card__value {
  color: var(--cip-primary-dark);
  font-size: 0.85rem;
  overflow-wrap: anywhere;
}

/* Single tour: description prose (flatten box-in-box) */
body.cipyar-theme .tbe-single__section .tbe-prose {
  border: 0;
  padding: 0;
  background: transparent;
  font-size: 0.95rem;
  line-height: 2;
  color: var(--cip-text);
}

/* Single tour: features grid */
body.cipyar-theme .tbe-single__features {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 0.85rem;
}

body.cipyar-theme .tbe-single__features .tbe-box {
  position: relative;
  overflow: hidden;
  background: linear-gradient(145deg, #f8fbfa, #fff);
  border: 1px solid var(--cip-border) !important;
  padding: 1.05rem 1.1rem;
  border-radius: 15px !important;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

body.cipyar-theme .tbe-single__features .tbe-box:hover {
  transform: translateY(-2px);
  border-color: rgba(1, 146, 162, 0.28) !important;
  box-shadow: 0 10px 24px rgba(0, 37, 85, 0.075);
}

body.cipyar-theme .tbe-single__features .tbe-box h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.45rem;
  font-size: 0.92rem;
  font-weight: 800;
  color: var(--cip-primary-dark);
}

body.cipyar-theme .tbe-single__features .tbe-box h3::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--cip-accent);
  box-shadow: 0 0 0 3px rgba(1, 146, 162, 0.15);
  flex-shrink: 0;
}

body.cipyar-theme .tbe-single__features .tbe-box__text {
  color: var(--cip-text-muted);
  font-size: 0.88rem;
  line-height: 1.9;
}

body.cipyar-theme .tbe-single__features .tbe-box__text p {
  margin: 0;
}

/* Single tour: itinerary timeline */
body.cipyar-theme .tbe-itinerary {
  position: relative;
  display: grid;
  gap: 0.75rem;
  padding-inline-start: 0.25rem;
}

body.cipyar-theme .tbe-itinerary__day {
  position: relative;
  margin-bottom: 0;
  padding: 0;
  border-radius: 15px !important;
  background: linear-gradient(145deg, #f7faf9, #fff);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

body.cipyar-theme .tbe-itinerary__day:hover {
  border-color: rgba(1, 146, 162, 0.26) !important;
  box-shadow: 0 8px 22px rgba(0, 37, 85, 0.06);
}

body.cipyar-theme .tbe-itinerary__day-head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0;
  padding: 1rem 1.15rem;
  border-bottom: 1px dashed var(--cip-border);
}

body.cipyar-theme .tbe-itinerary__day-body {
  padding: 0.9rem 1.15rem 1.05rem;
}

body.cipyar-theme .tbe-itinerary__more {
  margin-top: 0.85rem;
  overflow: hidden;
  border: 1px dashed rgba(1, 146, 162, 0.35);
  border-radius: 15px;
  background: rgba(1, 146, 162, 0.035);
}

body.cipyar-theme .tbe-itinerary__more-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.9rem 1rem;
  list-style: none;
  cursor: pointer;
  user-select: none;
}

body.cipyar-theme .tbe-itinerary__more-toggle::-webkit-details-marker {
  display: none;
}

body.cipyar-theme .tbe-itinerary__more-toggle > span:first-child {
  display: grid;
  gap: 0.1rem;
}

body.cipyar-theme .tbe-itinerary__more-toggle strong {
  color: var(--cip-primary-dark);
  font-size: 0.82rem;
}

body.cipyar-theme .tbe-itinerary__more-toggle small {
  color: var(--cip-text-muted);
  font-size: 0.66rem;
}

body.cipyar-theme .tbe-itinerary__more-icon {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: grid;
  place-items: center;
  color: var(--cip-accent);
  border: 1px solid rgba(1, 146, 162, 0.2);
  border-radius: 10px;
  background: #fff;
  transition: color 0.2s ease, background 0.2s ease, transform 0.25s ease;
}

body.cipyar-theme .tbe-itinerary__more-icon svg {
  width: 16px;
  height: 16px;
}

body.cipyar-theme .tbe-itinerary__more[open] .tbe-itinerary__more-icon {
  color: #fff;
  background: var(--cip-accent);
  transform: rotate(180deg);
}

body.cipyar-theme .tbe-itinerary--more {
  padding: 0.9rem;
  border-top: 1px dashed rgba(1, 146, 162, 0.25);
  background: #fff;
}

body.cipyar-theme .tbe-itinerary__day-head strong {
  color: var(--cip-primary-dark);
  font-size: 0.94rem;
}

body.cipyar-theme .tbe-itinerary__day-badge {
  min-width: 52px;
  padding: 0.28rem 0.55rem !important;
  border-radius: 8px !important;
  background: linear-gradient(135deg, var(--cip-primary), #004080) !important;
  box-shadow: 0 5px 12px rgba(0, 37, 85, 0.14);
  font-size: 0.7rem !important;
}

body.cipyar-theme .tbe-itinerary__slot {
  border-radius: 11px;
  background: #fff;
  border-color: var(--cip-border);
  align-items: center;
}

body.cipyar-theme .tbe-itinerary__time {
  border-radius: 8px;
  background: rgba(1, 146, 162, 0.09);
  color: #006d78;
}

/* Single tour: services boxes */
body.cipyar-theme .tbe-single__services {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

body.cipyar-theme .tbe-single__services .tbe-box {
  padding: 1.05rem 1.1rem;
  border-radius: 15px !important;
}

body.cipyar-theme .tbe-single__services .tbe-box--success {
  background: linear-gradient(135deg, #effaf8 0%, #e3f5f2 100%);
  border-color: #c5e8e2 !important;
}

body.cipyar-theme .tbe-single__services .tbe-box--success h3 {
  color: #007367;
}

body.cipyar-theme .tbe-single__services .tbe-box--muted {
  background: linear-gradient(135deg, #fffafa, #fff5f4);
  border-color: #f0dedd !important;
}

body.cipyar-theme .tbe-single__services .tbe-box--muted h3 {
  color: #a34d49;
}

body.cipyar-theme .tbe-single__services h3 {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.7rem;
  font-size: 0.9rem;
}

body.cipyar-theme .tbe-single__services .tbe-box__text ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.35rem;
}

/* Single tour: why us */
body.cipyar-theme .cip-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.85rem;
}

body.cipyar-theme .cip-why-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem 1.05rem;
  border: 1px solid var(--cip-border);
  border-radius: 15px;
  background: linear-gradient(145deg, #f8fbfa, #fff);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

body.cipyar-theme .cip-why-item:hover {
  transform: translateY(-2px);
  border-color: rgba(1, 146, 162, 0.28);
  box-shadow: 0 10px 24px rgba(0, 37, 85, 0.07);
}

body.cipyar-theme .cip-why-item__icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 14px;
  background: linear-gradient(145deg, var(--cip-primary), #00427f);
  color: #fff;
  box-shadow: 0 7px 16px rgba(0, 37, 85, 0.14);
}

body.cipyar-theme .cip-why-item__body {
  display: grid;
  gap: 0.2rem;
  min-width: 0;
}

body.cipyar-theme .cip-why-item__body strong {
  font-size: 0.92rem;
  font-weight: 800;
}

body.cipyar-theme .cip-why-item__body span {
  font-size: 0.82rem;
  color: var(--cip-text-muted);
  line-height: 1.7;
}

/* List view for archive */
.cip-archive__results.is-list .tbe-catalog__grid,
.cip-archive__results.is-list .cip-tour-grid {
  grid-template-columns: 1fr !important;
}

.cip-archive__results.is-list .tbe-tour-card,
.cip-archive__results.is-list .cip-tour-card {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
}

.cip-archive__results.is-list .tbe-tour-card__media,
.cip-archive__results.is-list .cip-tour-card__media {
  aspect-ratio: auto;
  min-height: 160px;
  height: 100%;
}

@media (max-width: 640px) {
  .cip-archive__results.is-list .tbe-tour-card,
  .cip-archive__results.is-list .cip-tour-card {
    grid-template-columns: 1fr;
  }
}

/* Hotel details — editorial layout */
body.cipyar-theme .tbe-single-hotel {
  --cip-hotel-ink: #22322b;
  --cip-hotel-muted: #69776f;
  --cip-hotel-line: rgba(34, 50, 43, 0.1);
  --cip-hotel-soft: #f5f8f5;
  padding-top: 1rem;
  background:
    radial-gradient(circle at 8% 7%, rgba(1, 146, 162, 0.055), transparent 25rem);
}

body.cipyar-theme .tbe-single-hotel .tbe-single__breadcrumb {
  margin-bottom: 1rem;
  font-size: 0.78rem;
}

body.cipyar-theme .tbe-hotel-hero {
  position: relative;
  display: grid;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

body.cipyar-theme .tbe-hotel-hero__gallery {
  position: relative;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
  height: clamp(300px, 32vw, 380px);
  padding: 0.5rem;
  overflow: hidden;
  border: 1px solid var(--cip-hotel-line);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 48px rgba(25, 48, 38, 0.08);
}

body.cipyar-theme .tbe-hotel-hero__image {
  position: relative;
  min-width: 0;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 15px;
  background: #e9efeb;
  cursor: zoom-in;
}

body.cipyar-theme .tbe-hotel-hero__image:first-child {
  grid-row: 1 / -1;
}

body.cipyar-theme .tbe-hotel-hero__image:only-child {
  grid-column: 1 / -1;
}

body.cipyar-theme .tbe-hotel-hero__image:nth-last-child(2):first-child {
  grid-column: span 2;
}

body.cipyar-theme .tbe-hotel-hero__image:nth-last-child(2):first-child + .tbe-hotel-hero__image {
  grid-row: 1 / -1;
}

body.cipyar-theme .tbe-hotel-hero__image:first-child:nth-last-child(3) ~ .tbe-hotel-hero__image {
  grid-row: 1 / -1;
}

body.cipyar-theme .tbe-hotel-hero__image:first-child:nth-last-child(4) ~ .tbe-hotel-hero__image:nth-child(4) {
  grid-column: span 2;
}

body.cipyar-theme .tbe-hotel-hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s ease, filter 0.3s ease;
}

body.cipyar-theme .tbe-hotel-hero__image:hover img,
body.cipyar-theme .tbe-hotel-hero__image:focus-visible img {
  transform: scale(1.045);
  filter: saturate(1.06);
}

body.cipyar-theme .tbe-hotel-hero__image:focus-visible {
  outline: 3px solid var(--cip-accent);
  outline-offset: -3px;
}

body.cipyar-theme .tbe-hotel-hero__all {
  position: absolute;
  inset-inline-start: 1.25rem;
  bottom: 1.25rem;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.6rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 999px;
  color: #fff;
  background: rgba(0, 26, 60, 0.74);
  box-shadow: 0 8px 20px rgba(0, 26, 60, 0.2);
  backdrop-filter: blur(10px);
  font-size: 0.75rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease;
}

body.cipyar-theme .tbe-hotel-hero__all:hover {
  color: #fff;
  background: var(--cip-primary);
  transform: translateY(-2px);
}

body.cipyar-theme .tbe-hotel-hero__placeholder {
  min-height: 300px;
  display: grid;
  place-items: center;
  border: 1px solid var(--cip-hotel-line);
  border-radius: 24px;
  color: rgba(1, 146, 162, 0.55);
  background:
    radial-gradient(circle at 75% 25%, rgba(1, 146, 162, 0.13), transparent 17rem),
    linear-gradient(135deg, #eef5f1, #f9fbfa);
}

body.cipyar-theme .tbe-hotel-hero__card {
  position: static;
  width: 100%;
  padding: 1.2rem 1.35rem;
  border: 1px solid var(--cip-hotel-line);
  border-radius: 21px;
  color: var(--cip-hotel-ink);
  background:
    radial-gradient(circle at 100% 0, rgba(1, 146, 162, 0.06), transparent 17rem),
    #fff;
  box-shadow: 0 10px 30px rgba(34, 50, 43, 0.05);
}

body.cipyar-theme .tbe-hotel-hero__eyebrow {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.55rem;
}

body.cipyar-theme .tbe-hotel-hero .tbe-single__destination {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: #168c80 !important;
  font-size: 0.76rem;
  font-weight: 700;
}

body.cipyar-theme .tbe-hotel-hero .tbe-hotel__stars {
  display: inline-flex;
  gap: 0.14rem;
  color: var(--cip-gold);
}

body.cipyar-theme .tbe-hotel-hero .tbe-single__title {
  margin: 0;
  color: var(--cip-hotel-ink) !important;
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  line-height: 1.45;
}

body.cipyar-theme .tbe-hotel-hero .tbe-hotel__latin {
  margin: 0.15rem 0 0;
  color: #8a958f;
  font-size: 0.76rem;
  direction: ltr;
  text-align: right;
}

body.cipyar-theme .tbe-hotel-hero .tbe-hotel__lead {
  margin: 0.65rem 0 0;
  max-width: 760px;
  color: var(--cip-hotel-muted);
  font-size: 0.82rem;
  line-height: 1.75;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

body.cipyar-theme .tbe-hotel-hero .tbe-single__hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0.8rem 0 0;
  padding: 0;
  list-style: none;
  color: var(--cip-hotel-muted) !important;
}

body.cipyar-theme .tbe-hotel-hero .tbe-single__hero-meta li {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.38rem 0.65rem;
  border: 1px solid var(--cip-hotel-line);
  border-radius: 999px;
  background: var(--cip-hotel-soft);
  font-size: 0.72rem;
}

body.cipyar-theme .tbe-hotel-hero .tbe-single__hero-meta svg {
  color: var(--cip-accent);
}

body.cipyar-theme .tbe-single-hotel .tbe-single__layout {
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 1.35rem;
}

body.cipyar-theme .tbe-single-hotel .tbe-single__main {
  gap: 1.1rem;
}

body.cipyar-theme .tbe-single-hotel .tbe-single__section {
  padding: 1.5rem;
  border-color: var(--cip-hotel-line);
  border-radius: 21px;
  background:
    radial-gradient(circle at 100% 0, rgba(1, 146, 162, 0.035), transparent 15rem),
    #fff;
  box-shadow: 0 10px 30px rgba(34, 50, 43, 0.045);
}

body.cipyar-theme .tbe-single-hotel .tbe-single__section-title {
  margin: 0;
  padding: 0;
  border: 0;
  color: var(--cip-hotel-ink);
  font-size: 1.08rem;
}

body.cipyar-theme .tbe-single-hotel .tbe-single__section-title::before {
  width: 9px;
  height: 9px;
  border-width: 2px;
  border-radius: 3px;
}

body.cipyar-theme .tbe-single__section-heading {
  margin-bottom: 1.15rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--cip-hotel-line);
}

body.cipyar-theme .tbe-single__section-heading--row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

body.cipyar-theme .tbe-single__section-heading p {
  margin: 0.35rem 1.55rem 0 0;
  color: var(--cip-hotel-muted);
  font-size: 0.75rem;
}

body.cipyar-theme .tbe-single-hotel .tbe-single__facts {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

body.cipyar-theme .tbe-single-hotel .tbe-fact-card {
  min-width: 0;
  padding: 0.9rem;
  border-color: var(--cip-hotel-line) !important;
  border-radius: 16px !important;
  background: linear-gradient(145deg, #f6f9f6, #fff);
}

body.cipyar-theme .tbe-single-hotel .tbe-fact-card__icon {
  border-radius: 13px;
  color: #087d85;
}

body.cipyar-theme .tbe-fact-card__stars {
  display: inline-flex;
  align-items: center;
  gap: 0.12rem;
  color: var(--cip-gold);
}

body.cipyar-theme .tbe-single-hotel .tbe-prose {
  color: #4d5f56;
  font-size: 0.9rem;
  line-height: 2.05;
}

body.cipyar-theme .tbe-hotel-facilities__tabs {
  display: flex;
  gap: 0.45rem;
  margin-bottom: 1rem;
  padding: 0.35rem;
  overflow-x: auto;
  border-radius: 14px;
  background: var(--cip-hotel-soft);
  scrollbar-width: thin;
}

body.cipyar-theme .tbe-hotel-facilities__tab {
  flex: 0 0 auto;
  padding: 0.55rem 0.85rem;
  border: 1px solid transparent;
  border-radius: 11px;
  color: var(--cip-hotel-muted);
  background: transparent;
  font: inherit;
  font-size: 0.76rem;
  font-weight: 700;
  cursor: pointer;
}

body.cipyar-theme .tbe-hotel-facilities__tab.is-active {
  border-color: var(--cip-hotel-line);
  color: var(--cip-primary);
  background: #fff;
  box-shadow: 0 5px 14px rgba(34, 50, 43, 0.07);
}

body.cipyar-theme .tbe-hotel-facilities__tab:focus-visible {
  outline: 2px solid var(--cip-accent);
  outline-offset: 2px;
}

body.cipyar-theme .tbe-hotel-facilities__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

body.cipyar-theme .tbe-hotel-facilities__list li {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-width: 0;
  padding: 0.75rem 0.8rem;
  border: 1px solid var(--cip-hotel-line);
  border-radius: 13px;
  color: #526158;
  background: #fbfcfb;
  font-size: 0.78rem;
}

body.cipyar-theme .tbe-hotel-facilities__list svg {
  flex: 0 0 auto;
  color: #168c80;
}

body.cipyar-theme .tbe-hotel-gallery__count {
  flex: 0 0 auto;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  color: #087d85;
  background: rgba(1, 146, 162, 0.08);
  font-size: 0.7rem;
  font-weight: 700;
}

body.cipyar-theme .tbe-hotel-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
}

body.cipyar-theme .tbe-hotel-gallery__item {
  position: relative;
  aspect-ratio: 4 / 3;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 14px;
  background: #e9efeb;
  cursor: zoom-in;
}

body.cipyar-theme .tbe-hotel-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease, filter 0.3s ease;
}

body.cipyar-theme .tbe-hotel-gallery__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 26, 60, 0.18));
  opacity: 0;
  transition: opacity 0.25s ease;
}

body.cipyar-theme .tbe-hotel-gallery__item:hover img {
  transform: scale(1.055);
}

body.cipyar-theme .tbe-hotel-gallery__item:hover::after {
  opacity: 1;
}

body.cipyar-theme .tbe-hotel-location__address {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  margin: 0 0 0.9rem;
  padding: 0.75rem 0.85rem;
  border-radius: 13px;
  color: #526158;
  font-size: 0.8rem;
  line-height: 1.8;
}

body.cipyar-theme .tbe-hotel-location__address span {
  display: grid;
  place-items: center;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border-radius: 11px;
  color: var(--cip-accent);
  background: #fff;
}

body.cipyar-theme .tbe-hotel-map {
  aspect-ratio: 16 / 7;
  overflow: hidden;
  border: 1px solid var(--cip-hotel-line);
  border-radius: 16px;
  background: var(--cip-hotel-soft);
}

body.cipyar-theme .tbe-hotel-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

body.cipyar-theme .tbe-hotel-location__link {
  margin: 0.7rem 0 0;
  text-align: left;
  font-size: 0.75rem;
}

body.cipyar-theme .tbe-hotel-location__link a {
  color: #087d85;
  font-weight: 700;
}

body.cipyar-theme .tbe-single-hotel .tbe-single__sidebar {
  position: sticky;
  top: calc(var(--cip-header-h) + 1rem);
}

body.cipyar-theme .tbe-hotel-panel {
  padding: 0;
  overflow: hidden;
  border-color: var(--cip-hotel-line);
  border-radius: 21px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(34, 50, 43, 0.07);
}

body.cipyar-theme .tbe-hotel-panel__head {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.15rem;
  border-bottom: 1px solid var(--cip-hotel-line);
}

body.cipyar-theme .tbe-hotel-panel__icon {
  display: grid;
  place-items: center;
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border-radius: 15px;
  color: linear-gradient(145deg, var(--cip-primary), #00427f);
  background: #edf3ff;
}

body.cipyar-theme .tbe-hotel-panel__head > div {
  display: grid;
  gap: 0.1rem;
}

body.cipyar-theme .tbe-hotel-panel__head > div > span {
  color: #168c80;
  font-size: 0.68rem;
  font-weight: 700;
}

body.cipyar-theme .tbe-hotel-panel .tbe-booking-panel__heading {
  margin: 0;
  color: var(--cip-hotel-ink);
  font-size: 1.02rem;
}

body.cipyar-theme .tbe-hotel-panel__list {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0.45rem 1.15rem;
  list-style: none;
}

body.cipyar-theme .tbe-hotel-panel__list li {
  display: grid;
  gap: 0.28rem;
  padding: 0.75rem 0;
  border-bottom: 1px dashed var(--cip-hotel-line);
}

body.cipyar-theme .tbe-hotel-panel__list li:last-child {
  border-bottom: 0;
}

body.cipyar-theme .tbe-hotel-panel__list span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--cip-hotel-muted);
  font-size: 0.68rem;
}

body.cipyar-theme .tbe-hotel-panel__list span svg {
  color: var(--cip-accent);
}

body.cipyar-theme .tbe-hotel-panel__list strong {
  color: var(--cip-hotel-ink);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.75;
  overflow-wrap: anywhere;
}

body.cipyar-theme .tbe-hotel-panel__list a {
  color: var(--cip-primary);
}

body.cipyar-theme .tbe-hotel-panel > .tbe-btn {
  width: calc(100% - 2.3rem);
  margin: 0.4rem 1.15rem 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  border-radius: 13px;
}

body.cipyar-theme .tbe-hotel-panel__note {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin: 1rem 1.15rem 1.15rem;
  padding: 0.7rem;
  border-radius: 12px;
  color: #617168;
  background: #f3f8f6;
  font-size: 0.67rem;
  line-height: 1.7;
}

body.cipyar-theme .tbe-hotel-panel__note svg {
  flex: 0 0 auto;
  color: #168c80;
}

/* Hotel details — related tours */
body.cipyar-theme .tbe-hotel-tours {
  container-type: inline-size;
  container-name: hotel-tours;
  background:
    radial-gradient(circle at 100% 0, rgba(1, 146, 162, 0.09), transparent 18rem),
    linear-gradient(145deg, #f8fbfa, #fff 48%);
}

body.cipyar-theme .tbe-hotel-tours__count {
  flex: 0 0 auto;
  padding: 0.38rem 0.75rem;
  border: 1px solid rgba(22, 140, 128, 0.16);
  border-radius: 999px;
  color: #12776e;
  background: rgba(22, 140, 128, 0.07);
  font-size: 0.7rem;
  font-weight: 800;
  white-space: nowrap;
}

body.cipyar-theme .tbe-hotel-tours__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

@container hotel-tours (max-width: 640px) {
  .tbe-hotel-tours__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@container hotel-tours (max-width: 380px) {
  .tbe-hotel-tours__grid {
    grid-template-columns: 1fr;
  }
}

body.cipyar-theme .tbe-hotel-tours .tbe-tour-card {
  display: flex;
  min-width: 0;
  min-height: 100%;
  border-color: rgba(34, 50, 43, 0.12);
  border-radius: 17px;
  box-shadow: 0 8px 24px rgba(0, 37, 85, 0.06);
}

body.cipyar-theme .tbe-hotel-tours .tbe-tour-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(0, 37, 85, 0.1);
}

body.cipyar-theme .tbe-hotel-tours .tbe-tour-card__media {
  width: 100%;
  height: auto;
  min-height: 0;
  aspect-ratio: 4 / 3;
}

body.cipyar-theme .tbe-hotel-tours .tbe-tour-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
  padding: 1rem;
}

body.cipyar-theme .tbe-hotel-tours .tbe-tour-card__destination {
  width: fit-content;
  padding-bottom: 0.15rem;
  border-bottom: 1px solid currentColor;
  font-size: 0.75rem;
}

body.cipyar-theme .tbe-hotel-tours .tbe-tour-card__title {
  margin: 0.7rem 0 0.55rem;
  color: var(--cip-hotel-ink);
  font-size: 0.95rem;
  line-height: 1.75;
}

body.cipyar-theme .tbe-hotel-tours .tbe-tour-card__title a {
  color: inherit;
}

body.cipyar-theme .tbe-hotel-tours .tbe-tour-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.9rem;
  margin: 0;
  padding: 0;
  color: var(--cip-hotel-muted);
  font-size: 0.72rem;
  list-style: none;
}

body.cipyar-theme .tbe-hotel-tours .tbe-tour-card__meta li {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

body.cipyar-theme .tbe-hotel-tours .tbe-tour-card__meta li::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--cip-accent);
  box-shadow: 0 0 0 3px rgba(1, 146, 162, 0.1);
}

body.cipyar-theme .tbe-hotel-tours .tbe-tour-card__footer {
  display: flex;
  align-items: stretch;
  flex-direction: column;
  gap: 0.7rem;
  margin-top: auto;
  padding-top: 1.1rem;
}

body.cipyar-theme .tbe-hotel-tours .tbe-tour-card__price {
  font-size: 1rem;
  white-space: nowrap;
}

body.cipyar-theme .tbe-hotel-tours .tbe-tour-card__footer .tbe-btn {
  justify-content: center;
  width: 100%;
  min-height: 42px;
  padding-inline: 1rem;
  border-radius: 12px;
}

body.cipyar-theme.tbe-hotel-lightbox-open {
  overflow: hidden;
}

body.cipyar-theme .tbe-hotel-lightbox {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  padding: 1.5rem;
}

body.cipyar-theme .tbe-hotel-lightbox[hidden] {
  display: none;
}

body.cipyar-theme .tbe-hotel-lightbox__backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: rgba(0, 16, 34, 0.9);
  backdrop-filter: blur(8px);
  cursor: zoom-out;
}

body.cipyar-theme .tbe-hotel-lightbox__inner {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: min(1100px, 100%);
  height: min(780px, calc(100vh - 3rem));
}

body.cipyar-theme .tbe-hotel-lightbox__inner img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 15px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.38);
}

body.cipyar-theme .tbe-hotel-lightbox__close,
body.cipyar-theme .tbe-hotel-lightbox__nav {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: #fff;
  background: rgba(0, 26, 60, 0.58);
  cursor: pointer;
  backdrop-filter: blur(8px);
}

body.cipyar-theme .tbe-hotel-lightbox__close {
  top: 0;
  inset-inline-end: 0;
  font-size: 1.65rem;
}

body.cipyar-theme .tbe-hotel-lightbox__nav {
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.3rem;
}

body.cipyar-theme .tbe-hotel-lightbox__nav--prev {
  inset-inline-start: 0.75rem;
}

body.cipyar-theme .tbe-hotel-lightbox__nav--next {
  inset-inline-end: 0.75rem;
}

body.cipyar-theme .tbe-hotel-lightbox__counter {
  position: absolute;
  bottom: 0.75rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  color: #fff;
  background: rgba(0, 26, 60, 0.66);
  font-size: 0.72rem;
}

@media (max-width: 960px) {
  body.cipyar-theme .tbe-hotel-hero__gallery {
    height: clamp(280px, 46vw, 350px);
  }

  body.cipyar-theme .tbe-hotel-hero__card {
    width: 100%;
    margin: 0;
  }

  /* Higher specificity than the desktop hotel 2-col rule above */
  body.cipyar-theme .tbe-single-hotel .tbe-single__layout {
    grid-template-columns: 1fr;
  }

  body.cipyar-theme .tbe-single-hotel .tbe-single__sidebar {
    position: static;
    order: 0;
  }

  body.cipyar-theme .tbe-single-hotel .tbe-single__facts,
  body.cipyar-theme .tbe-hotel-facilities__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.cipyar-theme .tbe-hotel-tours__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 680px) {
  body.cipyar-theme .tbe-single-hotel {
    width: min(100% - 22px, var(--cip-container));
    padding-top: 0.7rem;
  }

  body.cipyar-theme .tbe-hotel-hero__gallery {
    height: 230px;
    grid-template-columns: 1fr 1fr;
    gap: 0.4rem;
    padding: 0.4rem;
    border-radius: 18px;
  }

  body.cipyar-theme .tbe-hotel-hero__image {
    display: none;
    border-radius: 12px;
  }

  body.cipyar-theme .tbe-hotel-hero__image:first-child,
  body.cipyar-theme .tbe-hotel-hero__image:nth-child(2) {
    display: block;
    grid-row: 1 / -1;
    grid-column: auto;
  }

  body.cipyar-theme .tbe-hotel-hero__image:only-child {
    grid-column: 1 / -1;
  }

  body.cipyar-theme .tbe-hotel-hero__all {
    inset-inline-start: 0.8rem;
    bottom: 0.8rem;
  }

  body.cipyar-theme .tbe-hotel-hero__card {
    margin: 0;
    padding: 1.05rem;
    border-radius: 17px;
  }

  body.cipyar-theme .tbe-hotel-hero__eyebrow {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.4rem;
  }

  body.cipyar-theme .tbe-hotel-hero .tbe-single__title {
    font-size: 1.35rem;
  }

  body.cipyar-theme .tbe-single-hotel .tbe-single__section {
    padding: 1.1rem;
    border-radius: 17px;
  }

  body.cipyar-theme .tbe-single-hotel .tbe-single__facts,
  body.cipyar-theme .tbe-hotel-facilities__list {
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
  }

  body.cipyar-theme .tbe-single-hotel .tbe-fact-card {
    padding: 0.7rem;
    gap: 0.55rem;
  }

  body.cipyar-theme .tbe-single-hotel .tbe-fact-card__icon {
    width: 36px;
    height: 36px;
    flex-basis: 36px;
  }

  body.cipyar-theme .tbe-hotel-facilities__list li {
    padding: 0.65rem;
    font-size: 0.72rem;
  }

  body.cipyar-theme .tbe-hotel-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.5rem;
  }

  body.cipyar-theme .tbe-hotel-map {
    aspect-ratio: 4 / 3;
  }

  body.cipyar-theme .tbe-hotel-tours__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  body.cipyar-theme .tbe-hotel-tours .tbe-tour-card {
    min-height: 0;
  }

  body.cipyar-theme .tbe-hotel-tours .tbe-tour-card__media {
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 10;
  }

  body.cipyar-theme .tbe-hotel-tours .tbe-tour-card__body {
    padding: 1rem;
  }

  body.cipyar-theme .tbe-hotel-lightbox {
    padding: 0.75rem;
  }

  body.cipyar-theme .tbe-hotel-lightbox__nav {
    width: 38px;
    height: 38px;
  }
}

@media (max-width: 430px) {
  body.cipyar-theme .tbe-hotel-facilities__list {
    grid-template-columns: 1fr;
  }

  body.cipyar-theme .tbe-hotel-tours__grid {
    grid-template-columns: 1fr;
  }

  body.cipyar-theme .tbe-hotel-tours .tbe-single__section-heading--row {
    align-items: flex-start;
  }

  body.cipyar-theme .tbe-hotel-tours .tbe-tour-card__footer {
    align-items: stretch;
    flex-direction: column;
  }

  body.cipyar-theme .tbe-hotel-tours .tbe-tour-card__footer .tbe-btn {
    justify-content: center;
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  body.cipyar-theme .tbe-hotel-hero__image img,
  body.cipyar-theme .tbe-hotel-gallery__item img {
    transition: none;
  }
}