/* Specials Nite — paid listings, sponsor banner, amenities */

/* ── Sponsor banner ── */
.sponsor-banner {
  margin: 0 0 14px;
  border: 1px solid var(--border, #2a2f3a);
  border-radius: 12px;
  overflow: hidden;
  background: linear-gradient(90deg, rgba(245,179,1,.12), rgba(245,179,1,.03));
}
.sponsor-banner .sponsor-link { display: flex; align-items: center; gap: 14px; text-decoration: none; color: inherit; }
.sponsor-banner .sponsor-img { width: 120px; height: 72px; object-fit: cover; flex: 0 0 auto; }
.sponsor-copy { display: flex; flex-direction: column; gap: 2px; padding: 10px 14px; min-width: 0; }
.sponsor-copy strong { font-size: 1rem; overflow-wrap: anywhere; }
.sponsor-body { font-size: .9rem; opacity: .85; overflow-wrap: anywhere; }
.sponsor-tag {
  align-self: flex-start; font-size: .68rem; text-transform: uppercase; letter-spacing: .05em;
  background: #f5b301; color: #1a1a1a; border-radius: 4px; padding: 1px 6px; font-weight: 700;
}

/* ── Featured strip ── */
.featured-strip { margin: 0 0 12px; }
.featured-strip-head {
  display: flex; align-items: center; justify-content: space-between;
  font-weight: 700; font-size: .95rem; margin: 0 0 8px; gap: 8px;
}
.feat-advertise { font-size: .8rem; font-weight: 600; text-decoration: none; color: var(--accent, #f5b301); }
.featured-strip-cards { display: flex; gap: 10px; overflow-x: auto; padding-bottom: 4px; -webkit-overflow-scrolling: touch; }
.feat-card {
  flex: 0 0 auto; min-width: 190px; max-width: 240px; text-align: left; cursor: pointer;
  background: var(--card, #171a21); border: 1px solid var(--border, #2a2f3a); border-radius: 12px;
  padding: 10px 12px; color: inherit; display: flex; flex-direction: column; gap: 4px;
}
.feat-card:hover { border-color: var(--accent, #f5b301); }
.feat-card.is-priority { border-color: #f5b301; box-shadow: 0 0 0 1px #f5b301 inset; background: linear-gradient(180deg, rgba(245,179,1,.10), transparent); }
.feat-card-top { display: flex; align-items: center; justify-content: space-between; gap: 6px; }
.feat-card-name { font-weight: 700; font-size: .95rem; overflow-wrap: anywhere; }
.feat-card-loc { font-size: .8rem; }
.feat-rating { font-size: .82rem; color: #f5b301; white-space: nowrap; }
.feat-badge { font-size: .68rem; font-weight: 700; border-radius: 5px; padding: 1px 6px; white-space: nowrap; }
.feat-badge-priority { background: #f5b301; color: #1a1a1a; }
.feat-badge-fallback { background: rgba(255,255,255,.08); color: inherit; border: 1px solid var(--border, #2a2f3a); }

/* ── Priority map pin ── */
.venue-pin-priority {
  width: 34px; height: 34px; border-radius: 50% 50% 50% 0; transform: rotate(-45deg);
  background: radial-gradient(circle at 35% 30%, #ffe07a, #f5b301);
  border: 2px solid #fff; box-shadow: 0 3px 8px rgba(0,0,0,.5), 0 0 0 2px rgba(245,179,1,.5);
  display: flex; align-items: center; justify-content: center;
}
.venue-pin-priority .pin-crown { transform: rotate(45deg); color: #1a1a1a; font-size: 15px; line-height: 1; }
.venue-pin-priority .pin-label {
  transform: rotate(45deg); position: absolute; top: -8px; right: -8px;
  background: #1a1a1a; color: #f5b301; font-size: 10px; font-weight: 700;
  border-radius: 8px; padding: 0 4px; border: 1px solid #f5b301;
}

/* ── Amenities: checkboxes in forms & filter sheet ── */
.amenity-fieldset, .amenity-filter-wrap { border: 1px solid var(--border, #2a2f3a); border-radius: 10px; padding: 10px 12px; margin: 12px 0; }
.amenity-fieldset legend, .amenity-filter-head { font-weight: 700; font-size: .9rem; padding: 0 4px; }
.amenity-filter-head { margin-bottom: 6px; }
.amenity-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 6px 14px; }
.amenity-check { display: flex; align-items: center; gap: 8px; font-size: .9rem; margin: 0; cursor: pointer; min-height: 32px; }
.amenity-check input { width: 18px; height: 18px; flex: 0 0 auto; }

/* ── Amenity chips on venue detail ── */
.venue-amenities { margin: 12px 0; }
.venue-amenities h3 { font-size: .95rem; margin: 0 0 6px; }
.amenity-chips { display: flex; flex-wrap: wrap; gap: 6px; }
.amenity-chip {
  font-size: .8rem; background: rgba(255,255,255,.06); border: 1px solid var(--border, #2a2f3a);
  border-radius: 14px; padding: 3px 10px;
}
.status-badge.badge-priority { background: #f5b301; color: #1a1a1a; }

/* ── Admin: Paid tab ── */
.paid-subtabs { display: flex; gap: 6px; margin-bottom: 12px; flex-wrap: wrap; }
.paid-subtab { border: 1px solid var(--border, #2a2f3a); background: transparent; color: inherit; border-radius: 8px; padding: 7px 14px; cursor: pointer; font-size: .9rem; min-height: 40px; }
.paid-subtab.active { background: var(--accent, #f5b301); color: #1a1a1a; border-color: var(--accent, #f5b301); font-weight: 700; }
.paid-head { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-bottom: 10px; }
.paid-head h3 { margin: 0; font-size: 1rem; }
.paid-form { border: 1px solid var(--border, #2a2f3a); border-radius: 10px; padding: 12px; margin-bottom: 14px; }
.paid-price-group { margin-bottom: 18px; }
.paid-price-group h4 { margin: 0 0 4px; font-size: .95rem; }
.paid-note { font-size: .82rem; margin: 0 0 8px; }
.paid-price-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 8px 0; border-bottom: 1px solid var(--border, #2a2f3a); flex-wrap: wrap; }
.paid-price-label { font-size: .9rem; min-width: 40%; overflow-wrap: anywhere; }
.paid-price-edit { display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.paid-price-input, .paid-fx-input { width: 96px; }
.paid-usd { opacity: .7; }

/* ── Advertise info page ── */
.advertise-hero { text-align: center; padding: 20px 0 10px; }
.advertise-tiers { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 16px; margin: 20px 0; }
.advertise-tier { border: 1px solid var(--border, #2a2f3a); border-radius: 12px; padding: 18px; }
.advertise-tier h3 { margin-top: 0; }
.advertise-price { font-size: 1.5rem; font-weight: 800; color: var(--accent, #f5b301); }
.advertise-table { width: 100%; border-collapse: collapse; margin: 12px 0; }
.advertise-table th, .advertise-table td { text-align: left; padding: 8px 10px; border-bottom: 1px solid var(--border, #2a2f3a); font-size: .92rem; }

/* ── Upgrade wizard ── */
.sn-wiz-overlay { position: fixed; inset: 0; z-index: 1200; background: rgba(0,0,0,.6); display: flex; align-items: flex-start; justify-content: center; padding: 24px 12px; overflow-y: auto; }
.sn-wiz { position: relative; width: 100%; max-width: 480px; background: var(--card, #14181f); color: var(--text, #e9edf2); border: 1px solid var(--border, #2a2f3a); border-radius: 14px; padding: 20px; margin: auto; box-shadow: 0 12px 40px rgba(0,0,0,.5); }
.sn-wiz-close { position: absolute; top: 8px; right: 10px; width: 40px; height: 40px; background: transparent; border: none; color: var(--text, #e9edf2); font-size: 1.6rem; line-height: 1; cursor: pointer; }
.sn-wiz-title { margin: 0 30px 10px 0; font-size: 1.15rem; }
.sn-wiz-search { width: 100%; margin: 6px 0 10px; }
.sn-wiz-results { display: flex; flex-direction: column; gap: 6px; max-height: 320px; overflow-y: auto; }
.sn-wiz-vrow { text-align: left; background: var(--bg, #0e1116); border: 1px solid var(--border, #2a2f3a); border-radius: 8px; padding: 10px 12px; min-height: 44px; cursor: pointer; color: inherit; }
.sn-wiz-vrow:hover { border-color: var(--accent, #f5b301); }
.sn-wiz-products { display: flex; flex-direction: column; gap: 10px; margin: 12px 0; }
.sn-wiz-prod { display: flex; flex-direction: column; gap: 2px; border: 1px solid var(--border, #2a2f3a); border-radius: 10px; padding: 12px 14px 12px 40px; position: relative; cursor: pointer; min-height: 44px; }
.sn-wiz-prod input { position: absolute; left: 14px; top: 16px; }
.sn-wiz-prod.active { border-color: var(--accent, #f5b301); background: rgba(245,179,1,.08); }
.sn-wiz-prod-name { font-weight: 700; }
.sn-wiz-field { margin: 10px 0; }
.sn-wiz-field label { display: flex; flex-direction: column; gap: 4px; font-size: .9rem; }
.sn-wiz-field select { width: 100%; }
.sn-wiz-quote { border: 1px dashed var(--border, #2a2f3a); border-radius: 10px; padding: 12px; margin: 12px 0; }
.sn-wiz-price { font-size: 1.6rem; font-weight: 800; color: var(--accent, #f5b301); }
.sn-wiz-price-local { font-size: 1rem; margin-top: 2px; }
.sn-wiz-save { display:inline-block; margin-top: 6px; font-size: .82rem; font-weight: 600; color: #0b7a3b; background: rgba(37,196,110,.14); border: 1px solid rgba(37,196,110,.35); border-radius: 999px; padding: 2px 10px; }
.sn-wiz-price-note { margin-top: 6px; font-size: .82rem; }
.sn-wiz-summary { display: flex; flex-direction: column; gap: 8px; margin: 12px 0; }
.sn-wiz-summary > div { display: flex; justify-content: space-between; gap: 12px; border-bottom: 1px solid var(--border, #2a2f3a); padding-bottom: 6px; }
.sn-wiz-actions { display: flex; gap: 10px; justify-content: flex-end; margin-top: 14px; flex-wrap: wrap; }
.sn-wiz-actions .primary-button, .sn-wiz-actions .btn-secondary { min-height: 44px; }
.venue-portal-upgrade { border: 1px solid var(--accent, #f5b301); border-radius: 12px; padding: 14px; margin: 16px 0; background: rgba(245,179,1,.06); }
.venue-portal-upgrade h3 { margin: 0 0 6px; }
.venue-portal-upgrade.is-active { border-color: rgba(37,196,110,.5); background: rgba(37,196,110,.08); }
.sn-wiz-active { border: 1px solid rgba(37,196,110,.45); background: rgba(37,196,110,.1); border-radius: 10px; padding: 10px 12px; margin: 12px 0; font-size: .88rem; }
.owner-order-row .owner-order-status { text-transform: capitalize; font-size: .78rem; font-weight: 700; border-radius: 999px; padding: 3px 10px; border: 1px solid var(--border, #2a2f3a); }
.owner-order-row .owner-order-status.is-paid { color: #0b7a3b; background: rgba(37,196,110,.14); border-color: rgba(37,196,110,.35); }
.owner-order-row .owner-order-status.is-pending { color: #8a6100; background: rgba(245,179,1,.16); border-color: rgba(245,179,1,.4); }
.owner-order-row .owner-order-status.is-cancelled, .owner-order-row .owner-order-status.is-failed { color: #a12222; background: rgba(224,49,49,.12); border-color: rgba(224,49,49,.35); }

/* ── Mobile ── */
@media (max-width: 620px) {
  .amenity-grid { grid-template-columns: 1fr; }
  .sponsor-banner .sponsor-img { width: 84px; height: 64px; }
  .feat-card { min-width: 160px; }
  .paid-price-label { min-width: 100%; }
  .advertise-tiers { grid-template-columns: 1fr; }
  .sn-wiz-overlay { padding: 10px; }
  .sn-wiz { padding: 16px; }
  .sn-wiz-actions { justify-content: stretch; }
  .sn-wiz-actions .primary-button { flex: 1; }
}
