.hm-summary-item i,
.hm-action-btn i {
  margin-right: 8px;
  min-width: 18px;
  text-align: center;
  color: #444;
}

.hm-progress {
  height: 8px;
  background: #e6e6e6;
  border-radius: 5px;
  margin: 10px 0 20px;
  overflow: hidden;
}

.hm-progress-bar {
  height: 100%;
  background: #6fcf97;
  width: 0%;
  transition: width 0.3s ease;
}


.hm-guest-portal {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  background: #f9f7f3;
  color: #333;
  padding: 20px;
  max-width: 480px;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.hm-portal-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 6px 0 14px;
}

.hm-portal-logo img {
  max-width: 220px;
  max-height: 72px;
  width: auto;
  height: auto;
  object-fit: contain;
}

.hm-muted {
  margin: 6px 0 14px;
  opacity: 0.8;
}

.hm-disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.hm-flash {
  border-radius: 10px;
  padding: 12px 14px;
  margin: 0 0 14px;
  font-weight: 600;
}

.hm-flash-success {
  background: #eaf8ef;
  border: 1px solid #bfe6cc;
}

.hm-flash-error {
  background: #fdeeee;
  border: 1px solid #f2b9b9;
}

.hm-panel {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 14px;
  margin: 14px 0;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}

.hm-panel h4 {
  margin: 0 0 10px;
  font-size: 1.05em;
}

.hm-mini-form label {
  display: block;
  margin: 10px 0 6px;
  font-weight: 500;
}

