/* ==========================================================================
   Safari Cards Plugin Styles
   ========================================================================== */

/* --------------------------------------------------------------------------
   Horizontal Card
   -------------------------------------------------------------------------- */
.sf-h-stack { display: flex; flex-direction: column; gap: 24px; width: 100%; }
.sf-h-wrapper { width: 100%; font-family: 'Open Sans', sans-serif; }
.sf-h-card {
  display: flex; width: 100%; border-radius: 16px; overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08); cursor: pointer;
  position: relative; background: #fff; transition: background 0.4s ease;
}
.sf-h-content {
  flex: 0 0 45%; padding: 32px 30px; display: flex; flex-direction: column;
  justify-content: center; position: relative; z-index: 2;
  transition: background 0.4s ease; border-radius: 16px 0 0 16px;
}
.sf-h-title {
  font-family: 'Playfair Display', serif; font-weight: 800; font-size: 26px;
  color: #1a1a1a; margin-bottom: 18px; line-height: 1.2; transition: color 0.4s ease;
}
.sf-h-title a { color: inherit; text-decoration: none; }
.sf-h-title a:hover { color: inherit; text-decoration: underline; }
.sf-h-meta { display: flex; flex-direction: column; gap: 8px; margin-bottom: 18px; }
.sf-h-meta-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; font-weight: 500; color: #333; transition: color 0.4s ease;
}
.sf-h-meta-icon { width: 18px; height: 18px; flex-shrink: 0; }
.sf-h-meta-icon.sf-h-clock svg { fill: none; stroke: #b22222; stroke-width: 2; }
.sf-h-meta-icon.sf-h-location svg { fill: #b22222; }
.sf-h-desc {
  font-size: 14px; color: #777; line-height: 1.5;
  margin-bottom: 22px; transition: color 0.4s ease;
}
.sf-h-actions {
  display: flex; align-items: center; gap: 12px; flex-wrap: wrap;
}
.sf-h-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 28px; border: 1px solid #ddd; border-radius: 8px;
  background: #f9f9f9; color: #1a1a1a; font-family: 'Open Sans', sans-serif;
  font-size: 14px; font-weight: 700; cursor: pointer;
  transition: all 0.3s ease; text-decoration: none; width: fit-content;
}
.sf-h-enquire {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 28px; border: none; border-radius: 8px;
  background: #b22222; color: #fff; font-family: 'Open Sans', sans-serif;
  font-size: 14px; font-weight: 700; cursor: pointer;
  transition: all 0.3s ease; text-decoration: none; width: fit-content;
}
.sf-h-enquire:hover { background: #9a1c1c; }
.sf-h-image {
  flex: 0 0 55%; position: relative; overflow: hidden; min-height: 260px;
}
.sf-h-image img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: filter 0.4s ease, transform 0.4s ease;
}
.sf-h-tag {
  position: absolute; left: -1px; top: 50%; transform: translateY(-50%); z-index: 3;
  writing-mode: vertical-rl; text-orientation: mixed;
  padding: 14px 10px; font-size: 13px; font-weight: 600;
  font-family: 'Open Sans', sans-serif; letter-spacing: 1px;
  border-radius: 0 6px 6px 0; transition: all 0.4s ease;
  background: rgba(255,255,255,0.92); color: #b22222;
}
.sf-h-duration {
  position: absolute; bottom: 20px; right: 24px; z-index: 3;
  padding: 10px 28px; border-radius: 8px; font-size: 16px; font-weight: 700;
  font-family: 'Open Sans', sans-serif; color: #fff;
  transition: all 0.4s ease; background: rgba(168,50,50,0.85);
}
.sf-h-circle {
  position: absolute; bottom: 28px; right: 10px; width: 32px; height: 32px;
  border: 2px solid rgba(168,50,50,0.5); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.4s ease; z-index: 2;
}
.sf-h-circle svg { width: 8px; height: 8px; fill: none; stroke: #b22222; stroke-width: 2; }

/* Horizontal Card Hover */
.sf-h-card:hover .sf-h-content { background: #2c2c2c; }
.sf-h-card:hover .sf-h-title, .sf-h-card:hover .sf-h-title a, .sf-h-card:hover .sf-h-title a:hover { color: #fde8c8; }
.sf-h-card:hover .sf-h-meta-item { color: #fff; }
.sf-h-card:hover .sf-h-desc { color: #aaa; }
.sf-h-card:hover .sf-h-btn, .sf-h-card:hover .sf-h-btn:hover { background: #fff; border-color: #fff; color: #1a1a1a; }
.sf-h-card:hover .sf-h-enquire { background: #fff; color: #b22222; }
.sf-h-card:hover .sf-h-image img { filter: brightness(0.75); transform: scale(1.02); }
.sf-h-card:hover .sf-h-tag { background: #b22222; color: #fff; }
.sf-h-card:hover .sf-h-duration { background: rgba(178,34,34,0.95); }
.sf-h-card:hover .sf-h-circle { opacity: 1; }

/* Horizontal Card Responsive */
@media (max-width: 680px) {
  .sf-h-card { flex-direction: column; }
  .sf-h-content {
    flex: none; border-radius: 16px 16px 0 0;
    padding: 24px 20px;
  }
  .sf-h-title { font-size: 22px; }
  .sf-h-image { flex: none; min-height: 220px; }
  .sf-h-tag {
    top: -1px; left: 50%; transform: translateX(-50%);
    writing-mode: horizontal-tb; border-radius: 0 0 6px 6px;
  }
  .sf-h-duration { padding: 8px 20px; font-size: 14px; }
}

/* --------------------------------------------------------------------------
   Horizontal List with Filter Tabs
   -------------------------------------------------------------------------- */
.sf-hlist {
  width: 100%; font-family: 'Open Sans', sans-serif;
}
.sf-hlist-tabs {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 28px; padding-bottom: 16px;
  border-bottom: 2px solid #f0ebe6;
}
.sf-hlist-tab {
  padding: 8px 20px; border: 1px solid #e0dbd6; border-radius: 24px;
  background: #fff; color: #555; font-family: 'Open Sans', sans-serif;
  font-size: 13px; font-weight: 600; cursor: pointer;
  transition: all 0.25s ease;
}
.sf-hlist-tab:hover {
  border-color: #b22222; color: #b22222;
}
.sf-hlist-tab-active {
  background: #b22222; border-color: #b22222; color: #fff;
}
.sf-hlist-tab-active:hover {
  background: #9a1c1c; border-color: #9a1c1c; color: #fff;
}
.sf-hlist-cards {
  display: flex; flex-direction: column; gap: 24px;
}
.sf-hlist-cards.sf-hlist-loading {
  opacity: 0.4; pointer-events: none;
  transition: opacity 0.2s ease;
}
@media (max-width: 680px) {
  .sf-hlist-tabs { gap: 6px; }
  .sf-hlist-tab { padding: 6px 14px; font-size: 12px; }
}

/* --------------------------------------------------------------------------
   Grid Card (standalone — no sidebar)
   -------------------------------------------------------------------------- */
.sf-g-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
  max-width: 1100px; margin: 0 auto; font-family: 'Open Sans', sans-serif;
}

.sf-g-card {
  background: #f5f2ef; border-radius: 14px;
  cursor: pointer; transition: all 0.4s ease; position: relative;
  overflow: visible;
}
.sf-g-image {
  position: relative; height: 260px; overflow: hidden;
  border-radius: 14px 14px 0 0;
}
.sf-g-image img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.4s ease;
}
.sf-g-duration {
  position: absolute; top: 12px; right: 12px; z-index: 5;
  padding: 6px 16px; border-radius: 8px; font-size: 13px; font-weight: 600;
  font-family: 'Open Sans', sans-serif; transition: all 0.4s ease;
  background: rgba(255,255,255,0.75); color: #333; backdrop-filter: blur(4px);
}
.sf-g-tag {
  position: absolute; left: 20px; top: 246px; z-index: 6;
  padding: 6px 20px; border-radius: 6px; font-size: 13px; font-weight: 600;
  font-family: 'Open Sans', sans-serif; letter-spacing: 0.5px;
  background: #f5f2ef; color: #b22222; transition: all 0.4s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.sf-g-body {
  padding: 28px 22px 22px; transition: background 0.4s ease;
  border-radius: 0 0 14px 14px; position: relative;
}
.sf-g-title {
  font-family: 'Playfair Display', serif; font-weight: 800; font-size: 22px;
  color: #1a1a1a; margin-bottom: 12px; line-height: 1.25; transition: color 0.4s ease;
}
.sf-g-title a { color: inherit; text-decoration: none; }
.sf-g-title a:hover { color: inherit; text-decoration: underline; }
.sf-g-excerpt {
  font-size: 13.5px; font-weight: 400; color: #777;
  line-height: 1.5; margin-bottom: 20px; transition: color 0.4s ease;
}
.sf-g-actions {
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}
.sf-g-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 11px 26px; border: 1px solid #ddd; border-radius: 8px;
  background: #f9f7f5; color: #1a1a1a; font-family: 'Open Sans', sans-serif;
  font-size: 14px; font-weight: 700; cursor: pointer;
  transition: all 0.3s ease; text-decoration: none; width: fit-content;
}
.sf-g-enquire {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 11px 26px; border: none; border-radius: 8px;
  background: #b22222; color: #fff; font-family: 'Open Sans', sans-serif;
  font-size: 14px; font-weight: 700; cursor: pointer;
  transition: all 0.3s ease; text-decoration: none; width: fit-content;
}
.sf-g-enquire:hover { background: #9a1c1c; }

/* Grid Card Hover */
.sf-g-card:hover .sf-g-body { background: #b22222; }
.sf-g-card:hover .sf-g-title, .sf-g-card:hover .sf-g-title a, .sf-g-card:hover .sf-g-title a:hover { color: #fde8c8; }
.sf-g-card:hover .sf-g-excerpt { color: #f0e0d8; }
.sf-g-card:hover .sf-g-duration { background: #b22222; color: #fff; backdrop-filter: none; }
.sf-g-card:hover .sf-g-btn, .sf-g-card:hover .sf-g-btn:hover { background: #fff; border-color: #fff; color: #1a1a1a; }
.sf-g-card:hover .sf-g-enquire { background: #fff; color: #b22222; }
.sf-g-card:hover .sf-g-image img { transform: scale(1.03); }
.sf-g-card:hover .sf-g-tag { background: #f5f2ef; }

/* Grid standalone responsive (no sidebar) */
@media (max-width: 900px) {
  .sf-g-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
  .sf-g-grid { grid-template-columns: 1fr; max-width: 420px; }
  .sf-g-image { height: 220px; }
  .sf-g-tag { top: 206px; }
  .sf-g-title { font-size: 20px; }
  .sf-g-body { padding: 24px 18px 18px; }
}

/* --------------------------------------------------------------------------
   Filter Sidebar + Grid Layout
   -------------------------------------------------------------------------- */
.sf-filter-wrapper {
  display: flex; gap: 32px; align-items: flex-start;
  max-width: 1200px; margin: 0 auto; font-family: 'Open Sans', sans-serif;
}

/* ── Sidebar ── */
.sf-sidebar {
  flex: 0 0 250px; position: sticky; top: 32px;
  align-self: flex-start;
}
.sf-sidebar-toggle {
  display: none; /* hidden on desktop */
}
.sf-sidebar-inner {
  background: #f9f7f5; border-radius: 14px; padding: 24px 20px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.sf-sidebar-section {
  margin-bottom: 24px;
}
.sf-sidebar-section:last-of-type {
  margin-bottom: 20px;
}
.sf-sidebar-heading {
  display: flex; align-items: center; gap: 7px; margin: 0 0 10px;
  font-family: 'Open Sans', sans-serif; font-size: 12px; font-weight: 700;
  color: #555; text-transform: uppercase; letter-spacing: 0.8px;
}
.sf-sidebar-icon {
  width: 14px; height: 14px; color: #b22222; flex-shrink: 0;
}
.sf-sidebar-list {
  list-style: none; margin: 0; padding: 0;
  display: flex; flex-direction: column; gap: 2px;
}
.sf-sidebar-item {
  display: block; padding: 8px 12px; border-radius: 8px;
  font-size: 13.5px; font-weight: 500; color: #555;
  text-decoration: none; cursor: pointer;
  transition: all 0.2s ease;
}
.sf-sidebar-item:hover {
  background: #f0ebe6; color: #333;
}
.sf-sidebar-item.sf-sidebar-active {
  background: #b22222; color: #fff; font-weight: 600;
}
.sf-sidebar-item.sf-sidebar-active:hover {
  background: #a01e1e; color: #fff;
}

/* Reset button */
.sf-sidebar-reset {
  display: none; /* shown by JS when filters active */
  align-items: center; justify-content: center; gap: 6px;
  width: 100%; padding: 10px 16px; border: 1px solid #ddd; border-radius: 8px;
  background: #fff; color: #666; font-family: 'Open Sans', sans-serif;
  font-size: 13px; font-weight: 600; cursor: pointer;
  transition: all 0.25s ease; margin-bottom: 12px;
}
.sf-sidebar-reset:hover { border-color: #b22222; color: #b22222; }
.sf-sidebar-reset svg { transition: transform 0.3s ease; }
.sf-sidebar-reset:hover svg { transform: rotate(-90deg); }

/* Active filter tags */
.sf-sidebar-tags {
  display: flex; flex-wrap: wrap; gap: 6px;
}
.sf-sidebar-tags:empty { display: none; }
.sf-sidebar-tag {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 4px 10px; background: #2c2c2c; color: #fff;
  border-radius: 14px; font-size: 11px; font-weight: 600;
  letter-spacing: 0.3px; animation: sfTagIn 0.25s ease;
}
.sf-sidebar-tag button {
  background: none; border: none; color: #fff; font-size: 14px;
  line-height: 1; cursor: pointer; padding: 0;
  opacity: 0.6; transition: opacity 0.2s;
}
.sf-sidebar-tag button:hover { opacity: 1; }

@keyframes sfTagIn {
  from { opacity: 0; transform: scale(0.85); }
  to   { opacity: 1; transform: scale(1); }
}

/* ── Duration range slider ── */
.sf-range {
  padding: 4px 4px 0;
}
.sf-range-label {
  font-size: 13px; font-weight: 600; color: #333;
  margin-bottom: 14px; text-align: center;
}
.sf-range-label span {
  font-weight: 700; color: #b22222;
}
.sf-range-track-wrap {
  position: relative; height: 32px;
}
.sf-range-track {
  position: absolute; top: 50%; left: 0; right: 0;
  height: 5px; transform: translateY(-50%);
  background: #e0dbd6; border-radius: 3px;
  pointer-events: none;
}
.sf-range-fill {
  position: absolute; height: 100%; border-radius: 3px;
  background: #b22222;
}
.sf-range-input {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%;
  -webkit-appearance: none; appearance: none;
  background: transparent; pointer-events: none;
  margin: 0; padding: 0;
}
.sf-range-input::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 20px; height: 20px; border-radius: 50%;
  background: #fff; border: 3px solid #b22222;
  cursor: pointer; pointer-events: auto;
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.sf-range-input::-webkit-slider-thumb:hover {
  transform: scale(1.15);
  box-shadow: 0 2px 8px rgba(178,34,34,0.3);
}
.sf-range-input::-moz-range-thumb {
  width: 20px; height: 20px; border-radius: 50%;
  background: #fff; border: 3px solid #b22222;
  cursor: pointer; pointer-events: auto;
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}
.sf-range-input::-moz-range-track {
  background: transparent; border: none;
}

/* ── Grid column (grid + pagination) inside filter wrapper ── */
.sf-g-main {
  flex: 1; min-width: 0;
  display: flex; flex-direction: column;
}
.sf-filter-wrapper .sf-g-grid {
  flex: 1; min-width: 0;
  max-width: none; margin: 0;
  grid-template-columns: repeat(2, 1fr); gap: 24px;
}

/* ── Standalone grid wrapper (no sidebar) ── */
.sf-g-standalone {
  max-width: 1100px; margin: 0 auto;
}

/* Loading state */
.sf-g-grid.sf-g-loading {
  opacity: 0.4; pointer-events: none;
  transition: opacity 0.2s ease;
}

/* Empty state */
.sf-filter-empty {
  grid-column: 1 / -1; text-align: center;
  padding: 48px 20px; color: #999; font-size: 15px;
  font-style: italic;
}

/* --------------------------------------------------------------------------
   Filter Layout Responsive
   -------------------------------------------------------------------------- */

/* Tablet: sidebar on top, grid stays 2 cols */
@media (max-width: 900px) {
  .sf-filter-wrapper {
    flex-direction: column; gap: 24px;
  }
  .sf-sidebar {
    flex: none; width: 100%; position: static;
  }
  .sf-sidebar-toggle {
    display: flex; align-items: center; gap: 8px; width: 100%;
    padding: 14px 20px; background: #f9f7f5; border: 1px solid #e8e3de;
    border-radius: 14px; cursor: pointer;
    font-family: 'Open Sans', sans-serif; font-size: 14px; font-weight: 600;
    color: #555; transition: all 0.25s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  }
  .sf-sidebar-toggle svg { color: #b22222; flex-shrink: 0; }
  .sf-sidebar-toggle:hover { border-color: #b22222; color: #333; }
  .sf-sidebar-toggle[aria-expanded="true"] {
    border-radius: 14px 14px 0 0; border-bottom: none;
    background: #f5f1ed;
  }
  .sf-sidebar-inner {
    display: none; border-radius: 0 0 14px 14px;
  }
  .sf-sidebar-inner.sf-sidebar-open {
    display: block;
  }
  /* On tablet with sidebar open, show sections side-by-side */
  .sf-sidebar-inner {
    padding: 20px;
  }
  .sf-filter-wrapper .sf-g-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile: single column everything */
@media (max-width: 580px) {
  .sf-filter-wrapper .sf-g-grid {
    grid-template-columns: 1fr;
    max-width: 420px; margin: 0 auto;
  }
  .sf-filter-wrapper .sf-g-image { height: 220px; }
  .sf-filter-wrapper .sf-g-tag { top: 206px; }
  .sf-filter-wrapper .sf-g-title { font-size: 20px; }
  .sf-filter-wrapper .sf-g-body { padding: 24px 18px 18px; }
  .sf-sidebar-toggle {
    font-size: 13px; padding: 12px 16px;
  }
}

/* --------------------------------------------------------------------------
   Pagination
   -------------------------------------------------------------------------- */
.sf-pagination {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  padding: 32px 0 8px;
  font-family: 'Open Sans', sans-serif;
}
.sf-page-btn {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 40px; height: 40px; padding: 0 10px;
  border: 1px solid #ddd; border-radius: 8px;
  background: #fff; color: #333;
  font-size: 14px; font-weight: 600;
  cursor: pointer; transition: all 0.2s ease;
}
.sf-page-btn:hover:not(:disabled):not(.sf-page-active) {
  background: #f5f5f5; border-color: #bbb;
}
.sf-page-btn.sf-page-active {
  background: #b22222; color: #fff; border-color: #b22222;
  cursor: default;
}
.sf-page-btn:disabled {
  opacity: 0.35; cursor: not-allowed;
}
.sf-page-btn svg { display: block; }
.sf-page-dots {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 32px; height: 40px;
  color: #999; font-size: 14px; letter-spacing: 2px;
}

@media (max-width: 580px) {
  .sf-pagination { gap: 4px; padding: 24px 0 8px; }
  .sf-page-btn { min-width: 36px; height: 36px; font-size: 13px; border-radius: 6px; }
}

/* --------------------------------------------------------------------------
   Featured Badge (shared)
   -------------------------------------------------------------------------- */
.sf-badge {
  display: inline-flex; align-items: center; gap: 4px;
  padding: 5px 14px; border-radius: 6px;
  font-family: 'Open Sans', sans-serif; font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 0.8px;
  background: linear-gradient(135deg, #d4a017, #c8960f);
  color: #fff; z-index: 7;
  box-shadow: 0 2px 8px rgba(212,160,23,0.35);
}
/* On grid card image — top left */
.sf-g-image .sf-badge {
  position: absolute; top: 12px; left: 12px;
}
/* On horizontal card — inline above title */
.sf-badge-inline {
  margin-bottom: 12px; width: fit-content;
}
/* On single hero */
.sf-badge-hero {
  margin-bottom: 16px; font-size: 12px; padding: 6px 18px;
}

/* --------------------------------------------------------------------------
   Single Safari Page
   -------------------------------------------------------------------------- */
.sf-single {
 font-size: 18px;
}

/* ── Hero ── */
.sf-single-hero {
  position: relative; width: 100%; min-height: 420px;
  background-size: cover; background-position: center;
  background-color: #2c2c2c;
}
.sf-single-hero-overlay {
  display: flex; align-items: flex-end;
  min-height: 420px; width: 100%;
  background: linear-gradient(to top, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.15) 60%, rgba(0,0,0,0.05) 100%);
}
.sf-single-hero-inner {
  max-width: 1100px; width: 100%; margin: 0 auto;
  padding: 40px 32px 48px;
}

/* Breadcrumb */
.sf-single-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 16px; font-size: 13px; color: rgba(255,255,255,0.7);
}
.sf-single-breadcrumb a {
  color: rgba(255,255,255,0.8); text-decoration: none;
  transition: color 0.2s;
}
.sf-single-breadcrumb a:hover { color: #fff; }
.sf-single-breadcrumb span { color: rgba(255,255,255,0.5); }

/* Title */
.sf-single-title {
  font-family: 'Playfair Display', serif; font-weight: 900;
  font-size: 42px; line-height: 1.15; color: #fff;
  margin: 0 0 16px; max-width: 700px;
}

/* Hero meta tags */
.sf-single-hero-meta {
  display: flex; flex-wrap: wrap; gap: 12px;
}
.sf-single-hero-tag {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 16px; border-radius: 8px;
  background: rgba(255,255,255,0.15); backdrop-filter: blur(6px);
  color: #fff; font-size: 13px; font-weight: 600;
}

/* ── Content + Sidebar layout ── */
.sf-single-body {
  display: flex; gap: 40px; align-items: flex-start;
  max-width: 1100px; margin: 0 auto;
  padding: 48px 32px 56px;
}
.sf-single-main {
  flex: 1; min-width: 0;
}
.sf-single-sidebar {
  flex: 0 0 300px; position: sticky; top: 32px;
}

/* Intro */
.sf-single-intro {
  font-size: 17px; line-height: 1.7; color: #444;
  margin-bottom: 32px; padding-bottom: 28px;
  border-bottom: 1px solid #eee;
}
.sf-single-intro p { margin: 0; }

/* Content */
.sf-single-content {
  font-size: 18px; line-height: 1.75; color: #333;
}
.sf-single-content h2,
.sf-single-content h3 {
  color: #1a1a1a; margin: 32px 0 16px;
}
.sf-single-content h2 { font-size: 26px; }
.sf-single-content h3 { font-size: 20px; }
.sf-single-content p { margin: 0 0 16px; }
.sf-single-content ul,
.sf-single-content ol {
  margin: 0 0 16px; padding-left: 24px;
}
.sf-single-content li { margin-bottom: 6px; }
.sf-single-content strong { color: #1a1a1a; }

/* ── Sidebar: Details card ── */
.sf-single-details-card {
  background: #f9f7f5; border-radius: 14px; padding: 24px;
  margin-bottom: 20px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.sf-single-details-heading {
  font-family: 'Playfair Display', serif; font-weight: 800;
  font-size: 18px; color: #1a1a1a;
  margin: 0 0 18px; padding-bottom: 14px;
  border-bottom: 2px solid #b22222;
}
.sf-single-detail-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0; border-bottom: 1px solid #ece8e3;
}
.sf-single-detail-row:last-child { border-bottom: none; }
.sf-single-detail-label {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 600; color: #777;
}
.sf-single-detail-label svg { color: #b22222; }
.sf-single-detail-value {
  font-size: 14px; font-weight: 700; color: #1a1a1a;
}

/* ── Sidebar: Enquiry CTA ── */
.sf-single-enquiry {
  background: #2c2c2c; border-radius: 14px; padding: 28px 24px;
  text-align: center;
}
.sf-single-enquiry-heading {
  font-family: 'Playfair Display', serif; font-weight: 800;
  font-size: 18px; color: #fff; margin: 0 0 10px;
}
.sf-single-enquiry-text {
  font-size: 13px; color: #aaa; line-height: 1.5;
  margin: 0 0 20px;
}
.sf-single-enquiry-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  width: 100%; padding: 14px 24px; border-radius: 10px;
  background: #b22222; color: #fff; text-decoration: none;
  font-family: 'Open Sans', sans-serif; font-size: 15px; font-weight: 700;
  transition: background 0.3s ease;
}
.sf-single-enquiry-btn:hover { background: #9a1c1c; color: #fff; }

/* Enquire CTA after itinerary content */
.sf-single-content-cta {
  margin-top: 36px; padding-top: 28px;
  border-top: 1px solid #eee;
}
.sf-single-content-cta .sf-single-enquiry-btn {
  max-width: 280px;
}

/* ── Related Safaris ── */
.sf-single-related {
  max-width: 1100px; margin: 0 auto;
  padding: 0 32px 64px;
}
.sf-single-related-heading {
  font-family: 'Playfair Display', serif; font-weight: 800;
  font-size: 28px; color: #1a1a1a;
  margin: 0 0 28px; text-align: center;
}
.sf-related-grid {
  max-width: none;
}

/* ── Single page responsive ── */
@media (max-width: 900px) {
  .sf-single-body {
    flex-direction: column; gap: 32px; padding: 36px 24px 40px;
  }
  .sf-single-sidebar {
    flex: none; width: 100%; position: static;
    display: grid; grid-template-columns: 1fr 1fr; gap: 20px;
  }
  .sf-single-hero-inner { padding: 32px 24px 40px; }
  .sf-single-title { font-size: 32px; }
  .sf-single-related { padding: 0 24px 48px; }
  .sf-related-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 580px) {
  .sf-single-hero { min-height: 320px; }
  .sf-single-hero-overlay { min-height: 320px; }
  .sf-single-hero-inner { padding: 24px 16px 32px; }
  .sf-single-title { font-size: 26px; }
  .sf-single-hero-meta { gap: 8px; }
  .sf-single-hero-tag { font-size: 12px; padding: 5px 12px; }
  .sf-single-body { padding: 28px 16px 32px; }
  .sf-single-sidebar { grid-template-columns: 1fr; }
  .sf-single-related { padding: 0 16px 40px; }
  .sf-related-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .sf-single-breadcrumb { font-size: 12px; }
}
