/* ════════════════════════════════════════════════════════════════════════════
   PET CENTER ADOPTION WEBSITE — Design System v1.0
   Colors: Navy #10214b | Gold #d7bd88 | Orange #ED7624
   Typography: Cormorant Garamond (headers) | Sora (body)
   Rule: NO borders on cards — shadows only | NO emojis — SVG icons only
   ════════════════════════════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;600;700&family=Sora:wght@300;400;500;600;700&display=swap');

/* ─── CSS Variables ─────────────────────────────────────────────────────────── */
:root {
  --navy: #10214b;
  --navy-light: #1a2f5c;
  --gold: #d7bd88;
  --gold-dark: #b89968;
  --orange: #ED7624;
  --orange-light: #fef0e6;
  --warm-gray: #d0c3ba;
  --chocolate: #3d2817;
  --bg: #f9f7f4;
  --surface: #ffffff;
  --text: #2c2416;
  --muted: #7a6d5f;
  --success: #0d7c4a;
  --success-bg: #e6f7ef;
  --error: #c0392b;
  --error-bg: #fdecea;
  --shadow-sm: 0 2px 8px rgba(16,33,75,0.06);
  --shadow-md: 0 4px 20px rgba(16,33,75,0.10);
  --shadow-lg: 0 8px 40px rgba(16,33,75,0.14);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --transition: 0.25s ease;
}

/* ─── Reset & Base ───────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: 'Sora', -apple-system, BlinkMacSystemFont, sans-serif;
  background: var(--bg);
  color: var(--text);
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--orange); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--navy); }

/* ─── Typography ─────────────────────────────────────────────────────────────── */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: var(--navy);
  line-height: 1.25;
}
h1 { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 700; }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); font-weight: 600; }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.8rem); font-weight: 600; }
h4 { font-size: 1.2rem; font-weight: 600; }
p { color: var(--muted); }

/* ─── Layout Utilities ───────────────────────────────────────────────────────── */
.pc-container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.pc-section { padding: 72px 0; }
.pc-section--sm { padding: 40px 0; }
.pc-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.pc-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.pc-grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.text-center { text-align: center; }
.text-navy { color: var(--navy); }
.text-orange { color: var(--orange); }
.text-muted { color: var(--muted); }

/* ─── Buttons ─────────────────────────────────────────────────────────────────── */
.pc-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
  min-height: 44px;
}
.pc-btn--primary {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  color: #fff;
  box-shadow: 0 4px 14px rgba(16,33,75,0.25);
}
.pc-btn--primary:hover {
  background: linear-gradient(135deg, var(--navy-light), #243970);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(16,33,75,0.32);
}
.pc-btn--orange {
  background: linear-gradient(135deg, var(--orange), #d96919);
  color: #fff;
  box-shadow: 0 4px 14px rgba(237,118,36,0.30);
}
.pc-btn--orange:hover {
  background: linear-gradient(135deg, #d96919, #c45e10);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(237,118,36,0.38);
}
.pc-btn--ghost {
  background: transparent;
  color: var(--navy);
  box-shadow: inset 0 0 0 2px var(--gold);
}
.pc-btn--ghost:hover { background: var(--orange-light); color: var(--orange); }
.pc-btn--sm { padding: 8px 18px; font-size: 13px; min-height: 36px; }
.pc-btn--lg { padding: 16px 40px; font-size: 16px; }
.pc-btn:disabled { opacity: 0.55; cursor: not-allowed; transform: none; }

/* ─── Cards ────────────────────────────────────────────────────────────────────── */
.pc-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}
.pc-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.pc-card__body { padding: 20px; }
.pc-card__footer { padding: 16px 20px; background: var(--bg); }

/* ─── Pet Cards ─────────────────────────────────────────────────────────────────── */
.pc-pet-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  cursor: pointer;
  transition: box-shadow var(--transition), transform var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
}
.pc-pet-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.pc-pet-card__img-wrap { position: relative; overflow: hidden; aspect-ratio: 4/3; background: var(--bg); }
.pc-pet-card__img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.pc-pet-card:hover .pc-pet-card__img { transform: scale(1.05); }
.pc-pet-card__adopted-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--navy);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 20px;
  box-shadow: var(--shadow-sm);
}
.pc-pet-card__body { padding: 18px 20px; flex: 1; display: flex; flex-direction: column; gap: 6px; }
.pc-pet-card__name { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; font-weight: 700; color: var(--navy); }
.pc-pet-card__breed { font-size: 13px; color: var(--muted); font-weight: 500; }
.pc-pet-card__meta { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 4px; }
.pc-pet-card__tag {
  font-size: 12px;
  font-weight: 600;
  color: var(--chocolate);
  background: var(--warm-gray);
  padding: 3px 10px;
  border-radius: 20px;
  letter-spacing: 0.02em;
}
.pc-pet-card__fee {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--orange);
  margin-top: auto;
  padding-top: 8px;
}
.pc-pet-card__placeholder { display: flex; align-items: center; justify-content: center; width: 100%; height: 100%; color: var(--muted); }