.hm-mini-form input,
.hm-mini-form select,
.hm-mini-form textarea {
  width: 100%;
  padding: 8px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.hm-mini-form textarea {
  resize: vertical;
}

.hm-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.hm-header h2 {
  font-size: 1.4em;
  font-weight: bold;
  margin: 0;
}

.hm-weather {
  background: #eee;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 0.9em;
}

.hm-summary-box {
  background: #fff;
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 20px;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.hm-summary-item {
  margin-bottom: 8px;
  font-size: 1em;
}

.hm-icon {
  margin-right: 6px;
}

.hm-stage-box {
  padding: 10px 0;
}

.hm-action-btn {
  display: block;
  text-align: center;
  padding: 14px;
  border-radius: 10px;
  font-weight: 500;
  margin-bottom: 10px;
  font-size: 1em;
  cursor: pointer;
  transition: all 0.2s ease;
}

.hm-action-btn.yellow {
  background-color: #f8da7d;
  color: #222;
}

.hm-action-btn.green {
  background-color: #bfe8c9;
  color: #222;
}

.hm-action-btn.red {
  background-color: #f5bcbc;
  color: #222;
  margin-top: 14px;
}

.hm-action-btn.blue {
  background-color: #d2e6f9;
  color: #222;
}

.hm-action-btn.orange {
  background-color: #fdd9b0;
  color: #222;
}

.hm-action-btn.light {
  background-color: #f0f0f0;
  color: #333;
}

.hm-action-btn:hover {
  opacity: 0.95;
  transform: translateY(-1px);
}

.hm-action-row {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  margin-bottom: 10px;
}

.hm-action-row .hm-action-btn {
  flex: 1;
}

.hm-local-tips {
  margin-top: 15px;
  font-size: 0.95em;
  text-align: center;
  background: #fff;
  padding: 10px;
  border-radius: 10px;
  box-shadow: inset 0 0 4px rgba(0,0,0,0.04);
}

/* Compact upsell teaser (During stay) */
.hm-upsell-mini {
  margin-top: 14px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}

.hm-upsell-mini summary {
  list-style: none;
  cursor: pointer;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 650;
}

.hm-upsell-mini summary::-webkit-details-marker {
  display: none;
}

.hm-upsell-mini__title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hm-upsell-mini__subtitle {
  margin-left: auto;
  font-weight: 500;
  opacity: 0.7;
  font-size: 0.92em;
}

.hm-upsell-mini__chev {
  opacity: 0.6;
  transform: rotate(90deg);
  transition: transform 0.15s ease;
}

.hm-upsell-mini[open] .hm-upsell-mini__chev {
  transform: rotate(-90deg);
}

.hm-upsell-mini__body {
  padding: 0 14px 14px;
}

.hm-upsell-mini__entry {
  padding-top: 12px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.hm-upsell-mini__row {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.hm-upsell-mini__name {
  font-weight: 650;
}

.hm-upsell-mini__price {
  white-space: nowrap;
  opacity: 0.85;
  font-weight: 650;
}

.hm-upsell-mini__desc {
  margin-top: 4px;
  opacity: 0.85;
  font-size: 0.95em;
}

.hm-upsell-mini__link,
.hm-upsell-mini__all {
  display: inline-block;
  margin-top: 8px;
  font-weight: 650;
  text-decoration: none;
  border-bottom: 1px solid rgba(0,0,0,0.35);
  padding-bottom: 1px;
  color: inherit;
}

.hm-upsell-mini__all {
  margin-top: 12px;
}


.hm-contact-address {
  margin: 6px 0 10px;
  opacity: 0.9;
  white-space: pre-line;
}

/* Post-stay accordions */
.hm-accordion {
  margin: 14px 0;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}

.hm-accordion summary {
  list-style: none;
  cursor: pointer;
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-weight: 650;
}

.hm-accordion summary::-webkit-details-marker {
  display: none;
}

.hm-accordion__title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.hm-accordion__chev {
  opacity: 0.6;
  transform: rotate(90deg);
  transition: transform 0.15s ease;
}

.hm-accordion[open] .hm-accordion__chev {
  transform: rotate(-90deg);
}

.hm-accordion__body {
  padding: 0 14px 14px;
  border-top: 1px solid rgba(0,0,0,0.06);
}

.hm-accordion .hm-action-btn {
  margin-bottom: 0;
}


.hm-error {
  color: red;
  text-align: center;
  padding: 20px;
  font-weight: bold;
}

.hm-accordion-toggle {
  width: 100%;
  text-align: left;
  font-size: 1rem;
  font-weight: 600;
  background: #fff;
  border: 1px solid #ddd;
  padding: 14px 16px;
  cursor: pointer;
  border-radius: 10px;
  margin-bottom: 8px;
  transition: background 0.2s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.hm-accordion-toggle:hover {
  background: #f8f8f8;
}

.hm-accordion-content {
  display: none;
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 16px;
  background: #fff;
  margin-top: -6px;
  margin-bottom: 12px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}

.hm-guest-form label {
  display: block;
  margin: 12px 0 6px;
  font-weight: 500;
}

.hm-guest-form input,
.hm-guest-form select {
  width: 100%;
  padding: 8px;
  border-radius: 6px;
  border: 1px solid #ccc;
  font-size: 1rem;
}

.copy-feedback {
  display: inline-block;
  margin-left: 10px;
  font-size: 0.85em;
  color: green;
}

/* Weather forecast modal (mockup) */
.hm-weather {
  border: none;
  cursor: pointer;
}

.hm-weather-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
}

.hm-weather-modal.is-open {
  display: block;
}

.hm-weather-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
}

.hm-weather-modal__panel {
  position: relative;
  max-width: 520px;
  margin: 70px auto;
  background: #fff;
  border-radius: 14px;
  padding: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.hm-weather-modal__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
}

.hm-weather-modal__city {
  font-weight: 700;
  font-size: 1.1em;
  margin-bottom: 2px;
}

.hm-weather-modal__title {
  opacity: 0.8;
  font-size: 0.95em;
}

.hm-weather-close {
  background: transparent;
  border: none;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  padding: 0 6px;
}

.hm-weather-list {
  margin-top: 10px;
}

.hm-weather-day {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  background: #fafafa;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 10px 12px;
  margin-bottom: 10px;
}

.hm-weather-date {
  flex: 0 0 128px;
  font-variant-numeric: tabular-nums;
}

.hm-weather-condition {
  flex: 1 1 auto;
  text-align: center;
  opacity: 0.9;
  white-space: nowrap;
}

.hm-weather-icon {
  margin-right: 6px;
}

.hm-weather-temps {
  flex: 0 0 92px;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.hm-weather-footnote {
  margin-top: 8px;
  font-size: 0.85em;
  opacity: 0.7;
  text-align: center;
}

@media (max-width: 520px) {
  .hm-weather-modal__panel {
    margin: 50px 12px;
  }
  .hm-weather-date {
    flex-basis: 105px;
  }
  .hm-weather-temps {
    flex-basis: 80px;
  }
}

/* Local tips – travel guide (less app, more magazine) */
.hm-local-tips-mode {
  max-width: 760px;
  padding: 22px 22px 28px;
  box-shadow: none;
  border: 1px solid #eee;
}

/* Keep the top portal header/summary readable on wide guide pages */
.hm-local-tips-mode .hm-header,
.hm-local-tips-mode .hm-summary-box {
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

.hm-guide-mag {
  margin-top: 14px;
}

.hm-guide-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #333;
  font-weight: 650;
  margin: 4px 0 12px;
}

.hm-guide-back i {
  color: #555;
}

.hm-guide-hero {
  position: relative;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 18px 16px;
  overflow: hidden;
}

.hm-guide-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.03), rgba(0,0,0,0));
  pointer-events: none;
}

.hm-guide-hero__kicker {
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.72em;
  opacity: 0.75;
  margin-bottom: 6px;
}

.hm-guide-hero__title {
  position: relative;
  margin: 0;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 1.9em;
  line-height: 1.05;
  letter-spacing: 0.01em;
}

.hm-guide-hero__sub {
  position: relative;
  margin-top: 6px;
  font-size: 0.95em;
  opacity: 0.85;
}

.hm-guide-hero__dates {
  font-variant-numeric: tabular-nums;
}

.hm-guide-hero__rule {
  position: relative;
  height: 1px;
  background: rgba(0,0,0,0.10);
  margin: 12px 0;
}

.hm-guide-hero__lede {
  position: relative;
  font-size: 0.98em;
  line-height: 1.45;
  opacity: 0.92;
}

.hm-guide-toc {
  margin: 16px 0 18px;
  padding: 0;
}

.hm-guide-toc__title {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 1.05em;
  margin-bottom: 10px;
}

.hm-guide-toc__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px 14px;
}

