/* ══ OBJECTS CATALOG PAGE ════════════════════════════════════════════ */

/* ── PAGE HERO ── */
.obl-main { padding-bottom: 80px; }

.obl-hero {
  padding: 40px 0 36px;
  border-bottom: 1px solid var(--border);
}
.obl-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 20px;
}
.obl-breadcrumb a { color: var(--accent); text-decoration: none; }
.obl-breadcrumb a:hover { text-decoration: underline; }

.obl-title { margin-bottom: 4px; }
.obl-subtitle {
  font-size: 16px;
  color: var(--muted);
  line-height: 1.6;
  margin-top: 8px;
}

.obl-dates-banner {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 8px 16px;
  background: rgba(212,168,71,.08);
  border: 1px solid rgba(212,168,71,.25);
  border-radius: 8px;
  font-size: 13px;
  color: var(--accent);
}
.obl-dates-clear {
  color: var(--muted);
  text-decoration: none;
  margin-left: 4px;
  transition: color .15s;
}
.obl-dates-clear:hover { color: var(--accent); }

/* ── FILTER TABS ── */
.obl-filters-wrap {
  position: sticky;
  top: 72px;
  z-index: 40;
  background: rgba(13,17,23,.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}
.obl-filters {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 12px 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.obl-filters::-webkit-scrollbar { display: none; }

.obl-filter {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  white-space: nowrap;
  border: 1px solid transparent;
  transition: all .15s;
}
.obl-filter:hover {
  color: var(--ink);
  background: rgba(255,255,255,.05);
}
.obl-filter.active {
  background: rgba(212,168,71,.12);
  border-color: rgba(212,168,71,.35);
  color: var(--accent);
}
.obl-filter-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  background: rgba(255,255,255,.07);
  border-radius: 10px;
  font-size: 11px;
  font-weight: 600;
  color: var(--muted);
}
.obl-filter.active .obl-filter-count {
  background: rgba(212,168,71,.2);
  color: var(--accent);
}

/* ── GRID ── */
.obl-grid-wrap { padding-top: 40px; }

.obl-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

/* ── CARD ── */
.obl-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color .2s, transform .2s, box-shadow .2s;
  display: flex;
  flex-direction: column;
}
.obl-card:hover {
  border-color: rgba(212,168,71,.4);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,.3);
}

/* Photo */
.obl-card-img-wrap {
  position: relative;
  display: block;
  height: 220px;
  overflow: hidden;
  background: var(--bg3);
  flex-shrink: 0;
}
.obl-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .5s ease;
}
.obl-card:hover .obl-card-img { transform: scale(1.05); }

.obl-card-img-ph {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Type tag on photo */
.obl-card-type-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 10px;
  background: rgba(13,17,23,.75);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .07em;
  text-transform: uppercase;
  color: var(--accent);
}

/* Body */
.obl-card-body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.obl-card-capacity {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 6px;
}

.obl-card-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 500;
  color: var(--ink);
  text-decoration: none;
  line-height: 1.3;
  margin-bottom: 12px;
  display: block;
  transition: color .15s;
}
.obl-card-name:hover { color: var(--accent); }

/* Amenity badges */
.obl-card-amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 18px;
}
.obl-card-amenity {
  font-size: 11px;
  padding: 3px 9px;
  background: rgba(255,255,255,.05);
  border: 1px solid var(--border);
  border-radius: 4px;
  color: var(--muted);
}
.obl-card-amenity-more {
  background: rgba(212,168,71,.08);
  border-color: rgba(212,168,71,.2);
  color: var(--accent);
}

/* Footer: price + buttons */
.obl-card-footer {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.obl-card-price {
  display: flex;
  align-items: baseline;
  gap: 3px;
  flex-wrap: wrap;
}
.obl-card-price-from { font-size: 11px; color: var(--muted); }
.obl-card-price-num {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
}
.obl-card-price-cur { font-size: 13px; color: var(--accent); font-weight: 500; }
.obl-card-price-per { font-size: 12px; color: var(--muted); }
.obl-card-price-on-request { font-size: 12px; color: var(--muted); font-style: italic; }

/* Action buttons */
.obl-card-actions { display: flex; gap: 8px; flex-shrink: 0; }

.obl-card-btn-detail {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  border: 1px solid var(--border);
  transition: all .15s;
  white-space: nowrap;
}
.obl-card-btn-detail:hover {
  color: var(--accent);
  border-color: rgba(212,168,71,.4);
}

.obl-card-btn-book {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
  color: #0d1117;
  background: var(--accent);
  text-decoration: none;
  transition: background .15s;
  white-space: nowrap;
}
.obl-card-btn-book:hover { background: var(--accent2); }

/* ── EMPTY STATE ── */
.obl-empty {
  text-align: center;
  padding: 80px 24px;
  color: var(--muted);
}
.obl-empty svg { margin: 0 auto 20px; display: block; }
.obl-empty p { font-size: 15px; }

/* ── NAV ACTIVE ── */
.obj-nav a.active { color: var(--ink); }

/* ── RESPONSIVE ── */
@media(max-width:900px) {
  .obl-grid { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
  .obl-filters-wrap { top: 0; }
}
@media(max-width:600px) {
  .obl-grid { grid-template-columns: 1fr; }
  .obl-card-img-wrap { height: 200px; }
  .obl-card-footer { flex-direction: column; align-items: flex-start; gap: 12px; }
  .obl-card-actions { width: 100%; }
  .obl-card-btn-detail,
  .obl-card-btn-book { flex: 1; text-align: center; }
}
