.trendy-page {
  padding: 40px 0 64px;
}

.trendy-title {
  margin: 0;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.02;
}

.trendy-hero {
  margin-bottom: 28px;
}

.trendy-hero-media,
.trendy-card-media {
  display: block;
  overflow: hidden;
  border-radius: 24px;
}

.trendy-hero-media img,
.trendy-card-media img {
  display: block;
  width: 100%;
  height: auto;
}

.trendy-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(320px, .9fr);
  gap: 32px;
  align-items: start;
}

.trendy-panel,
.trendy-sidebar,
.trendy-filter {
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 14px 40px rgba(30, 24, 10, 0.07);
}

.trendy-panel {
  padding: 28px;
}

.trendy-page--attraction .trendy-panel,
.trendy-page--attraction .trendy-filter,
.trendy-page--attraction .trendy-card {
  border: 1px solid #ecdcc6;
}

.trendy-page--hotel .trendy-panel,
.trendy-page--hotel .trendy-filter,
.trendy-page--hotel .trendy-card {
  border: 1px solid #d8e7df;
}

.trendy-sidebar {
  position: sticky;
  top: 20px;
  padding: 24px;
}

.trendy-page--attraction .trendy-sidebar {
  background: linear-gradient(180deg, #fff8ee, #fff);
}

.trendy-page--hotel .trendy-sidebar {
  background: linear-gradient(180deg, #effaf4, #fff);
}

.trendy-sidebar-title {
  margin: 0 0 16px;
  font-size: 24px;
}

.trendy-filter {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
  padding: 18px;
  margin-bottom: 28px;
}

.trendy-filter input,
.trendy-filter select,
.trendy-booking-form input,
.trendy-booking-form select {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid #d9d6cf;
  border-radius: 14px;
  background: #fff;
  font: inherit;
}

.trendy-booking-form {
  display: grid;
  gap: 14px;
}

.trendy-field {
  display: grid;
  gap: 6px;
}

.trendy-field label {
  font-size: 13px;
  font-weight: 600;
}

.trendy-button {
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  padding: 0 18px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
}

.trendy-button:hover {
  transform: translateY(-1px);
}

.trendy-page--attraction .trendy-button {
  background: #9f6d1f;
  color: #fff;
  box-shadow: 0 10px 22px rgba(159, 109, 31, 0.22);
}

.trendy-page--hotel .trendy-button {
  background: #1f7a57;
  color: #fff;
  box-shadow: 0 10px 22px rgba(31, 122, 87, 0.22);
}

.trendy-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.trendy-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 12px 36px rgba(30, 24, 10, 0.07);
}

.trendy-card-link {
  color: inherit;
  text-decoration: none;
}

.trendy-card-media img {
  height: 240px;
  object-fit: cover;
}

.trendy-card-body {
  padding: 22px;
}

.trendy-card-title {
  margin: 0 0 10px;
  font-size: 28px;
  line-height: 1.1;
}

.trendy-card-text {
  margin: 0 0 18px;
  color: #5b5b5b;
}

.trendy-meta {
  display: grid;
  gap: 8px;
  font-size: 14px;
}

.trendy-pagination {
  margin-top: 28px;
}

@media (max-width: 900px) {
  .trendy-grid {
    grid-template-columns: 1fr;
  }

  .trendy-sidebar {
    position: static;
  }
}

.trendy-package-fields {
  display: none;
  gap: 14px;
}

.trendy-package-fields.is-active {
  display: grid;
}

.trendy-package-note {
  margin: 0;
  padding: 12px 14px;
  border-radius: 14px;
  background: rgba(159, 109, 31, 0.08);
  color: #6d5218;
}

.trendy-attraction-content {
  display: grid;
  gap: 28px;
}

.trendy-attraction-section-block {
  display: grid;
  gap: 16px;
}

.trendy-attraction-section-block h2 {
  margin: 0;
  font-size: 28px;
  line-height: 1.12;
}

.trendy-package-overview-grid,
.trendy-attraction-facts-grid,
.trendy-two-column-grid,
.trendy-gallery-grid,
.trendy-faq-frontend-list {
  display: grid;
  gap: 18px;
}

.trendy-package-overview-grid,
.trendy-attraction-facts-grid,
.trendy-two-column-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.trendy-package-overview-card,
.trendy-detail-card,
.trendy-fact-card,
.trendy-faq-frontend-item,
.trendy-itinerary-card {
  border: 1px solid #ecdcc6;
  border-radius: 20px;
  background: #fffaf2;
  padding: 18px;
}

.trendy-package-overview-card.is-primary {
  border-color: #c69133;
  box-shadow: 0 12px 28px rgba(159, 109, 31, 0.12);
}

.trendy-package-overview-card__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.trendy-package-overview-card__head h3,
.trendy-detail-card h3,
.trendy-faq-frontend-item h3,
.trendy-itinerary-card__body h3 {
  margin: 0;
  font-size: 20px;
}

.trendy-package-overview-card__meta,
.trendy-video-links,
.trendy-booking-summary,
.trendy-booking-summary__breakdown,
.trendy-highlight-bullets,
.trendy-itinerary-timeline {
  display: grid;
  gap: 12px;
}

.trendy-chip {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 999px;
  background: #9f6d1f;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.trendy-highlight-bullets {
  margin: 0;
  padding-left: 20px;
}

.trendy-highlight-bullets li {
  color: #5a4b35;
}

.trendy-fact-card__label {
  margin-bottom: 6px;
  color: #8a6a2f;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trendy-fact-card__value {
  font-size: 18px;
  font-weight: 700;
}

.trendy-itinerary-card {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
}

.trendy-itinerary-card__day {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 14px;
  background: #f1e2c7;
  color: #6b4f1d;
  font-weight: 700;
}

.trendy-package-intro {
  display: grid;
  gap: 10px;
}

.trendy-package-range,
.trendy-min-pax-note {
  color: #7b6340;
  font-size: 12px;
  font-weight: 600;
}

.trendy-pricing-list {
  display: grid;
  gap: 12px;
}

.trendy-pricing-list.is-loading {
  opacity: .55;
  pointer-events: none;
}

.trendy-pricing-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid #ecdcc6;
  border-radius: 16px;
  background: #fff;
}

.trendy-pricing-row__meta {
  display: grid;
  gap: 4px;
}

.trendy-pricing-row__meta label {
  font-size: 15px;
}

.trendy-pricing-row__meta small {
  color: #6f675d;
}

.trendy-booking-summary {
  padding: 16px 18px;
  border-radius: 18px;
  background: #fff4de;
  border: 1px solid #ecdcc6;
}

.trendy-booking-summary__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.trendy-booking-summary__row--total {
  padding-top: 10px;
  border-top: 1px solid rgba(159, 109, 31, 0.14);
}

.trendy-booking-summary__breakdown {
  color: #6b5a3d;
  font-size: 14px;
}

.trendy-gallery-grid {
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}

.trendy-gallery-grid__item,
.trendy-map-image,
.trendy-map-embed {
  overflow: hidden;
  border-radius: 20px;
}

.trendy-gallery-grid__item img,
.trendy-map-image img,
.trendy-map-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.trendy-gallery-grid__item img,
.trendy-map-image img {
  min-height: 220px;
  object-fit: cover;
}

.trendy-map-embed iframe {
  min-height: 360px;
  border: 0;
}

.trendy-video-link {
  color: #9f6d1f;
  word-break: break-all;
}

@media (max-width: 900px) {
  .trendy-itinerary-card,
  .trendy-pricing-row {
    grid-template-columns: 1fr;
  }
}



.trendy-attraction-shell {
  display: grid;
  gap: 28px;
}

.trendy-attraction-hero-card {
  display: grid;
  gap: 0;
  overflow: hidden;
  border: 1px solid #e3d7c4;
  border-radius: 26px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(42, 30, 12, 0.08);
}

.trendy-attraction-hero-media-wrap {
  position: relative;
}

.trendy-attraction-hero-media {
  display: block;
  overflow: hidden;
  max-height: 520px;
}

.trendy-attraction-hero-media img {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 520px;
  object-fit: cover;
}

.trendy-attraction-hero-body {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(320px, 0.8fr);
  gap: 28px;
  padding: 28px;
}

.trendy-attraction-hero-copy {
  display: grid;
  gap: 14px;
  align-content: start;
}

.trendy-attraction-hero-title {
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.08;
}

.trendy-attraction-hero-excerpt {
  margin: 0;
  color: #645743;
  font-size: 17px;
  line-height: 1.7;
}

.trendy-attraction-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}

.trendy-attraction-hero-price,
.trendy-attraction-hero-package {
  display: grid;
  gap: 4px;
  min-width: 180px;
  padding: 14px 16px;
  border: 1px solid #eadfce;
  border-radius: 18px;
  background: #fbf7f1;
}