/* ─── Status Checker ───────────────────────────────────────────────────────────── */
.pc-status-section {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 52px 0;
}
.pc-status-box {
  background: rgba(255,255,255,0.07);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 680px;
  margin: 0 auto;
  box-shadow: 0 8px 40px rgba(0,0,0,0.18);
}
.pc-status-title { color: #fff; font-size: 1.8rem; margin-bottom: 8px; }
.pc-status-sub { color: rgba(255,255,255,0.7); font-size: 14px; margin-bottom: 24px; }
.pc-status-form { display: flex; gap: 12px; flex-wrap: wrap; }
.pc-status-input {
  flex: 1;
  min-width: 220px;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  border: none;
  background: rgba(255,255,255,0.12);
  color: #fff;
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  letter-spacing: 0.04em;
  outline: none;
  transition: background var(--transition);
}
.pc-status-input::placeholder { color: rgba(255,255,255,0.5); }
.pc-status-input:focus { background: rgba(255,255,255,0.18); }
.pc-status-result { margin-top: 28px; display: none; }
.pc-status-result--pending,
.pc-status-result--approved,
.pc-status-result--rejected,
.pc-status-result--error { display: block; border-radius: var(--radius-md); padding: 24px; }
.pc-status-result--pending { background: rgba(255,255,255,0.1); }
.pc-status-result--approved { background: var(--success-bg); }
.pc-status-result--rejected { background: var(--error-bg); }
.pc-status-result--error { background: rgba(255,255,255,0.1); }
.pc-status-result__title { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 700; }
.pc-status-result--approved .pc-status-result__title { color: var(--success); }
.pc-status-result--rejected .pc-status-result__title { color: var(--error); }
.pc-status-result--pending .pc-status-result__title,
.pc-status-result--error .pc-status-result__title { color: #fff; }
.pc-payment-box {
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 20px 24px;
  margin-top: 16px;
  box-shadow: var(--shadow-sm);
}
.pc-payment-box h4 { color: var(--navy); margin-bottom: 12px; font-size: 1rem; }
.pc-payment-option { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 14px; }
.pc-payment-option:last-child { margin-bottom: 0; }
.pc-payment-icon { flex: 0 0 36px; width: 36px; height: 36px; background: var(--orange-light); border-radius: 8px; display: flex; align-items: center; justify-content: center; }
.pc-payment-icon svg { width: 18px; height: 18px; color: var(--orange); }
.pc-payment-option__title { font-weight: 600; color: var(--navy); font-size: 14px; }
.pc-payment-option__desc { font-size: 13px; color: var(--muted); margin-top: 2px; }
.pc-celebrate-anim {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: var(--success-bg);
  border-radius: 50%;
  margin-bottom: 16px;
  animation: celebrate-pop 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) both;
}
@keyframes celebrate-pop {
  0% { transform: scale(0); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

/* ─── Filters ─────────────────────────────────────────────────────────────────── */
.pc-filters {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 32px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: flex-end;
}
.pc-filter-group { display: flex; flex-direction: column; gap: 6px; min-width: 160px; flex: 1; }
.pc-filter-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); }
.pc-filter-select {
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  border: none;
  background: var(--bg);
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  color: var(--text);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  -webkit-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%237a6d5f' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  outline: none;
  transition: box-shadow var(--transition);
}
.pc-filter-select:focus { box-shadow: 0 0 0 3px rgba(215,189,136,0.4); }

/* ─── Pet Grid Section ────────────────────────────────────────────────────────── */
.pc-pet-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.pc-empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 64px 24px;
  color: var(--muted);
}
.pc-empty-state__icon { width: 64px; height: 64px; margin: 0 auto 16px; opacity: 0.3; }
.pc-empty-state h3 { font-size: 1.4rem; color: var(--navy); margin-bottom: 8px; }
.pc-loading-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.pc-skeleton {
  background: linear-gradient(90deg, #f0ece8 25%, #e8e3de 50%, #f0ece8 75%);
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.4s infinite;
  border-radius: var(--radius-md);
  height: 320px;
}
@keyframes skeleton-shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ─── Modals ─────────────────────────────────────────────────────────────────── */
.pc-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(16,33,75,0.6);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}
.pc-modal-overlay.active { opacity: 1; visibility: visible; }
.pc-modal {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 40px;
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  transform: scale(0.95) translateY(16px);
  transition: transform var(--transition);
}
.pc-modal-overlay.active .pc-modal { transform: scale(1) translateY(0); }
.pc-modal__header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.pc-modal__close { background: var(--bg); border: none; width: 36px; height: 36px; border-radius: 8px; cursor: pointer; display: flex; align-items: center; justify-content: center; color: var(--muted); transition: background var(--transition), color var(--transition); }
.pc-modal__close:hover { background: var(--error-bg); color: var(--error); }
.pc-modal--wide { max-width: 860px; }

