/* ============================================
   Listing + Detail page styles (Hotels, Restaurants)
   ============================================ */

.listing-hero { padding: 44px 0 24px; background: var(--bg-tint); }
.breadcrumb { font-size: 0.82rem; color: var(--ink-soft); margin-bottom: 14px; }
.breadcrumb a { color: var(--brand-blue); }
.editorial-block { display: grid; grid-template-columns: 220px 1fr; gap: 26px; margin-bottom: 40px; align-items: start; }
.editorial-block img { border-radius: 8px; aspect-ratio: 4/3; object-fit: cover; width: 100%; }
.editorial-block h3 { margin-bottom: 0.5em; }
@media (max-width: 700px) { .editorial-block { grid-template-columns: 1fr; } }
.highlight-banner { background: var(--brand-orange); padding: 46px 0; }
.highlight-banner h2 { color: #fff; margin-bottom: 0.3em; }
.highlight-banner .search-row { display: flex; gap: 10px; max-width: 560px; margin-top: 20px; }
.highlight-banner input { flex: 1; padding: 13px 18px; border-radius: 6px; border: none; font-family: var(--font); }
.highlight-banner button { padding: 13px 24px; border-radius: 6px; border: none; background: var(--brand-blue-deep); color: #fff; font-weight: 600; font-family: var(--font); cursor: pointer; }

/* ---------- Filter bar (visual for now) ---------- */
.filter-bar { display: flex; flex-wrap: wrap; gap: 10px; margin: 18px 0 26px; }
.filter-pill {
  border: 1.5px solid var(--brand-blue); color: var(--brand-blue);
  background: #fff; font-size: 0.8rem; font-weight: 600; letter-spacing: 0.03em;
  text-transform: uppercase; padding: 8px 16px; border-radius: 20px;
}
.results-count { color: var(--ink-soft); font-size: 0.92rem; margin-bottom: 24px; }

/* ---------- Badges ---------- */
.badge { display: inline-block; font-size: 0.7rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; padding: 4px 10px; border-radius: 4px; margin-right: 6px; }
.badge-sponsored { background: #E4F1F8; color: var(--brand-blue-deep); }
.badge-editors { background: var(--brand-orange); color: #fff; }
.badge-verified { background: var(--bg-tint); color: var(--ink-soft); border: 1px solid var(--line); }

/* ---------- Horizontal listing row (Miami-style list view) ---------- */
.listing-row {
  display: grid; grid-template-columns: 260px 1fr; gap: 26px;
  border: 1px solid var(--line); border-radius: 10px; overflow: hidden;
  margin-bottom: 22px; background: #fff; transition: box-shadow .15s ease;
}
.listing-row:hover { box-shadow: 0 14px 30px rgba(4,61,90,0.10); }
.listing-row-media { position: relative; aspect-ratio: 4/3; }
.listing-row-media img { width: 100%; height: 100%; object-fit: cover; }
.listing-row-body { padding: 20px 24px 20px 0; display: flex; flex-direction: column; justify-content: center; }
.listing-row-top { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.listing-row-title { font-family: var(--font); font-weight: 600; font-size: 1.25rem; color: var(--brand-blue-deep); margin: 4px 0 8px; }
.listing-row-title a { color: inherit; }
.listing-row-excerpt { color: var(--ink-soft); font-size: 0.93rem; font-weight: 300; margin-bottom: 10px; max-width: 640px; }
.listing-row-meta { font-size: 0.78rem; font-weight: 600; color: var(--ink-soft); display: flex; gap: 14px; align-items: center; }
.listing-row-meta .price { color: var(--brand-orange); }
.listing-row-arrow { color: var(--brand-blue); font-size: 1.2rem; }
@media (max-width: 640px) { .listing-row { grid-template-columns: 1fr; } .listing-row-body { padding: 16px 20px; } }

/* ---------- Detail page hero ---------- */
.detail-hero { position: relative; }
.detail-hero-media { aspect-ratio: 21/9; overflow: hidden; }
.detail-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.detail-title-block { padding: 28px 0 8px; }
.detail-title-block h1 { font-size: clamp(1.9rem, 4vw, 2.8rem); margin-bottom: 0.2em; }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin: 20px 0; }
.gallery-grid a { display: block; aspect-ratio: 1/1; border-radius: 6px; overflow: hidden; }
.gallery-grid img { width: 100%; height: 100%; object-fit: cover; transition: transform .2s ease; }
.gallery-grid a:hover img { transform: scale(1.05); }
@media (max-width: 700px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }

/* ---------- Two column detail layout ---------- */
.detail-columns { display: grid; grid-template-columns: 1.6fr 1fr; gap: 46px; align-items: start; }
@media (max-width: 900px) { .detail-columns { grid-template-columns: 1fr; } }
.detail-side { position: sticky; top: 90px; border: 1px solid var(--line); border-radius: 10px; padding: 22px; background: var(--bg-tint); }
.detail-side .price-tag { font-size: 1.5rem; font-weight: 700; color: var(--brand-blue-deep); margin-bottom: 4px; }
.detail-side .btn { width: 100%; justify-content: center; margin-top: 14px; }

/* ---------- Amenities ---------- */
.amenities-list { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 10px 20px; }
.amenities-list li { display: flex; align-items: center; gap: 8px; font-size: 0.92rem; color: var(--ink-soft); }
.amenities-list li::before { content: "✓"; color: var(--brand-orange); font-weight: 700; }

/* ---------- Map ---------- */
.map-embed { border-radius: 8px; overflow: hidden; border: 1px solid var(--line); margin: 8px 0; }
.map-embed iframe { width: 100%; height: 260px; border: 0; display: block; }

/* ---------- Nearby section ---------- */
.nearby-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 18px; }
.nearby-card { border: 1px solid var(--line); border-radius: 8px; padding: 16px 18px; }
.nearby-card .nearby-type { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--brand-orange); }
.nearby-card h4 { margin: 6px 0 0; font-size: 1rem; color: var(--brand-blue-deep); }

/* ---------- Concept / signature dishes (restaurants) ---------- */
.signature-list { list-style: none; margin: 0; padding: 0; }
.signature-list li { padding: 10px 0; border-bottom: 1px solid var(--line); font-size: 0.95rem; color: var(--ink-soft); }
.signature-list li strong { color: var(--ink); }

/* ---------- Deals ---------- */
.deal-price-row { display: flex; align-items: baseline; gap: 10px; margin: 10px 0; }
.deal-price-current { font-size: 1.4rem; font-weight: 700; color: var(--brand-blue-deep); }
.deal-price-old { font-size: 0.95rem; color: var(--ink-soft); text-decoration: line-through; }
.deal-discount-tag { background: var(--brand-orange); color: #fff; font-size: 0.72rem; font-weight: 700; padding: 3px 8px; border-radius: 4px; }
.deal-price-unit { font-size: 0.8rem; color: var(--ink-soft); }
.deal-features { display: flex; flex-wrap: wrap; gap: 8px; margin: 10px 0; }
.deal-feature-pill { font-size: 0.74rem; color: var(--brand-blue-deep); background: var(--brand-blue-pale); padding: 4px 10px; border-radius: 12px; }
.affiliate-disclosure { background: var(--bg-tint); border: 1px solid var(--line); border-radius: 8px; padding: 16px 20px; font-size: 0.85rem; color: var(--ink-soft); margin: 20px 0; }
.golf-spec-table { width: 100%; border-collapse: collapse; margin: 1.2em 0; }
.golf-spec-table td { padding: 8px 0; border-bottom: 1px solid var(--line); font-size: 0.92rem; }
.golf-spec-table td:first-child { color: var(--ink-soft); width: 45%; }
.golf-spec-table td:last-child { color: var(--ink); font-weight: 600; }
.category-tab-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 24px 0; }
.category-tab { border: 1.5px solid var(--line); background: #fff; color: var(--ink); font-size: 0.85rem; font-weight: 600; padding: 9px 18px; border-radius: 20px; text-decoration: none; }
.category-tab.active, .category-tab:hover { border-color: var(--brand-blue); color: var(--brand-blue); }
.faq-item { border-bottom: 1px solid var(--line); padding: 16px 0; }
.faq-item h4 { margin: 0 0 8px; color: var(--brand-blue-deep); font-size: 1rem; }
.faq-item p { margin: 0; }