.hm-guide-toc__link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #333;
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(0,0,0,0.14);
}

.hm-guide-toc__link i {
  width: 16px;
  color: #555;
}

.hm-guide-featured {
  margin: 18px 0 10px;
}

.hm-guide-featured__title {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 1.15em;
  margin: 0 0 10px;
}

.hm-guide-featured__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.hm-guide-featured__card {
  display: flex;
  gap: 12px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  overflow: hidden;
}

.hm-guide-featured__photo {
  width: 92px;
  min-width: 92px;
  display: grid;
  place-items: center;
  background: #f3f3f3;
  border-right: 1px solid #eee;
  font-size: 1.4em;
  color: #444;
}

.hm-guide-featured__body {
  padding: 12px 12px 12px 0;
}

.hm-guide-featured__kicker {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.7em;
  opacity: 0.7;
  margin-bottom: 6px;
}

.hm-guide-featured__name {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 1.2em;
  line-height: 1.12;
  margin-bottom: 6px;
}

.hm-guide-featured__desc {
  opacity: 0.9;
  line-height: 1.35;
}

.hm-guide-section-mag {
  margin: 22px 0 10px;
}

.hm-guide-section-mag__header {
  margin-bottom: 10px;
}

.hm-guide-section-mag__title {
  margin: 0;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 1.35em;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hm-guide-section-mag__title i {
  color: #555;
  font-size: 0.9em;
}

.hm-guide-section-mag__intro {
  margin-top: 6px;
  opacity: 0.9;
  line-height: 1.45;
}

.hm-guide-entries {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  overflow: hidden;
}

.hm-guide-entry {
  display: flex;
  gap: 12px;
  padding: 14px;
  border-bottom: 1px solid #eee;
}

.hm-guide-entry:last-child {
  border-bottom: none;
}

.hm-guide-entry__photo {
  width: 56px;
  min-width: 56px;
  height: 56px;
  border-radius: 12px;
  border: 1px solid #eee;
  background: #fafafa;
  display: grid;
  place-items: center;
  color: #444;
}

.hm-guide-entry__name {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 1.12em;
  line-height: 1.1;
  margin-bottom: 6px;
}

.hm-guide-entry__desc {
  opacity: 0.92;
  line-height: 1.35;
}

.hm-guide-entry__meta {
  margin-top: 8px;
  text-transform: uppercase;
  letter-spacing: 0.10em;
  font-size: 0.72em;
  opacity: 0.7;
}

.hm-guide-entry__tip {
  margin-top: 8px;
  font-style: italic;
  opacity: 0.9;
  line-height: 1.35;
}

.hm-guide-entry__tiplabel {
  font-style: normal;
  font-weight: 700;
}

.hm-guide-textlink {
  display: inline-block;
  margin-top: 10px;
  text-decoration: none;
  font-weight: 650;
  color: #333;
  border-bottom: 1px solid rgba(0,0,0,0.2);
  padding-bottom: 2px;
}

.hm-guide-textlink:hover {
  opacity: 0.9;
}

.hm-guide-footnote {
  margin-top: 16px;
  font-size: 0.92em;
  opacity: 0.78;
  text-align: center;
}

@media (min-width: 620px) {
  .hm-guide-toc__grid {
    grid-template-columns: 1fr 1fr;
  }
  .hm-guide-featured__grid {
    grid-template-columns: 1fr 1fr;
  }
}


/* Travel guide: monetization / concierge add-ons */
.hm-guide-upsells {
  margin: 18px 0 22px;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  padding: 16px;
}

.hm-guide-upsells__title {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 1.2em;
  margin-bottom: 6px;
}

.hm-guide-upsells__lede {
  opacity: 0.9;
  line-height: 1.45;
  margin-bottom: 12px;
}

.hm-guide-upsells__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
}

.hm-guide-upsell {
  border-top: 1px solid rgba(0,0,0,0.08);
  padding-top: 12px;
}

.hm-guide-upsell:first-child {
  border-top: none;
  padding-top: 0;
}

.hm-guide-upsell__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
}

.hm-guide-upsell__name {
  font-weight: 700;
}

.hm-guide-upsell__price {
  font-variant-numeric: tabular-nums;
  opacity: 0.85;
  white-space: nowrap;
}

.hm-guide-upsell__desc {
  margin-top: 6px;
  line-height: 1.45;
  opacity: 0.92;
}

.hm-guide-upsell__note {
  margin-top: 6px;
  font-size: 0.95em;
  opacity: 0.85;
}

.hm-guide-upsells__contact {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid rgba(0,0,0,0.08);
  opacity: 0.95;
}