.trendy-attraction-hero-price__label,
.trendy-attraction-hero-package span {
  color: #8d7751;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trendy-attraction-hero-price__value {
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.trendy-attraction-hero-price__value del {
  opacity: 0.6;
  margin-right: 8px;
}

.trendy-attraction-hero-price__type {
  color: #645743;
  font-size: 13px;
}

.trendy-attraction-booking-card {
  display: grid;
  gap: 18px;
  align-content: start;
  padding: 22px;
  border: 1px solid #eadfce;
  border-radius: 20px;
  background: linear-gradient(180deg, #fffaf4 0, #ffffff 100%);
}

.trendy-attraction-booking-card__head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: end;
}

.trendy-attraction-booking-card__head h2 {
  margin: 0;
  font-size: 24px;
}

.trendy-attraction-booking-card__price {
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.trendy-attraction-quickfacts {
  padding: 6px 0 0;
}

.trendy-attraction-quickfacts__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 0;
  overflow: hidden;
  border: 1px solid #e3d7c4;
  border-radius: 22px;
  background: #fff;
}

.trendy-attraction-quickfacts__item {
  padding: 18px 20px;
  border-right: 1px solid #efe4d5;
  border-bottom: 1px solid #efe4d5;
}

.trendy-attraction-quickfacts__item:last-child {
  border-right: 0;
}

.trendy-attraction-quickfacts__label {
  margin-bottom: 6px;
  color: #8d7751;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.trendy-attraction-quickfacts__value {
  color: #20160b;
  font-size: 17px;
  font-weight: 600;
}

.trendy-attraction-anchor-nav {
  position: sticky;
  top: 14px;
  z-index: 4;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 12px 14px;
  border: 1px solid #e3d7c4;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
}

.trendy-attraction-anchor-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  color: #6f5934;
  font-weight: 600;
  text-decoration: none;
  background: #faf5ec;
}

.trendy-attraction-anchor-nav a:hover {
  background: #f0e2ca;
}

.trendy-attraction-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(260px, 0.65fr);
  gap: 28px;
  align-items: start;
}

.trendy-attraction-main {
  display: grid;
  gap: 24px;
}

.trendy-attraction-content-card,
.trendy-attraction-side-info__box {
  padding: 28px;
  border: 1px solid #e3d7c4;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(42, 30, 12, 0.05);
}

.trendy-attraction-section-heading {
  margin-bottom: 18px;
}

.trendy-attraction-section-heading h2 {
  margin: 0;
  font-size: 30px;
  line-height: 1.08;
}

.trendy-attraction-package-list,
.trendy-attraction-faq-list {
  display: grid;
  gap: 16px;
}

.trendy-attraction-package-card {
  padding: 18px 20px;
  border: 1px solid #ebdfcf;
  border-radius: 18px;
  background: #fcfaf6;
}

.trendy-attraction-package-card.is-primary {
  border-color: #b88935;
  background: #fff9ee;
}

.trendy-attraction-package-card__head {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: start;
  margin-bottom: 10px;
}

.trendy-attraction-package-card__head h3,
.trendy-attraction-faq-item h3,
.trendy-attraction-box h3,
.trendy-attraction-itinerary-item__body h3 {
  margin: 0;
}

.trendy-attraction-package-card__head p {
  margin: 6px 0 0;
  color: #7b6c58;
}

.trendy-attraction-package-card__price {
  font-size: 24px;
  font-weight: 700;
  white-space: nowrap;
}

.trendy-attraction-highlight-list {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trendy-attraction-highlight-list li {
  position: relative;
  padding-left: 22px;
  color: #56462e;
}

.trendy-attraction-highlight-list li::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 0;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #b88935;
}

.trendy-attraction-facts-table {
  display: grid;
  gap: 0;
  overflow: hidden;
  border: 1px solid #efe4d5;
  border-radius: 18px;
}

.trendy-attraction-facts-table__row {
  display: grid;
  grid-template-columns: minmax(180px, 0.6fr) minmax(0, 1fr);
  gap: 16px;
  padding: 16px 18px;
  border-top: 1px solid #efe4d5;
}

.trendy-attraction-facts-table__row:first-child {
  border-top: 0;
}

.trendy-attraction-facts-table__label {
  color: #8d7751;
  font-weight: 700;
}

.trendy-attraction-facts-table__value {
  color: #23180d;
}

.trendy-attraction-itinerary-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.trendy-attraction-itinerary-panel__head h2 {
  margin: 0;
}

.trendy-attraction-itinerary-panel__expand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0;
  border: 0;
  background: transparent;
  color: #6f5b39;
  font: inherit;
  cursor: pointer;
}

.trendy-attraction-itinerary-panel__switch {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: 44px;
  height: 24px;
  padding: 2px;
  border-radius: 999px;
  background: #d9c7aa;
  transition: background-color .2s ease;
}

.trendy-attraction-itinerary-panel__switch-thumb {
  width: 20px;
  height: 20px;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 2px 5px rgba(0,0,0,.14);
  transition: transform .2s ease;
}

.trendy-attraction-itinerary-panel__expand.is-active .trendy-attraction-itinerary-panel__switch {
  background: #ef8b3b;
}

.trendy-attraction-itinerary-panel__expand.is-active .trendy-attraction-itinerary-panel__switch-thumb {
  transform: translateX(20px);
}

.trendy-attraction-itinerary-timeline {
  display: grid;
  gap: 0;
}

.trendy-attraction-itinerary-step {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 18px;
}

.trendy-attraction-itinerary-step__rail {
  position: relative;
}

.trendy-attraction-itinerary-step__rail::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: -18px;
  left: 20px;
  width: 1px;
  border-left: 1px dashed #ddc7a8;
}

.trendy-attraction-itinerary-step:last-child .trendy-attraction-itinerary-step__rail::before {
  bottom: 22px;
}

.trendy-attraction-itinerary-step__icon {
  position: relative;
  z-index: 1;
  display: block;
  width: 14px;
  height: 14px;
  margin-top: 9px;
  margin-left: 13px;
  border: 1.5px solid #ef8b3b;
  border-radius: 999px;
  background: #fff7ee;
  box-shadow: 0 0 0 4px #fff;
}

.trendy-attraction-itinerary-step.is-first .trendy-attraction-itinerary-step__icon {
  width: 42px;
  height: 42px;
  margin-top: 0;
  margin-left: 0;
  border: 0;
  box-shadow: none;
  border-radius: 999px;
  background: #ef8b3b url("data:image/svg+xml,%3Csvg width='24' height='24' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 12.5C13.6569 12.5 15 11.1569 15 9.5C15 7.84315 13.6569 6.5 12 6.5C10.3431 6.5 9 7.84315 9 9.5C9 11.1569 10.3431 12.5 12 12.5Z' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M12 22C14 18 20 15.4183 20 10C20 5.58172 16.4183 2 12 2C7.58172 2 4 5.58172 4 10C4 15.4183 10 18 12 22Z' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") center/24px 24px no-repeat;
}

.trendy-attraction-itinerary-step__card {
  padding: 0 0 22px;
  border-bottom: 1px solid #e8dcc9;
}

.trendy-attraction-itinerary-step:last-child .trendy-attraction-itinerary-step__card {
  border-bottom: 0;
  padding-bottom: 0;
}

