/* Business Discovery — showcase feed (campus-inspired, not product grid) */

body.biz-show-page {
  background: var(--unimart-bg-muted, #f5f6f8);
}

body.biz-show-page .content-wrapper,
body.biz-show-page .content-inner {
  background: var(--unimart-bg-muted, #f5f6f8);
}

.biz-show {
  --biz-ink: var(--unimart-text, #1a1a2e);
  --biz-muted: var(--unimart-text-muted, #6b7280);
  --biz-accent: var(--unimart-orange, #f68b1e);
  --biz-slate: var(--unimart-slate, #2c3e50);
  --biz-card: var(--unimart-bg, #fff);
  --biz-line: var(--unimart-border, #e8e8e8);
  --biz-shadow: var(--unimart-shadow, 0 4px 14px rgba(44, 62, 80, 0.08));
  max-width: 720px;
  margin: 0 auto;
  padding: 0 0 5.5rem;
  color: var(--biz-ink);
  font-family: var(--unimart-font-sans, Manrope, sans-serif);
}

.biz-show__mast {
  margin: 0.85rem 1rem 0;
  padding: 1.25rem 1.15rem 1.35rem;
  border-radius: 16px;
  background:
    radial-gradient(ellipse at 90% 10%, rgba(196, 92, 38, 0.35), transparent 45%),
    linear-gradient(145deg, var(--biz-slate) 0%, #3a4d61 58%, #1c2430 100%);
  color: #fff;
  box-shadow: var(--biz-shadow);
}

.biz-show__brand {
  margin: 0 0 0.45rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.9;
}

.biz-show__brand span { color: #f0b27a; }

.biz-show__title {
  margin: 0 0 0.4rem;
  font-size: clamp(1.35rem, 4vw, 1.75rem);
  line-height: 1.2;
  font-weight: 700;
}

.biz-show__lead {
  margin: 0 0 1rem;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  line-height: 1.45;
  max-width: 34rem;
}

.biz-show__mast-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.biz-show__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 0.95rem;
  border-radius: 10px;
  border: 0;
  background: var(--biz-accent);
  color: #fff;
  font: inherit;
  font-weight: 700;
  font-size: 0.88rem;
  text-decoration: none;
  cursor: pointer;
}

.biz-show__ghost {
  display: inline-flex;
  align-items: center;
  padding: 0.55rem 0.95rem;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  font-weight: 600;
  font-size: 0.88rem;
  text-decoration: none;
}

.biz-show__spotlight-label {
  margin: 0.85rem 1rem 0.35rem;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--biz-muted, #6b7280);
}

/* Featured row — not a second hero (Phase A UX) */
.biz-show__featured {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  margin: 0.85rem 1rem 0;
  padding: 0.7rem 0.85rem;
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  background: #fff;
  border: 1px solid rgba(44, 62, 80, 0.1);
  box-shadow: 0 1px 2px rgba(16, 22, 30, 0.04);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.biz-show__featured:hover,
.biz-show__featured:focus-visible {
  border-color: rgba(246, 139, 30, 0.45);
  box-shadow: 0 4px 14px rgba(44, 62, 80, 0.08);
  outline: none;
}

.biz-show__featured-thumb {
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
  border-radius: 12px;
  object-fit: cover;
  background: #eef1f4;
}

.biz-show__featured-thumb--ph {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #94a3b8;
  font-size: 1.25rem;
  background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
}

.biz-show__featured-body {
  flex: 1 1 auto;
  min-width: 0;
  display: grid;
  gap: 0.12rem;
}

.biz-show__featured-kicker {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--unimart-orange, #f68b1e);
}

.biz-show__featured-name {
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.25;
  color: var(--biz-slate, #2c3e50);
}

.biz-show__featured-meta,
.biz-show__featured-blurb {
  font-size: 0.82rem;
  line-height: 1.35;
  color: var(--biz-muted, #6b7280);
}

.biz-show__featured-blurb {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.biz-show__featured-go {
  flex: 0 0 auto;
  color: var(--unimart-orange, #f68b1e);
  opacity: 0.85;
}

.biz-show__hero {
  position: relative;
  display: block;
  margin: 0.9rem 1rem 0;
  aspect-ratio: 16 / 10;
  min-height: 200px;
  max-height: 48vh;
  border-radius: 16px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  box-shadow: var(--biz-shadow);
  background: var(--biz-slate);
}

.biz-show__hero--spotlight {
  /* Legacy class kept for safety; featured row replaces spotlight on hub */
  display: none;
}

.biz-show__hero-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.75);
}

.biz-show__hero-media,
.biz-show__hero-fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.biz-show__hero-fallback {
  background:
    linear-gradient(135deg, #2c3e50, #4a5d72 40%, #c45c26 140%);
}

.biz-show__hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(16, 22, 30, 0.82) 100%);
}

.biz-show__hero-copy {
  position: absolute;
  left: 1rem;
  right: 4.5rem;
  bottom: 0.95rem;
  z-index: 2;
  display: grid;
  gap: 0.2rem;
}

.biz-show__hero-badge {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #f0b27a;
}

.biz-show__hero-name {
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.2;
}

.biz-show__hero-blurb {
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.35;
}

.biz-show__hero-meta {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.7);
  margin-top: 0.15rem;
}

.biz-show__hero-logo {
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
  width: 56px;
  height: 56px;
  border-radius: 14px;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.85);
  z-index: 2;
  background: #fff;
}

.biz-show__search {
  margin: 0.95rem 1rem 0.55rem;
}

.biz-show__search-field {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0 0.9rem;
  border-radius: 12px;
  border: 1px solid var(--biz-line);
  background: var(--biz-card);
}

.biz-show__search-field i { color: var(--biz-muted); font-size: 0.85rem; }
.biz-show__search-field input {
  flex: 1;
  border: 0;
  background: transparent;
  padding: 0.7rem 0;
  font: inherit;
  font-size: 0.92rem;
  outline: none;
}

.biz-show__chips {
  display: flex;
  gap: 0.4rem;
  overflow-x: auto;
  padding: 0 1rem 0.35rem;
  -webkit-overflow-scrolling: touch;
}

.biz-show__chip {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  border: 1px solid var(--biz-line);
  background: var(--biz-card);
  color: var(--biz-muted);
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}

.biz-show__chip.is-active {
  background: rgba(196, 92, 38, 0.12);
  border-color: rgba(196, 92, 38, 0.4);
  color: var(--biz-accent);
}

.biz-show__meta {
  margin: 0.35rem 1rem 0.5rem;
  font-size: 0.8rem;
  color: var(--biz-muted);
}

.biz-show__meta a {
  margin-left: 0.45rem;
  color: var(--biz-accent);
  font-weight: 600;
  text-decoration: none;
}

.biz-show__section-head {
  margin: 1.1rem 1rem 0.55rem;
}

.biz-show__section-head h2 {
  margin: 0;
  font-size: 1.05rem;
}

.biz-show__section-head p {
  margin: 0.15rem 0 0;
  font-size: 0.82rem;
  color: var(--biz-muted);
}

.biz-show__rail-scroll,
.biz-show__partner-scroll {
  display: flex;
  gap: 0.65rem;
  overflow-x: auto;
  padding: 0 1rem 0.35rem;
  -webkit-overflow-scrolling: touch;
}

.biz-show__rail-item {
  flex: 0 0 148px;
  display: grid;
  grid-template-rows: 96px auto;
  border-radius: 14px;
  overflow: hidden;
  background: var(--biz-card);
  border: 1px solid var(--biz-line);
  text-decoration: none;
  color: inherit;
}

.biz-show__rail-item img {
  width: 100%;
  height: 96px;
  object-fit: cover;
}

.biz-show__rail-logo {
  object-fit: contain !important;
  padding: 1rem;
  background: #f7f4ef;
}

.biz-show__rail-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 96px;
  background: linear-gradient(135deg, #2c3e50, #c45c26);
  color: #fff;
  font-size: 1.4rem;
}

.biz-show__rail-copy {
  display: grid;
  gap: 0.1rem;
  padding: 0.55rem 0.6rem 0.65rem;
}

.biz-show__rail-copy strong {
  font-size: 0.82rem;
  line-height: 1.25;
}

.biz-show__rail-copy span {
  font-size: 0.72rem;
  color: var(--biz-muted);
}

.biz-show__partner {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 0.55rem;
  min-width: 180px;
  padding: 0.55rem 0.7rem;
  border-radius: 12px;
  background: var(--biz-card);
  border: 1px solid var(--biz-line);
  text-decoration: none;
  color: inherit;
}

.biz-show__partner img,
.biz-show__partner-ph {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  object-fit: cover;
}

.biz-show__partner-ph {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(196, 92, 38, 0.1);
  color: var(--biz-accent);
}

.biz-show__partner strong {
  display: block;
  font-size: 0.84rem;
}

.biz-show__partner em {
  display: block;
  font-style: normal;
  font-size: 0.72rem;
  color: var(--biz-muted);
}

.biz-show__feed {
  display: grid;
  gap: 0.7rem;
  padding: 0.15rem 0 0;
}

.biz-moment {
  margin: 0 0.55rem;
  padding: 0.4rem 0.4rem 0.35rem;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.38);
  box-shadow: none;
  backdrop-filter: blur(8px) saturate(1.05);
  -webkit-backdrop-filter: blur(8px) saturate(1.05);
}

.biz-moment__head {
  display: grid;
  grid-template-columns: 36px 1fr auto;
  gap: 0.55rem;
  align-items: center;
  margin-bottom: 0.4rem;
  padding: 0 0.1rem;
}

.biz-moment__logo {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  object-fit: cover;
}

.biz-moment__logo--ph {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(196, 92, 38, 0.1);
  color: var(--biz-accent);
}

.biz-moment__id {
  min-width: 0;
  display: grid;
  gap: 0.05rem;
}

.biz-moment__id strong {
  font-size: 0.92rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.biz-moment__id span {
  font-size: 0.72rem;
  color: var(--biz-muted);
}

.biz-moment__open {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--biz-accent);
  text-decoration: none;
}

.biz-moment__stage-wrap {
  display: grid;
  gap: 0.4rem;
}

.biz-moment__stage {
  position: relative;
  display: block;
  aspect-ratio: 2 / 1;
  max-height: 11.5rem;
  border-radius: 12px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  background: var(--biz-slate);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: none;
}

.biz-moment__glass {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06) 0%, transparent 40%, rgba(12, 18, 28, 0.12) 100%);
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.biz-moment__price {
  display: block;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.95);
  margin-top: 0.08rem;
  text-shadow: 0 1px 8px rgba(12, 18, 28, 0.55);
}

.biz-moment__rail {
  display: flex;
  gap: 0.45rem;
  overflow-x: auto;
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}

.biz-moment__rail::-webkit-scrollbar { display: none; }

.biz-moment__chip {
  flex: 0 0 3.85rem;
  position: relative;
  aspect-ratio: 1;
  border-radius: 11px;
  overflow: hidden;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  padding: 0;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.45);
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.4) inset;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.biz-moment__chip.is-active {
  border-color: var(--biz-accent);
  box-shadow:
    0 0 0 1px rgba(196, 92, 38, 0.28),
    0 1px 0 rgba(255, 255, 255, 0.4) inset;
}

.biz-moment__chip img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.biz-moment__chip-ph {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: var(--biz-accent);
  font-size: 1.1rem;
}

.biz-moment__chip-label {
  position: absolute;
  left: 0.25rem;
  right: 0.25rem;
  bottom: 0.25rem;
  font-size: 0.52rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.65);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.biz-port__rooms {
  margin-top: 1.15rem;
}

.biz-port__rooms h2 {
  margin: 0 0 0.65rem;
  font-size: 1.05rem;
}

.biz-port__room-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
}

.biz-port__room {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(28, 36, 48, 0.1);
  background: #fff;
  text-decoration: none;
  color: inherit;
  display: block;
}

.biz-port__room img,
.biz-port__room-ph {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: #efeae3;
}

.biz-port__room-ph {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c45c26;
  font-size: 1.4rem;
}

.biz-port__room-body {
  padding: 0.55rem 0.65rem 0.7rem;
}

.biz-port__room-body strong {
  display: block;
  font-size: 0.88rem;
}

.biz-port__room-body span {
  display: block;
  font-size: 0.75rem;
  color: #5c6570;
  margin-top: 0.15rem;
}

.bd-showcase-list {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  display: grid;
  gap: 0.55rem;
}

.bd-showcase-list li {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  gap: 0.65rem;
  align-items: center;
  padding: 0.45rem;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 10px;
  background: #fff;
}

.bd-showcase-list img {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  object-fit: cover;
}

.bd-settings__divider {
  margin: 1.5rem 0 0.85rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(15, 23, 42, 0.1);
}

.bd-settings__divider h2 {
  margin: 0 0 0.25rem;
  font-size: 1.1rem;
}

.bd-settings__divider p {
  margin: 0 0 0.85rem;
  color: #5c6570;
  font-size: 0.86rem;
}

.biz-moment__media,
.biz-moment__gradient {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.biz-moment__gradient {
  background:
    linear-gradient(145deg, #243447 0%, #3d5166 45%, #8a4a2a 120%);
}

.biz-moment__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(12, 18, 28, 0.12) 0%, transparent 30%, transparent 48%, rgba(12, 18, 28, 0.5) 74%, rgba(12, 18, 28, 0.86) 100%);
}

.biz-moment__caption {
  position: absolute;
  left: 0.55rem;
  right: 0.55rem;
  bottom: 0.45rem;
  z-index: 2;
  display: grid;
  gap: 0.1rem;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.biz-moment__caption em {
  font-style: normal;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(255, 236, 210, 0.95);
  text-shadow: 0 1px 8px rgba(12, 18, 28, 0.5);
}

.biz-moment__caption strong {
  font-size: 0.88rem;
  line-height: 1.25;
  font-weight: 650;
  text-shadow:
    0 1px 2px rgba(12, 18, 28, 0.55),
    0 2px 12px rgba(12, 18, 28, 0.4);
}

.biz-moment__foot {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 0.9rem;
  margin-top: 0.4rem;
  padding: 0 0.1rem;
  font-size: 0.78rem;
  color: var(--biz-muted);
}

.biz-moment__wa {
  color: #1f6b4a;
  font-weight: 600;
}

.biz-show__empty {
  margin: 1rem;
  padding: 2rem 1rem;
  text-align: center;
  color: var(--biz-muted);
}

.biz-show__list-cta {
  margin: 1.35rem 1rem 0;
  padding: 1.1rem 1rem;
  border-radius: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
  justify-content: space-between;
  background:
    linear-gradient(120deg, rgba(44, 62, 80, 0.96), rgba(196, 92, 38, 0.88));
  color: #fff;
}

.biz-show__list-cta h2 {
  margin: 0 0 0.2rem;
  font-size: 1.05rem;
}

.biz-show__list-cta p {
  margin: 0;
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.82);
  max-width: 22rem;
}

.biz-show__list-cta .biz-show__cta {
  background: #fff;
  color: var(--biz-slate);
}

/* Business detail hub — extends campus UNIZ profile chrome */
.biz-hub .uz-hub__logo--ph {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 1.4rem;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 14px;
  width: 64px;
  height: 64px;
  flex: 0 0 64px;
}

.biz-hub__about,
.biz-hub__contact,
.biz-hub__owner {
  margin: 0 1rem 1rem;
  padding: 1rem;
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(44, 62, 80, 0.1);
}

.biz-hub__about h2 {
  margin: 0 0 0.45rem;
  font-size: 1rem;
}

.biz-hub__about p {
  margin: 0;
  line-height: 1.5;
  color: #3d4a5c;
}

.biz-hub__contact {
  padding: 0.85rem;
}

.biz-port__cover {
  position: relative;
  aspect-ratio: 16 / 9;
  background: linear-gradient(145deg, #2c3e50, #c45c26);
  overflow: hidden;
}

.biz-port__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.biz-port__wrap {
  margin: -2.5rem 1rem 0;
  position: relative;
  z-index: 1;
}

.biz-port__card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid rgba(28, 36, 48, 0.1);
  padding: 1.15rem 1.1rem 1.35rem;
  box-shadow: 0 10px 28px rgba(28, 36, 48, 0.08);
}

.biz-port__identity {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 0.85rem;
  align-items: start;
  margin-bottom: 0.85rem;
}

.biz-port__logo {
  width: 72px;
  height: 72px;
  border-radius: 16px;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: 0 4px 14px rgba(28, 36, 48, 0.12);
  background: #f3f1ed;
}

.biz-port__logo--ph {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c45c26;
  font-size: 1.4rem;
}

.biz-port__card h1 {
  margin: 0 0 0.25rem;
  font-size: 1.45rem;
  line-height: 1.2;
}

.biz-port__cat {
  margin: 0;
  color: #5c6570;
  font-size: 0.88rem;
}

.biz-port__desc {
  margin: 0.75rem 0 0;
  line-height: 1.5;
  color: #1c2430;
}

.biz-port__caps {
  margin: 0.75rem 0 0;
  padding: 0.7rem 0.8rem;
  border-radius: 10px;
  background: #f7f4ef;
  font-size: 0.9rem;
}

.biz-port__back {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0.85rem 1rem 0;
  color: #5c6570;
  text-decoration: none;
  font-size: 0.86rem;
  font-weight: 600;
}

.biz-show__hero-fallback--emoji {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
  font-size: 3rem;
  background: linear-gradient(135deg, #fff7ed, #f3f1ed);
}
button.biz-show__cta {
  border: none;
  cursor: pointer;
  font: inherit;
}
/* Item photo showcase */
.biz-item__gallery {
  margin: 1rem 0 1.5rem;
  padding: 0 0.25rem;
}
.biz-item__gallery h2 {
  font-size: 1rem;
  margin: 0 0 0.65rem;
  color: #1c2430;
}
.biz-item__gallery .biz-offering-gallery {
  aspect-ratio: 16 / 10;
}
.biz-item__gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
}
.biz-item__gallery-grid img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 12px;
  background: #ebe7e1;
}
@media (min-width: 640px) {
  .biz-item__gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .biz-show {
    max-width: 960px;
    padding-bottom: 4rem;
  }

  .biz-show__mast {
    margin: 1rem 1.35rem 0;
    padding: 1.5rem 1.5rem 1.55rem;
  }

  .biz-show__title {
    font-size: clamp(1.55rem, 2.4vw, 1.95rem);
  }

  .biz-show__lead {
    max-width: 40rem;
    font-size: 1rem;
  }

  .biz-show__hero {
    margin: 0.85rem 1.35rem 0;
  }

  .biz-show__search,
  .biz-show__chips,
  .biz-show__meta,
  .biz-show__section-head,
  .biz-show__list-cta {
    margin-left: 1.35rem;
    margin-right: 1.35rem;
  }

  .biz-show-page .um-hub-body.biz-show .biz-show__search,
  .biz-show-page .um-hub-body.biz-show .biz-show__chips,
  .biz-show-page .um-hub-body.biz-show .biz-show__meta,
  .biz-show-page .um-hub-body.biz-show .biz-show__section-head {
    margin-left: 0;
    margin-right: 0;
  }

  .biz-show-page .um-hub-body.biz-show .biz-show__search {
    max-width: 36rem;
  }

  .biz-show__feed {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
    padding: 0.35rem 0.85rem 0;
  }

  .biz-moment {
    margin: 0;
  }

  .biz-hub__about,
  .biz-hub__contact,
  .biz-hub__owner {
    margin-left: 1.35rem;
    margin-right: 1.35rem;
  }

  .biz-port__wrap {
    margin-left: 1.35rem;
    margin-right: 1.35rem;
  }

  .biz-item__gallery .biz-offering-gallery {
    aspect-ratio: 21 / 10;
  }
}

@media (min-width: 1024px) {
  .biz-show {
    max-width: 1120px;
  }

  .biz-show__mast {
    margin: 1.15rem 1.5rem 0;
    display: grid;
    grid-template-columns: 1.4fr auto;
    gap: 1rem;
    align-items: end;
  }

  .biz-show__mast-actions {
    justify-content: flex-end;
  }

  .biz-show__feed {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    padding: 0.5rem 1.15rem 0;
  }

  .biz-show__rail-scroll,
  .biz-show__partner-scroll {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

@media (min-width: 1280px) {
  .biz-show {
    max-width: 1200px;
  }

  .biz-show__feed {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .biz-show__list-cta {
    flex-direction: column;
    align-items: stretch;
  }
  .biz-show__list-cta .biz-show__cta {
    width: 100%;
  }
}

.biz-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0.65rem 0 0;
}
.biz-trust__badge {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.55rem;
  border-radius: 999px;
  background: #fff7ed;
  color: #9a3412;
  font-size: 0.72rem;
  font-weight: 700;
}
.biz-hub__wa-lead {
  margin: 0 0 0.65rem;
  font-size: 0.88rem;
  font-weight: 700;
  color: #1c2430;
}
.biz-hub__tagline-line {
  margin: 0 0 0.5rem;
  color: #5c6570;
}

/* -- Shared business page (detail + offering) -- */
body.biz-page {
  background: #f3f1ed;
}
body.biz-page .content-wrapper,
body.biz-page .content-inner {
  background: #f3f1ed;
}
.biz-page {
  --biz-ink: var(--unimart-text, #1a1a2e);
  --biz-muted: var(--unimart-text-muted, #6b7280);
  --biz-accent: var(--unimart-orange, #f68b1e);
  --biz-line: var(--unimart-border, #e8e8e8);
  max-width: 720px;
  margin: 0 auto;
  padding: 0 0 5rem;
  color: var(--biz-ink);
  font-family: "Segoe UI", "Trebuchet MS", sans-serif;
}
.biz-page__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.75rem 1rem 0;
}
.biz-page__back {
  color: var(--biz-muted);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
}
.biz-page__back:hover { color: var(--biz-ink); }
.biz-page__hero {
  margin: 0.75rem 1rem 0;
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--biz-line);
  color: var(--biz-ink);
}
.biz-page__hero-visual {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  background: #2c3e50;
  overflow: hidden;
}
.biz-page__hero-media {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.biz-page__hero-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 180px;
  font-size: 3rem;
  background: linear-gradient(145deg, #2c3e50, #1c2430);
}
.biz-page__hero-shade {
  display: none;
}
.biz-page__hero-copy {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 1rem 1.1rem 1.15rem;
  background: #fff;
  color: var(--biz-ink);
}
.biz-page__logo {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  object-fit: cover;
  border: 1px solid var(--biz-line);
  flex-shrink: 0;
}
.biz-page__eyebrow {
  margin: 0 0 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--biz-muted);
}
.biz-page__title {
  margin: 0 0 0.35rem;
  font-size: clamp(1.25rem, 4vw, 1.55rem);
  line-height: 1.25;
  font-weight: 700;
  color: var(--biz-ink);
}
.biz-page__lead,
.biz-page__meta {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.4;
  color: var(--biz-muted);
}
.biz-page__price {
  margin: 0 0 0.25rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--biz-accent);
}
.biz-page__cta {
  margin: 0.85rem 1rem 0;
}
.biz-page__section {
  margin: 1.15rem 1rem 0;
  padding: 1rem;
  background: #fff;
  border: 1px solid var(--biz-line);
  border-radius: 14px;
}
.biz-page__section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}
.biz-page__section-head h2 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
}
.biz-page__section-head p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--biz-muted);
}
.biz-page__offerings {
  display: grid;
  gap: 0.75rem;
}
.biz-page .biz-offering-card {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 0.75rem;
  align-items: stretch;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--biz-line);
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}
.biz-page .biz-offering-card__media {
  display: block;
  width: 88px;
  min-height: 88px;
  background: #f3f1ed;
}
.biz-page .biz-offering-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.biz-page .biz-offering-card__media--empty {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--biz-muted);
}
.biz-page .biz-offering-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.65rem 0.65rem 0.65rem 0;
  min-width: 0;
}
.biz-page .biz-offering-card__type {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--biz-accent);
}
.biz-page .biz-offering-card__title {
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.25;
}
.biz-page .biz-offering-card__price {
  display: inline-block;
  margin-top: 0.15rem;
  font-size: 0.95rem;
  font-weight: 800;
  color: #c2410c;
}
.biz-page .biz-offering-card__subtitle,
.biz-page .biz-offering-card__copy {
  font-size: 0.8rem;
  color: var(--biz-muted);
  line-height: 1.35;
}
.biz-page__about {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--biz-muted);
}
.biz-page__facts {
  margin: 0.75rem 0 0;
  display: grid;
  gap: 0.45rem;
}
.biz-page__facts div {
  display: grid;
  grid-template-columns: 7rem 1fr;
  gap: 0.5rem;
  font-size: 0.85rem;
}
.biz-page__facts dt {
  margin: 0;
  color: var(--biz-muted);
  font-weight: 600;
}
.biz-page__facts dd { margin: 0; }
.biz-page__photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
}
.biz-page__photo-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 10px;
}
.biz-page__chips {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
}
.biz-page__chips li {
  padding: 0.3rem 0.6rem;
  border-radius: 999px;
  background: #f3f1ed;
  font-size: 0.78rem;
  font-weight: 600;
}
.biz-page__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 0.75rem;
}
.biz-page__socials a {
  color: var(--biz-accent);
  font-weight: 600;
  font-size: 0.88rem;
}
.biz-page__empty {
  margin: 1.15rem 1rem;
  padding: 1.5rem 1.15rem;
  text-align: center;
  background: #fffaf5;
  border-radius: 16px;
  border: 1px dashed #fdba74;
}
.biz-page__empty p {
  margin: 0;
  font-weight: 700;
  color: var(--biz-ink);
}
.biz-page__empty-hint {
  margin: 0.45rem 0 0 !important;
  font-weight: 500 !important;
  font-size: 0.88rem;
  color: var(--biz-muted) !important;
}
.biz-page__btn {
  display: inline-flex;
  margin-top: 0.85rem;
  padding: 0.65rem 1.15rem;
  border-radius: 999px;
  background: #f68b1e;
  color: #fff !important;
  font-weight: 700;
  text-decoration: none;
}
.biz-page__owner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin: 1rem;
  padding: 0.85rem 1rem;
  background: #fff;
  border: 1px solid var(--biz-line);
  border-radius: 12px;
  font-size: 0.88rem;
  font-weight: 600;
}
.biz-page__owner a { color: var(--biz-accent); text-decoration: none; }

