/* 補充 Tailwind CDN 無法覆蓋的樣式 */

.nav-link.active {
  color: var(--state-active-text);
  background-color: var(--state-active-bg);
  font-weight: var(--state-active-weight);
}

.nav-link[aria-current="page"],
.mobile-nav-link.active,
.mobile-nav-link[aria-current="page"] {
  color: var(--state-active-text);
  background-color: var(--state-active-bg);
  font-weight: var(--state-active-weight);
}

/* Global base */
:root {
  --ht-text-2xs: 0.75rem;
  --ht-text-2xs-plus: 0.8125rem;
  --ht-text-xs: 0.875rem;
  --ht-text-sm: 0.9375rem;
  --ht-text-base: 1rem;
  --ht-text-base-plus: 1.0625rem;
  --ht-text-md: 1.125rem;
  --ht-text-lg: 1.25rem;
  --ht-text-xl: 1.375rem;
  --ht-text-2xl: 1.5rem;
  --ht-text-3xl: 1.75rem;
  --ht-text-market-mobile: clamp(1.25rem, 5vw, 1.375rem);
  --ht-type-section-title: var(--ht-text-xl);
  --ht-type-card-title: var(--ht-text-md);
  --ht-type-body: var(--ht-text-base);
  --ht-type-meta: var(--ht-text-sm);
  --ht-type-label: var(--ht-text-sm);
  --ht-type-field-value: var(--ht-text-base);
  --ht-type-price: var(--ht-text-lg);
  --ht-type-market-value: var(--ht-text-xl);
  --state-active-text: var(--page-brand-color, var(--brand-600, #ff5722));
  --state-active-bg: var(--page-brand-bg, var(--brand-50, #fef3ee));
  --state-active-border: var(--page-brand-border, var(--brand-600, #ff5722));
  --state-active-weight: 600;
  --state-focus-ring: color-mix(in srgb, var(--state-active-text) 35%, transparent);
  --state-disabled-opacity: 0.5;
}

html {
  scroll-behavior: smooth;
  font-size: var(--ht-text-base);
  min-height: 100%;
}

body {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  font-size: var(--ht-text-base);
  color: #111827;
  line-height: 1.75;
}

body > main {
  width: 100%;
  flex: 1 0 auto;
}

body > .page-footer-full {
  flex-shrink: 0;
}

@media (max-width: 63.9375rem) {
  body.page-project,
  body.page-price {
    padding-bottom: 4.5rem;
  }
}

@media (max-width: 63.9375rem) {
  body.page-list {
    padding-bottom: 72px;
  }
}

.text-label {
  font-size: var(--ht-text-sm);
}

.text-secondary {
  font-size: var(--ht-text-base);
}

.spin {
  width: 24px;
  height: 24px;
  border: 2.5px solid var(--brand-600, #ff5722);
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin .7s linear infinite;
  display: inline-block;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.form-label {
  display: block;
  font-size: var(--ht-text-sm);
  font-weight: 500;
  color: #374151;
  margin-bottom: .375rem;
}

.form-input {
  width: 100%;
  padding: .75rem 1rem;
  border: 0.0938rem solid #e5e7eb;
  border-radius: 0.5rem;
  font-size: var(--ht-text-base);
  color: #111827;
  background: white;
  outline: none;
  font-family: inherit;
  min-height: 3rem;
  transition: border-color .15s;
}

.form-input::placeholder {
  color: #6b7280;
  font-size: inherit;
  opacity: 1;
  transition: opacity .15s ease;
}

.form-input:focus::placeholder {
  opacity: 0;
}

select.form-input {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right .875rem center;
  padding-right: 2.75rem;
}

.dist-market {
  margin: 0 0 1.5rem;
}

.dist-market-title {
  font-size: var(--ht-text-base);
  font-weight: 600;
  color: #374151;
  margin: 0;
}

.dist-market-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

@media (min-width: 40rem) {
  .dist-market-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

@media (min-width: 40rem) and (max-width: 44.9375rem) {
  .dist-market-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.dist-market-cell {
  background: var(--brand-50, #fef3ee);
  border-radius: 1rem;
  padding: 1rem;
  border: 0.0625rem solid transparent;
  text-decoration: none;
  color: inherit;
  display: block;
}

.dist-market-cell-name {
  font-size: var(--ht-text-base);
  color: #6b7280;
  margin-bottom: 0.375rem;
}

.dist-market-num {
  font-size: var(--ht-text-xl);
  font-weight: 700;
  color: var(--brand-600, #ff5722);
  line-height: 1.3;
}

.dist-market-unit {
  font-size: var(--ht-text-sm);
  color: #374151;
}

.mkt-hd {
  display: flex;
  align-items: center;
  margin-bottom: 0.625rem;
}

.mkt-title-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.mkt-info-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 1em;
  height: 1em;
  line-height: 1;
}

.mkt-info-btn {
  position: absolute;
  left: 50%;
  top: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  transform: translate(-50%, -50%);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: #6b7280;
  transition: color .12s;
  line-height: 1;
}

.mkt-info-btn svg {
  display: block;
  flex-shrink: 0;
  position: relative;
  top: 0.5px;
}

.mkt-info-btn:hover {
  color: #6b7280;
}

.mkt-tooltip {
  display: none;
  position: absolute;
  left: 0;
  top: calc(100% + 8px);
  z-index: 50;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .1);
  padding: 10px 12px;
  font-size: var(--ht-text-sm);
  color: #6b7280;
  width: 260px;
  white-space: normal;
  word-break: break-word;
  line-height: 1.5;
}

.mkt-title-wrap:hover .mkt-tooltip,
.mkt-tooltip.open {
  display: block;
}

.mkt-tooltip::before {
  content: '';
  position: absolute;
  top: -5px;
  left: 7px;
  width: 8px;
  height: 8px;
  background: #fff;
  border-left: 1px solid #e5e7eb;
  border-top: 1px solid #e5e7eb;
  transform: rotate(45deg);
}

@media (max-width: 47.9375rem) {
  .mkt-tooltip {
    left: 50%;
    width: min(260px, calc(100vw - 2rem));
    max-width: calc(100vw - 2rem);
    transform: translateX(-50%);
  }

  .mkt-tooltip::before {
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
  }
}

.rp-cards {
  display: none;
}

.rp-diff-up {
  color: #ef4444;
}

.rp-diff-down {
  color: #16a34a;
}

.rp-tbl-diff {
  font-size: var(--ht-text-xs) !important;
  color: #6b7280;
}

.rp-price-num {
  font-size: var(--ht-text-lg);
}

@media (max-width: 47.9375rem) {
  .rp-table-wrap {
    display: none;
  }

  .rp-cards {
    display: flex;
    flex-direction: column;
  }

  .rp-card {
    background: #fff;
    border-radius: 0.75rem;
    padding: 0.875rem 1rem;
    border: 0.0625rem solid #e5e7eb;
  }

  .rp-card-top {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 0.5rem;
  }

  .rp-card-date {
    font-size: var(--ht-text-sm);
    color: #9ca3af;
    flex-shrink: 0;
  }

  .rp-card-row1 {
    display: flex;
    align-items: baseline;
    gap: 0.25rem;
  }

  .rp-card-price {
    font-size: var(--ht-text-2xl);
    font-weight: 700;
    line-height: 1.2;
    color: #111827;
  }

  .rp-price-high {
    color: #ef4444;
  }

  .rp-price-low {
    color: #16a34a;
  }

  .rp-card-diff {
    font-size: var(--ht-text-xs);
    font-weight: 400;
    color: #9ca3af;
  }

  .rp-card-unit {
    font-size: var(--ht-text-sm);
    color: #9ca3af;
  }

  .rp-card-separator {
    display: inline-block;
    width: 0.0625rem;
    height: 0.875rem;
    flex: 0 0 0.0625rem;
    margin: 0 0.5rem;
    background: #d1d5db;
  }

  .rp-card-row2 {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    font-size: var(--ht-text-sm);
    color: #6b7280;
    margin-top: 0.375rem;
  }

  .rp-card-row3 {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    font-size: var(--ht-text-sm);
    color: #9ca3af;
    line-height: 1.5;
  }
}

/* Site header / global shell */
.ht-type-meta {
  font-size: var(--ht-type-meta) !important;
}

.ht-type-body {
  font-size: var(--ht-type-body) !important;
}

[style*="font-size:0.75rem"],
[style*="font-size: 0.75rem"] {
  font-size: 0.9375rem !important;
}

[style*="font-size:0.8rem"],
[style*="font-size: 0.8rem"] {
  font-size: 0.9375rem !important;
}

[style*="font-size:0.8125rem"],
[style*="font-size: 0.8125rem"] {
  font-size: 0.9375rem !important;
}

[style*="font-size:0.85rem"],
[style*="font-size: 0.85rem"] {
  font-size: 0.9375rem !important;
}

[style*="font-size:0.875rem"],
[style*="font-size: 0.875rem"] {
  font-size: 1rem !important;
}

[style*="font-size:0.9rem"],
[style*="font-size: 0.9rem"] {
  font-size: 0.9375rem !important;
}

.price-number {
  display: inline;
  vertical-align: baseline;
  margin: 0 0.125rem;
}

#nav-bar {
  height: 4rem;
}

#nav-logo {
  height: 3rem;
}

@media (min-width: 64rem) {
  #nav-bar {
    height: 5rem;
  }

  #nav-logo {
    height: 3.5rem;
  }
}

#pnav-container {
  flex: 1;
  display: none;
  align-items: stretch;
  min-width: 0;
  overflow: hidden;
}

@media (min-width: 64rem) {
  #pnav-container {
    display: flex;
  }
}

.pnav-item {
  display: inline-flex;
  align-items: stretch;
  flex-shrink: 0;
  position: relative;
}

.pnav-link {
  display: flex;
  align-items: center;
  gap: 0.1875rem;
  padding: 0 0.6875rem;
  min-height: 2.75rem;
  font-size: var(--ht-text-sm);
  font-weight: 500;
  color: #374151;
  white-space: nowrap;
  background: none;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: color .15s;
  font-family: inherit;
}

.dm-group > button {
  min-height: 2.75rem;
}

.header-member-trigger,
.header-member-register {
  font-size: var(--ht-text-sm) !important;
  border-radius: 0.5rem;
  line-height: 1.5;
}

.header-member-trigger {
  font-weight: 500;
}

.header-member-register {
  font-weight: 600;
}

.pnav-link:hover,
.pnav-item:hover>.pnav-link {
  color: var(--brand-600, #ff5722);
}

#hamburger-btn,
#member-btn {
  width: 2.75rem;
  height: 2.75rem;
  min-width: 2.75rem;
  min-height: 2.75rem;
}

.pnav-chevron {
  width: 0.6875rem;
  height: 0.6875rem;
  flex-shrink: 0;
  color: #6b7280;
  transition: transform .2s;
}

.pnav-item:hover .pnav-chevron {
  transform: rotate(180deg);
  color: var(--brand-600, #ff5722);
}

.pnav-dd {
  display: none;
  position: fixed;
  top: var(--dd-top, 5rem);
  left: var(--dd-left, 0rem);
  background: #fff;
  border: 0.0625rem solid #e5e7eb;
  border-radius: 0.625rem;
  box-shadow: 0 0.75rem 2.25rem rgba(0, 0, 0, .13);
  min-width: 9.375rem;
  padding: 0.375rem 0;
  z-index: 9999;
}

.pnav-item:hover .pnav-dd {
  display: block;
}

.pnav-dd a {
  display: block;
  padding: 0.5625rem 1.125rem;
  font-size: var(--ht-text-sm);
  font-weight: 500;
  color: #374151;
  text-decoration: none;
  white-space: nowrap;
  transition: background .1s, color .1s;
}

.pnav-dd a:hover {
  background: var(--brand-50, #fef3ee);
  color: var(--brand-600, #ff5722);
}

#pnav-more .pnav-dd {
  right: var(--dd-right-px, 0rem) !important;
  left: auto !important;
  padding: 0.75rem 0.375rem;
}

#pnav-more {
  margin-left: 0;
}

.more-col {
  display: inline-block;
  vertical-align: top;
  min-width: 7.5rem;
  padding: 0 0.375rem;
}

.more-col-title {
  font-size: var(--ht-text-sm);
  font-weight: 700;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: 0.125rem 0.625rem 0.4375rem;
  border-bottom: 0.0625rem solid #e5e7eb;
  margin-bottom: 0.1875rem;
}

.more-col a {
  display: block;
  padding: 0.4375rem 0.625rem;
  font-size: var(--ht-text-sm);
  font-weight: 500;
  color: #374151;
  text-decoration: none;
  border-radius: 0.375rem;
  transition: background .1s, color .1s;
}

.more-col a:hover {
  background: var(--brand-50, #fef3ee);
  color: var(--brand-600, #ff5722);
}

.more-single {
  padding: 0.4375rem 0.625rem;
}

.more-single a {
  border-radius: 0.375rem;
}

.dm-group {
  position: relative;
}

.dm-group .dm-dd {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: #fff;
  border: 0.0625rem solid #e5e7eb;
  border-radius: 0.625rem;
  box-shadow: 0 0.75rem 2.25rem rgba(0, 0, 0, .13);
  min-width: 10rem;
  padding: 0.375rem 0;
  z-index: 9999;
}

.dm-group:hover .dm-dd {
  display: block;
}

.dm-dd a {
  display: block;
  padding: 0.5625rem 1.125rem;
  font-size: var(--ht-text-sm);
  font-weight: 500;
  color: #374151;
  text-decoration: none;
  white-space: nowrap;
  transition: background .1s, color .1s;
}

.dm-dd a:hover {
  background: var(--brand-50, #fef3ee);
  color: var(--brand-600, #ff5722);
}

.dm-header {
  padding: 0.5rem 1.125rem 0.375rem;
  font-size: var(--ht-text-sm);
  font-weight: 700;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: .04em;
  border-bottom: 0.0625rem solid #f3f4f6;
  margin-bottom: 0.25rem;
}

.dm-divider {
  border: none;
  border-top: 0.0625rem solid #f3f4f6;
  margin: 0.25rem 0;
}

#mobile-overlay,
#member-overlay {
  position: fixed;
  inset: 0;
  z-index: 9990;
  visibility: hidden;
  pointer-events: none;
  transition: visibility 0s .36s;
}

#mobile-overlay.is-open,
#member-overlay.is-open {
  visibility: visible;
  pointer-events: auto;
  transition: visibility 0s 0s;
}

#mobile-backdrop,
#member-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
  backdrop-filter: blur(0rem);
  -webkit-backdrop-filter: blur(0rem);
  transition: background .36s ease-out, backdrop-filter .36s ease-out;
  cursor: pointer;
}

#mobile-overlay.is-open #mobile-backdrop,
#member-overlay.is-open #member-backdrop {
  background: rgba(0, 0, 0, .3);
  backdrop-filter: blur(0.1875rem);
  -webkit-backdrop-filter: blur(0.1875rem);
}

#mobile-panel {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 76%;
  max-width: 23.75rem;
  background: #fff;
  box-shadow: 0.375rem 0 2rem rgba(0, 0, 0, .13);
  transform: translateX(-100%);
  transition: transform .36s cubic-bezier(.22, 1, .36, 1);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

#mobile-overlay.is-open #mobile-panel {
  transform: translateX(0);
}

#mobile-panel-body {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.msub-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .28s ease-out;
}

.msub-panel.is-open {
  max-height: 37.5rem;
}

.msub-chevron {
  transition: transform .25s ease;
  flex-shrink: 0;
}

.msub-chevron.rotated {
  transform: rotate(180deg);
}

#mob-footer a {
  font-size: var(--ht-text-sm) !important;
  color: #6b7280;
  text-decoration: none;
  white-space: nowrap;
  display: flex;
  align-items: center;
  width: 100%;
  min-height: 2.75rem;
  padding: 0.5rem 0;
}

#mob-footer p {
  font-size: var(--ht-text-2xs-plus) !important;
  color: #9ca3af;
  line-height: 1.6;
  margin-top: 0.375rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin-bottom: 0.625rem;
}

.footer-links a {
  display: inline-flex;
  align-items: center;
  min-height: 2.75rem;
  padding: 0;
  font-size: var(--ht-text-sm);
  color: #6b7280;
  text-decoration: none;
}

.footer-company {
  margin: 0;
  font-size: var(--ht-text-2xs-plus);
  color: #9ca3af;
  line-height: 1.8;
  display: flex;
  flex-wrap: wrap;
  gap: 0 0.75rem;
}

.footer-company span {
  white-space: nowrap;
}

.footer-company a {
  color: inherit;
  text-decoration: none;
}

@media (max-width:63.9375rem) {
  .page-footer-full .footer-links {
    display: none !important;
  }

  .page-footer-full .footer-inner {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .page-footer-full .footer-company {
    font-size: var(--ht-text-2xs-plus);
    line-height: 1.7;
    text-align: left;
    gap: 0rem 0.75rem;
  }

  .page-footer-full .footer-company span {
    display: inline-block;
    max-width: 100%;
    word-break: keep-all;
    overflow-wrap: normal;
  }

  .page-footer-full .footer-company span:nth-child(2) {
    white-space: normal;
  }
}

.sb-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  font-size: var(--ht-text-base);
  font-weight: 500;
  color: #374151;
  text-decoration: none;
  border-radius: 0.5rem;
  transition: background .15s, color .15s;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.sb-link:hover {
  background: var(--brand-50, #fef3ee);
  color: var(--brand-600, #ff5722);
}

.sb-link.active {
  background: var(--brand-50, #fef3ee);
  color: var(--brand-600, #ff5722);
  font-weight: 600;
}

.sb-link-back {
  color: #9ca3af;
}

.sb-link-menu {
  justify-content: space-between;
  width: 100%;
}

.sb-link-sub {
  display: flex;
  align-items: center;
  padding: 0.625rem 0.75rem 0.625rem 2rem;
  font-size: var(--ht-text-base);
  font-weight: 500;
  color: #6b7280;
  text-decoration: none;
  border-radius: 0.5rem;
  transition: background .15s, color .15s;
}

.sb-link-sub:hover {
  background: var(--brand-50, #fef3ee);
  color: var(--brand-600, #ff5722);
}

.site-header {
  z-index: 500;
}

.site-header-inner {
  position: relative;
  z-index: 10;
  overflow: visible;
}

.pnav-more {
  display: none;
}

.pnav-more-trigger {
  color: var(--brand-600, #ff5722);
  font-weight: 600;
}

.pnav-more-dd {
  padding: 0.75rem 0.375rem;
  min-width: 12.5rem;
}

.muted-link {
  color: #9ca3af !important;
}

.panel-head {
  height: 4rem;
  border-bottom: 0.0625rem solid rgba(0, 0, 0, .06);
}

.panel-logo {
  height: 3rem;
  width: auto;
}

.mob-footer {
  flex-shrink: 0;
  padding: 1.5rem;
  border-top: 0.0625rem solid rgba(0, 0, 0, .06);
}

.mob-footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.mob-footer-copy {
  margin-top: 1.125rem;
}

.member-profile {
  border-bottom: 0.0625rem solid rgba(0, 0, 0, .06);
}

.member-actions {
  border-bottom: 0.0625rem solid rgba(0, 0, 0, .06);
  display: flex;
  gap: 0.625rem;
}

.member-divider {
  border-top: 0.0625rem solid rgba(0, 0, 0, .06);
  margin: 0.5rem 0;
}

.sb-link-muted {
  color: #6b7280;
}

#member-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 72%;
  max-width: 16.25rem;
  background: #fff;
  box-shadow: -0.375rem 0 2rem rgba(0, 0, 0, .13);
  transform: translateX(100%);
  transition: transform .36s cubic-bezier(.22, 1, .36, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

#member-overlay.is-open #member-panel {
  transform: translateX(0);
}

.card-title {
  font-size: var(--ht-type-card-title);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.card-badge {
  font-size: var(--ht-text-sm);
}

.card-label {
  font-size: var(--ht-text-sm);
  color: #6b7280;
}

.project-card-price-line {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.25rem 0.375rem;
  line-height: 1.35;
}

.project-card-price-line--recommend {
  flex-shrink: 0;
  justify-content: flex-end;
  text-align: right;
}

.project-card-price-label,
.project-card-price-unit,
.project-card-price-empty {
  color: #9ca3af;
  font-size: var(--ht-text-base);
  font-weight: 400;
  line-height: 1.35;
}

.project-card-price-label--direct,
.project-card-price-unit--direct {
  color: #6b7280;
}

.project-card-price-value-unit {
  display: inline-flex;
  align-items: baseline;
  gap: 0.25rem;
  white-space: nowrap;
}

.project-card-price-value {
  color: var(--page-brand-color, var(--brand-600, #ff5722));
  font-size: var(--ht-type-price);
  font-weight: 700;
  line-height: 1.25;
}

.project-card-price-value.price-number {
  margin: 0;
}

.card-tag {
  font-size: var(--ht-type-meta);
}

.mem-btn-login {
  flex: 1;
  text-align: center;
  padding: 0.625rem 0;
  font-size: var(--ht-text-sm);
  font-weight: 500;
  color: #374151;
  border: 0.0625rem solid #e5e7eb;
  border-radius: 0.5rem;
  text-decoration: none;
  transition: border-color .15s, color .15s;
}

.mem-btn-login:hover {
  border-color: var(--brand-600, #ff5722);
  color: var(--brand-600, #ff5722);
}

.mem-btn-register {
  flex: 1;
  text-align: center;
  padding: 0.625rem 0;
  font-size: var(--ht-text-sm);
  font-weight: 600;
  color: #fff;
  background: var(--brand-600, #ff5722);
  border: 0.0625rem solid var(--brand-600, #ff5722);
  border-radius: 0.5rem;
  text-decoration: none;
  transition: opacity .15s;
}

.mem-btn-register:hover {
  opacity: 0.88;
}

@keyframes ht-skeleton-shimmer {
  0% {
    background-position: 100% 0;
  }

  100% {
    background-position: -100% 0;
  }
}

@keyframes ht-content-fade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes ht-skeleton-autohide {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

img.ht-img-loading {
  background-color: #f3f4f6;
  background-image: linear-gradient(90deg, #f3f4f6 0%, #e5e7eb 38%, #f3f4f6 76%);
  background-size: 200% 100%;
  animation: ht-skeleton-shimmer 1.15s ease-in-out infinite;
}

img.ht-img-loaded {
  background-image: none;
  animation: none;
}

.ht-skeleton-scope .ht-skeleton-media,
.ht-skeleton-scope.ht-skeleton-media {
  position: relative;
  overflow: hidden;
  background: #f3f4f6;
}

.ht-skeleton-scope .ht-skeleton-media::before,
.ht-skeleton-scope.ht-skeleton-media::before,
.ht-skeleton-scope:not(.ht-skeleton-text-loaded) [data-skeleton-text]::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #f3f4f6 0%, #e5e7eb 38%, #f3f4f6 76%);
  background-size: 200% 100%;
  animation:
    ht-skeleton-shimmer 1.15s ease-in-out infinite,
    ht-skeleton-autohide 0.01s linear 1.5s forwards;
  pointer-events: none;
}

.ht-skeleton-scope.ht-skeleton-loaded .ht-skeleton-media::before,
.ht-skeleton-scope.ht-skeleton-loaded.ht-skeleton-media::before {
  display: none;
}

.ht-skeleton-scope .ht-skeleton-media img,
.ht-skeleton-scope.ht-skeleton-media img {
  opacity: 1;
  transition: opacity .28s ease, transform .3s ease;
}

.ht-skeleton-scope.ht-skeleton-loaded .ht-skeleton-media img,
.ht-skeleton-scope.ht-skeleton-loaded.ht-skeleton-media img {
  opacity: 1;
}

.ht-skeleton-scope [data-skeleton-text] {
  position: relative;
  transition: opacity .24s ease;
}

.ht-skeleton-scope:not(.ht-skeleton-text-loaded) [data-skeleton-text] {
  position: relative;
  border-radius: 0.375rem;
  overflow: hidden;
}

.ht-skeleton-scope:not(.ht-skeleton-text-loaded) [data-skeleton-text] * {
  opacity: 1;
}

.ht-skeleton-scope.ht-skeleton-text-loaded [data-skeleton-text] {
  opacity: 1;
  animation: ht-content-fade .28s ease both;
}

.ht-skeleton-card .ht-skeleton-media {
  aspect-ratio: 3/2;
}

.ht-skeleton-card .ht-skeleton-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ht-skeleton-card:not(.ht-skeleton-text-loaded) [data-skeleton-text]::before {
  background: #f3f4f6;
  animation: none;
}

.ht-skeleton-media img.ht-img-loading {
  background-image: none;
  animation: none;
}

.ht-loading-skeleton-panel {
  width: min(68rem, 100%);
  max-height: calc(100vh - 2.5rem);
  padding: 1rem;
  overflow: hidden;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 1rem 2.75rem rgba(15, 23, 42, 0.2);
}

.ht-loading-skeleton-panel[hidden] {
  display: none;
}

.ht-loading-skeleton-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.ht-loading-skeleton-card {
  min-width: 0;
  padding: 0.75rem;
  border: 0.0625rem solid #f3f4f6;
  border-radius: 0.875rem;
  background: #fff;
}

.ht-loading-skeleton-media,
.ht-loading-skeleton-line {
  display: block;
  background: linear-gradient(90deg, #f3f4f6 0%, #e5e7eb 38%, #f3f4f6 76%);
  background-size: 200% 100%;
  animation: ht-skeleton-shimmer 1.15s ease-in-out infinite;
}

.ht-loading-skeleton-media {
  aspect-ratio: 3 / 2;
  margin-bottom: 0.875rem;
  border-radius: 0.625rem;
}

.ht-loading-skeleton-line {
  width: 100%;
  height: 0.75rem;
  margin-top: 0.625rem;
  border-radius: 999px;
}

.ht-loading-skeleton-line--title {
  width: 72%;
  height: 1rem;
}

.ht-loading-skeleton-line--short {
  width: 45%;
}

.ht-loading-skeleton-panel--compact {
  width: min(58rem, 100%);
}

.ht-loading-skeleton-panel--inline {
  width: 100%;
  max-height: none;
  padding: 0;
  overflow: visible;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.ht-loading-skeleton-panel--inline .ht-loading-skeleton-grid {
  grid-template-columns: repeat(auto-fill, minmax(17.5rem, 1fr));
  gap: 1.25rem;
}

.ht-loading-skeleton-panel--inline .ht-loading-skeleton-card {
  padding: 0 0 1rem;
  overflow: hidden;
  border-radius: 1rem;
}

.ht-loading-skeleton-panel--inline .ht-loading-skeleton-media {
  aspect-ratio: 3 / 2;
  margin: 0 0 0.875rem;
  border-radius: 0;
}

.ht-loading-skeleton-panel--inline .ht-loading-skeleton-line {
  width: calc(100% - 1.5rem);
  margin-right: 0.75rem;
  margin-left: 0.75rem;
}

.ht-loading-skeleton-panel--inline .ht-loading-skeleton-line--title {
  width: calc(72% - 0.75rem);
}

.ht-loading-skeleton-panel--inline .ht-loading-skeleton-line--short {
  width: calc(45% - 0.75rem);
}

@media (max-width: 47.9375rem) {
  .ht-loading-skeleton-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
  }

  .ht-loading-skeleton-panel {
    padding: 0.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  img.ht-img-loading,
  .ht-skeleton-scope .ht-skeleton-media::before,
  .ht-skeleton-scope.ht-skeleton-media::before,
  .ht-skeleton-scope:not(.ht-skeleton-text-loaded) [data-skeleton-text]::before,
  .ht-skeleton-scope.ht-skeleton-text-loaded [data-skeleton-text],
  .ht-loading-skeleton-media,
  .ht-loading-skeleton-line {
    animation: none;
  }

  .ht-skeleton-scope .ht-skeleton-media::before,
  .ht-skeleton-scope.ht-skeleton-media::before,
  .ht-skeleton-scope:not(.ht-skeleton-text-loaded) [data-skeleton-text]::before {
    opacity: 0;
    visibility: hidden;
  }

  .ht-skeleton-scope .ht-skeleton-media img,
  .ht-skeleton-scope.ht-skeleton-media img,
  .ht-skeleton-scope [data-skeleton-text] {
    transition: none;
  }
}

@media (max-width: 79.9375rem) {
  html {
    font-size: 17px;
  }

  #site-header {
    transition: transform .25s ease;
    will-change: transform;
  }

  #site-header.mob-header-hidden {
    transform: translateY(-100%);
  }
}

/* Detail contact / QR modals */
html.ht-modal-open,
body.ht-modal-open {
  overflow: hidden;
  overscroll-behavior: contain;
}

body.ht-modal-open {
  touch-action: none;
}

@media (max-width: 79.9375rem) {
  body.ht-modal-open {
    touch-action: auto;
    overscroll-behavior: none;
  }
}

.cf-inquiry-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 10000;
  padding: 1.25rem;
  background: rgba(17, 24, 39, .48);
  backdrop-filter: blur(0.25rem);
  -webkit-backdrop-filter: blur(0.25rem);
  align-items: center;
  justify-content: center;
}

.cf-inquiry-overlay.open {
  display: flex;
}

.cf-inquiry-card {
  background: #fff;
  border-radius: 1rem;
  width: 100%;
  max-width: 26rem;
  max-height: 90dvh;
  overflow-y: auto;
  opacity: 0;
  transform: translateY(0.5rem) scale(.98);
  transition: transform 0.2s ease, opacity 0.2s ease;
  box-shadow: 0 1.5rem 4rem rgba(15, 23, 42, .26);
}

.cf-inquiry-overlay.open .cf-inquiry-card {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.cf-modal-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.5rem 1.5rem 1rem;
  border-bottom: 0.0625rem solid #f3f4f6;
}

.cf-form-head {
  border-bottom: 0.0625rem solid #e5e7eb;
}

.cf-modal-title {
  font-size: var(--ht-text-md);
  font-weight: 600;
  line-height: 1.45;
  color: #111827;
}

.cf-modal-subtitle {
  margin-top: 0.25rem;
  font-size: var(--ht-text-sm);
  line-height: 1.65;
  color: #6b7280;
}

.cf-modal-body {
  padding: 1.25rem 1.5rem;
}

.cf-modal-close-btn {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.375rem;
  border: none;
  background: transparent;
  cursor: pointer;
  color: #6b7280;
  transition: color 0.15s, background 0.15s;
}

.cf-modal-close-btn:hover {
  color: #374151;
  background: #f3f4f6;
}

.cf-modal-close-btn svg {
  width: 1.25rem;
  height: 1.25rem;
}

.project-share-card {
  max-width: 25rem;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .72);
  box-shadow: 0 1.5rem 4rem rgba(15, 23, 42, .24);
}

.project-share-head {
  align-items: flex-start;
  padding: 1.5rem 1.5rem 1.125rem;
  border-bottom: 0;
}

.project-share-head .cf-modal-title {
  font-size: var(--ht-text-lg);
  font-weight: 700;
}

.project-share-head .cf-modal-subtitle {
  margin-top: .375rem;
}

.project-share-close {
  width: 2.5rem;
  height: 2.5rem;
  margin: -.375rem -.375rem 0 0;
  border-radius: 999px;
}

.project-share-body {
  padding: 0 1.5rem 1.25rem;
}

.project-share-actions {
  display: grid;
  gap: .75rem;
}

.project-share-action {
  width: 100%;
  min-height: 4.5rem;
  display: flex;
  align-items: center;
  gap: .875rem;
  padding: .75rem 1rem;
  border: 1px solid #e5e7eb;
  border-radius: .875rem;
  background: #fff;
  color: #6b7280;
  text-align: left;
  cursor: pointer;
  transition: border-color .16s ease, background .16s ease, color .16s ease, transform .16s ease, box-shadow .16s ease;
}

.project-share-action:hover {
  border-color: #d1d5db;
  background: #f9fafb;
  transform: translateY(-1px);
  box-shadow: 0 .5rem 1.25rem rgba(15, 23, 42, .07);
}

.project-share-action:active {
  transform: translateY(0) scale(.99);
}

.project-share-action:focus-visible {
  outline: 3px solid rgba(107, 114, 128, .2);
  outline-offset: 2px;
  border-color: #9ca3af;
}

.project-share-action-primary {
  border-color: #e5e7eb;
  background: #fff;
  color: #374151;
}

.project-share-action-primary:hover {
  border-color: #d1d5db;
  background: #f9fafb;
}

.project-share-action-icon {
  width: 2.5rem;
  height: 2.5rem;
  flex: 0 0 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: .75rem;
  background: #f3f4f6;
  color: #6b7280;
}

.project-share-action-primary .project-share-action-icon {
  background: #f3f4f6;
  color: #6b7280;
}

.project-share-action-icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.project-share-action strong,
.project-share-action small {
  display: block;
}

.project-share-action strong {
  font-size: var(--ht-text-sm);
  font-weight: 600;
  line-height: 1.45;
}

.project-share-action small {
  margin-top: .125rem;
  font-size: var(--ht-type-meta);
  line-height: 1.45;
  color: #6b7280;
}

.project-share-status {
  min-height: 1.25rem;
  margin-top: .625rem;
  color: var(--page-brand-700, var(--brand-700, #e64a19));
  font-size: var(--ht-type-meta);
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}

@media (min-width: 64rem) {
  [data-project-native-share] {
    display: none;
  }
}

.cf-stage-subtitle {
  margin-top: 0.375rem;
  line-height: 1.6;
}

html.cf-stage-pending .cf-stage-title,
html.cf-stage-pending .cf-stage-subtitle,
html.cf-stage-pending .cf-stage-cta,
html.cf-stage-pending .cf-form {
  visibility: hidden;
}

.cf-otp-wrap {
  display: flex;
  align-items: stretch;
  margin-top: 0.5rem;
  overflow: hidden;
  border: 0.0938rem solid #e5e7eb;
  border-radius: 0.5rem;
  background: #fff;
  transition: border-color 0.15s;
}

.cf-otp-input {
  flex: 1 1 auto;
  min-width: 0;
  border: 0;
  border-radius: 0;
}

.cf-otp-btn {
  flex: 0 0 auto;
  align-self: stretch;
  min-height: 2.75rem;
  padding: 0 0.75rem;
  border-radius: 0;
  border: none;
  font-size: var(--ht-text-xs);
  font-weight: 500;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.15s, color 0.15s, opacity 0.15s;
}

.cf-name-wrap {
  display: flex;
  gap: 0.5rem;
  align-items: stretch;
  margin-top: 0.375rem;
}

.cf-name-input {
  flex: 1;
  min-width: 0;
  margin-top: 0;
}

.cf-gd-wrap {
  position: relative;
  flex-shrink: 0;
  width: 5.5rem;
}

.cf-gd-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.25rem;
  width: 100%;
  height: 100%;
  padding: 0 0.625rem;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.375rem;
  font-size: var(--ht-text-sm);
  font-weight: 500;
  color: #6b7280;
  cursor: pointer;
  white-space: nowrap;
  font-family: inherit;
  transition: color 0.12s, background 0.12s, border-color 0.12s;
}

.cf-gd-arrow {
  width: 0.875rem;
  height: 0.875rem;
  flex-shrink: 0;
  transition: transform 0.18s;
}

.cf-gd-panel {
  position: absolute;
  top: calc(100% + 0.25rem);
  right: 0;
  left: auto;
  min-width: 5rem;
  background: #fff;
  border-radius: 0.5rem;
  box-shadow: 0 0.5rem 1.5rem rgba(0, 0, 0, .12);
  padding: 0.25rem 0;
  z-index: 300;
  transition: opacity 0.15s, transform 0.15s;
}

.cf-gd-opt {
  display: block;
  padding: 0.5rem 1.125rem;
  font-size: var(--ht-text-sm);
  font-weight: 500;
  color: #6b7280;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.12s, color 0.12s;
}

.cf-gd-opt:hover {
  background: var(--page-brand-bg, var(--brand-50, #fef3ee));
  color: var(--page-brand-color, var(--brand-600, #ff5722));
}

.cf-chips {
  margin-top: 0.375rem;
}

.cf-ct-wrap {
  position: relative;
}

.cf-ct-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.25rem;
  padding: 0.75rem 1rem;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  font-size: var(--ht-text-sm);
  font-weight: 500;
  color: #6b7280;
  cursor: pointer;
  min-height: 2.625rem;
  font-family: inherit;
  transition: color 0.12s, background 0.12s, border-color 0.12s;
}

.cf-ct-arrow {
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  transition: transform 0.2s;
}

.cf-ct-panel {
  position: absolute;
  top: calc(100% + 0.25rem);
  left: 0;
  right: 0;
  background: #fff;
  border-radius: 0.625rem;
  box-shadow: 0 0.75rem 2.25rem rgba(0, 0, 0, .13);
  padding: 0.375rem 0;
  z-index: 200;
  transition: opacity 0.15s, transform 0.15s;
}

.cf-ct-opt {
  display: block;
  padding: 0.5rem 1.125rem;
  font-size: var(--ht-text-sm);
  font-weight: 500;
  color: #6b7280;
  cursor: pointer;
  transition: background 0.12s, color 0.12s;
}

.cf-ct-opt:hover {
  background: var(--page-brand-bg, var(--brand-50, #fef3ee));
  color: var(--page-brand-color, var(--brand-600, #ff5722));
}

.cf-stage-field {
  display: none;
}

.cf-otp-msg-hide {
  display: none;
}

.cf-otp-btn:disabled,
.cf-otp-btn.cf-otp-counting {
  background: #f3f4f6;
  color: #9ca3af;
  cursor: not-allowed;
}

.cf-otp-btn.cf-otp-ready {
  background: var(--page-brand-color, var(--brand-600, #ff5722));
  color: #fff;
  cursor: pointer;
}

.cf-otp-btn.cf-otp-ready:hover {
  opacity: 0.88;
}

.cf-otp-btn.cf-otp-verified {
  background: #dcfce7;
  color: #16a34a;
  cursor: default;
}

.cf-phone-err,
.cf-otp-err,
.cf-name-err,
.cf-submit-err {
  display: flex;
  align-items: flex-start;
  gap: 0.35rem;
  font-size: var(--ht-text-sm);
  font-weight: 600;
  line-height: 1.45;
  color: #b91c1c;
  margin-top: 6px;
  padding: 0.3rem 0.45rem;
  border-radius: 0.35rem;
  background: #fef2f2;
}

.cf-phone-err::before,
.cf-otp-err::before,
.cf-name-err::before,
.cf-submit-err::before {
  content: '';
  flex: 0 0 auto;
  color: #dc2626;
}

.cf-date-quick-wrap {
  position: relative;
  display: block;
  width: 100%;
  min-width: 0;
}
.cf-date-quick {
  min-width: 0;
  display: flex;
  flex-wrap: nowrap;
  gap: 0.375rem;
  margin-bottom: 0.5rem;
  overflow-x: auto;
  padding: 0 0 0.25rem;
  box-sizing: border-box;
  scrollbar-width: thin;
}
.cf-date-quick-nav {
  flex: 0 0 2.25rem;
  width: 2.25rem;
  height: 2.25rem;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #6b7280;
  font: inherit;
  font-size: var(--ht-type-body);
  cursor: pointer;
  position: absolute;
  top: 50%;
  z-index: 2;
  isolation: isolate;
  transform: translateY(-50%);
  background: #fff;
  box-shadow: 0 0.125rem 0.375rem rgba(17,24,39,.1);
  appearance: none;
}
.cf-date-quick-nav::before {
  content: '';
  position: absolute;
  top: 50%;
  z-index: -1;
  width: 4.75rem;
  height: 4.75rem;
  pointer-events: none;
  transform: translateY(-50%);
}
.cf-date-quick-prev::before {
  left: 0;
  background: linear-gradient(to left, transparent, rgba(255,255,255,.95));
}
.cf-date-quick-next::before {
  right: 0;
  background: linear-gradient(to right, transparent, rgba(255,255,255,.95));
}
.cf-date-quick-prev { left: 0; }
.cf-date-quick-next { right: 0; }
.cf-date-quick-nav:hover:not(:disabled) { background: var(--brand-50, #fef3ee); color: var(--brand-600, #ff5722); outline: 0 !important; box-shadow: none; }
.cf-date-quick-nav:disabled { opacity: .35; cursor: not-allowed; }
.cf-date-quick-nav svg { display: block; margin: auto; }
.cf-date-quick-btn {
  flex: 0 0 4.25rem;
  width: 4.25rem;
  height: 4.25rem;
  padding: 0.35rem;
  border: 1px solid #e5e7eb;
  border-radius: 0.5rem;
  background: #fff;
  color: #6b7280;
  font: inherit;
  line-height: 1.2;
  cursor: pointer;
  appearance: none;
}
.cf-date-quick-label, .cf-date-quick-value { display: block; }
.cf-date-quick-label { color: #6b7280; font-size: var(--ht-type-meta); }
.cf-date-quick-value { margin-top: 0.25rem; color: #374151; font-weight: 700; }
.cf-date-quick-btn:not(.is-selected):hover {
  border-color: #e5e7eb;
  background: #f9fafb;
  outline: 0 !important;
  box-shadow: none;
}
.cf-date-quick-btn.is-selected {
  border-color: var(--brand-600, #ff5722);
  background: var(--brand-600, #ff5722);
  color: #fff;
  font-weight: 700;
  outline: 0 !important;
}
.cf-date-quick-btn.is-selected .cf-date-quick-label,
.cf-date-quick-btn.is-selected .cf-date-quick-value {
  color: #fff;
}
@media (max-width: 47.9375rem) {
  .cf-date-quick-wrap { width: 100%; }
  .cf-date-quick-nav { flex-basis: 2rem; width: 2rem; height: 2rem; }
  .cf-date-quick-prev { left: 0; }
  .cf-date-quick-next { right: 0; }
}

.cf-form .cf-otp-msg-hide {
  display: none;
}

.cf-form .form-input[aria-invalid="true"] {
  border-color: #dc2626;
  box-shadow: none;
}

.cf-gd-btn:hover,
.cf-gd-btn.cf-gd-open {
  color: var(--page-brand-color, var(--brand-600, #ff5722));
  background: var(--page-brand-bg, var(--brand-50, #fef3ee));
  border-color: var(--page-brand-border, var(--brand-600, #ff5722));
}

.cf-gd-btn.cf-gd-open .cf-gd-arrow {
  transform: rotate(180deg);
}

.cf-gd-opt.cf-gd-opt-on {
  color: var(--page-brand-color, var(--brand-600, #ff5722));
  font-weight: 600;
}

.cf-ct-btn:hover,
.cf-ct-btn.cf-ct-open {
  color: var(--page-brand-color, var(--brand-600, #ff5722));
  background: var(--page-brand-bg, var(--brand-50, #fef3ee));
  border-color: var(--page-brand-border, var(--brand-600, #ff5722));
}

.cf-ct-btn.cf-ct-open .cf-ct-arrow {
  transform: rotate(180deg);
}

.cf-ct-closed {
  opacity: 0;
  pointer-events: none;
  transform: translateY(-0.25rem);
}

.cf-ct-opt.cf-ct-opt-on {
  color: var(--page-brand-color, var(--brand-600, #ff5722));
  font-weight: 600;
}

.cf-form .cf-submit-btn {
  font-size: var(--ht-text-base);
  border-color: transparent;
  color: #fff;
  background: var(--page-brand-color, var(--brand-600, #ff5722));
  box-shadow: none;
}

.cf-form .cf-submit-btn:hover {
  border-color: transparent;
  color: #fff;
  background: var(--page-brand-700, var(--brand-700, #e64a19));
}

.cf-form .cf-submit-btn:active {
  background: var(--page-brand-700, var(--brand-700, #e64a19));
}

.cf-form .cf-submit-btn:disabled {
  border-color: transparent;
  color: #fff;
  background: var(--page-brand-color, var(--brand-600, #ff5722));
  opacity: 0.45;
  cursor: not-allowed;
}

.qr-modal-card {
  max-width: 24rem;
  overflow: hidden;
  background: #fff;
}

.qr-modal-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  background: #fff;
  padding-top: 1rem;
  padding-bottom: 1.5rem;
}

.qr-modal-code {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 0.25rem;
  padding: 0;
  border-radius: 0;
  background: #fff;
  border: 0;
  box-shadow: none;
}

.qr-modal-number {
  margin-top: 0.75rem;
  font-size: var(--ht-text-base);
  font-weight: 600;
  line-height: 1.5;
  color: #374151;
}

@media (max-width:47.9375rem) {
  .cf-inquiry-overlay {
    padding: 1rem;
  }

  .cf-inquiry-card {
    border-radius: 0.875rem;
  }

  .cf-modal-head {
    padding: 1.25rem 1.25rem 0.875rem;
  }

  .cf-modal-body {
    padding: 1rem 1.25rem 1.25rem;
  }

  .project-share-head {
    padding: 1.25rem 1.25rem 1rem;
  }

  .project-share-body {
    padding: 0 1.25rem 1rem;
  }
}

/* Detail shared navigation / headings / CTA */
.anav-top-bar {
  position: sticky;
  z-index: 490;
  transition: top .25s ease;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 0.75rem 0;
  margin-bottom: 0;
  width: 100%;
  box-sizing: border-box;
  border-bottom: 0 !important;
}

.anav-top-bar>div {
  max-width: none;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.anav-top-bar>div::-webkit-scrollbar {
  display: none;
}

.sb-link-cta {
  color: var(--brand-600, #ff5722);
  font-weight: 600;
}

.anav-link-cta {
  color: var(--page-brand-color, var(--brand-600, #ff5722));
  font-weight: 600;
}

#anchor-nav {
  gap: 0.5rem !important;
  padding: 0 0.75rem !important;
}

@media (max-width: 79.9375rem) {
  .anav-top-bar::after {
    content: "";
    position: absolute;
    top: 0.75rem;
    bottom: 0.75rem;
    right: 0;
    width: 1.75rem;
    pointer-events: none;
    z-index: 2;
    background: linear-gradient(270deg, rgba(255, 255, 255, .96), rgba(255, 255, 255, 0));
  }

  .anav-top-bar>div {
    scroll-padding-inline: 1rem;
  }

  #anchor-nav {
    padding-left: 0.75rem !important;
    padding-right: 1.25rem !important;
  }

  body.page-project #anchor-nav,
  body.page-price #anchor-nav {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }
}

.anav-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  padding: .375rem .875rem;
  min-height: 2.75rem;
  font-size: var(--ht-text-base);
  font-weight: 500;
  color: #374151;
  background: rgba(255, 255, 255, .7);
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  white-space: nowrap;
  transition: background .18s, color .18s, box-shadow .18s;
  user-select: none;
}

.anav-link:hover {
  background: #e5e7eb;
  color: #111827;
}

.anav-link.active {
  background: var(--page-brand-50, #fef3ee);
  color: var(--page-brand-600, #ff5722);
  border-color: transparent;
  font-weight: 600;
}

@media (min-width: 64rem) {
  .anav-top-bar {
    top: 5rem;
  }
}

/* Shared desktop sidebars */
#desktop-sidebar,
#anchor-sidebar {
  display: none;
  position: fixed;
  top: 5rem;
  left: 0;
  bottom: 0;
  width: 15rem;
  background: #fff;
  border-right: 0.0625rem solid #e5e7eb;
  z-index: 400;
  overflow: hidden;
  flex-direction: column;
}

#sb-nav-body,
#anchor-sb-body {
  flex: 1;
  overflow-y: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  padding: 0.75rem;
}

#sb-nav-body::-webkit-scrollbar,
#anchor-sb-body::-webkit-scrollbar {
  display: none;
}

#sb-footer {
  flex-shrink: 0;
  padding: 1.25rem 1rem;
  border-top: 0.0625rem solid rgba(0, 0, 0, .06);
}

#sb-footer p {
  font-size: var(--ht-text-2xs-plus) !important;
  color: #9ca3af;
  line-height: 1.6;
  margin: 0;
}

.sb-nav-label,
.sb-section-title {
  font-size: var(--ht-text-sm);
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: 1.375rem 0.75rem 0.5rem;
}

.sb-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height .25s ease-out;
}

.sb-panel.is-open {
  max-height: 43.75rem;
}

.sb-chevron {
  transition: transform .22s ease;
  flex-shrink: 0;
  color: #9ca3af;
}

.sb-chevron.rotated {
  transform: rotate(180deg);
}

.sb-filter-block {
  padding: 0 0 0.25rem;
}

.sb-filter-block .sb-section-title {
  padding-left: 0;
}

.sb-section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}

.sb-filter-block .sb-section-heading .sb-section-title {
  flex: 1;
  min-width: 0;
  margin: 0;
  padding: 0;
}

.sb-group-clear {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  padding: 0;
  font: inherit;
  font-size: var(--ht-text-sm);
  font-weight: 600;
  line-height: 1.4;
  color: #6b7280;
  background: transparent;
  border: 0;
  border-radius: 0.375rem;
  cursor: pointer;
  white-space: nowrap;
}

.sb-group-clear-icon {
  width: 0.875rem;
  height: 0.875rem;
  flex-shrink: 0;
}

.sb-group-clear:hover {
  color: var(--brand-600, #ff5722);
}

.sb-filter-group {
  padding: 1rem 0;
  border-top: 0.0625rem solid #e5e7eb;
}

.sb-filter-group:first-child {
  border-top: none;
  padding-top: 0.25rem;
}

.sb-filter-group>.sb-section-title:first-child {
  padding-top: 0;
}

#bs-filter .bs-body>.sb-filter-group {
  padding: 1rem 0;
}

.sb-section-heading--grid {
  margin-bottom: 0.875rem;
}

.sb-filter-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.375rem;
}

.sb-filter-list {
  display: flex;
  flex-direction: column;
}

.sb-filter-row {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  min-height: 2.75rem;
  padding: 0 0.375rem;
  width: 100%;
  font-size: var(--ht-text-base);
  color: #374151;
  background: transparent;
  border: none;
  cursor: pointer;
  border-radius: 0.5rem;
  text-align: left;
  transition: background .12s;
  user-select: none;
}

.sb-filter-row:hover {
  background: #f9fafb;
}

.sb-filter-row input[type="radio"],
.sb-filter-row input[type="checkbox"] {
  align-self: center;
  margin: 0;
  accent-color: var(--brand-600, #ff5722);
  width: 1rem;
  height: 1rem;
  flex-shrink: 0;
  cursor: pointer;
}

.sb-filter-row:has(input:checked) {
  color: var(--state-active-text);
}

.sb-filter-row.sb-sched-pill input[type="radio"],
.sb-filter-row.sb-type-pill input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.sb-filter-row.sb-room-pill::before,
.sb-filter-row.room-pill::before,
.sb-filter-row.sb-sched-pill::before {
  content: '';
  align-self: center;
  transform: translateY(1px);
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  border: 0.0938rem solid #d1d5db;
  background: #fff;
  flex-shrink: 0;
  transition: border-color .15s, border-width .1s;
}

.sb-filter-row.sb-room-pill.active::before,
.sb-filter-row.room-pill.active::before,
.sb-filter-row.sb-sched-pill:has(input:checked)::before {
  border: 0.3125rem solid var(--state-active-border);
}

.sb-filter-row.sb-room-pill.active,
.sb-filter-row.room-pill.active,
.sb-filter-row.sb-sched-pill:has(input:checked) {
  color: var(--state-active-text);
}

.sb-filter-row.sb-type-pill::before {
  content: '';
  align-self: center;
  transform: translateY(1px);
  width: 1rem;
  height: 1rem;
  border-radius: 0.25rem;
  border: 0.0938rem solid #d1d5db;
  background: #fff;
  flex-shrink: 0;
  transition: background .15s, border-color .15s;
}

.sb-filter-row.sb-type-pill:has(input:checked) {
  color: var(--state-active-text);
}

.sb-filter-row.sb-type-pill:has(input:checked)::before {
  background: var(--state-active-text);
  border-color: var(--state-active-border);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10'%3E%3Cpath fill='none' stroke='%23fff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' d='M1.5 5l2.5 2.5 4.5-4.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.625rem;
}

.sb-filter-option {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  width: 100%;
  min-height: 2.75rem;
  padding: 0.5rem 0.625rem;
  font-size: var(--ht-text-base);
  line-height: 1.35;
  color: #374151;
  background: #fff;
  border: 0.0625rem solid #e5e7eb;
  border-radius: 0.5rem;
  cursor: pointer;
  text-align: left;
  transition: background .15s, color .15s, border-color .15s;
}

.sb-filter-option:hover {
  background: #f9fafb;
  border-color: #d1d5db;
}

.sb-filter-option.active,
.sb-filter-option.active:hover,
.sb-filter-option:has(input:checked),
.sb-filter-option:has(input:checked):hover {
  background: var(--state-active-bg);
  color: var(--state-active-text);
  border-color: var(--state-active-border);
}

#bs-filter .sb-filter-option.sb-price-pill:not(.sb-hidden) {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.sb-filter-option input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.sb-filter-option:not(.sb-price-pill)::after {
  content: '';
  align-self: center;
  transform: translateY(1px);
  width: 0.8125rem;
  height: 0.8125rem;
  border-radius: 50%;
  border: 0.0938rem solid #d1d5db;
  margin-left: auto;
  flex-shrink: 0;
  transition: background .15s, border-color .15s;
}

.sb-filter-option:not(.sb-price-pill):has(input[type="checkbox"])::after {
  border-radius: 0.1875rem;
}

.sb-filter-option:not(.sb-price-pill).active::after,
.sb-filter-option:not(.sb-price-pill):has(input:checked)::after {
  background: var(--brand-600, #ff5722);
  border-color: var(--brand-600, #ff5722);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 10 10'%3E%3Cpath fill='none' stroke='%23fff' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round' d='M1.5 5l2.5 2.5 4.5-4.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 0.5625rem;
}

.sb-filter-inputs {
  display: grid;
  grid-template-columns: 1fr 0.875rem 1fr;
  align-items: center;
  gap: 0.375rem;
}

.sb-filter-inputs span {
  color: #d1d5db;
  text-align: center;
}

.sb-filter-input {
  width: 100%;
  min-width: 0;
  border: 0.0625rem solid #e5e7eb;
  border-radius: 0.5rem;
  padding: 0.4375rem 0.5rem;
  font-size: var(--ht-text-base);
  outline: none;
  background: #fff;
}

.sb-subsection {
  border-top: 0.0625rem solid #e5e7eb;
  padding-top: 1rem;
  margin-top: 0.25rem;
}

.sb-filter-select {
  width: calc(100% - 1rem);
  margin: 0 0.5rem;
  border: 0.0625rem solid #e5e7eb;
  border-radius: 0.5rem;
  padding: 0.5rem 0.5625rem;
  font-size: var(--ht-text-sm);
  background: #fff;
  color: #374151;
}

.filter-lockout {
  opacity: .35;
  pointer-events: none;
  user-select: none;
}

.pt-dropdown {
  position: relative;
  margin-bottom: 0.625rem;
}

.pt-dropdown-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.25rem;
  width: 100%;
  min-height: 2.75rem;
  padding: 0.5rem 0.625rem;
  background: #fff;
  border: 0.0625rem solid #e5e7eb;
  border-radius: 0.5rem;
  font-size: var(--ht-text-sm);
  color: #6b7280;
  cursor: pointer;
  white-space: nowrap;
  font-family: inherit;
  transition: color .12s, background .12s, border-color .12s;
}

.pt-dropdown-btn:hover,
.pt-dropdown-btn.open {
  color: var(--brand-600, #ff5722);
  background: var(--brand-50, #fef3ee);
  border-color: var(--brand-600, #ff5722);
}

.pt-dropdown-btn svg {
  flex-shrink: 0;
  transition: transform .15s;
}

.pt-dropdown-btn.open svg {
  transform: rotate(180deg);
}

.pt-dropdown-menu {
  position: absolute;
  left: 0;
  right: 0;
  top: calc(100% + 0.25rem);
  z-index: 40;
  background: #fff;
  border: none;
  border-radius: 0.625rem;
  box-shadow: 0 0.75rem 2.25rem rgba(0, 0, 0, .13);
  padding: 0.375rem 0;
}

.pt-dropdown-item {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.5rem 1.125rem;
  border-radius: 0;
  font-size: var(--ht-text-base);
  font-weight: 500;
  color: #6b7280;
  cursor: pointer;
  background: none;
  border: none;
  transition: background .15s, color .15s;
}

.pt-dropdown-item:hover {
  background: var(--brand-50, #fef3ee);
  color: var(--brand-600, #ff5722);
}

.pt-dropdown-item.active {
  color: var(--brand-600, #ff5722);
  font-weight: 600;
  background: none;
}

.sb-hidden {
  display: none;
}

.sb-more-btn {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.375rem 0;
  font-size: var(--ht-text-sm);
  color: #6b7280;
  background: none;
  border: none;
  cursor: pointer;
  transition: color .12s;
}

.sb-filter-grid + .sb-more-btn {
  margin-top: 0.625rem;
}

.sb-more-btn:hover {
  color: #6b7280;
}

.sb-link.active,
.sb-link.active.sb-da {
  background: var(--brand-50, #fef3ee);
  color: var(--brand-600, #ff5722);
  font-weight: 600;
}

.sb-link-sub.active {
  background: var(--brand-50, #fef3ee);
  color: var(--brand-600, #ff5722);
  font-weight: 600;
}

.sb-link.sb-da {
  flex: 1;
  border-radius: 0.5rem 0 0 0.5rem;
  flex-wrap: wrap;
  gap: 0;
  align-content: center;
}

.main-sidebar-heading {
  display: block;
  width: 100%;
  padding: 0.75rem;
  color: #374151;
  font-size: var(--ht-text-base);
  font-weight: 600;
  line-height: 1.35;
}

.sb-da-toggle {
  flex-shrink: 0;
  width: 2.25rem;
  min-width: 2.75rem;
  min-height: 2.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  color: #6b7280;
  border-radius: 0 0.5rem 0.5rem 0;
  padding: 0;
  transition: background .12s, color .12s;
}

.sb-da-toggle:hover {
  background: var(--brand-50, #fef3ee);
  color: var(--brand-600, #ff5722);
}

@media (min-width: 80rem) {

  #sb-nav-body,
  #anchor-sb-body {
    padding-top: 2rem;
  }

  #desktop-sidebar .sb-section-title:first-child,
  #anchor-sidebar .sb-nav-label:first-child {
    padding-top: 0;
  }

  #sb-footer {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }

  #anchor-sidebar,
  #desktop-sidebar {
    display: flex !important;
  }

  body.page-project,
  body.page-price,
  body.page-index,
  body.page-list {
    padding-left: 15rem;
    padding-top: 5rem;
  }

  body.page-project #site-header,
  body.page-price #site-header,
  body.page-index #site-header,
  body.page-list #site-header {
    position: fixed !important;
    top: 0;
    left: 0;
    right: 0;
  }

  body.page-project .anav-top-bar,
  body.page-price .anav-top-bar {
    display: none !important;
  }

  body.page-project .sidebar-sticky,
  body.page-price .sidebar-sticky {
    top: 6rem;
  }

  body.page-project section[id] {
    scroll-margin-top: 6rem;
  }

  body.page-index .page-footer-full,
  body.page-list .page-footer-full,
  body.page-project .page-footer-full,
  body.page-price .page-footer-full {
    margin-left: -15rem;
  }

  body.page-index .page-footer-full .footer-inner,
  body.page-list .page-footer-full .footer-inner,
  body.page-project .page-footer-full .footer-inner,
  body.page-price .page-footer-full .footer-inner {
    padding-left: calc(15rem + 1.5rem);
  }
}

.section-title {
  display: flex;
  align-items: center;
  gap: .625rem;
  font-size: var(--ht-type-section-title);
  font-weight: 700;
  color: #111827;
  margin-bottom: 1.75rem;
}

.section-title::before {
  content: '';
  display: block;
  transform: translateY(1px);
  width: 0.1875rem;
  height: 1em;
  background: var(--page-brand-600, #ff5722);
  border-radius: 0.125rem;
  flex-shrink: 0;
}

.section-title.mb-0 {
  margin-bottom: 0;
}

.sec-header .section-title {
  margin-bottom: 0;
}

.more-link {
  font-size: var(--ht-type-meta);
  color: #6b7280;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  min-height: 2.75rem;
  transition: color .15s;
  flex-shrink: 0;
}

.more-link:hover {
  color: var(--brand-600, #ff5722);
}

.page-title-block {
  min-width: 0;
}

.page-title {
  margin: 0;
  color: #111827;
  font-size: var(--ht-text-xl);
  font-weight: 700;
  line-height: 1.35;
}

.page-title-meta {
  color: #111827;
  font-size: var(--ht-text-md);
  font-weight: 400;
}

.page-title-note {
  margin-top: 0.25rem;
  color: #6b7280;
  font-size: var(--ht-text-base);
  line-height: 1.6;
}

.project-price-page-title .page-title {
  font-size: var(--ht-text-3xl);
}

.btn-cta-tel {
  border-color: var(--page-brand-600, #ff5722);
  color: var(--page-brand-600, #ff5722);
  background: var(--page-brand-50, #fef3ee);
}

.btn-cta-tel:hover,
.btn-cta-tel:active {
  border-color: var(--page-brand-600, #ff5722);
  color: var(--page-brand-600, #ff5722);
  background: #fff;
}

@media (min-width: 64rem) {
  .btn-cta-tel .hero-qr-cta-icon {
    width: 1.125rem;
    height: 1.125rem;
  }
}

.reception-tel-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 2.75rem;
  padding: 0.5rem 0;
  color: #374151;
  background: none;
  border: 0;
  border-radius: 0;
  font: inherit;
  font-weight: 400;
  line-height: 1.5;
  text-align: left;
  cursor: pointer;
  transition: color .15s;
}

.reception-tel-cta:hover {
  color: #374151;
  background: none;
  outline: none;
  text-decoration: underline;
}

.reception-card-title {
  margin-bottom: 0.5rem;
}

.reception-card-body {
  display: grid;
  gap: 0.375rem;
  background: transparent;
}

.reception-card-row {
  min-height: 2rem;
  padding: 0.125rem 0;
  line-height: 1.4;
}

.reception-card-row + .reception-card-row {
  border-top: 0;
}

.reception-address-link {
  display: inline;
  line-height: 1.4;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.reception-address-text {
  display: inline;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.reception-address-tail {
  display: inline-flex;
  align-items: baseline;
  line-height: inherit;
  white-space: nowrap !important;
  overflow-wrap: normal !important;
  word-break: keep-all;
  vertical-align: baseline;
}

.reception-address-arrow {
  display: inline-block;
  position: static;
  width: 0.875rem;
  height: 0.875rem;
  flex: 0 0 0.875rem;
  margin-left: 0.25rem;
  color: #9ca3af;
  transform: none;
  align-self: center;
  vertical-align: baseline;
}

.reception-card-icon-shell {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  flex: 0 0 1.5rem;
  color: #6b7280;
}

.reception-card-icon {
  display: block;
  width: 1rem;
  height: 1rem;
  flex: 0 0 1rem;
  color: #6b7280;
  overflow: visible;
}

.reception-card .reception-tel-cta {
  min-height: 0;
  width: 100%;
  padding: 0;
  line-height: 1.4;
  gap: 0.5rem;
}

.rp-stat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

.rp-stat-card {
  display: flex;
  min-height: 5.25rem;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.375rem;
  padding: 1rem;
  border-radius: 1rem;
  background: #f9fafb;
  color: inherit;
  text-decoration: none;
}

.rp-stat-label {
  color: #6b7280;
  font-size: var(--ht-text-base);
  font-weight: 400;
  line-height: 1.3;
}

.rp-stat-value-row {
  display: inline-flex;
  align-items: baseline;
  gap: 0.25rem;
  margin: 0;
  width: fit-content;
  line-height: 1.3;
  white-space: nowrap;
}

.rp-stat-value {
  color: #111827;
  font-size: var(--ht-type-market-value);
  font-weight: 700;
  line-height: 1.3;
}

.rp-stat-value--primary {
  color: var(--page-brand-color, var(--brand-600, #ff5722));
}

.rp-stat-unit {
  color: #374151;
  font-size: var(--ht-text-base);
  font-weight: 400;
  line-height: 1.3;
}

.rp-stat-card:hover .rp-stat-value {
  color: #111827;
}

.rp-stat-card:hover .rp-stat-value--primary {
  color: var(--page-brand-color, var(--brand-600, #ff5722));
}

@media (min-width: 40rem) {
  .rp-stat-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 40rem) and (max-width: 44.9375rem) {
  .rp-stat-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Detail disclaimer */
.detail-disclaimer {
  background: #f9fafb;
  border-top: 1px solid #f3f4f6;
}

.detail-disclaimer-inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 1.25rem 1rem;
  text-align: center;
}

@media (min-width: 40rem) {
  .detail-disclaimer-inner {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 64rem) {
  .detail-disclaimer-inner {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.disclaimer-text {
  font-size: var(--ht-text-2xs-plus);
  line-height: 1.7;
  text-align: left;
}

.detail-disclaimer--price .detail-disclaimer-inner {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.detail-disclaimer--price .disclaimer-text {
  font-size: var(--ht-text-2xs-plus);
  line-height: 1.6;
}

.realprice-source-note {
  font-size: var(--ht-text-2xs-plus);
}

/* Detail media modals */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, .92);
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.modal-overlay.open {
  display: flex;
}

.media-modal-frame {
  position: relative;
  width: min(72rem, 100%);
  aspect-ratio: 16 / 9;
}

.media-modal-close {
  position: absolute;
  right: 0;
  bottom: calc(100% + 0.75rem);
  color: rgba(255, 255, 255, .65);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  border-radius: 0.375rem;
  font-size: var(--ht-text-sm);
  transition: color .15s;
}

.media-modal-close:hover {
  color: #fff;
}

.media-modal-close svg {
  width: 1rem;
  height: 1rem;
}

.media-modal-iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 0.75rem;
  background: #111;
}

@media (max-width: 47.9375rem) {
  .media-modal-frame {
    width: 100%;
    max-height: calc(100dvh - 2rem);
  }

  #tour-modal {
    padding:
      max(0.5rem, env(safe-area-inset-top))
      max(0.5rem, env(safe-area-inset-right))
      max(0.5rem, env(safe-area-inset-bottom))
      max(0.5rem, env(safe-area-inset-left));
  }

  #tour-modal .media-modal-frame {
    width: 100%;
    height: calc(100dvh - max(1rem, env(safe-area-inset-top)) - max(1rem, env(safe-area-inset-bottom)));
    max-height: none;
    aspect-ratio: auto;
  }

  #tour-modal .media-modal-close {
    position: fixed;
    z-index: 10001;
    top: max(0.75rem, env(safe-area-inset-top));
    right: max(0.75rem, env(safe-area-inset-right));
    bottom: auto;
    min-width: 2.75rem;
    min-height: 2.75rem;
    justify-content: center;
    padding: 0 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 999px;
    background: rgba(17, 24, 39, 0.88);
    color: #fff;
    box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, 0.32);
  }

  #video-modal .media-modal-frame {
    aspect-ratio: auto;
    height: auto;
    max-height: calc(100dvh - 2rem);
  }

  #video-modal .media-modal-iframe {
    aspect-ratio: 16 / 9;
    height: auto;
    max-height: calc(100dvh - 2rem);
  }
}

.list-count-strong {
  color: var(--brand-600, #ff5722);
  font-weight: 700;
}

.list-ajax-msg {
  font-size: var(--ht-text-sm);
}

.sponsor-card {
  aspect-ratio: 136 / 78;
}

.sb-district-line {
  display: flex;
  align-items: stretch;
}

.sb-name-part:not(:last-child) {
  margin-right: 0.5rem;
}

.ht-toast {
  position: fixed;
  left: 50%;
  bottom: calc(5rem + env(safe-area-inset-bottom, 0px));
  transform: translate(-50%, 0.75rem);
  z-index: 10050;
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
  max-width: min(20rem, calc(100vw - 2rem));
  padding: 0.625rem 0.875rem;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 0.875rem;
  background: rgba(17, 24, 39, 0.72);
  box-shadow: 0 0.75rem 2rem rgba(15, 23, 42, 0.16);
  color: rgba(255, 255, 255, 0.96);
  font-size: var(--ht-text-sm);
  font-weight: 500;
  line-height: 1.45;
  text-align: center;
  -webkit-backdrop-filter: blur(1rem) saturate(140%);
  backdrop-filter: blur(1rem) saturate(140%);
  opacity: 0;
  pointer-events: none;
  transition: opacity .2s ease, transform .2s ease;
}

.ht-toast-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 1.375rem;
  height: 1.375rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
}

.ht-toast-icon svg {
  width: 0.875rem;
  height: 0.875rem;
}

.ht-toast-message {
  min-width: 0;
}

.ht-toast.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.ht-toast--success {
  background: rgba(22, 101, 52, 0.72);
}

.ht-toast--error {
  background: rgba(127, 29, 29, 0.76);
}

.ht-toast--info {
  background: rgba(31, 41, 55, 0.72);
}

@media (min-width: 64rem) {
  .ht-toast {
    top: calc(1.75rem + env(safe-area-inset-top, 0px));
    bottom: auto;
    left: 50%;
    transform: translate(-50%, -0.75rem);
  }

  .ht-toast.is-visible {
    transform: translate(-50%, 0);
  }
}

/* Mobile bottom sheet / area selector shared layout */
.bs-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 9996;
}

.bs-sheet {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9997;
  background: #fff;
  border-radius: 18px 18px 0 0;
  height: clamp(30rem, 78vh, 42rem);
  max-height: calc(100vh - env(safe-area-inset-top, 0px) - 1rem);
  display: flex;
  flex-direction: column;
  transition: transform .3s cubic-bezier(.25,.8,.25,1);
}

.bs-handle {
  width: 40px;
  height: 4px;
  background: #e5e7eb;
  border-radius: 2px;
  margin: 10px auto 0;
  flex-shrink: 0;
}

.bs-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px 12px;
  border-bottom: 1px solid #f3f4f6;
  flex-shrink: 0;
}

.bs-title {
  font-size: var(--ht-text-base);
  font-weight: 600;
  color: #111827;
}

.bs-close {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  color: #6b7280;
  flex-shrink: 0;
  padding: 0;
}

.bs-close-icon {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f3f4f6;
  border-radius: 50%;
  transition: background .12s;
}

.bs-close:hover .bs-close-icon {
  background: #e5e7eb;
}

.bs-body {
  flex: 1;
  overflow-y: auto;
  overscroll-behavior-y: contain;
  -webkit-overflow-scrolling: touch;
  padding: 0 16px 12px;
}

.bs-body .sb-section-title {
  padding-left: 0;
  padding-right: 0;
}

.bs-footer {
  flex-shrink: 0;
  display: flex;
  gap: 10px;
  padding: 12px 16px;
  border-top: 1px solid #f3f4f6;
}

.bs-footer-clear {
  flex: 1;
  padding: 11px 0;
  font-size: var(--ht-text-base);
  font-weight: 500;
  color: #6b7280;
  background: #f3f4f6;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: background .12s,color .12s;
}

.bs-footer-clear:hover {
  background: #e5e7eb;
}

.bs-footer-apply {
  flex: 2;
  padding: 11px 0;
  font-size: var(--ht-text-base);
  font-weight: 600;
  color: #fff;
  background: var(--page-brand-color, var(--brand-600, #ff5722));
  border: none;
  border-radius: 10px;
  cursor: pointer;
  transition: opacity .12s;
}

.bs-footer-apply:hover {
  opacity: .88;
}

.bs-area-body {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.bs-area-cols {
  flex: 1;
  min-height: 0;
  display: flex;
}

.bs-area-cols--single-city {
  display: flex;
}

.bs-area-left {
  width: 45%;
  flex-shrink: 0;
  overflow-y: auto;
  overscroll-behavior-y: contain;
  -webkit-overflow-scrolling: touch;
  background: #f9fafb;
  border-right: 1px solid #e5e7eb;
}

.bs-area-right {
  flex: 1;
  overflow-y: auto;
  overscroll-behavior-y: contain;
  -webkit-overflow-scrolling: touch;
}

.bs-area-cols--single-city .bs-area-right {
  width: 100%;
  min-height: 0;
}

.bs-tab {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.75rem 0.875rem;
  font-size: var(--ht-text-base);
  font-weight: 500;
  color: #6b7280;
  background: none;
  border: none;
  cursor: pointer;
  position: relative;
  transition: background .12s,color .12s;
  line-height: 1.4;
}

.bs-tab:hover {
  background: #f3f4f6;
}

.bs-tab.active,
.bs-tab[aria-selected="true"] {
  background: #fff;
  color: var(--state-active-text);
  font-weight: var(--state-active-weight);
}

.bs-tab.active::before,
.bs-tab[aria-selected="true"]::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--state-active-text);
  border-radius: 0 2px 2px 0;
}

.bs-area-sub {
  display: block;
  width: 100%;
  text-align: left;
  padding: 0.75rem 1rem;
  font-size: var(--ht-text-base);
  font-weight: 500;
  color: #6b7280;
  background: none;
  border: none;
  cursor: pointer;
  transition: background .12s,color .12s;
  line-height: 1.4;
}

.bs-area-sub--with-count {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.bs-area-count {
  flex: 0 0 auto;
  color: #9ca3af;
  font-size: var(--ht-text-2xs-plus);
  font-weight: 500;
  line-height: 1.2;
}

.bs-area-sub:hover {
  background: var(--page-brand-bg, var(--brand-50, #fef3ee));
  color: var(--page-brand-color, var(--brand-600, #ff5722));
}

.bs-area-link {
  cursor: pointer;
}

.bs-area-sub.active,
.bs-area-link.active,
.bs-area-sub[aria-current="page"],
.bs-area-link[aria-current="page"] {
  color: var(--state-active-text);
  font-weight: var(--state-active-weight);
}

.bs-area-sub.active {
  background: none;
}

.bs-area-sub.active .bs-area-count,
.bs-area-sub[aria-current="page"] .bs-area-count {
  color: var(--state-active-text);
}

.bsa-featured {
  border-top: 1px solid #e5e7eb;
  padding-top: 0.25rem;
}

.bsa-featured-title {
  font-size: var(--ht-text-sm);
  color: #9ca3af;
  padding: 0.5rem 1rem;
  margin: 0;
}

.bsa-featured-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  text-decoration: none;
  color: #374151;
  transition: background .12s;
  line-height: 1.4;
}

.bsa-featured-row:hover {
  background: var(--page-brand-bg, var(--brand-50, #fef3ee));
}

.bsa-featured-name {
  font-size: var(--ht-text-sm);
  color: #6b7280;
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.bsa-featured-type {
  font-size: var(--ht-text-sm);
  color: #9ca3af;
  flex-shrink: 0;
}

.page-not-found {
  background: #fff;
}

.not-found-primary {
  background: var(--brand-600);
}

.not-found-primary:hover {
  background: var(--brand-700);
}

.not-found-code {
  font-size: 5rem;
  line-height: 1;
  letter-spacing: -0.02em;
}

/* Product decision: focused controls keep their default visual appearance. */
:where(a, button, input, select, textarea, [tabindex]):focus {
  outline: none;
  box-shadow: none;
}

@media (max-width: 63.9375rem) {
  .page-not-found {
    padding-bottom: 4.5rem;
  }
}
