.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-page--attraction .trendy-sidebar {
  background: linear-gradient(180deg, #fff8ee, #fff);
}

.trendy-page--hotel .trendy-sidebar {
  background: linear-gradient(180deg, #effaf4, #fff);
}

.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-attraction-section-block {
  display: grid;
    gap: 16px;
}

.trendy-pricing-list.is-loading {
  opacity: .55;
    pointer-events: none;
}

.trendy-attraction-shell {
  display: grid;
    gap: 28px;
}

.trendy-attraction-two-column {
  display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

@media (max-width: 767px) {
  .trendy-attraction-itinerary-item, .trendy-attraction-two-column, .trendy-attraction-facts-table__row {
    grid-template-columns: 1fr;
  }
}

.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-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;
}

@media (max-width: 767px) {
  .trendy-attraction-tab-panel {
    padding: 20px;
  }
}

.trendy-attraction-calendar__day.is-disabled:hover {
  background: #fffdfb;
}

.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-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);
    }
}

.trendy-attraction-sidebar__summary {
  display: grid;
    gap: 18px;
}

.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-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-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;
  }
}

@media (max-width: 767px) {
  .trendy-hotel-guests-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .trendy-pricing-row--modal {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .trendy-pricing-row__price {
    justify-items: start;
  }
}

@media (max-width: 767px) {
  .trendy-qty-box {
    justify-self: start;
  }
}

@media (max-width: 767px) {
  .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;
  }
}

@media (max-width: 767px) {
  .trendy-booking-form--attraction.is-modal .trendy-tour-check-btn, .trendy-booking-form--attraction.is-modal .trendy-booking-back {
    width: 100%;
  }
}

.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-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;
  }
}

@media (max-width: 767px) {
  .trendy-hotel-room-list__item {
    grid-template-columns: 1fr;
        gap: 14px;
  }
}

@media (max-width: 767px) {
  .trendy-hotel-room-list__media, .trendy-hotel-room-list__media img, .trendy-hotel-room-list__media-placeholder {
    min-height: 190px;
        height: 190px;
  }
}

@media (max-width: 767px) {
  .trendy-hotel-room-list__side {
    display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
  }
}

@media (max-width: 767px) {
  .trendy-hotel-room-list__price {
    text-align: left;
        white-space: normal;
  }
}

@media (max-width: 767px) {
  .trendy-hotel-room-modal__dialog {
    left: 0;
        width: 100vw;
  }
}

@media (max-width: 767px) {
  .trendy-hotel-room-modal__section {
    padding: 24px 22px;
  }
}

@media (max-width: 767px) {
  .trendy-hotel-room-modal__facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .trendy-hotel-room-modal__fact:nth-child(2n) {
    border-right: 0;
  }
}

@media (max-width: 767px) {
  .trendy-hotel-room-modal__amenities {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  .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;
  }
}

@media (max-width: 767px) {
  .trendy-attraction-title__heading {
    font-size: 26px;
  }
}

@media (max-width: 767px) {
  .trendy-attraction-title__facts {
    gap: 16px;
  }
}

@media (max-width: 767px) {
  .trendy-attraction-title__fact {
    min-width: 100%;
  }
}

@media (max-width: 767px) {
  .trendy-attraction-title__price {
    justify-items: start;
        min-width: 0;
        text-align: left;
  }
}

@media (max-width: 767px) {
  .trendy-attraction-title__price-current {
    font-size: 30px;
  }
}

@media (max-width: 767px) {
  .trendy-attraction-section-head {
    flex-direction: column;
        align-items: flex-start;
  }
}