.biz-page__desc-lines {
  list-style: none;
  margin: 0;
  padding: 0 1rem 1rem;
}
.biz-page__desc-lines li {
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--biz-line);
  font-size: 0.92rem;
  color: var(--biz-ink);
}
.biz-page__desc-lines li:last-child { border-bottom: 0; }

.biz-page__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  list-style: none;
  margin: 0.65rem 0 0;
  padding: 0;
}
.biz-page__trust li {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.28rem 0.55rem;
  border-radius: 999px;
  background: rgba(246, 139, 30, 0.1);
  color: #9a3412;
}
.biz-page__owner-pulse {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.65rem;
  margin: 0.85rem 1rem;
  padding: 0.75rem 1rem;
  background: #fff7ed;
  border: 1px solid #fed7aa;
  border-radius: 12px;
  font-size: 0.85rem;
}
.biz-page__owner-pulse p { margin: 0; color: var(--biz-ink); }
.biz-page__owner-pulse a {
  font-weight: 700;
  color: var(--biz-accent);
  text-decoration: none;
  white-space: nowrap;
}
.biz-page__junior {
  margin: 1rem;
  padding: 0.85rem 1rem;
  border-top: 1px solid var(--biz-line);
  font-size: 0.88rem;
  font-weight: 700;
}
.biz-page__junior a {
  color: var(--biz-accent);
  text-decoration: none;
}
.biz-page__opp-list {
  list-style: none;
  margin: 0;
  padding: 0 1rem 1rem;
}
.biz-page__opp-list li {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--biz-line);
  font-size: 0.9rem;
}
.biz-page__opp-list li span {
  color: var(--biz-muted);
  font-size: 0.8rem;
}