/* ─── Forms ─────────────────────────────────────────────────────────────────── */
.pc-form-group { margin-bottom: 18px; }
.pc-form-label { display: block; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; color: var(--muted); margin-bottom: 7px; }
.pc-form-input,
.pc-form-select,
.pc-form-textarea {
  width: 100%;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: none;
  background: var(--bg);
  font-family: 'Sora', sans-serif;
  font-size: 14px;
  color: var(--text);
  box-shadow: var(--shadow-sm);
  outline: none;
  transition: box-shadow var(--transition);
}
.pc-form-input:focus,
.pc-form-select:focus,
.pc-form-textarea:focus { box-shadow: 0 0 0 3px rgba(215,189,136,0.45), var(--shadow-sm); }
.pc-form-textarea { min-height: 100px; resize: vertical; }
.pc-form-row { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 16px; }

/* ─── Admin Dashboard ─────────────────────────────────────────────────────────── */
.admin-layout { display: flex; min-height: 100vh; }
.admin-sidebar {
  width: 260px;
  background: linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 100%);
  position: fixed;
  left: 0;
  top: 0;
  height: 100vh;
  overflow-y: auto;
  z-index: 100;
  padding: 24px 0;
  display: flex;
  flex-direction: column;
}
.admin-sidebar__brand { padding: 0 24px 24px; border-bottom: 1px solid rgba(255,255,255,0.08); margin-bottom: 16px; }
.admin-sidebar__brand h2 { color: #fff; font-size: 1.3rem; line-height: 1.3; }
.admin-sidebar__brand p { color: rgba(255,255,255,0.5); font-size: 12px; margin-top: 2px; }
.admin-nav { flex: 1; }
.admin-nav__section { padding: 8px 24px 4px; font-size: 10px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(255,255,255,0.35); }
.admin-nav__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  color: rgba(255,255,255,0.7);
  cursor: pointer;
  transition: all var(--transition);
  font-size: 14px;
  font-weight: 500;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
}
.admin-nav__item svg { width: 18px; height: 18px; flex-shrink: 0; }
.admin-nav__item:hover { color: #fff; background: rgba(255,255,255,0.06); }
.admin-nav__item.active { color: #fff; background: rgba(237,118,36,0.2); border-right: 3px solid var(--orange); }
.admin-main { margin-left: 260px; flex: 1; min-height: 100vh; }
.admin-topbar {
  background: var(--surface);
  padding: 16px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 50;
}
.admin-topbar__title { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--navy); font-weight: 700; }
.admin-content { padding: 32px; }
.admin-stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; margin-bottom: 32px; }
.admin-stat-card {
  background: var(--surface);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--transition);
}
.admin-stat-card:hover { box-shadow: var(--shadow-md); }
.admin-stat-card__label { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); margin-bottom: 8px; }
.admin-stat-card__value { font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; font-weight: 700; color: var(--navy); line-height: 1; }
.admin-stat-card--orange .admin-stat-card__value { color: var(--orange); }
.admin-stat-card--green .admin-stat-card__value { color: var(--success); }
.admin-panel { background: var(--surface); border-radius: var(--radius-md); padding: 28px; box-shadow: var(--shadow-sm); display: none; }
.admin-panel.active { display: block; }
.admin-section-title { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; color: var(--navy); margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid var(--gold); }

