.hero-property {
      background:
        linear-gradient(110deg, rgba(11,31,51,.94), rgba(14,59,46,.88), rgba(122,30,44,.62)),
        url('../images/hero/property_hero.jpg') center/cover;
    }
    .glass {
      background: rgba(255,252,245,.92);
      backdrop-filter: blur(16px);
      border: 1px solid rgba(198,161,91,.44);
      box-shadow: 0 28px 80px rgba(0,0,0,.24);
    }
    .chip {
      border: 1px solid rgba(198,161,91,.42);
      background: rgba(255,252,245,.75);
    }
    .hide-scrollbar::-webkit-scrollbar { display: none; }
    .hide-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }
    .drawer-open { overflow: hidden; }
    @media (max-width: 768px) {
      .mobile-card-image { height: 210px; }
    }
    
    /* Smooth Accordion Transitions */
    .accordion-content {
      transition: max-height 0.3s ease-in-out, opacity 0.3s ease;
      max-height: 0;
      opacity: 0;
      overflow: hidden;
    }
    .accordion-content.open {
      max-height: 500px; /* arbitrary large number */
      opacity: 1;
    }

    /* Multilingual Button Fixes */
  #listingContainer a,
  #listingContainer button,
  #listingContainer .premium-btn,
  #listingContainer .deep-btn {
    writing-mode: horizontal-tb !important;
    text-orientation: mixed !important;
    white-space: nowrap !important;
    min-width: 150px !important;
    max-width: none !important;
    width: auto !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    line-height: 1.2 !important;
    word-break: keep-all !important;
  }

  html[lang="zh-Hant"] #listingContainer a,
  html[lang="zh-Hant"] #listingContainer button {
    letter-spacing: .08em;
  }