/* ─── Design Tokens ──────────────────────────────────────────────────────── */
:root {
  --ph-dark:        #121212;
  --ph-dark-2:      #0a0a0a;
  --ph-dark-3:      #2a2a2a;
  --ph-dark-4:      #222222;
  --ph-gold:        #cccccc;
  --ph-gold-hover:  #e0e0e0;
  --ph-bg:          #f8f8f8;
  --ph-surface:     #ffffff;
  --ph-text:        #121212;
  --ph-text-muted:  #666666;
  --ph-border:      #dddddd;
  --ph-border-dark: #333333;

  --sidebar-width: 230px;
  --topbar-height: 60px;

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 14px;

  --shadow-sm: 0 1px 4px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.12);
}

/* ─── Base ───────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }

html { font-size: 14px; scroll-behavior: smooth; }

@media (min-width: 768px) { html { font-size: 15px; } }

body {
  font-family: 'Inter', 'Helvetica Neue', system-ui, -apple-system, sans-serif;
  font-size: 0.9rem;
  color: var(--ph-text);
  background: var(--ph-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ─── Admin/Photographer layout: light background ────────────────────────── */
body:not(.pub-body) { background: #f8f8f8; }

/* ─── Public body: light background ─────────────────────────────────────── */
body.pub-body { background: #f8f8f8; }

/* ─── Sidebar ────────────────────────────────────────────────────────────── */
#sidebar {
  width: var(--sidebar-width);
  height: 100vh;
  background: #0a0a0a;
  position: fixed;
  top: 0; left: 0;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  border-right: 1px solid #222;
  overflow: hidden;
}

.sidebar-nav-scroll {
  flex: 1;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: #333 transparent;
}
.sidebar-nav-scroll::-webkit-scrollbar { width: 4px; }
.sidebar-nav-scroll::-webkit-scrollbar-track { background: transparent; }
.sidebar-nav-scroll::-webkit-scrollbar-thumb { background: #333; border-radius: 2px; }

.sidebar-brand {
  padding: 1.35rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-decoration: none;
  border-bottom: 1px solid #222;
}
.sidebar-brand .brand-icon {
  width: 30px; height: 30px;
  background: #fff;
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  color: #000;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.sidebar-brand .brand-name { color: #fff; font-family: 'Playfair Display', Georgia, serif; font-weight: 500; }
.sidebar-brand .brand-sub  { color: #555; font-size: 0.65rem; font-weight: 500; letter-spacing: 0.06em; text-transform: uppercase; margin-top: 1px; }

.nav-section-label {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #444;
  padding: 1.4rem 1.4rem 0.4rem;
}

.sidebar-nav-link {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.55rem 1.4rem;
  color: #888;
  font-size: 0.87rem;
  font-weight: 450;
  text-decoration: none;
  transition: color 0.15s, background 0.15s;
  position: relative;
  border-left: 2px solid transparent;
}
.sidebar-nav-link i { font-size: 0.95rem; width: 1.1rem; text-align: center; }
.sidebar-nav-link:hover { color: #fff; background: rgba(255,255,255,0.05); }
.sidebar-nav-link.active {
  color: #fff;
  background: rgba(255,255,255,0.08);
  border-left-color: #fff;
  font-weight: 500;
}

.sidebar-footer {
  border-top: 1px solid #222;
  padding: 1rem 1.4rem;
  flex-shrink: 0;
}
.sidebar-user-name { color: #ccc; font-size: 0.82rem; font-weight: 500; }
.sidebar-user-role { color: #555; font-size: 0.72rem; margin-top: 1px; }
.sidebar-avatar {
  width: 32px; height: 32px; border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.sidebar-avatar-icon { color: #aaa; font-size: 0.9rem; }
.sidebar-signout-btn {
  background: none; border: none; padding: 0;
  color: #555; font-size: 0.78rem; cursor: pointer;
  display: flex; align-items: center; gap: 0.35rem;
  transition: color 0.15s;
}
.sidebar-signout-btn:hover { color: #ccc; }

/* ─── Toast ──────────────────────────────────────────────────────────────── */
.ph-toast {
  position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 9999;
  background: #2a2a2a; color: #fff; border-radius: 8px;
  padding: .7rem 1.1rem; font-size: 0.82rem; display: flex;
  align-items: center; gap: .5rem; box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  transform: translateY(20px); opacity: 0;
  transition: transform .25s, opacity .25s;
  max-width: 300px;
}
.ph-toast.show { transform: translateY(0); opacity: 1; }

/* ─── Badge icon ─────────────────────────────────────────────────────────── */
.ph-badge-icon { font-size: 0.7rem; }

/* ─── Main wrapper ───────────────────────────────────────────────────────── */
#main-wrapper {
  margin-left: var(--sidebar-width);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* ─── Topbar ─────────────────────────────────────────────────────────────── */
#topbar {
  height: var(--topbar-height);
  background: #ffffff;
  border-bottom: 1px solid #e5e5e5;
  padding: 0 1.75rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  position: sticky;
  top: 0;
  z-index: 900;
  box-shadow: 0 1px 0 rgba(0,0,0,0.04);
}
.topbar-title {
  font-size: 1rem;
  font-weight: 600;
  color: #121212;
  margin: 0;
  letter-spacing: -0.01em;
  font-family: 'Playfair Display', Georgia, serif;
}
.topbar-right { display: flex; align-items: center; gap: 1rem; }

.topbar-user-mobile {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.topbar-user-info {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.2;
}
.topbar-user-name {
  font-size: 0.78rem;
  font-weight: 600;
  color: #121212;
}
.topbar-user-role {
  font-size: 0.62rem;
  color: #888;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ─── Content ────────────────────────────────────────────────────────────── */
#content { padding: 1.75rem; flex: 1; }

/* ─── Cards ──────────────────────────────────────────────────────────────── */
.ph-card {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: var(--radius-md);
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}
.ph-card-header {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid #e5e5e5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.ph-card-title { font-size: 0.88rem; font-weight: 600; color: #121212; margin: 0; font-family: 'Playfair Display', Georgia, serif; }
.ph-card-body  { padding: 1.25rem; }

/* ─── Stat cards ─────────────────────────────────────────────────────────── */
.stat-card {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: var(--radius-md);
  padding: 1.25rem;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  transition: box-shadow 0.2s;
}
.stat-card:hover { box-shadow: 0 4px 16px rgba(0,0,0,0.09); }
.stat-card-icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem;
  margin-bottom: 1rem;
}
.stat-card-label { font-size: 0.75rem; color: #666; font-weight: 500; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.25rem; }
.stat-card-value { font-size: 1.65rem; font-weight: 700; color: #121212; letter-spacing: -0.02em; line-height: 1; font-family: 'Playfair Display', Georgia, serif; }
.stat-card-sub   { font-size: 0.75rem; color: #666; margin-top: 0.35rem; }

.icon-gold   { background: #eeeeee; color: #333; }
.icon-blue   { background: #eeeeee;   color: #444; }
.icon-green  { background: #e0e0e0;   color: #333; }
.icon-purple { background: #e0e0e0;   color: #444; }
.icon-red    { background: #e0e0e0;    color: #333; }

/* ─── Tables ─────────────────────────────────────────────────────────────── */
.ph-table { width: 100%; border-collapse: collapse; font-size: 0.875rem; }
.ph-table thead th {
  padding: 0.7rem 1rem;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: #666;
  background: #f8f8f8;
  border-bottom: 1px solid #e5e5e5;
  white-space: nowrap;
}
.ph-table tbody td {
  padding: 0.85rem 1rem;
  border-bottom: 1px solid #eeeeee;
  vertical-align: middle;
  color: #121212;
}
.ph-table tbody tr:last-child td { border-bottom: none; }
.ph-table tbody tr { transition: background 0.1s; }
.ph-table tbody tr:hover { background: #f8f8f8; }

/* ─── Badges ─────────────────────────────────────────────────────────────── */
.ph-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.ph-badge::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: currentColor; flex-shrink: 0; }

.badge-success    { background: #eeeeee; color: #333; }
.badge-warning    { background: #e0e0e0; color: #333; }
.badge-info       { background: #e0e0e0; color: #121212; }
.badge-secondary  { background: #eeeeee; color: #666666; }
.badge-danger     { background: #e0e0e0; color: #121212; }
.badge-gold       { background: #eeeeee; color: #333; }

/* ─── Add-on package category grouping label ─────────────────────────────── */
.addon-pkg-category-label {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ph-text-muted);
  padding: 0.5rem 0 0.15rem;
  margin-top: 0.25rem;
  border-top: 1px solid var(--ph-border);
}
.addon-pkg-category-label:first-child {
  padding-top: 0;
  margin-top: 0;
  border-top: none;
}

/* ─── Buttons ────────────────────────────────────────────────────────────── */
.btn-ph-primary {
  background: #000000;
  color: #fff;
  border: none;
  padding: 0.5rem 1.1rem;
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.btn-ph-primary:hover { background: #1e1e1e; color: #fff; transform: translateY(-2px); }

.btn-ph-ghost {
  background: transparent;
  color: #555;
  border: 1px solid #ddd;
  padding: 0.45rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.83rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.btn-ph-ghost:hover { border-color: #000000; color: #000; background: #eeeeee; transform: translateY(-2px); }

.btn-ph-danger {
  background: #2a2a2a;
  color: #fff;
  border: 1px solid #444;
  padding: 0.45rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.83rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.btn-ph-danger:hover { background: #1e1e1e; color: #fff; transform: translateY(-2px); }

/* Small modifier for table action buttons */
.btn-ph-primary.btn-sm,
.btn-ph-ghost.btn-sm,
.btn-ph-danger.btn-sm {
  padding: 0.28rem 0.7rem;
  font-size: 0.78rem;
}

/* ─── Form controls ──────────────────────────────────────────────────────── */
.ph-input {
  border: 1px solid #dddddd;
  border-radius: var(--radius-sm);
  padding: 0.8rem 1rem;
  font-size: 0.87rem;
  color: #121212;
  background: #ffffff;
  width: 100%;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
  outline: none;
}
.ph-input:focus {
  border-color: #000000;
  box-shadow: 0 0 0 3px rgba(0,0,0,0.06);
}
.ph-input::placeholder { color: #bbb; }

.ph-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: #444;
  margin-bottom: 0.35rem;
  display: block;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Override Bootstrap focus ring globally */
.btn:focus-visible, .form-control:focus, .form-select:focus {
  box-shadow: 0 0 0 3px rgba(0,0,0,0.1) !important;
  border-color: #000000 !important;
  outline: none;
}

/* ─── Filter tabs ────────────────────────────────────────────────────────── */
.filter-tabs { display: flex; gap: 0.35rem; flex-wrap: wrap; }
.filter-tab {
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 500;
  color: #555;
  background: #fff;
  border: 1px solid #ddd;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.15s;
  display: inline-flex; align-items: center; gap: 0.4rem;
}
.filter-tab:hover { border-color: #999; color: #121212; }
.filter-tab.active {
  background: #000000;
  color: #fff;
  border-color: #000000;
}
.filter-tab .tab-count {
  background: rgba(255,255,255,0.2);
  color: inherit;
  padding: 0.05rem 0.45rem;
  border-radius: 999px;
  font-size: 0.7rem;
}
.filter-tab:not(.active) .tab-count {
  background: #eeeeee;
  color: #666;
}

/* ─── Filter panel (collapsible secondary filters) ───────────────────────── */
.filter-panel { display: none; }
.filter-panel.filter-panel-open { display: block; }

.filter-group { display: flex; flex-direction: column; gap: 0.3rem; }
.filter-label {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--ph-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ─── Status dot badges ──────────────────────────────────────────────────── */
.status-dot {
  width: 7px; height: 7px; border-radius: 50%;
  display: inline-block; margin-right: 5px;
  flex-shrink: 0;
}
.dot-green  { background: #888888; }
.dot-yellow { background: #aaaaaa; }
.dot-blue   { background: #777777; }
.dot-gray   { background: #999999; }
.dot-red    { background: #666666; }
.dot-gold   { background: #888888; }

/* ─── Empty state ────────────────────────────────────────────────────────── */
.empty-state {
  text-align: center;
  padding: 3.5rem 2rem;
  color: var(--ph-text-muted);
}
.empty-state i { font-size: 2.5rem; opacity: 0.25; display: block; margin-bottom: 0.75rem; }
.empty-state p { font-size: 0.85rem; margin: 0; }

/* ─── Auth layout ────────────────────────────────────────────────────────── */
.auth-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: #fff;
}
@media (max-width: 768px) {
  .auth-shell { grid-template-columns: 1fr; }
  .auth-panel-left { display: none; }
}
.auth-panel-left {
  background: #0a0a0a;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 2.5rem;
}
.auth-panel-left::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 80%, rgba(255,255,255,0.04) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(255,255,255,0.03) 0%, transparent 50%);
}
.auth-panel-left .grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 60px 60px;
}
.auth-panel-left-content { position: relative; z-index: 1; }
.auth-left-brand {
  display: flex; align-items: center; gap: 0.6rem;
  color: #fff; text-decoration: none;
}
.auth-left-brand .brand-text {
  display: flex; flex-direction: column;
}
.auth-left-brand .brand-name {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem; font-weight: 600; line-height: 1;
  color: #fff; letter-spacing: .01em;
}
.auth-left-brand .brand-tagline {
  font-size: .6rem; font-weight: 500; color: #888;
  letter-spacing: .1em; text-transform: uppercase; margin-top: 1px;
}
.auth-left-quote {
  margin-top: 3rem;
  position: relative; z-index: 1;
}
.auth-left-quote blockquote {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.4;
  letter-spacing: -0.02em;
  margin: 0;
}
.auth-left-quote cite {
  display: block;
  margin-top: 1rem;
  font-size: 0.8rem;
  color: #888;
  font-style: normal;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.auth-left-footer { position: relative; z-index: 1; color: #555; font-size: 0.78rem; }

.auth-panel-right {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem;
  background: #fff;
}
.auth-form-box { width: 100%; max-width: 380px; }
.auth-form-title { font-size: 1.5rem; font-weight: 700; letter-spacing: -0.02em; color: #121212; margin-bottom: 0.35rem; font-family: 'Playfair Display', Georgia, serif; }
.auth-form-sub   { font-size: 0.85rem; color: #666; margin-bottom: 2rem; }

/* ─── Misc utilities ─────────────────────────────────────────────────────── */
.text-gold { color: #aaa !important; }
.fw-500    { font-weight: 500; }
.fw-600    { font-weight: 600; }
.text-11   { font-size: 0.75rem; }
.text-12   { font-size: 0.8rem; }
.text-13   { font-size: 0.87rem; }

a { color: inherit; }
a:hover { color: inherit; }
.text-danger { color: #cc3333 !important; }

/* ─── Topbar mobile sign-out button ─────────────────────────────────────── */
.topbar-signout-btn {
  background: none;
  border: 1px solid #ddd;
  border-radius: var(--radius-sm);
  padding: 0.3rem 0.5rem;
  color: #555;
  font-size: 1.05rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
  line-height: 1;
}
.topbar-signout-btn:hover { background: #eeeeee; color: #121212; border-color: #ccc; }

/* ─── Sidebar Toggle Button ──────────────────────────────────────────────── */
.sidebar-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.35rem 0.45rem;
  color: #666;
  font-size: 1.2rem;
  border-radius: var(--radius-sm);
  transition: background 0.15s, color 0.15s;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.sidebar-toggle:hover { background: #eeeeee; color: #121212; }

/* ─── Sidebar Overlay ────────────────────────────────────────────────────── */
.sidebar-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 999;
}
.sidebar-overlay.show { display: block; }

/* ─── Admin Panel — Mobile (≤ 992px) ────────────────────────────────────── */
@media (max-width: 992px) {
  .sidebar-toggle { display: flex; }

  #sidebar {
    transform: translateX(-100%);
    transition: transform 0.25s ease;
    z-index: 1001;
  }
  #sidebar.sidebar-open { transform: translateX(0); }

  #main-wrapper { margin-left: 0; }

  #topbar { padding: 0 1rem; gap: 0.5rem; }
  .topbar-title { font-size: 0.9rem; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

  #content { padding: 1rem; }

  .ph-card-header { flex-wrap: wrap; row-gap: 0.5rem; }

  /* Bootstrap card-header search forms (Jobs, Photographers pages) */
  .card-header.d-flex { flex-wrap: wrap; row-gap: 0.5rem; }
  .card-header form.d-flex { flex-wrap: wrap; flex: 1; min-width: 0; }
  .card-header form.d-flex .form-control { width: auto !important; flex: 1; min-width: 100px; }
}

/* ─── Public Nav — Mobile ────────────────────────────────────────────────── */
@media (max-width: 600px) {
  .pub-nav { padding: 0 1rem; }
  .pub-nav-link { font-size: .78rem; }
}
@media (max-width: 420px) {
  /* Hide text nav link on very narrow screens; Book Now button stays */
  .pub-nav-link { display: none; }
}

/* ─── Small Screens (≤ 576px) ───────────────────────────────────────────── */
@media (max-width: 576px) {
  #content { padding: 0.85rem; }

  /* Hero stats: wrap instead of overflow */
  .hero-stats {
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 1.5rem;
  }

  /* Homepage track CTA form: stack vertically */
  .track-form { flex-direction: column; }
  .track-btn  { width: 100%; }

  /* Track page search: stack vertically */
  .track-search { flex-direction: column; }
  .track-search button { width: 100%; justify-content: center; }

  /* Booking confirmed card: tighter padding */
  .confirmed-card { padding: 2rem 1.25rem; }

  /* Stat card value: slightly smaller on phone */
  .stat-card-value { font-size: 1.4rem; }
}

/* ─── Content Pages (Policy / About Us) ─────────────────────────────────── */
.content-page-hero {
  background: #f8f8f8;
  padding: 4rem 2rem 3rem;
  border-bottom: 1px solid #e5e5e5;
}
.content-page-hero-inner {
  max-width: 760px;
  margin: 0 auto;
}
.content-page-eyebrow {
  display: inline-flex; align-items: center; gap: .45rem;
  background: #eeeeee;
  border: 1px solid #dddddd;
  color: #444; font-size: .72rem; font-weight: 600;
  letter-spacing: .08em; text-transform: uppercase;
  padding: .3rem .75rem; border-radius: 999px; margin-bottom: 1.25rem;
}
.content-page-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 600; color: #121212;
  letter-spacing: -.01em; line-height: 1.15;
  margin-bottom: .75rem;
}
.content-page-meta {
  font-size: .82rem; color: #888;
}

.content-page-body {
  padding: 3rem 2rem 5rem;
  background: #ffffff;
}
.content-page-container {
  max-width: 760px;
  margin: 0 auto;
}

.content-page-rich {
  background: #ffffff;
  border: 1px solid #e5e5e5;
  border-radius: 16px;
  padding: 2.5rem;
  font-size: .92rem;
  line-height: 1.75;
  color: #333;
}
.content-page-rich h1,
.content-page-rich h2,
.content-page-rich h3 {
  font-weight: 700;
  letter-spacing: -.02em;
  margin-top: 2rem;
  margin-bottom: .75rem;
  color: #121212;
}
.content-page-rich h2 { font-size: 1.2rem; }
.content-page-rich h3 { font-size: 1rem; }
.content-page-rich p  { margin-bottom: 1rem; }
.content-page-rich ul,
.content-page-rich ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.content-page-rich li { margin-bottom: .35rem; }
.content-page-rich a  { color: #555; }

.content-page-empty {
  text-align: center;
  padding: 4rem 2rem;
  color: var(--ph-text-muted);
}
.content-page-empty-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: 1rem;
  opacity: .4;
}

/* ─── Package page: Book button ─────────────────────────────────────────── */
.book-btn {
    width: 100%;
    padding: .95rem;
    border-radius: 12px;
    background: #000000;
    color: #fff;
    font-size: .93rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: .02em;
    font-family: 'Playfair Display', Georgia, serif;
}
.book-btn:hover { background: #1e1e1e; color: #fff; transform: translateY(-2px); letter-spacing: .04em; }

.pkg-back-link { color: #888 !important; }
.pkg-back-link:hover { color: #333 !important; }
