        /* (your existing styles unchanged) */
        .open-house-container, .open-house-fallback, .open-house-title-section {
            font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Text', Roboto, sans-serif !important;
        }
        .open-house-fallback.hidden { display: none !important; }

        .oh-scroller-wrapper { position: relative; overflow: visible !important; }
        .oh-scroll {
            display: flex !important;
            flex-wrap: nowrap !important;
            overflow-x: auto !important;
            overflow-y: hidden !important;
            scroll-snap-type: x mandatory;
            -webkit-overflow-scrolling: touch;
            padding-bottom: 6px;
            max-width: 100%;
        }
        .oh-scroll::-webkit-scrollbar { height: 8px; }
        .oh-scroll::-webkit-scrollbar-thumb { background: rgba(0,0,0,0.12); border-radius: 9999px; }
        .oh-scroll > * { scroll-snap-align: start; }

        .oh-card {
            transition: transform 0.18s ease, box-shadow 0.18s ease !important;
            flex: 0 0 auto !important;
        }
        .oh-card:hover { transform: translateY(-2px); box-shadow: 0 8px 20px -10px rgba(0,0,0,0.25); }

        .open-house-container::before {
            content: 'v17.1';
            position: fixed; top: 10px; right: 10px; color: #999; font-size: 12px;
        }
        
        /* Card v2 */
.oh-card--v2{
  display: inline-flex;
  flex-direction: column;
  gap: 12px;
  align-top: top;
  flex-shrink: 0;
  background: #fff;
  border: 1px solid rgba(17,24,39,0.08);
  border-radius: 18px;
  padding: 16px;
  width: 320px;
  box-shadow: 0 10px 25px rgba(17,24,39,0.06);
}

.oh-card-top{
  display: flex;
  gap: 8px;
  align-items: center;
}

.oh-tag{
  display: inline-flex;
  align-items: center;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
  line-height: 1;
}

.oh-tag--future{
  color: #065f46;
  background: #ecfdf5;
  border-color: #a7f3d0;
}

.oh-tag--past{
  color: #7c2d12;
  background: #fff7ed;
  border-color: #fed7aa;
}

.oh-tag--shared{
  color: #1d4ed8;
  background: #eff6ff;
  border-color: #bfdbfe;
}

.oh-address{
  font-size: 16px;
  font-weight: 800;
  color: #111827;
  line-height: 1.25;
}

.oh-meta{
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.oh-meta-row{
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
}

.oh-meta-label{
  color: #6b7280;
  font-weight: 600;
}

.oh-meta-val{
  color: #111827;
  font-weight: 700;
}

/* Buttons */
.oh-actions{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 2px;
}

.oh-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 12px;
  padding: 10px 12px;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
  border: 1px solid rgba(17,24,39,0.10);
  cursor: pointer;
  user-select: none;
  transition: transform 140ms ease, box-shadow 140ms ease, filter 140ms ease;
}

.oh-btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 12px 22px rgba(17,24,39,0.10);
  filter: brightness(1.02);
}

.oh-btn:active{
  transform: translateY(0px);
  box-shadow: 0 8px 14px rgba(17,24,39,0.08);
}

.oh-btn-icn{
  width: 18px;
  height: 18px;
}

.oh-btn--kiosk{
  background: #130D60; /* your brand navy */
  color: #fff;
  border-color: rgba(255,255,255,0.12);
}

.oh-btn--flyer{
  background: #22c55e; /* clean green */
  color: #062b12;
  border-color: rgba(6,43,18,0.10);
}

.oh-submissions-link{
  margin-top: 2px;
  font-size: 12px;
  font-weight: 700;
  color: #374151;
  text-decoration: none;
}

.oh-submissions-link:hover{
  text-decoration: underline;
}