.trendy-attraction-itinerary-step__trigger {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  gap: 16px;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.trendy-attraction-itinerary-step__heading {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px;
  min-width: 0;
}

.trendy-attraction-itinerary-step__day {
  color: #151515;
  font-size: 14px;
  font-weight: 700;
}

.trendy-attraction-itinerary-step__trigger h3 {
  margin: 0;
  color: #151515;
  font-size: 14px;
  line-height: 1.6;
}

.trendy-attraction-itinerary-step__chevron {
  display: inline-block;
  flex: 0 0 auto;
  width: 24px;
  height: 24px;
  margin-top: 0;
  background-color: currentColor;
  -webkit-mask: center/24px 24px no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 9L12 15L18 9' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  mask: center/24px 24px no-repeat url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M6 9L12 15L18 9' stroke='black' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  transition: transform .2s ease;
}

.trendy-attraction-itinerary-step.is-open .trendy-attraction-itinerary-step__chevron {
  transform: rotate(180deg);
}

.trendy-attraction-itinerary-step__content {
  margin-top: 14px;
  color: #665238;
  font-size: 14px;
  line-height: 1.8;
}

.trendy-attraction-itinerary-step__content > :first-child {
  margin-top: 0;
}

.trendy-attraction-itinerary-step__content > :last-child {
  margin-bottom: 0;
}

.trendy-attraction-two-column {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.trendy-attraction-box {
  padding: 20px;
  border: 1px solid #efe4d5;
  border-radius: 18px;
  background: #fcfaf6;
}

.trendy-attraction-gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.trendy-attraction-gallery-grid__item,
.trendy-attraction-map {
  overflow: hidden;
  border-radius: 18px;
}

.trendy-attraction-gallery-grid__item img,
.trendy-attraction-map img,
.trendy-attraction-map iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.trendy-attraction-map iframe {
  min-height: 360px;
  border: 0;
}

.trendy-attraction-video-links {
  display: grid;
  gap: 10px;
  margin-top: 14px;
  margin-bottom: 14px;
}

.trendy-attraction-faq-item {
  padding: 18px 20px;
  border: 1px solid #efe4d5;
  border-radius: 18px;
  background: #fcfaf6;
}

.trendy-attraction-richtext,
.trendy-attraction-richtext p:last-child {
  margin-bottom: 0;
}

.trendy-attraction-richtext--lead {
  color: #655744;
}

.trendy-attraction-side-info {
  position: sticky;
  top: 72px;
}

.trendy-attraction-side-info__box {
  display: grid;
  gap: 18px;
}

.trendy-attraction-side-info__box h3 {
  margin: 0;
  font-size: 24px;
}

.trendy-attraction-side-info__price {
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
}

.trendy-attraction-side-info__facts {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trendy-attraction-side-info__facts li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #efe4d5;
}

.trendy-attraction-side-info__facts li span {
  color: #806b4c;
}

@media (max-width: 1024px) {
  .trendy-attraction-hero-body,
  .trendy-attraction-layout {
    grid-template-columns: 1fr;
  }

  .trendy-attraction-side-info,
  .trendy-attraction-anchor-nav {
    position: static;
  }
}

@media (max-width: 767px) {
  .trendy-attraction-hero-body,
  .trendy-attraction-content-card,
  .trendy-attraction-side-info__box,
  .trendy-attraction-booking-card {
    padding: 20px;
  }

  .trendy-attraction-itinerary-item,
  .trendy-attraction-two-column,
  .trendy-attraction-facts-table__row {
    grid-template-columns: 1fr;
  }

  .trendy-attraction-hero-meta {
    grid-template-columns: 1fr;
  }
}

.trendy-attraction-single--wte-structure .trendy-attraction-title {
  display: grid;
  gap: 14px;
}

.trendy-attraction-title__heading {
  font-size: clamp(30px, 4.2vw, 52px);
  line-height: 1.06;
}.trendy-attraction-title {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 20px;
}

.trendy-attraction-title__heading {
  grid-column: 1;
  margin: 0;
}

.trendy-attraction-title__duration {
  grid-column: 2;
  display: inline-flex;
  align-self: start;
}

.trendy-attraction-title__duration-box {
  display: inline-grid;
  justify-items: center;
  overflow: hidden;
  min-width: 74px;
  border: 1px solid #ef7b33;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(239, 123, 51, 0.12);
}

.trendy-attraction-title__duration-box strong {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 50px;
  padding: 0 18px;
  background: #ef7b33;
  color: #fff;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}

.trendy-attraction-title__duration-box span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 38px;
  padding: 0 14px;
  color: #4d4d4d;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

.trendy-attraction-title__excerpt {
  margin: 0;
  color: #645743;
  font-size: 17px;
  line-height: 1.7;
}

.trendy-attraction-title__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.trendy-attraction-title__price,
.trendy-attraction-title__package {
  display: grid;
  gap: 4px;
  min-width: 180px;
  padding: 14px 16px;
  border: 1px solid #eadfce;
  border-radius: 18px;
  background: #fbf7f1;
}

.trendy-attraction-title__price-label,
.trendy-attraction-title__package span {
  color: #8d7751;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.trendy-attraction-title__price-value {
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.trendy-attraction-title__price-type {
  color: #645743;
  font-size: 13px;
}

.trendy-attraction-gallery-grid-layout {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 10px;
}

.trendy-attraction-gallery-grid-layout.is-single {
  grid-template-columns: 1fr;
  grid-template-rows: auto;
}

.trendy-attraction-gallery-grid-layout__item {
  position: relative;
  background-color: #efefef;
  overflow: hidden;
  transition: transform .5s ease-out;
  will-change: transform;
  border-radius: 12px;
}

.trendy-attraction-gallery-grid-layout__item:nth-child(1) {
  grid-column: 1 / span 2;
  grid-row: 1 / span 2;
}

.trendy-attraction-gallery-grid-layout__item:nth-child(2) {
  grid-column: 3 / span 2;
  grid-row: 1 / span 1;
}


.trendy-attraction-gallery-grid-layout__trigger {
  display: block;
  width: 100%;
  height: 100%;
  cursor: zoom-in;
}

.trendy-attraction-gallery-grid-layout__item img {
  aspect-ratio: 324 / 284;
  transition: transform .5s ease-in-out;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  vertical-align: top;
}
.trendy-attraction-gallery-grid-layout__item:nth-child(2) img {
  aspect-ratio: 657 / 284;
}

.trendy-attraction-gallery-grid-layout__item.is-actions::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(14, 19, 16, 0) 52%, rgba(14, 19, 16, 0.42) 100%);
  pointer-events: none;
}

.trendy-attraction-gallery-grid-layout__actions {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.trendy-attraction-gallery-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: #4f5a56;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 8px 18px rgba(16, 20, 17, 0.14);
}

.trendy-attraction-gallery-pill:hover {
  background: #fff;
}

.trendy-attraction-wrapper-start {
  width: 100%;
}
.fancybox__viewport .f-html{background:transparent!important;}
.fancybox__viewport iframe{max-width: 835px;margin: auto;}
.trendy-attraction-top-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(300px, .8fr);
  gap: 40px;
  align-items: start;
}

.trendy-attraction-top-main {
  display: grid;
  gap: 22px;
}

.trendy-attraction-tabs-nav {
  position: relative;
  align-self: start;
  z-index: 4;
  padding: 12px 14px;
  border: 1px solid #e3d7c4;
  border-radius: 18px;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(10px);
}

.trendy-attraction-tabs-nav__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trendy-attraction-tabs-nav__item {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  color: #6f5934;
  font-weight: 600;
  text-decoration: none;
  background: #faf5ec;
}

.trendy-attraction-tabs-content {
  display: grid;
  gap: 24px;
}

.trendy-attraction-tab-panel {
  padding: 28px;
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 12px 34px rgba(42,30,12,.05);
}

.trendy-attraction-tab-panel h2 {
  margin-top: 0;
  margin-bottom: 30px;
}

.trendy-attraction-sidebar {
  position: sticky;
  top: 72px;
  display: grid;
  gap: 18px;
}

.trendy-attraction-sidebar__price {
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 12px;
}

.trendy-attraction-sidebar__facts {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trendy-attraction-sidebar__facts li {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid #efe4d5;
}

@media (max-width: 1024px) {
  .trendy-attraction-top-grid {
    grid-template-columns: 1fr;
  }

  .trendy-attraction-sidebar {
    position: static;
  }
}

@media (max-width: 767px) {
  .trendy-attraction-gallery-thumbs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trendy-attraction-tab-panel {
    padding: 20px;
  }

  .trendy-attraction-itinerary-panel__head {
    align-items: flex-start;
  }

  .trendy-attraction-itinerary-step {
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 12px;
  }

  .trendy-attraction-itinerary-step__rail::before {
    left: 15px;
  }

  .trendy-attraction-itinerary-step__icon {
    margin-left: 8px;
  }

  .trendy-attraction-itinerary-step.is-first .trendy-attraction-itinerary-step__icon {
    width: 32px;
    height: 32px;
    background-size: 18px 18px;
  }

  .trendy-attraction-itinerary-step__trigger {
    gap: 10px;
  }

  .trendy-attraction-itinerary-step__trigger h3,
  .trendy-attraction-itinerary-step__day {
    font-size: 15px;
  }
}

.trendy-field--calendar {
  gap: 10px;
}

.trendy-attraction-calendar {
  position: relative;
  overflow: hidden;
  border: 1px solid #e8dcc8;
  border-radius: 18px;
  background: #fffdf8;
}

.trendy-attraction-calendar__toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(92px, 120px) auto;
  gap: 12px;
  align-items: center;
  padding: 14px;
  background: #ece7dc;
}

.trendy-attraction-calendar__select {
  min-height: 40px;
  padding: 0 12px;
  border: 1px solid #ddd2bd;
  border-radius: 10px;
  background: #fff7e8;
}

.trendy-attraction-calendar__nav {
  display: inline-flex;
  gap: 8px;
}

.trendy-attraction-calendar__nav-btn {
  width: 40px;
  height: 40px;
  border: 1px solid #ddd2bd;
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.trendy-attraction-calendar__weekdays,
.trendy-attraction-calendar__grid {
  display: grid;
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.trendy-attraction-calendar__weekdays {
  border-top: 1px solid #ece5d7;
  border-bottom: 1px solid #ece5d7;
  background: #fff;
}

.trendy-attraction-calendar__weekdays span {
  padding: 14px 8px;
  color: #155f3d;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
}

.trendy-attraction-calendar__grid {
  background: #fff;
}

.trendy-attraction-calendar__cell.is-empty,
.trendy-attraction-calendar__day {
  min-height: 40px;
  border-right: 1px solid #efe7db;
  border-bottom: 1px solid #efe7db;
}

.trendy-attraction-calendar__cell.is-empty {
  background: #fff;
}

.trendy-attraction-calendar__day {
  position: relative;
  display: inline-grid;
  place-items: center;
  border-top: 0;
  border-left: 0;
  background: #fff;
  color: #1f1f1f;
  cursor: pointer;
  font-size: 18px;
}

.trendy-attraction-calendar__day.is-disabled {
  color: #d8c8b5;
  background: #fffdfb;
  cursor: not-allowed;
}

.trendy-attraction-calendar__day.is-disabled:hover {
  background: #fffdfb;
}

.trendy-attraction-calendar__day.is-available:hover {
  background: #f8efe2;
}

.trendy-attraction-calendar__day.is-selected {
  background: #ee7b33;
  color: #fff;
}

.trendy-attraction-calendar__day.is-loading {
  color: transparent;
}

.trendy-attraction-calendar__day.is-loading::after {
  content: "";
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255, 255, 255, .55);
  border-top-color: #fff;
  border-radius: 50%;
  animation: trendyAttractionSpin .75s linear infinite;
}

.trendy-attraction-calendar__selected {
  color: #6d5b40;
  font-size: 14px;
  font-weight: 600;
}

.trendy-booking-form--attraction.is-loading-availability .trendy-attraction-calendar::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  background: rgba(255, 253, 248, 0.72);
}

.trendy-booking-form--attraction.is-loading-availability .trendy-attraction-calendar::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 4;
  width: 24px;
  height: 24px;
  margin: -12px 0 0 -12px;
  border: 2px solid rgba(159, 109, 31, 0.22);
  border-top-color: #9f6d1f;
  border-radius: 50%;
  animation: trendyAttractionSpin .75s linear infinite;
}