@media (min-width: 640px) {
  .biz-page .biz-offering-card {
    grid-template-columns: 120px 1fr;
  }
  .biz-page .biz-offering-card__media {
    width: 120px;
    min-height: 110px;
  }
}

/* -- Business detail hub (um-hub-hero) -- */
body.biz-detail-page {
  background: var(--unimart-bg-muted, #f5f6f8);
}

body.biz-detail-page .content-wrapper,
body.biz-detail-page .content-inner {
  background: var(--unimart-bg-muted, #f5f6f8);
}

body.biz-detail-page.um-hub-hero-page .content-wrapper.full-width,
body.biz-detail-page.um-hub-hero-page .content-wrapper.full-width .content-inner {
  max-width: none !important;
  width: 100% !important;
  padding-top: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin: 0 !important;
}

body.biz-detail-page.biz-page {
  background: var(--unimart-bg-muted, #f5f6f8);
  max-width: none;
  margin: 0;
  padding: 0;
  font-family: var(--unimart-font-sans, Manrope, "Segoe UI", sans-serif);
}

.biz-detail-hero__copy {
  animation: biz-detail-rise 0.55s ease both;
}

.biz-detail-hero__logo {
  display: block;
  width: 56px;
  height: 56px;
  margin: 0 auto 0.75rem;
  border-radius: 14px;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
}

.biz-detail-hero__wa {
  animation: biz-detail-wa-pulse 2.6s ease-out infinite;
}

@keyframes biz-detail-rise {
  from {
    opacity: 0;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes biz-detail-wa-pulse {
  0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.45); }
  70% { box-shadow: 0 0 0 12px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

.um-hub-body.biz-detail {
  --biz-ink: var(--unimart-text, #1a1a2e);
  --biz-muted: var(--unimart-text-muted, #6b7280);
  --biz-accent: var(--unimart-orange, #f68b1e);
  --biz-line: rgba(44, 62, 80, 0.1);
  color: var(--biz-ink);
  font-family: var(--unimart-font-sans, Manrope, "Segoe UI", sans-serif);
  max-width: min(96vw, 1100px);
  margin-inline: auto;
  padding: 0.85rem clamp(0.85rem, 2.5vw, 1.5rem) 5.5rem;
  box-sizing: border-box;
}

.biz-detail__toolbar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem;
  margin: 0 0 0.85rem;
}

.biz-detail__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  list-style: none;
  margin: 0 0 0.85rem;
  padding: 0;
}

.biz-detail__trust li {
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  background: rgba(246, 139, 30, 0.12);
  color: var(--biz-accent);
  font-size: 0.75rem;
  font-weight: 650;
}

.biz-detail__contact {
  margin: 0 0 1rem;
}

.biz-detail__owner-pulse {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  margin: 0 0 1rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  background: rgba(44, 62, 80, 0.04);
  border: 1px solid var(--biz-line);
}

.biz-detail__owner-pulse p {
  margin: 0;
  font-size: 0.9rem;
}

.biz-detail__owner-pulse a {
  color: var(--biz-accent);
  font-weight: 650;
  text-decoration: none;
}

.biz-detail__section {
  margin: 0 0 1.35rem;
}

.biz-detail__section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 0.75rem;
  margin: 0 0 0.75rem;
}

.biz-detail__section-head h2 {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 750;
  letter-spacing: -0.02em;
}

.biz-detail__section-head p {
  margin: 0;
  color: var(--biz-muted);
  font-size: 0.85rem;
}

.biz-detail__mosaic {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

@media (min-width: 720px) {
  .biz-detail__mosaic {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.7rem;
  }
}

@media (min-width: 1024px) {
  .biz-detail__mosaic {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.biz-detail__tile {
  display: block;
  text-decoration: none;
  color: inherit;
  border-radius: 14px;
  overflow: hidden;
  background: #1c2430;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.biz-detail__tile:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(44, 62, 80, 0.18);
}

.biz-detail__tile-media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.biz-detail__tile-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.biz-detail__tile:hover .biz-detail__tile-media img {
  transform: scale(1.04);
}

.biz-detail__tile-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 160px;
  font-size: 2rem;
  color: rgba(255, 255, 255, 0.7);
  background: linear-gradient(145deg, #2c3e50, #1c2430);
}

.biz-detail__tile-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.05) 35%,
    rgba(20, 24, 32, 0.82) 100%
  );
  pointer-events: none;
}

.biz-detail__tile-type {
  position: absolute;
  top: 0.55rem;
  left: 0.55rem;
  z-index: 1;
  padding: 0.22rem 0.5rem;
  border-radius: 6px;
  background: var(--biz-accent);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.biz-detail__tile-float {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  padding: 0.75rem 0.7rem;
  color: #fff;
}

.biz-detail__tile-title {
  display: block;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.01em;
}

.biz-detail__tile-meta {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.88);
}

.biz-detail__photo-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.45rem;
}

.biz-detail__photo-grid img {
  display: block;
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 10px;
}

.biz-detail__about {
  margin: 0 0 0.85rem;
  font-size: 0.95rem;
  line-height: 1.55;
  color: var(--biz-ink);
}

.biz-detail__facts {
  display: grid;
  gap: 0.55rem;
  margin: 0 0 0.85rem;
}

.biz-detail__facts div {
  display: grid;
  grid-template-columns: 7rem 1fr;
  gap: 0.5rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--biz-line);
  font-size: 0.9rem;
}

.biz-detail__facts dt {
  margin: 0;
  color: var(--biz-muted);
  font-weight: 600;
}

.biz-detail__facts dd {
  margin: 0;
}

.biz-detail__meta {
  margin: 0 0 0.75rem;
  color: var(--biz-muted);
  font-size: 0.88rem;
}

.biz-detail__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.biz-detail__socials a {
  color: var(--biz-accent);
  font-weight: 650;
  text-decoration: none;
}

.biz-detail__opp-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.biz-detail__opp-list li {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.75rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--biz-line);
  font-size: 0.92rem;
}

.biz-detail__opp-list li span {
  color: var(--biz-muted);
  font-size: 0.8rem;
}

.biz-detail__junior {
  margin: 1.25rem 0 0;
  padding: 1rem 0;
  border-top: 1px solid var(--biz-line);
}

.biz-detail__junior a {
  color: var(--biz-ink);
  font-weight: 650;
  text-decoration: none;
}

.biz-detail__junior a:hover {
  color: var(--biz-accent);
}

.biz-detail__owner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.1rem;
  margin: 1rem 0 0;
  padding: 1rem 0 0;
  border-top: 1px solid var(--biz-line);
}

.biz-detail__owner a {
  color: var(--biz-accent);
  font-weight: 650;
  text-decoration: none;
  font-size: 0.9rem;
}

@media (prefers-reduced-motion: reduce) {
  .biz-detail-hero__copy,
  .biz-detail-hero__wa,
  .biz-detail__tile,
  .biz-detail__tile-media img {
    animation: none !important;
    transition: none !important;
  }
}