/* ─── Table ────────────────────────────────────────────────────────────────────── */
.pc-table { width: 100%; border-collapse: collapse; }
.pc-table th { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); padding: 12px 16px; background: var(--bg); text-align: left; }
.pc-table td { padding: 16px; border-bottom: 1px solid var(--bg); vertical-align: middle; font-size: 14px; }
.pc-table tr:last-child td { border-bottom: none; }
.pc-table tr:hover td { background: var(--orange-light); }
.pc-badge {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.pc-badge--pending { background: #fff8e6; color: #b7791f; }
.pc-badge--approved { background: var(--success-bg); color: var(--success); }
.pc-badge--rejected { background: var(--error-bg); color: var(--error); }
.pc-badge--available { background: var(--success-bg); color: var(--success); }
.pc-badge--adopted { background: var(--bg); color: var(--muted); }

/* ─── Pet Form (Admin Publish) ──────────────────────────────────────────────── */
.pet-form-card {
  background: var(--bg);
  border-radius: var(--radius-md);
  padding: 28px;
  margin-bottom: 20px;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.pet-form-card__number { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 20px; }
.pet-form-card__delete { position: absolute; top: 16px; right: 16px; background: var(--error-bg); color: var(--error); border: none; border-radius: 6px; padding: 6px 12px; font-size: 12px; font-weight: 600; cursor: pointer; transition: background var(--transition); }
.pet-form-card__delete:hover { background: #fca5a5; }

/* ─── File Upload ────────────────────────────────────────────────────────────── */
.pc-file-drop {
  border-radius: var(--radius-sm);
  padding: 28px;
  text-align: center;
  cursor: pointer;
  background: var(--bg);
  box-shadow: inset 0 2px 8px rgba(16,33,75,0.06);
  transition: box-shadow var(--transition), background var(--transition);
  position: relative;
}
.pc-file-drop.dragover { box-shadow: inset 0 0 0 3px var(--gold); background: #fffbf5; }
.pc-file-drop input { position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100%; }
.pc-file-drop__icon { width: 36px; height: 36px; margin: 0 auto 10px; color: var(--muted); }
.pc-file-drop__text { font-size: 14px; color: var(--muted); }
.pc-file-drop__text strong { color: var(--orange); }
.pc-file-preview { display: grid; grid-template-columns: repeat(auto-fill, minmax(80px, 1fr)); gap: 8px; margin-top: 12px; }
.pc-file-preview__item { position: relative; aspect-ratio: 1; border-radius: 6px; overflow: hidden; box-shadow: var(--shadow-sm); }
.pc-file-preview__item img { width: 100%; height: 100%; object-fit: cover; }
.pc-file-preview__remove { position: absolute; top: 4px; right: 4px; background: rgba(0,0,0,0.6); color: #fff; border: none; width: 20px; height: 20px; border-radius: 4px; cursor: pointer; font-size: 10px; display: flex; align-items: center; justify-content: center; }

/* ─── Pet Detail Page ────────────────────────────────────────────────────────── */
.pc-pet-detail-hero { display: grid; grid-template-columns: 1fr 380px; gap: 40px; align-items: start; padding: 52px 0; }
.pc-pet-detail-gallery { position: sticky; top: 24px; }
.pc-gallery-main { border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 4/3; background: var(--bg); box-shadow: var(--shadow-md); }
.pc-gallery-main img { width: 100%; height: 100%; object-fit: cover; }
.pc-gallery-thumbs { display: flex; gap: 8px; margin-top: 12px; overflow-x: auto; padding-bottom: 4px; }
.pc-gallery-thumb { flex: 0 0 72px; height: 72px; border-radius: 8px; overflow: hidden; cursor: pointer; box-shadow: var(--shadow-sm); transition: box-shadow var(--transition); opacity: 0.7; }
.pc-gallery-thumb:hover, .pc-gallery-thumb.active { opacity: 1; box-shadow: 0 0 0 3px var(--orange); }
.pc-gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pc-pet-info-panel { background: var(--surface); border-radius: var(--radius-md); padding: 32px; box-shadow: var(--shadow-md); }
.pc-pet-info-panel__name { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; font-weight: 700; color: var(--navy); }
.pc-pet-info-panel__fee { font-family: 'Cormorant Garamond', serif; font-size: 2rem; font-weight: 700; color: var(--orange); margin-bottom: 24px; }
.pc-pet-info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 24px; }
.pc-pet-info-item { background: var(--bg); border-radius: 8px; padding: 12px 14px; }
.pc-pet-info-item__label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; color: var(--muted); }
.pc-pet-info-item__value { font-weight: 600; color: var(--navy); margin-top: 4px; }

/* ─── Navigation (preserved + enhanced) ─────────────────────────────────────── */
.pc-nav-enhanced {
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 200;
}

/* ─── Hero Section ─────────────────────────────────────────────────────────── */
.pc-hero-badge { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--gold); margin-bottom: 12px; }
.pc-hero-btns { display: flex; gap: 16px; flex-wrap: wrap; margin-top: 28px; }

/* ─── Section Headings ──────────────────────────────────────────────────────── */
.pc-section-eyebrow { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--orange); margin-bottom: 8px; }
.pc-section-title { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.pc-section-sub { color: var(--muted); max-width: 560px; }

/* ─── Alert / Messages ──────────────────────────────────────────────────────── */
.pc-alert { border-radius: var(--radius-sm); padding: 14px 18px; font-size: 14px; font-weight: 500; display: none; }
.pc-alert.show { display: block; animation: fadeInDown 0.3s ease; }
.pc-alert--success { background: var(--success-bg); color: var(--success); }
.pc-alert--error { background: var(--error-bg); color: var(--error); }
.pc-alert--warning { background: #fff8e6; color: #92400e; }
@keyframes fadeInDown { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: translateY(0); } }

/* ─── Adoption form pet preview card ─────────────────────────────────────────── */
.pc-pet-prefill {
  background: linear-gradient(135deg, #fffbf5, #fff);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  margin-bottom: 24px;
  box-shadow: var(--shadow-sm);
  display: none;
}
.pc-pet-prefill.show { display: flex; gap: 20px; align-items: center; }
.pc-pet-prefill__img { width: 100px; height: 100px; border-radius: var(--radius-sm); object-fit: cover; box-shadow: var(--shadow-sm); flex-shrink: 0; }
.pc-pet-prefill__info { flex: 1; }
.pc-pet-prefill__name { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 700; color: var(--navy); }
.pc-pet-prefill__meta { font-size: 13px; color: var(--muted); }
.pc-pet-prefill__fee { font-size: 1.1rem; font-weight: 700; color: var(--orange); margin-top: 4px; }

/* ─── Code display ───────────────────────────────────────────────────────────── */
.pc-code {
  font-family: 'Courier New', monospace;
  background: var(--navy);
  color: var(--gold);
  padding: 14px 24px;
  border-radius: var(--radius-sm);
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-align: center;
  user-select: all;
}
.pc-warning-box {
  background: #fff8e6;
  border-left: 4px solid #f59e0b;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 16px 20px;
  color: #92400e;
  font-size: 14px;
  font-weight: 500;
}
.pc-warning-box strong { display: block; margin-bottom: 4px; font-size: 15px; }

/* ─── Login Screen ──────────────────────────────────────────────────────────── */
.admin-login {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  padding: 24px;
}
.admin-login__card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 52px 48px;
  width: 100%;
  max-width: 440px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.admin-login__logo { margin-bottom: 24px; }
.admin-login__logo h1 { font-size: 1.6rem; color: var(--navy); }
.admin-login__logo p { color: var(--muted); font-size: 13px; margin-top: 4px; }

/* ─── Responsive ─────────────────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .pc-pet-grid { grid-template-columns: repeat(3, 1fr); }
  .pc-pet-detail-hero { grid-template-columns: 1fr; }
  .pc-pet-detail-gallery { position: static; }
  .admin-sidebar { width: 220px; }
  .admin-main { margin-left: 220px; }
}
@media (max-width: 768px) {
  .pc-pet-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .pc-grid-4, .pc-grid-3 { grid-template-columns: 1fr 1fr; }
  .admin-sidebar { transform: translateX(-100%); transition: transform var(--transition); }
  .admin-sidebar.open { transform: translateX(0); }
  .admin-main { margin-left: 0; }
  .admin-content { padding: 20px 16px; }
  .pc-filters { flex-direction: column; }
  .pc-status-box { padding: 28px 20px; }
  .pc-modal { padding: 28px 20px; }
  .pc-pet-info-panel { padding: 24px 20px; }
  .admin-login__card { padding: 36px 24px; }
}
@media (max-width: 480px) {
  .pc-pet-grid { grid-template-columns: 1fr; }
  .pc-grid-4, .pc-grid-3, .pc-grid-2 { grid-template-columns: 1fr; }
  .pc-btn--lg { padding: 14px 28px; }
  .pc-status-form { flex-direction: column; }
  .pc-section { padding: 48px 0; }
  .pc-pet-prefill.show { flex-direction: column; text-align: center; }
}

/* ─── Animations ─────────────────────────────────────────────────────────────── */
.fade-in { animation: fadeIn 0.5s ease both; }
.slide-up { animation: slideUp 0.5s cubic-bezier(0.22, 1, 0.36, 1) both; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.stagger-1 { animation-delay: 0.05s; }
.stagger-2 { animation-delay: 0.10s; }
.stagger-3 { animation-delay: 0.15s; }
.stagger-4 { animation-delay: 0.20s; }

/* ─── Spinner ─────────────────────────────────────────────────────────────────── */
.pc-spinner {
  width: 20px;
  height: 20px;
  border: 2px solid rgba(255,255,255,0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
  display: inline-block;
}
@keyframes spin { to { transform: rotate(360deg); } }
.pc-spinner--dark { border-color: rgba(16,33,75,0.15); border-top-color: var(--navy); }

/* ─── Admin mobile toggle ────────────────────────────────────────────────────── */
.admin-mobile-toggle { display: none; background: none; border: none; cursor: pointer; color: var(--navy); padding: 8px; }
@media (max-width: 768px) { .admin-mobile-toggle { display: flex; } }

/* ─── Custom Select Dropdown ─────────────────────────────────────────────────── */
.custom-select-wrapper {
  position: relative;
  display: block;
  width: 100%;
}
.hidden-select {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}
.custom-select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: #fff;
  border: 1.5px solid rgba(16,33,75,.14);
  border-radius: 9px;
  cursor: pointer;
  font-family: 'Sora', sans-serif;
  font-size: 13.5px;
  color: #2c2416;
  transition: border-color .2s, box-shadow .2s;
  width: 100%;
  box-sizing: border-box;
  user-select: none;
}
.custom-select-trigger:hover { border-color: rgba(215,189,136,.5); }
.custom-select-trigger.active {
  border-color: #d7bd88;
  box-shadow: 0 0 0 4px rgba(215,189,136,.15);
}
.custom-select-trigger::after {
  content: '';
  display: inline-block;
  width: 12px;
  height: 8px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%2310214b' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  flex-shrink: 0;
  transition: transform .25s;
}
.custom-select-trigger.active::after { transform: rotate(180deg); }
.custom-select-options {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1.5px solid rgba(215,189,136,.5);
  border-radius: 9px;
  box-shadow: 0 8px 24px rgba(16,33,75,.12);
  z-index: 1000;
  max-height: 220px;
  overflow-y: auto;
  list-style: none;
  margin: 0;
  padding: 4px 0;
}
.custom-select-options.open { display: block; }
.custom-select-options li {
  padding: 10px 14px;
  cursor: pointer;
  font-family: 'Sora', sans-serif;
  font-size: 13.5px;
  color: #2c2416;
  transition: background .15s;
}
.custom-select-options li:hover { background: #f9f5ee; }
.custom-select-options li.selected {
  background: rgba(215,189,136,.2);
  color: #10214b;
  font-weight: 600;
}

/* ─── Global Header (pc-header) ─────────────────────────────────────────────── */
.pc-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 24px;
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  transition: background 0.35s ease, box-shadow 0.35s ease;
}
.pc-header.scrolled,
.pc-header--solid {
  background: rgba(16,33,75,0.97);
  box-shadow: 0 2px 20px rgba(0,0,0,0.18);
}
.pc-header__logo img { height: 44px; width: auto; display: block; }
.pc-header__nav {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.pc-header__nav li { position: relative; }
.pc-header__nav a {
  display: block;
  padding: 8px 11px;
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.pc-header__nav a:hover { color: #d7bd88; background: rgba(255,255,255,0.08); }
.pc-header__nav .nav-donate a { background: #ED7624; color: #fff; font-weight: 600; padding: 8px 16px; }
.pc-header__nav .nav-donate a:hover { background: #d4621a; color: #fff; }
.pc-header__nav .nav-signup a,
.pc-header__nav .nav-login a { border: 1px solid rgba(215,189,136,0.5); color: #d7bd88; }
.pc-header__nav .nav-signup a:hover,
.pc-header__nav .nav-login a:hover { background: rgba(215,189,136,0.12); }
.pc-header__nav .has-drop > ul {
  display: none;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  background: #10214b;
  border-radius: 8px;
  list-style: none;
  min-width: 168px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.22);
  padding: 6px 0;
  z-index: 100;
}
.pc-header__nav .has-drop:hover > ul { display: block; }
.pc-header__nav .has-drop > ul a { padding: 9px 18px; font-size: 13px; border-radius: 0; }
.pc-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
}
.pc-hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.3s; }
.pc-mobile-menu {
  display: none;
  position: fixed;
  top: 68px; left: 0; right: 0;
  background: rgba(16,33,75,0.98);
  z-index: 999;
  padding: 16px 0 24px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}
.pc-mobile-menu.open { display: block; }
.pc-mobile-menu a {
  display: block;
  padding: 12px 28px;
  font-family: 'Sora', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.pc-mobile-menu a:hover { color: #d7bd88; background: rgba(255,255,255,0.05); }
.pc-mobile-menu .mobile-donate {
  margin: 12px 28px 0;
  display: inline-block;
  background: #ED7624;
  color: #fff;
  padding: 11px 24px;
  border-radius: 8px;
  font-weight: 600;
  border-bottom: none;
}
@media (max-width: 900px) {
  .pc-header__nav { display: none; }
  .pc-hamburger { display: flex; }
}

/* ─── Category Page Banner ──────────────────────────────────────────────────── */
.pc-cat-banner {
  min-height: 260px;
  background: linear-gradient(120deg, rgba(16,33,75,0.92) 0%, rgba(30,50,100,0.75) 100%),
              center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 110px 24px 48px;
}
.pc-cat-banner__inner { max-width: 600px; }
.pc-cat-banner__crumb {
  font-family: 'Sora', sans-serif;
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.pc-cat-banner__crumb a { color: rgba(255,255,255,0.6); text-decoration: none; }
.pc-cat-banner__crumb a:hover { color: #d7bd88; }
.pc-cat-banner__crumb span { color: rgba(255,255,255,0.35); margin: 0 8px; }
.pc-cat-banner h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 700; color: #fff; }

/* ─── Global Footer ─────────────────────────────────────────────────────────── */
.pc-footer {
  background: #0b1834;
  padding: 60px 24px 28px;
  color: rgba(255,255,255,0.65);
  font-family: 'Sora', sans-serif;
}
.pc-footer__inner { max-width: 1200px; margin: 0 auto; }
.pc-footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.pc-footer__brand img { height: 40px; margin-bottom: 16px; display: block; }
.pc-footer__brand p { font-size: 13.5px; line-height: 1.7; max-width: 280px; }
.pc-footer__col h5 { font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; font-weight: 700; color: #d7bd88; margin-bottom: 16px; }
.pc-footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.pc-footer__col ul a { font-size: 13px; color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.2s; }
.pc-footer__col ul a:hover { color: #d7bd88; }
.pc-footer__bottom { padding-top: 24px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.pc-footer__copy { font-size: 12.5px; }
.pc-footer__links { display: flex; gap: 20px; }
.pc-footer__links a { font-size: 12.5px; color: rgba(255,255,255,0.5); text-decoration: none; }
.pc-footer__links a:hover { color: #d7bd88; }
@media (max-width: 900px) { .pc-footer__top { grid-template-columns: 1fr 1fr; gap: 28px; } }
@media (max-width: 560px) { .pc-footer__top { grid-template-columns: 1fr; gap: 24px; } }