.trendy-attraction-booking-availability,
.trendy-attraction-booking-slot-note,
.trendy-booking-modal-summary__capacity {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 12px 0 0;
  padding: 10px 12px;
  border: 1px solid #eadfce;
  border-radius: 12px;
  background: #fff8ee;
  color: #6d5b40;
  font-size: 14px;
  line-height: 1.5;
}

.trendy-attraction-booking-slot-note {
  margin-top: 10px;
}

.trendy-booking-modal-summary__capacity {
  margin-top: 0;
  margin-bottom: 18px;
}

.trendy-attraction-booking-availability.is-loading::before,
.trendy-booking-modal-summary__capacity.is-loading::before {
  content: "";
  flex: 0 0 16px;
  width: 16px;
  height: 16px;
  border: 2px solid rgba(159, 109, 31, 0.22);
  border-top-color: #9f6d1f;
  border-radius: 50%;
  animation: trendyAttractionSpin .75s linear infinite;
}

@keyframes trendyAttractionSpin {
  to {
    transform: rotate(360deg);
  }
}

@media (max-width: 767px) {
  .trendy-attraction-calendar__toolbar {
    grid-template-columns: 1fr 1fr;
  }

  .trendy-attraction-calendar__nav {
    grid-column: 1 / -1;
    justify-content: end;
  }

  .trendy-attraction-calendar__weekdays span {
    font-size: 12px;
  }

  .trendy-attraction-calendar__day {
    min-height: 44px;
    font-size: 18px;
  }
}

.trendy-attraction-sidebar__summary {
  display: grid;
  gap: 18px;
}

.trendy-attraction-offer-badge {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: #ffbf1f;
  color: #fff;
  font-weight: 700;
}

.trendy-attraction-price-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 18px 0;
}

.trendy-attraction-price-split__col {
  padding-right: 16px;
  border-right: 1px solid #eadfce;
}

