.iao-hotel-details {
  --iao-hd-stars-filled-color-normal: #e1ad01;
  --iao-hd-stars-filled-color-hover: var(--iao-hd-stars-filled-color-normal);
  --iao-hd-stars-filled-color-selected: var(--iao-hd-stars-filled-color-hover);

  --iao-hd-stars-empty-color-normal: #d0d0d0;
  --iao-hd-stars-empty-color-hover: var(--iao-hd-stars-empty-color-normal);
  --iao-hd-stars-empty-color-selected: var(--iao-hd-stars-empty-color-hover);

  --iao-hd-name-color-normal: #1a1a1a;
  --iao-hd-name-color-hover: var(--iao-hd-name-color-normal);
  --iao-hd-name-color-selected: var(--iao-hd-name-color-hover);

  --iao-hd-description-color-normal: #4a4a4a;
  --iao-hd-description-color-hover: var(--iao-hd-description-color-normal);
  --iao-hd-description-color-selected: var(--iao-hd-description-color-hover);

  --iao-hd-button-text-normal: #ffffff;
  --iao-hd-button-text-hover: var(--iao-hd-button-text-normal);
  --iao-hd-button-text-selected: var(--iao-hd-button-text-hover);

  --iao-hd-button-bg-normal: #111111;
  --iao-hd-button-bg-hover: var(--iao-hd-button-bg-normal);
  --iao-hd-button-bg-selected: var(--iao-hd-button-bg-hover);

  --iao-hd-button-align: flex-start;
  --iao-hd-button-width: auto;

  --iao-hd-container-bg-normal: #ffffff;
  --iao-hd-container-bg-hover: var(--iao-hd-container-bg-normal);
  --iao-hd-container-bg-selected: var(--iao-hd-container-bg-hover);

  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  border-radius: 12px;
  background-color: var(--iao-hd-container-bg-normal);
}

.iao-hd__image-wrap {
  width: 100%;
}

.iao-hd__image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.iao-hd__stars {
  display: flex;
  align-items: center;
  gap: 6px;
  line-height: 1;
}

.iao-hd__star {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.iao-hd__star i,
.iao-hd__star svg {
  width: 1em;
  height: 1em;
  font-size: 1em !important;
  line-height: 1;
}

.iao-hd__star svg * {
  fill: currentColor;
  stroke: currentColor;
}

.iao-hd__star.is-filled {
  color: var(--iao-hd-stars-filled-color-normal) !important;
}

.iao-hd__star.is-empty {
  color: var(--iao-hd-stars-empty-color-normal) !important;
  opacity: 1;
}

.iao-hotel-details .iao-hd__name {
  margin: 0;
  color: var(--iao-hd-name-color-normal) !important;
}

.iao-hd__description {
  color: var(--iao-hd-description-color-normal);
}

.iao-hd__description > :first-child {
  margin-top: 0;
}

.iao-hd__description > :last-child {
  margin-bottom: 0;
}

.iao-hd__button-wrap {
  display: flex;
  width: 100%;
  justify-content: var(--iao-hd-button-align);
}

.iao-hd__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--iao-hd-button-width);
  text-decoration: none;
  transition: all 0.2s ease;
  color: var(--iao-hd-button-text-normal) !important;
  background: var(--iao-hd-button-bg-normal) !important;
}

.iao-hd__button--disabled {
  opacity: 0.75;
  cursor: not-allowed;
}

.iao-hotel-details:hover {
  background-color: var(--iao-hd-container-bg-hover);
}

.iao-hotel-details:hover .iao-hd__star.is-filled {
  color: var(--iao-hd-stars-filled-color-hover) !important;
}

.iao-hotel-details:hover .iao-hd__star.is-empty {
  color: var(--iao-hd-stars-empty-color-hover) !important;
}

.iao-hotel-details:hover .iao-hd__name {
  color: var(--iao-hd-name-color-hover) !important;
}

.iao-hotel-details:hover .iao-hd__description {
  color: var(--iao-hd-description-color-hover);
}

.iao-hotel-details:hover .iao-hd__button {
  color: var(--iao-hd-button-text-hover) !important;
  background: var(--iao-hd-button-bg-hover) !important;
}

.iao-hotel-details.is-selected {
  background-color: var(--iao-hd-container-bg-selected);
}

.iao-hotel-details.is-selected .iao-hd__star.is-filled {
  color: var(--iao-hd-stars-filled-color-selected) !important;
}

.iao-hotel-details.is-selected .iao-hd__star.is-empty {
  color: var(--iao-hd-stars-empty-color-selected) !important;
}

.iao-hotel-details.is-selected .iao-hd__name {
  color: var(--iao-hd-name-color-selected) !important;
}

.iao-hotel-details.is-selected .iao-hd__description {
  color: var(--iao-hd-description-color-selected);
}

.iao-hotel-details.is-selected .iao-hd__button {
  color: var(--iao-hd-button-text-selected) !important;
  background: var(--iao-hd-button-bg-selected) !important;
}