.trendy-attraction-price-split__col:last-child { border-right: 0; padding-left: 16px; padding-right: 0; }
.trendy-attraction-price-split__from { color: #75664e; font-size: 14px; }
.trendy-attraction-price-split__from del { color: #ff6d4d; }
.trendy-attraction-price-split__value { font-size: 22px; font-weight: 700; }
.trendy-attraction-price-split__value span { color: #8d8271; font-size: 14px; font-weight: 500; }

.trendy-attraction-sidebar-price {
  align-items: baseline;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.trendy-attraction-sidebar-price__label {
  color: #75664e;
  font-size: 15px;
  font-weight: 600;
}

.trendy-attraction-sidebar-price__value {
  color: #111827;
  font-size: 28px;
  font-weight: 800;
  line-height: 1;
}

.trendy-attraction-sidebar-price__value del {
  color: #ff6d4d;
  font-size: 16px;
  font-weight: 600;
  margin-right: 6px;
}

.trendy-attraction-selling-points { display: grid; gap: 10px; margin: 0 0 22px; padding: 0; list-style: none; }
.trendy-attraction-selling-points li {
  position: relative;
  display: flex;
  align-items: center;
  gap: 6px;
  min-height: 24px;
  padding-left: 28px;
  color: #5c5a58;
}
.trendy-attraction-selling-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1px;
  width: 20px;
  height: 20px;
  background: no-repeat center / contain url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 20 20' fill='none'%3E%3Cpath d='M16.6673 5L7.50065 14.1667L3.33398 10' stroke='%2316C172' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.trendy-attraction-selling-points__label { display: inline-block; }
.trendy-attraction-selling-points__help {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 16px;
  padding: 0;
  border: 1px solid #9a9285;
  border-radius: 50%;
  background: transparent;
  color: #7d7569;
  font-size: 11px;
  line-height: 1;
  cursor: help;
}
.trendy-attraction-selling-points__tooltip {
  position: absolute;
  left: 64px;
  top: calc(100% + 8px);
  z-index: 4;
  width: min(220px, calc(100vw - 80px));
  padding: 12px 14px;
  border-radius: 6px;
  background: #353945;
  color: #fff;
  font-size: 14px;
  line-height: 1.4;
  box-shadow: 0 12px 32px rgba(17, 24, 39, .24);
  opacity: 0;
  visibility: hidden;
  transform: translateY(4px);
  transition: opacity .18s ease, transform .18s ease, visibility .18s ease;
}
.trendy-attraction-selling-points__tooltip::before {
  content: "";
  position: absolute;
  left: 16px;
  bottom: 100%;
  border-width: 0 8px 8px;
  border-style: solid;
  border-color: transparent transparent #353945 transparent;
}
.trendy-attraction-selling-points li:hover .trendy-attraction-selling-points__tooltip,
.trendy-attraction-selling-points li:focus-within .trendy-attraction-selling-points__tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.trendy-attraction-check-btn {
  width: 100%; min-height: 62px; border: 0; border-radius: 999px; background: #e5f93d; color: #203300; font-size: 17px; font-weight: 700; cursor: pointer;
}
.trendy-attraction-check-btn[disabled] { opacity: .45; cursor: not-allowed; }
.trendy-attraction-help-text { margin: 14px 0 0; color: #8d8271; text-align: center; }
.trendy-attraction-help-text a { color: #ef7b33; font-weight: 600; }

.trendy-attraction-booking-modal[hidden] { display: none !important; }
.trendy-attraction-booking-modal { position: fixed; inset: 0; z-index: 100000; }
.trendy-attraction-booking-modal__overlay { position: absolute; inset: 0; background: rgba(24, 21, 16, .54); }
.trendy-attraction-booking-modal__dialog { position: relative; display: grid; width: min(1180px, calc(100vw - 40px)); height: min(760px, calc(100vh - 40px)); max-height: calc(100vh - 40px); margin: 20px auto; overflow: hidden; border-radius: 22px; background: #fff; }
.trendy-attraction-booking-modal__close { position: absolute; top: 14px; right: 16px; z-index: 3; border: 0; background: transparent; font-size: 34px; cursor: pointer; }

.trendy-booking-form--attraction.is-modal,
.trendy-booking-form--hotel.is-modal { height: 100%; margin: 0; min-height: 0; }
.trendy-booking-modal-layout { display: grid; grid-template-columns: minmax(0, 1fr) minmax(320px, 370px); width: 100%; max-width: 100%; height: 100%; min-width: 0; min-height: 0; overflow: hidden; }
.trendy-booking-modal-layout__main { width: 100%; min-width: 0; min-height: 0; overflow-x: hidden; overflow-y: auto; box-sizing: border-box; padding: 26px 30px 34px; }
.trendy-booking-modal-layout__summary { width: 100%; min-width: 0; min-height: 0; overflow-x: hidden; overflow-y: auto; box-sizing: border-box; padding: 24px; background: #fdf5ed; border-left: 1px solid #eadfce; }

.trendy-booking-steps { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; margin-bottom: 26px; }
.trendy-booking-steps__item { padding: 0 0 12px; border-bottom: 3px solid #ddd6cb; color: #7d766d; font-weight: 600; }
.trendy-booking-steps__item.is-active { border-bottom-color: #ef7b33; color: #1f1f1f; }

.trendy-booking-step { display: none; }
.trendy-booking-step.is-active { display: block; }
.trendy-booking-step__actions { display: flex; justify-content: center; margin-top: 22px; }
.trendy-booking-step__actions--between { justify-content: space-between; align-items: center; }
.trendy-booking-back { border: 0; background: transparent; color: #b6ad9f; font-weight: 600; cursor: pointer; }
.trendy-booking-form--attraction.is-modal .trendy-booking-step__actions {
  gap: 12px;
}
.trendy-booking-form--attraction.is-modal .trendy-tour-check-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 190px;
  min-height: 52px;
  padding: 0 26px;
  border: 0;
  border-radius: 999px;
  background: #ef7b33;
  color: #fff;
  box-shadow: 0 12px 26px rgba(239, 123, 51, .24);
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.trendy-booking-form--attraction.is-modal .trendy-tour-check-btn:hover {
  background: #df6d28;
  box-shadow: 0 14px 30px rgba(239, 123, 51, .3);
  transform: translateY(-1px);
}
.trendy-booking-form--attraction.is-modal .trendy-tour-check-btn[disabled] {
  opacity: .46;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.trendy-booking-form--attraction.is-modal .trendy-booking-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid #e6dfd3;
  border-radius: 999px;
  background: #fff;
  color: #6f675d;
  font-size: 15px;
  font-weight: 800;
}
.trendy-booking-form--attraction.is-modal .trendy-booking-back:hover {
  border-color: #d6c8b4;
  background: #fffaf4;
  color: #1f1f1f;
}
.trendy-booking-step__travellers-head { display: flex; justify-content: space-between; margin-bottom: 18px; color: #6f6a61; font-weight: 700; text-transform: uppercase; }
.trendy-booking-step__alert { margin-bottom: 18px; padding: 14px 18px; border: 1px solid #f3a44c; border-radius: 10px; background: #fff8ef; color: #6a5535; font-size: 15px; line-height: 1.5; }
.trendy-booking-step__alert[hidden] { display: none !important; }
.trendy-hotel-date-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.trendy-booking-form--attraction.is-modal .trendy-field,
.trendy-booking-form--hotel.is-modal .trendy-field { margin-bottom: 18px; }
.trendy-booking-form--attraction.is-modal .trendy-field input,
.trendy-booking-form--attraction.is-modal .trendy-field select,
.trendy-booking-form--hotel.is-modal .trendy-field input,
.trendy-booking-form--hotel.is-modal .trendy-field select { width: 100%; min-height: 48px; border: 1px solid #e6dfd3; border-radius: 12px; background: #fff; }
.trendy-hotel-booking-row + .trendy-hotel-booking-row { margin-top: 14px; }
.trendy-hotel-guests-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin-top: 14px; }
.trendy-hotel-guests-grid .trendy-hotel-booking-row + .trendy-hotel-booking-row { margin-top: 0; }
.trendy-hotel-calendar .trendy-attraction-calendar__day.is-in-range { background: #fff0df; color: #1f1f1f; }
.trendy-hotel-calendar .trendy-attraction-calendar__day.is-range-start,
.trendy-hotel-calendar .trendy-attraction-calendar__day.is-range-end { background: #ef7b33; color: #fff; }

.trendy-pricing-row--modal { display: grid; grid-template-columns: minmax(0, 1fr) 180px 140px; gap: 18px; align-items: center; padding: 18px 16px; border: 1px solid #f0e8db; border-radius: 16px; background: #fff; }
.trendy-pricing-row--modal.trendy-hotel-booking-row--guest { grid-template-columns: minmax(0, 1fr) auto; gap: 12px; }
.trendy-pricing-row--modal.trendy-hotel-booking-row--guest .trendy-pricing-row__price { display: none; }
.trendy-pricing-row--modal .trendy-pricing-row__meta { min-width: 0; }
.trendy-pricing-row--modal .trendy-pricing-row__meta label { display: block; font-size: 17px; font-weight: 600; }
.trendy-pricing-row__price { display: flex; justify-items: start; gap: 3px; color: #6f675d; align-items: flex-end;}
.trendy-pricing-row__price del { opacity: .65; }
.trendy-pricing-row__price strong { color: #1f1f1f; font-size: 28px; line-height: 1; }
.trendy-pricing-row__price span { font-size: 14px; }
.trendy-qty-box { display: inline-grid; grid-template-columns: 34px 64px 34px; justify-self: end; align-items: stretch; border: 1px solid #e6dfd3; border-radius: 10px; overflow: hidden; background: #fff; }
.trendy-qty-box__btn { display: inline-flex; align-items: center; justify-content: center; width: 34px; min-width: 34px; min-height: 44px; padding: 0; border: 0; background: #fff; color: #4f463a; font-size: 24px; line-height: 1; cursor: pointer; }
.trendy-qty-box__btn:hover { background: #faf4ea; }
.trendy-qty-box input { width: 64px; min-width: 64px; min-height: 44px; padding: 0; border: 0; border-left: 1px solid #efe7db; border-right: 1px solid #efe7db; border-radius: 0; background: #fff; box-shadow: none; text-align: center; font-size: 28px; font-weight: 700; appearance: textfield; -moz-appearance: textfield; }
.trendy-qty-box input::-webkit-outer-spin-button,
.trendy-qty-box input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }

.trendy-hotel-booking-fees { display: grid; gap: 10px; margin-top: 18px; }
.trendy-hotel-booking-fees__title { color: #1f1f1f; font-size: 17px; font-weight: 700; }
.trendy-hotel-booking-fee { display: grid; grid-template-columns: 20px minmax(0, 1fr); gap: 12px; align-items: flex-start; padding: 14px 16px; border: 1px solid #f0e8db; border-radius: 14px; background: #fff; cursor: pointer; }
.trendy-hotel-booking-fee.is-mandatory { cursor: default; }
.trendy-hotel-booking-fee input { width: 18px; height: 18px; margin-top: 2px; accent-color: #ef7b33; }
.trendy-hotel-booking-fee__body { display: grid; gap: 4px; min-width: 0; }
.trendy-hotel-booking-fee__name { color: #1f1f1f; font-weight: 700; }
.trendy-hotel-booking-fee__name em { margin-left: 8px; color: #8d8271; font-size: 12px; font-style: normal; font-weight: 600; text-transform: uppercase; }
.trendy-hotel-booking-fee__price { color: #6f675d; font-size: 14px; }

@media (max-width: 767px) {
  .trendy-hotel-date-grid { grid-template-columns: 1fr; }
  .trendy-hotel-guests-grid { grid-template-columns: 1fr; }
  .trendy-pricing-row--modal { grid-template-columns: 1fr; }
  .trendy-pricing-row__price { justify-items: start; }
  .trendy-qty-box { justify-self: start; }
  .trendy-booking-form--attraction.is-modal .trendy-booking-step__actions,
  .trendy-booking-form--attraction.is-modal .trendy-booking-step__actions--between {
    align-items: stretch;
    flex-direction: column;
  }
  .trendy-booking-form--attraction.is-modal .trendy-tour-check-btn,
  .trendy-booking-form--attraction.is-modal .trendy-booking-back {
    width: 100%;
  }
}
.trendy-booking-modal-summary__eyebrow { color: #8d8271; font-size: 13px; text-transform: uppercase; }
.trendy-booking-modal-summary__title { margin: 12px 0 16px; color: #1f5a38; font-size: 21px; line-height: 1.45; }
.trendy-booking-modal-summary__meta { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; color: #1f5a38; margin-bottom: 18px; }
.trendy-booking-check-in,
.trendy-booking-check-out { display: grid; gap: 4px; min-width: 0; }
.trendy-booking-check-in label,
.trendy-booking-check-out label { margin: 0; color: #8d8271; font-size: 12px; font-weight: 700; line-height: 1.2; text-transform: uppercase; }
.trendy-booking-check-in span,
.trendy-booking-check-out span { color: #1f5a38; font-weight: 800; line-height: 1.35; }
.trendy-booking-modal-summary__package { display: inline-flex; padding: 7px 12px; font-weight: 700;border: 1px dashed #ddd;border-radius: 25px; background-color: #f2f79e;}
.trendy-booking-modal-summary__travellers { margin: 22px 0; padding-top: 18px; border-top: 1px solid #eadfce; color: #6e665d; }
.trendy-booking-modal-summary__line { display: flex; gap: 12px; align-items: baseline; justify-content: space-between; margin-bottom: 8px; }
.trendy-booking-modal-summary__line span { min-width: 120px; }
.trendy-booking-modal-summary__line.has-fee-divider { margin-top: 14px; padding-top: 14px; border-top: 1px solid #eadfce; }
.trendy-booking-modal-summary__line strong { color: #1f1f1f; font-weight: 800; text-align: right; }
.trendy-booking-modal-summary__total { display: flex; justify-content: space-between; align-items: center; padding-top: 18px; border-top: 1px solid #eadfce; color: #165b38; font-size: 18px; font-weight: 700; }
.trendy-booking-modal-summary__checkout { width: 100%; margin-top: 22px; }

body.trendy-modal-open { overflow: hidden; }
body.trendy-modal-open .trendy-attraction-tabs-nav,
body.trendy-modal-open .trendy-attraction-anchor-nav { z-index: 0; }

@media (max-width: 900px) {
  .trendy-attraction-booking-modal__dialog { height: auto; overflow-y: auto; }
  .trendy-booking-form--attraction.is-modal,
  .trendy-booking-form--hotel.is-modal { height: auto; }
  .trendy-booking-modal-layout { grid-template-columns: minmax(0, 1fr); height: auto; overflow: visible; }
  .trendy-booking-modal-layout__main,
  .trendy-booking-modal-layout__summary { overflow: visible; }
  .trendy-booking-modal-layout__summary { border-left: 0; border-top: 1px solid #eadfce; }
}

@media (max-width: 640px) {
  .trendy-booking-modal-layout__main { padding: 22px 16px 26px; }
  .trendy-booking-modal-layout__summary { padding: 20px 16px; }
}

.trendy-booking-form--attraction.is-modal .trendy-qty-box,
.trendy-booking-form--hotel.is-modal .trendy-qty-box {
  grid-template-columns: 36px 64px 36px;
  border-radius: 12px;
}

.trendy-booking-form--attraction.is-modal .trendy-qty-box__btn,
.trendy-booking-form--hotel.is-modal .trendy-qty-box__btn {
  position: relative;
  width: 36px;
  min-width: 36px;
  min-height: 40px;
  font-size: 0;
  color: transparent;
}

.trendy-booking-form--attraction.is-modal .trendy-qty-box__btn::before,
.trendy-booking-form--hotel.is-modal .trendy-qty-box__btn::before {
  display: block;
  color: #4f463a;
  font-family: Arial, sans-serif;
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
}

.trendy-booking-form--attraction.is-modal .trendy-qty-box__btn[data-trendy-qty="minus"]::before,
.trendy-booking-form--hotel.is-modal .trendy-qty-box__btn[data-trendy-qty="minus"]::before {
  content: '-';
}

.trendy-booking-form--attraction.is-modal .trendy-qty-box__btn[data-trendy-qty="plus"]::before,
.trendy-booking-form--hotel.is-modal .trendy-qty-box__btn[data-trendy-qty="plus"]::before {
  content: '+';
}

.trendy-booking-form--attraction.is-modal .trendy-qty-box input[data-trendy-package-input],
.trendy-booking-form--attraction.is-modal .trendy-qty-box input[data-trendy-attraction-booking-input],
.trendy-booking-form--hotel.is-modal .trendy-qty-box input[data-trendy-hotel-qty-input] {
  width: 64px !important;
  min-width: 64px;
  min-height: 40px;
  padding: 0 !important;
  font-size: 20px;
  font-weight: 700;
}

.trendy-attraction-gallery-lightbox[hidden] { display: none !important; }
.trendy-attraction-gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 10000;
}
.trendy-attraction-gallery-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, .82);
}
.trendy-attraction-gallery-lightbox__frame {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 48px 88px;
}
.trendy-attraction-gallery-lightbox__topbar {
  position: absolute;
  top: 18px;
  left: 36px;
  right: 28px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
}
.trendy-attraction-gallery-lightbox__count {
  font-size: 22px;
  font-weight: 500;
}
.trendy-attraction-gallery-lightbox__close,
.trendy-attraction-gallery-lightbox__nav {
  border: 0;
  background: rgba(255, 255, 255, .08);
  color: #fff;
  cursor: pointer;
}
.trendy-attraction-gallery-lightbox__close {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 34px;
  line-height: 1;
}
.trendy-attraction-gallery-lightbox__viewport {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(1120px, calc(100vw - 220px));
  height: min(720px, calc(100vh - 120px));
}
.trendy-attraction-gallery-lightbox__image {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  box-shadow: 0 18px 48px rgba(0, 0, 0, .28);
}
.trendy-attraction-gallery-lightbox__nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  width: 52px;
  height: 52px;
  margin-top: -26px;
  border-radius: 50%;
  font-size: 40px;
  line-height: 1;
}
.trendy-attraction-gallery-lightbox__nav.is-prev { left: 26px; }
.trendy-attraction-gallery-lightbox__nav.is-next { right: 26px; }

@media (max-width: 767px) {
  .trendy-attraction-gallery-lightbox__frame {
    padding: 56px 20px 24px;
  }
  .trendy-attraction-gallery-lightbox__topbar {
    left: 20px;
    right: 20px;
  }
  .trendy-attraction-gallery-lightbox__count {
    font-size: 18px;
  }
  .trendy-attraction-gallery-lightbox__viewport {
    width: calc(100vw - 40px);
    height: calc(100vh - 120px);
  }
  .trendy-attraction-gallery-lightbox__nav {
    width: 44px;
    height: 44px;
    margin-top: -22px;
    font-size: 34px;
  }
  .trendy-attraction-gallery-lightbox__nav.is-prev { left: 10px; }
  .trendy-attraction-gallery-lightbox__nav.is-next { right: 10px; }
}
.trendy-attraction-gallery-grid-layout__hidden { display: none; }

.trendy-trip-facts {
  margin-top: 22px;
}

.trendy-trip-facts__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 22px 26px;
}

.trendy-trip-facts__item {
  display: grid;
  grid-template-columns: 36px minmax(0, 1fr);
  align-items: start;
  gap: 12px;
}

.trendy-trip-facts__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  min-height: 36px;
  color: #90908b;
}

.trendy-trip-facts__icon svg,
.trendy-trip-facts__icon img,
.trendy-trip-facts__icon .trendy-trip-facts__icon-class {
  width: 30px;
  height: 30px;
}

.trendy-trip-facts__icon-svg {
  fill: currentColor;
}

.trendy-trip-facts__icon-svg[fill="none"] {
  fill: none;
}

.trendy-trip-facts__icon-image {
  object-fit: contain;
}

.trendy-trip-facts__content {
  min-width: 0;
}

.trendy-trip-facts__label {
  margin-bottom: 2px;
  color: #7f7a70;
  font-size: 14px;
  line-height: 1.3;
}

.trendy-trip-facts__value {
  color: #1c1f23;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}
.trendy-attraction-faq-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.trendy-attraction-faq-panel__head h2 {
  margin: 0;
}

.trendy-attraction-faq-accordion {
  display: grid;
  gap: 16px;
}

.trendy-attraction-faq-accordion__item {
  padding: 24px 30px;
  border: 1px solid #e6d9c7;
  border-radius: 16px;
  background: #fcfaf6;
}

.trendy-attraction-faq-accordion__trigger {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  gap: 16px;
  padding: 0;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
}

.trendy-attraction-faq-accordion__question {
  color: #ef8b3b;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
}

.trendy-attraction-faq-accordion__content {
  margin-top: 18px;
  color: #1e1e1e;
  font-size: 16px;
  line-height: 1.75;
}

.trendy-attraction-faq-accordion__content > :first-child {
  margin-top: 0;
}

.trendy-attraction-faq-accordion__content > :last-child {
  margin-bottom: 0;
}

.trendy-attraction-faq-accordion__item .trendy-attraction-itinerary-step__chevron {
  color: #ef8b3b;
}

.trendy-attraction-faq-accordion__item.is-open .trendy-attraction-itinerary-step__chevron {
  transform: rotate(180deg);
}

.trendy-attraction-breadcrumbs {
  margin-bottom: 18px;
}

.trendy-attraction-breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trendy-attraction-breadcrumbs__item {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #7f6a49;
  font-size: 14px;
  line-height: 1.5;
}

.trendy-attraction-breadcrumbs__item::after {
  content: '';
  width: 6px;
  height: 6px;
  border-top: 1.5px solid #b89d73;
  border-right: 1.5px solid #b89d73;
  transform: rotate(45deg);
}

.trendy-attraction-breadcrumbs__item:last-child::after {
  display: none;
}

.trendy-attraction-breadcrumbs__item a {
  color: inherit;
  text-decoration: none;
}

.trendy-attraction-breadcrumbs__item a:hover {
  color: #ef8b3b;
}

.trendy-attraction-breadcrumbs__item:last-child {
  color: #9a8058;
}

.trendy-page--hotel .trendy-detail-card,
.trendy-page--hotel .trendy-faq-frontend-item,
.trendy-page--hotel .trendy-itinerary-card,
.trendy-page--hotel .trendy-attraction-box {
  border-color: #d8e7df;
  background: #f7fcf8;
}

.trendy-hotel-room-list {
  display: grid;
  gap: 0;
}

.trendy-hotel-room-list__item {
  display: grid;
  grid-template-columns: 218px minmax(0, 1fr) 132px;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid #e6edf0;
}

.trendy-hotel-room-list__item:first-child {
  padding-top: 0;
}

.trendy-hotel-room-list__media {
  position: relative;
  min-height: 144px;
  overflow: hidden;
  background: #edf5f7;
}

.trendy-hotel-room-list__media img {
  display: block;
  width: 100%;
  height: 144px;
  object-fit: cover;
}

.trendy-hotel-room-list__media-placeholder {
  display: grid;
  min-height: 144px;
  place-items: center;
  color: #7e99a8;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
}

.trendy-hotel-room-list__gallery-btn {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 28px;
  padding: 0 12px;
  background: #114b97;
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: .02em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.trendy-hotel-room-list__gallery-btn:hover {
  color: #fff;
  background: #0b3e82;
}

.trendy-hotel-room-list__body {
  min-width: 0;
}

.trendy-hotel-room-list__body h3 {
  margin: 0 0 4px;
  color: #243653;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
}

.trendy-hotel-room-list__capacity {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  margin-bottom: 14px;
  color: #edb431;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.2;
}

.trendy-hotel-room-list__capacity strong {
  color: #1c72b2;
  font-weight: 700;
}

.trendy-hotel-room-list__desc {
  margin: 0 0 18px;
  color: #6f7f96;
  font-size: 12px;
  line-height: 1.7;
}

.trendy-hotel-room-list__amenities {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  min-height: 20px;
}

.trendy-hotel-room-list__amenity,
.trendy-hotel-room-list__amenity-text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 14px;
  min-height: 16px;
  color: #a9c5d8;
  font-size: 13px;
  line-height: 1;
}

.trendy-hotel-room-list__amenity svg,
.trendy-hotel-room-list__amenity img,
.trendy-hotel-room-list__amenity .trendy-trip-facts__icon-class {
  width: 14px;
  height: 14px;
  color: currentColor;
  fill: currentColor;
}

.trendy-hotel-room-list__amenity-text {
  color: #91adbf;
  font-size: 11px;
  font-weight: 700;
}

.trendy-hotel-room-list__side {
  display: grid;
  align-content: start;
  justify-items: end;
  gap: 62px;
}

.trendy-hotel-room-list__price {
  color: #49c7a2;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.2;
  text-align: right;
  white-space: nowrap;
}

.trendy-hotel-room-list__price span {
  color: #7d8897;
  font-size: 9px;
  font-weight: 700;
}

.trendy-hotel-room-list__details {
  display: grid;
  grid-template-columns: 1fr 28px;
  align-items: stretch;
  width: 100px;
  min-height: 28px;
  padding: 0;
  border: 0;
  background: #5bb7e8;
  color: #fff;
  cursor: pointer;
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
}

.trendy-hotel-room-list__details span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.trendy-hotel-room-list__details span:last-child {
  background: rgba(29, 130, 188, .55);
  font-size: 15px;
}

.trendy-hotel-room-list__details:hover {
  background: #42a8de;
}

.trendy-hotel-room-modal[hidden] {
  display: none !important;
}

.trendy-hotel-room-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
}

.trendy-hotel-room-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(24, 31, 37, .62);
}

.trendy-hotel-room-modal__dialog {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  width: min(352px, 100vw);
  overflow: hidden;
  background: #fff;
  box-shadow: -18px 0 40px rgba(13, 32, 51, .22);
}

.trendy-hotel-room-modal__close {
  position: absolute;
  top: 0;
  left: 24px;
  z-index: 4;
  display: grid;
  width: 42px;
  height: 32px;
  place-items: center;
  border: 0;
  background: #144988;
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
}

.trendy-hotel-room-modal__content {
  display: flex;
  min-height: 100%;
  flex: 1;
  flex-direction: column;
  overflow-y: auto;
}

.trendy-hotel-room-modal__loading,
.trendy-hotel-room-modal__error {
  display: grid;
  min-height: 220px;
  place-items: center;
  padding: 32px;
  color: #66738a;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

.trendy-hotel-room-modal__loading {
  align-content: center;
  justify-content: center;
  justify-items: center;
  min-height: 100%;
  gap: 10px;
}

.trendy-hotel-room-modal__loading-text {
  color: #7a8796;
  font-size: 12px;
  font-weight: 700;
}

.trendy-hotel-room-modal__error {
  color: #b42318;
}

.trendy-hotel-room-modal__spinner {
  width: 28px;
  height: 28px;
  border: 3px solid #49b9f2;
  border-right-color: #f6bd2f;
  border-radius: 50%;
  animation: trendy-room-modal-spin .8s linear infinite;
}

@keyframes trendy-room-modal-spin {
  to {
    transform: rotate(360deg);
  }
}

.trendy-hotel-room-modal__hero {
  position: relative;
  min-height: 212px;
  overflow: hidden;
  background: #e8f0f5;
}

.trendy-hotel-room-modal__image,
.trendy-hotel-room-modal__image-placeholder {
  display: block;
  width: 100%;
  height: 212px;
  object-fit: cover;
}

.trendy-hotel-room-modal__image-placeholder {
  display: grid;
  place-items: center;
  color: #7e99a8;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.trendy-hotel-room-modal__hero::after {
  position: absolute;
  inset: auto 0 0;
  height: 78px;
  background: linear-gradient(to top, rgba(5, 22, 42, .72), rgba(5, 22, 42, 0));
  content: '';
}

.trendy-hotel-room-modal__hero-title {
  position: absolute;
  right: 24px;
  bottom: 18px;
  left: 24px;
  z-index: 1;
  color: #fff;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.25;
  text-align: center;
}

.trendy-hotel-room-modal__photo-count {
  position: absolute;
  top: 0;
  right: 24px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 22px;
  padding: 0 12px;
  background: #144988;
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.trendy-hotel-room-modal__photo-count:hover {
  color: #fff;
  background: #0d3d78;
}

.trendy-hotel-room-modal__gallery-hidden {
  display: none;
}

.trendy-hotel-room-modal__facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid #e7edf2;
  background: #fbfdff;
}

.trendy-hotel-room-modal__fact {
  display: grid;
  align-content: center;
  justify-items: center;
  min-height: 52px;
  padding: 8px 6px;
  border-right: 1px solid #e7edf2;
  color: #687991;
  font-size: 9px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}

.trendy-hotel-room-modal__fact:last-child {
  border-right: 0;
}

.trendy-hotel-room-modal__fact-icon,
.trendy-hotel-room-modal__amenity-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #55bff0;
}

.trendy-hotel-room-modal__fact-icon {
  width: 20px;
  height: 20px;
  margin-bottom: 4px;
}

.trendy-hotel-room-modal__fact-icon svg,
.trendy-hotel-room-modal__fact-icon img,
.trendy-hotel-room-modal__fact-icon .trendy-trip-facts__icon-class,
.trendy-hotel-room-modal__amenity-icon svg,
.trendy-hotel-room-modal__amenity-icon img,
.trendy-hotel-room-modal__amenity-icon .trendy-trip-facts__icon-class {
  width: 16px;
  height: 16px;
  color: currentColor;
  fill: currentColor;
}

.trendy-hotel-room-modal__fact-icon svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.trendy-hotel-room-modal__fact-icon svg path {
  fill: none;
}

.trendy-hotel-room-modal__section {
  padding: 28px 30px;
  border-bottom: 1px solid #edf1f4;
}

.trendy-hotel-room-modal__section h3 {
  margin: 0 0 16px;
  color: #14355d;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.3;
}

.trendy-hotel-room-modal__details {
  color: #687991;
  font-size: 12px;
  line-height: 1.75;
}

.trendy-hotel-room-modal__details > :first-child {
  margin-top: 0;
}

.trendy-hotel-room-modal__details > :last-child {
  margin-bottom: 0;
}

.trendy-hotel-room-modal__amenities {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trendy-hotel-room-modal__amenities li {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  color: #687991;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
}

.trendy-hotel-room-modal__footer {
  margin-top: auto;
  padding: 24px 30px;
}

.trendy-hotel-room-modal__book {
  display: grid;
  grid-template-columns: 1fr 34px;
  align-items: stretch;
  width: 114px;
  min-height: 30px;
  padding: 0;
  border: 0;
  background: #ffc625;
  color: #fff;
  cursor: pointer;
  font-size: 10px;
  font-weight: 800;
  line-height: 1;
}

.trendy-hotel-room-modal__book span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.trendy-hotel-room-modal__book span:last-child {
  background: rgba(242, 178, 0, .65);
}

.trendy-hotel-detail-items {
  margin-top: 24px;
}

.trendy-hotel-detail-accordion {
  display: grid;
  gap: 12px;
}

.trendy-hotel-detail-accordion__item {
  background: #fff;
}

.trendy-hotel-detail-accordion__trigger {
  display: grid;
  grid-template-columns: 1fr 40px;
  align-items: stretch;
  width: 100%;
  min-height: 36px;
  padding: 0;
  border: 0;
  background: #fff;
  color: #223247;
  cursor: pointer;
  font: inherit;
  font-size: 13px;
  line-height: 1.2;
  text-align: left;
}

.trendy-hotel-detail-accordion__trigger > span:first-child {
  display: flex;
  align-items: center;
  padding: 0 24px;
}

.trendy-hotel-detail-accordion__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #3db3e6;
  color: #fff;
  font-size: 13px;
  font-weight: 800;
}

.trendy-hotel-detail-accordion__item.is-open .trendy-hotel-detail-accordion__trigger {
  background: #164889;
  color: #fff;
  font-weight: 700;
}

.trendy-hotel-detail-accordion__content {
  padding: 22px 24px;
  background: #fff;
  color: #66738a;
  font-size: 12px;
  line-height: 1.85;
}

.trendy-hotel-detail-accordion__content > :first-child {
  margin-top: 0;
}

.trendy-hotel-detail-accordion__content > :last-child {
  margin-bottom: 0;
}

.trendy-hotel-overview-block {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.trendy-hotel-overview-block > h3 {
  margin: 0;
  font-size: 22px;
  line-height: 1.2;
}

.trendy-hotel-overview-amenity-icon,
.trendy-attraction-overview-amenity-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  color: #55bff0;
}

.trendy-hotel-overview-amenity-icon svg,
.trendy-hotel-overview-amenity-icon img,
.trendy-hotel-overview-amenity-icon .trendy-trip-facts__icon-class,
.trendy-attraction-overview-amenity-icon svg,
.trendy-attraction-overview-amenity-icon img,
.trendy-attraction-overview-amenity-icon .trendy-trip-facts__icon-class {
  width: 16px;
  height: 16px;
  color: currentColor;
  fill: currentColor;
}

.trendy-hotel-amenities-grid,
.trendy-attraction-amenities-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px 42px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trendy-hotel-amenities-grid li,
.trendy-attraction-amenities-grid li {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: center;
  gap: 12px;
  min-height: 20px;
  color: #7a8190;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.35;
}

@media (max-width: 767px) {
  .trendy-attraction-amenities-grid {
    grid-template-columns: 1fr;
  }

  .trendy-hotel-room-list__item {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .trendy-hotel-room-list__media,
  .trendy-hotel-room-list__media img,
  .trendy-hotel-room-list__media-placeholder {
    min-height: 190px;
    height: 190px;
  }

  .trendy-hotel-room-list__side {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
  }

  .trendy-hotel-room-list__price {
    text-align: left;
    white-space: normal;
  }

  .trendy-hotel-room-modal__dialog {
    left: 0;
    width: 100vw;
  }

  .trendy-hotel-room-modal__section {
    padding: 24px 22px;
  }

  .trendy-hotel-room-modal__facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trendy-hotel-room-modal__fact:nth-child(2n) {
    border-right: 0;
  }

  .trendy-hotel-room-modal__amenities {
    grid-template-columns: 1fr;
  }

  .trendy-hotel-amenities-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.trendy-attraction-shell {
  gap: 28px;
}

.trendy-attraction-title {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 24px;
  margin: 0 0 22px;
}

.trendy-attraction-title__main {
  display: grid;
  gap: 22px;
  min-width: 0;
}

.trendy-attraction-title__heading {
  margin: 0;
  color: #050505;
  font-size: 31px;
  font-weight: 800;
  line-height: 1.14;
}

.trendy-attraction-title__facts {
  display: flex;
  flex-wrap: wrap;
  gap: 22px 34px;
  align-items: center;
}

.trendy-attraction-title__fact {
  display: inline-grid;
  grid-template-columns: 48px minmax(0, auto);
  align-items: center;
  gap: 14px;
  min-width: 170px;
}

.trendy-attraction-title__fact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border: 1px solid #0b72ee;
  border-radius: 50%;
  color: #0b72ee;
}

.trendy-attraction-title__fact-icon svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.trendy-attraction-title__fact-text {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.trendy-attraction-title__fact-label {
  color: #8b8f98;
  font-size: 14px;
  line-height: 1.25;
}

.trendy-attraction-title__fact-value {
  color: #111827;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
}

.trendy-attraction-title__price {
  display: grid;
  justify-items: end;
  gap: 3px;
  min-width: 210px;
  padding-top: 3px;
  text-align: right;
}

.trendy-attraction-title__price-current {
  display: grid;
  justify-items: end;
  gap: 3px;
  color: #0b68d8;
  font-size: 34px;
  font-weight: 800;
  line-height: 1;
}

.trendy-attraction-title__price-current strong {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

.trendy-attraction-title__price-current .woocommerce-Price-currencySymbol {
  font-size: .86em;
}

.trendy-attraction-title__price-current del,
.trendy-attraction-title__price-regular {
  color: #b6b6b6;
  font-size: 21px;
  font-weight: 700;
  line-height: 1.1;
  text-decoration-thickness: 2px;
}

.trendy-attraction-meta-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trendy-attraction-chip {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid #d9e7f5;
  border-radius: 999px;
  background: #fff;
  color: #315b7d;
  font-size: 13px;
  font-weight: 600;
}

.trendy-attraction-chip--muted {
  color: #5c6f82;
  background: #f5f9fd;
}

.trendy-attraction-section-block {
  display: grid;
  gap: 16px;
  margin-top: 28px;
}

.trendy-attraction-section-head {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: baseline;
}

.trendy-attraction-section-head h2 {
  margin-right: auto;
}

.trendy-attraction-section-head span {
  color: #67819a;
  font-size: 13px;
  font-weight: 600;
}

.trendy-attraction-section-head__label strong {
  color: inherit;
  font-size: inherit;
  font-weight: 700;
}

.trendy-attraction-date-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 7px 12px;
  border: 1px solid #cfe0ef;
  border-radius: 8px;
  background: #fff;
  color: #0b68d8;
  cursor: pointer;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}

.trendy-attraction-date-button:hover {
  border-color: #0b68d8;
  background: #f5f9fd;
  color: #0b68d8;
}

.trendy-attraction-pricing-empty {
  margin: 0;
  padding: 14px 16px;
  border: 1px solid #dfeaf3;
  border-radius: 8px;
  background: #f8fbfd;
  color: #61748a;
}

.trendy-attraction-date-picker[hidden] {
  display: none !important;
}

.trendy-attraction-date-picker {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: grid;
  place-items: center;
  padding: 20px;
}

.trendy-attraction-date-picker__overlay {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(17, 24, 39, .48);
  cursor: pointer;
}

.trendy-attraction-date-picker__dialog {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  width: min(760px, 100%);
  padding: 22px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 18px 60px rgba(15, 23, 42, .22);
}

.trendy-attraction-date-picker.is-loading .trendy-attraction-date-picker__dialog::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 4;
  border-radius: 8px;
  background: rgba(255, 255, 255, .62);
}

.trendy-attraction-date-picker.is-loading .trendy-attraction-date-picker__dialog::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 5;
  width: 34px;
  height: 34px;
  margin: -17px 0 0 -17px;
  border: 3px solid rgba(11, 104, 216, .22);
  border-top-color: #0b68d8;
  border-radius: 50%;
  animation: trendyAttractionSpin .75s linear infinite;
}

.trendy-attraction-date-picker__loader[hidden] {
  display: none !important;
}

.trendy-attraction-date-picker__loader {
  position: absolute;
  inset: 0;
  z-index: 6;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 12px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .76);
  color: #1f3650;
  font-size: 14px;
  font-weight: 700;
}

.trendy-attraction-date-picker__spinner {
  width: 36px;
  height: 36px;
  border: 3px solid rgba(11, 104, 216, .22);
  border-top-color: #0b68d8;
  border-radius: 50%;
  animation: trendyAttractionSpin .75s linear infinite;
}

.trendy-attraction-date-picker__dialog h3 {
  margin: 0;
  color: #1f3650;
  font-size: 20px;
  line-height: 1.25;
}

.trendy-attraction-date-picker__dialog input {
  width: 100%;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid #cfe0ef;
  border-radius: 8px;
  background: #fff;
  color: #1f3650;
  font-size: 15px;
}

.trendy-attraction-date-picker__apply {
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  background: #0b68d8;
  color: #fff;
  cursor: pointer;
  font-weight: 800;
}

.trendy-attraction-date-picker__apply:hover {
  background: #095bbd;
  color: #fff;
}

.trendy-attraction-date-picker__close {
  position: absolute;
  top: 10px;
  right: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 50%;
  background: #f0f6fb;
  color: #1f3650;
  cursor: pointer;
  font-size: 20px;
  line-height: 1;
}

.trendy-attraction-date-picker__message {
  margin: 0;
  color: #9a3412;
  font-size: 13px;
}

.trendy-attraction-slot-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 14px;
}

.trendy-attraction-slot {
  display: grid;
  gap: 6px;
  padding: 16px 18px;
  border: 1px solid #dfeaf3;
  border-radius: 18px;
  background: #fff;
}

.trendy-attraction-slot strong {
  color: #1f3650;
  font-size: 16px;
}

.trendy-attraction-slot span,
.trendy-attraction-slot small {
  color: #61748a;
}

.trendy-attraction-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.trendy-attraction-highlights__item {
  position: relative;
  padding: 14px 16px 14px 42px;
  border: 1px solid #dfeaf3;
  border-radius: 10px;
  background: #fff;
  color: #1f3650;
  line-height: 1.55;
}

.trendy-attraction-highlights__item::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 17px;
  width: 12px;
  height: 7px;
  border-bottom: 2px solid #0f8a5f;
  border-left: 2px solid #0f8a5f;
  transform: rotate(-45deg);
}

.trendy-attraction-visitor-info {
  display: grid;
  gap: 18px;
}

.trendy-attraction-visitor-info__section {
  display: grid;
  gap: 10px;
  padding-bottom: 18px;
  border-bottom: 1px solid #e6edf3;
}

.trendy-attraction-visitor-info__section:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.trendy-attraction-visitor-info__section h3 {
  margin: 0;
  color: #1f3650;
  font-size: 18px;
  line-height: 1.35;
}

@media (max-width: 767px) {
  .trendy-attraction-title {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .trendy-attraction-title__heading {
    font-size: 26px;
  }

  .trendy-attraction-title__facts {
    gap: 16px;
  }

  .trendy-attraction-title__fact {
    min-width: 100%;
  }

  .trendy-attraction-title__price {
    justify-items: start;
    min-width: 0;
    text-align: left;
  }

  .trendy-attraction-title__price-current {
    font-size: 30px;
  }

  .trendy-attraction-section-head {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (min-width: 1025px) {
  .trendy-attraction-wrapper-start,
  .trendy-attraction-top-grid {
    overflow: visible;
  }

  .trendy-attraction-sidebar {
    position: sticky;
    top: 92px;
    align-self: start;
    height: fit-content;
    max-height: calc(100vh - 112px);
    overflow-y: auto;
    z-index: 3;
  }
}

