:root {
  --green-900: #0b8a4a;
  --green-800: #0a7e3f;
  --green-100: #ebf5ef;
  --green-050: #f3fbf6;
  --gold-500: #e5bb25;
  --gray-900: #1f2d3d;
  --gray-700: #4b5563;
  --gray-500: #6b7280;
  --gray-200: #e5e7eb;
  --gray-100: #f4f6f8;
  --border: #dfe5dd;
  --card-radius: 14px;
  --shadow-soft: 0 8px 24px rgba(0, 0, 0, 0.05);
  --shadow-hero: 0 15px 55px rgba(11, 138, 74, 0.09);
}

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

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", -apple-system, BlinkMacSystemFont, "Helvetica Neue", Arial, sans-serif;
  color: var(--gray-900);
  background: #fff;
  line-height: 1.5;
}

a {
  color: inherit;
  text-decoration: none;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.container {
  width: min(1260px, 100%);
  margin: 0 auto;
  padding: 0 24px;
}

.top-strip {
  background: var(--green-800);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  padding: 10px 0;
  text-align: center;
  letter-spacing: 0.2px;
}

.site-header {
  border-bottom: 1px solid var(--border);
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 28px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 20px;
  color: var(--gray-900);
}

.logo-icon {
  width: 42px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--green-900);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  font-weight: 600;
}

.nav-links a {
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--gray-700);
}

.nav-links a.active,
.nav-links a:hover {
  color: var(--gray-900);
  background: var(--gray-100);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex: 1;
  justify-content: flex-end;
}

.search-bar {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 6px 8px 6px 12px;
  flex: 1;
  max-width: 440px;
  background: #fff;
}

.search-bar input {
  flex: 1;
  border: none;
  outline: none;
  font-size: 15px;
  color: var(--gray-700);
  padding: 6px 8px;
}

.search-bar input::placeholder {
  color: #9ca3af;
}

.search-bar button {
  border: none;
  background: var(--green-900);
  color: #fff;
  border-radius: 8px;
  padding: 8px 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.search-bar svg {
  width: 18px;
  height: 18px;
}

.header-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 10px;
  font-weight: 600;
  color: var(--gray-900);
}

.contact-link svg {
  width: 18px;
  height: 18px;
  color: var(--green-900);
}

.login-link {
  font-weight: 700;
  color: var(--green-900);
}

.page-hero {
  background: linear-gradient(135deg, var(--green-050), #f9fdfb);
  padding: 36px 0 32px;
  border-bottom: 1px solid var(--border);
}

.hero-content h1 {
  margin: 0 0 8px;
  font-size: 28px;
  font-weight: 700;
}

.hero-content p {
  margin: 0;
  color: var(--gray-700);
  font-size: 15px;
  max-width: 1020px;
}

.hero-content {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 28px;
  align-items: center;
}

.hero-left h1 {
  font-size: 32px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--green-900);
  border-radius: 999px;
  padding: 8px 12px;
  font-weight: 700;
  font-size: 12px;
  box-shadow: var(--shadow-soft);
  margin-bottom: 10px;
}

.hero-cta {
  display: flex;
  gap: 10px;
  margin-top: 18px;
  flex-wrap: wrap;
}

.hero-card {
  display: flex;
  justify-content: flex-end;
}

.hero-card-inner {
  background: #fff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: var(--shadow-hero);
  border: 1px solid var(--border);
  width: min(360px, 100%);
}

.hero-card-head {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-100);
  color: var(--green-900);
  padding: 8px 10px;
  border-radius: 10px;
  font-weight: 700;
  margin-bottom: 8px;
}

.hero-card-copy {
  margin: 4px 0 12px;
  color: var(--gray-700);
}

.hero-avatar-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--green-900);
  color: #fff;
  font-weight: 700;
}

.dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #00c853;
  display: inline-block;
}

.page-content {
  padding: 28px 0 48px;
}

.content-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.filters-toggle {
  display: none;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 8px;
  padding: 10px 14px;
  font-weight: 600;
  cursor: pointer;
}

.sort-control {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  color: var(--gray-700);
}

.sort-button {
  border: 1px solid var(--border);
  background: #fff;
  padding: 10px 14px;
  border-radius: 10px;
  min-width: 160px;
  text-align: left;
  cursor: pointer;
}

.content-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 20px;
}

.filters-panel {
  position: sticky;
  top: 96px;
  align-self: start;
}

.filter-card {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
  box-shadow: var(--shadow-soft);
  background: #fff;
}

.filter-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
  margin-bottom: 12px;
}

.reset-button {
  border: none;
  background: transparent;
  color: var(--green-900);
  font-weight: 600;
  cursor: pointer;
}

.filter-group {
  border-top: 1px solid var(--border);
  padding-top: 12px;
  margin-top: 12px;
}

.filter-title {
  font-weight: 700;
  margin-bottom: 6px;
}

.input-radio,
.input-checkbox {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--gray-700);
  padding: 6px 0;
}

.input-radio input,
.input-checkbox input {
  accent-color: var(--green-900);
}

.input-icon {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 10px;
  margin-bottom: 8px;
  color: #9ca3af;
}

.input-icon input {
  border: none;
  outline: none;
  flex: 1;
  font-size: 14px;
  color: var(--gray-700);
}

.input-icon svg {
  width: 16px;
  height: 16px;
}

.breed-list {
  display: grid;
  gap: 2px;
}

.collapsible {
  transition: all 0.2s ease;
}

.collapsible-header {
  width: 100%;
  border: none;
  background: transparent;
  padding: 8px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
  cursor: pointer;
}

.collapsible-content {
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.collapsible.collapsed .collapsible-content {
  max-height: 0;
}

.pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 4px 0 10px;
}

.pill {
  border: 1px solid var(--border);
  background: #fff;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--gray-700);
  cursor: pointer;
}

.range-row {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gray-700);
  font-size: 14px;
  padding-bottom: 12px;
}

.range-bar {
  flex: 1;
  height: 6px;
  background: var(--gray-100);
  border-radius: 999px;
  position: relative;
  overflow: hidden;
}

.range-bar span {
  display: block;
  height: 100%;
  background: var(--green-900);
  border-radius: 999px;
}

.color-swatches {
  display: flex;
  gap: 8px;
  padding-bottom: 12px;
}

.swatch {
  width: 26px;
  height: 26px;
  border-radius: 6px;
  display: inline-block;
  border: 1px solid var(--border);
}

.catalog {
  min-width: 0;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 16px;
}

.skeleton-card {
  height: 260px;
  border-radius: var(--card-radius);
  background: linear-gradient(90deg, #f1f5f9 25%, #e8edf2 50%, #f1f5f9 75%);
  background-size: 400% 100%;
  animation: shimmer 1.2s ease-in-out infinite;
}

@keyframes shimmer {
  0% { background-position: 100% 0; }
  100% { background-position: 0 0; }
}

.puppy-card {
  border: 1px solid var(--border);
  border-radius: var(--card-radius);
  overflow: hidden;
  background: #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
  display: block;
}

.puppy-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.07);
}

.card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--gray-900);
  padding: 6px 10px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.badge-video {
  padding-left: 32px;
  background-image: radial-gradient(circle at 12px 12px, #fff 0, #fff 6px, transparent 7px), radial-gradient(circle at 12px 12px, var(--green-900) 0, var(--green-900) 5px, transparent 6px);
  background-repeat: no-repeat;
  background-position: 8px 8px, 8px 8px;
}

.badge-banner {
  bottom: 10px;
  top: auto;
  left: 10px;
  right: 10px;
  text-align: center;
  background: #f8f3d5;
  color: #7a5a00;
  font-weight: 700;
}

.banner-gold {
  background: #14712d;
  color: #fff;
}

.card-body {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 12px 14px 14px;
  gap: 10px;
}

.card-body h3 {
  margin: 0 0 6px;
  font-size: 16px;
  color: var(--gray-900);
}

.card-body p {
  margin: 0;
  font-size: 14px;
  color: var(--gray-700);
}

.muted {
  color: var(--gray-500);
  font-size: 13px;
}

.favorite {
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 50%;
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.12s ease, color 0.12s ease;
}

.favorite:hover {
  background: var(--green-100);
  color: var(--green-900);
}

.icon-pill {
  border: 1px solid var(--border);
  background: #fff;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.empty-state {
  text-align: center;
  padding: 20px 0 0;
  color: var(--gray-700);
}

.empty-pill {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  background: var(--gray-100);
  font-weight: 700;
  margin-bottom: 6px;
}

.error-msg {
  padding: 12px;
  border: 1px solid #fca5a5;
  color: #b91c1c;
  background: #fef2f2;
  border-radius: 10px;
}

.primary-btn,
.secondary-btn,
.ghost-btn {
  border: none;
  border-radius: 10px;
  padding: 10px 14px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.primary-btn {
  background: var(--green-900);
  color: #fff;
  box-shadow: 0 6px 16px rgba(11, 138, 74, 0.25);
}

.secondary-btn {
  background: var(--green-100);
  color: var(--green-900);
  border: 1px solid var(--border);
}

.ghost-btn {
  background: transparent;
  color: var(--green-900);
  border: 1px solid var(--border);
}

.admin-body {
  background: #f7fafc;
}

.admin-main {
  padding: 32px 24px 42px;
}

.admin-panel {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-soft);
  padding: 20px;
}

.admin-panel h1 {
  margin: 0 0 6px;
}

.admin-form {
  margin-top: 18px;
  display: grid;
  gap: 16px;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.form-grid label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 600;
  color: var(--gray-900);
}

.form-grid input,
.form-grid select {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 14px;
  color: var(--gray-900);
}

.form-grid input:focus,
.form-grid select:focus {
  outline: 2px solid var(--green-100);
}

.checkbox-row {
  flex-direction: row;
  align-items: center;
  gap: 10px;
  font-weight: 600;
}

.full-width {
  grid-column: 1 / -1;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.status-text {
  font-weight: 600;
  color: var(--gray-700);
}

.admin-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.list-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.puppy-list {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.puppy-row {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.row-main {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.puppy-row img {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid var(--border);
}

.row-actions {
  display: inline-flex;
  gap: 6px;
}

.wide {
  grid-column: 1 / -1;
}

.detail-grid {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: #f9fbfa;
}

.detail-label {
  font-weight: 700;
  color: var(--gray-900);
}

.detail-value {
  color: var(--gray-700);
}

.collapsible-block {
  transition: max-height 0.25s ease, padding 0.2s ease;
  overflow: hidden;
  max-height: 9999px;
}

.collapsible-block.collapsed {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
}

.ghost-btn.sm {
  padding: 8px 10px;
  font-size: 13px;
}

.ghost-btn.danger {
  color: #b91c1c;
  border-color: #fca5a5;
}

.toggle-btn {
  padding: 8px 12px;
}

.dashboard-shell {
  display: grid;
  grid-template-columns: 240px 1fr;
  min-height: 100vh;
}

.dash-sidebar {
  background: #ffffff;
  color: #2d3a45;
  padding: 16px 14px;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 20px;
  min-height: 100vh;
  position: sticky;
  top: 0;
  box-shadow: 6px 0 18px rgba(0, 0, 0, 0.08);
}

.sidebar-brand a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #f56f3f;
  font-weight: 800;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.dash-main {
  background: #f7fafc;
  min-height: 100vh;
  padding-bottom: 40px;
}

.dash-header {
  padding: 24px 24px 10px;
  background: #f7fafc;
  position: sticky;
  top: 0;
  z-index: 1;
}

.sidebar-nav {
  display: grid;
  gap: 6px;
}

.nav-section {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  opacity: 0.8;
  padding-left: 6px;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border-radius: 10px;
  color: #5b6570;
  font-weight: 700;
  transition: background 0.15s ease, color 0.15s ease, transform 0.12s ease;
  background: #f7f8fa;
  border: 1px solid #eef1f5;
  margin-bottom: 4px;
}

.nav-link:hover {
  background: #ffe5d7;
  color: #f56f3f;
}

.nav-link.active {
  background: #ffe0d1;
  color: #f56f3f;
  border-color: #ffd1bb;
}

.nav-icon {
  width: 18px;
  display: inline-flex;
  justify-content: center;
}

.admin-section.hidden {
  display: none;
}

@media (max-width: 960px) {
  .dashboard-shell {
    grid-template-columns: 1fr;
  }
  .dash-sidebar {
    position: relative;
    min-height: auto;
  }
  .dash-main {
    padding: 0 12px 40px;
  }
  .dash-header {
    padding-left: 0;
  }
}

.row-actions {
  display: inline-flex;
  gap: 6px;
}

.form-grid textarea {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 14px;
  color: var(--gray-900);
  font-family: inherit;
}

.upload-row input[type="file"] {
  padding: 8px 0;
}

.preview-box {
  margin-top: 6px;
  display: flex;
  gap: 8px;
}

.preview-box img,
.preview-box video {
  max-width: 140px;
  max-height: 120px;
  border-radius: 10px;
  border: 1px solid var(--border);
}

.contact-card .contact-phone {
  font-weight: 700;
  display: inline-block;
  margin-top: 8px;
}

.preview-box img {
  max-width: 100px;
  max-height: 100px;
  object-fit: contain;
}

.payment-row {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  background: #fff;
  box-shadow: var(--shadow-soft);
}

.small-link {
  color: var(--green-900);
  font-weight: 600;
  font-size: 13px;
}

.details-main {
  padding: 20px 24px 40px;
}

.details-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin: 10px 0 18px;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--gray-700);
  font-size: 14px;
}

.details-grid {
  display: grid;
  grid-template-columns: minmax(520px, 1fr) 340px;
  gap: 24px;
  align-items: start;
}

.media-panel {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 12px;
  align-items: start;
}

.thumbs {
  display: grid;
  gap: 10px;
}

.thumb {
  border: 2px solid transparent;
  border-radius: 12px;
  overflow: hidden;
  padding: 0;
  background: none;
  cursor: pointer;
  box-shadow: var(--shadow-soft);
}

.thumb img {
  width: 100%;
  height: 90px;
  object-fit: cover;
  display: block;
}

.thumb.active {
  border-color: var(--green-900);
}

.hero-media {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.hero-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hero-count {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0,0,0,0.7);
  color: #fff;
  padding: 6px 10px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 12px;
}

.media-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.92);
  border: 1px solid var(--border);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
}

.media-nav.prev { left: 10px; }
.media-nav.next { right: 10px; }

.summary-panel {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow-soft);
  background: #fff;
  position: sticky;
  top: 86px;
}

.summary-header h1 {
  margin: 0;
  font-size: 26px;
}

.available-line {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gray-700);
  margin-top: 6px;
}

.price-line {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 14px 0;
}

.price {
  font-size: 22px;
  font-weight: 700;
}

.facts {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 16px;
  margin: 0 0 14px;
}

.facts dt {
  font-weight: 700;
  color: var(--gray-900);
}

.facts dd {
  margin: 2px 0 0;
  color: var(--gray-700);
}

.summary-actions {
  display: grid;
  gap: 10px;
}

.block {
  width: 100%;
  justify-content: center;
  text-align: center;
}

.info-line {
  display: flex;
  align-items: center;
  gap: 10px;
  border-top: 1px solid var(--border);
  padding-top: 12px;
  margin-top: 12px;
}

.details-body {
  display: grid;
  grid-template-columns: 1.25fr 0.6fr;
  gap: 20px;
  margin-top: 26px;
}

.about-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  box-shadow: var(--shadow-soft);
  background: #fff;
}

.about-card h2 {
  margin: 0 0 6px;
}

.sub-meta {
  color: var(--gray-700);
  margin-bottom: 14px;
}

.breeder-line {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.about-text {
  color: var(--gray-700);
  margin-bottom: 18px;
  line-height: 1.6;
}

.highlight-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
}

.highlight-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--gray-100);
}

.icon-check {
  color: var(--green-900);
  font-weight: 700;
}

.contact-stack {
  display: grid;
  gap: 14px;
}

.contact-card,
.promo-card {
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  background: #f1faf5;
  box-shadow: var(--shadow-soft);
}

.contact-avatars {
  display: flex;
  gap: 6px;
  margin: 10px 0;
}

.contact-link.center {
  justify-content: center;
}

.promo-card {
  background: #f7f6eb;
}

.promo-text {
  font-weight: 700;
  color: #7a5a00;
}

.payment-list {
  display: grid;
  gap: 12px;
  margin-top: 12px;
}

.payment-card {
  border: 1px solid #e4efe7;
  border-radius: 16px;
  padding: 14px;
  background: #f2faf6;
  box-shadow: 0 14px 38px rgba(11, 138, 74, 0.08);
}

.payment-pill {
  padding: 14px 16px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid #eef2f5;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
  color: var(--gray-900);
  text-align: left;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.payment-pill:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.1);
}

.payment-pill .label {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0.1px;
}

.payment-pill .chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  background: linear-gradient(135deg, #e7f3ec, #d7ebe0);
  color: #0b8a4a;
  font-weight: 800;
  box-shadow: var(--shadow-soft);
}

.payment-pill .handle {
  margin-top: 4px;
  color: var(--gray-700);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.payment-pill a {
  color: var(--green-900);
  font-weight: 700;
  text-decoration: none;
}

.payment-pill .link-icon {
  display: inline-flex;
  width: 16px;
  height: 16px;
  align-items: center;
  justify-content: center;
  color: var(--green-900);
}

.payment-actions {
  display: grid;
  gap: 10px;
  margin: 14px 0;
}

.qr-box {
  margin-top: 10px;
  display: grid;
  place-items: start;
}

.qr-box img {
  max-width: 150px;
  max-height: 150px;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,0.05);
}

.payment-row-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-pay-card {
  display: grid;
  gap: 10px;
}

.pay-modal-card {
  width: min(640px, 96vw);
}

.modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.modal-body-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
}

.modal-handle {
  font-weight: 700;
  color: var(--gray-900);
}

.copy-wrap {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.copy-wrap .ghost-btn[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}

.big-chip {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: linear-gradient(145deg, #d5f5e6, #b8e7d1);
}

.pay-name {
  font-size: 20px;
  font-weight: 800;
}

@media (max-width: 720px) {
  .modal-content {
    width: 94vw;
  }
  .modal-body-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .modal-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .copy-wrap {
    width: 100%;
  }

  .qr-box {
    justify-self: center;
  }
}

@media (max-width: 540px) {
  .modal-body-grid {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .modal-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .copy-wrap {
    width: 100%;
  }

  .qr-box {
    justify-self: center;
  }
}
.payment-grid {
  display: grid;
  gap: 14px;
}

.payment-pill.action {
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.payment-pill.action:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.qr-box.small img {
  max-width: 120px;
  max-height: 120px;
}

.pay-cta-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pay-chip-button {
  border: none;
  background: linear-gradient(145deg, #fdf2ea, #ffd9c2);
  color: #e35d23;
  padding: 10px 14px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  box-shadow: 0 10px 22px rgba(227, 93, 35, 0.18);
  cursor: pointer;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.pay-chip-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(227, 93, 35, 0.25);
}

.pay-card {
  max-width: 820px;
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  padding: 18px 18px 24px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
}

.pay-secure {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #eef5ff;
  color: #1f2dc5;
  padding: 6px 10px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 12px;
  box-shadow: inset 0 0 0 1px #d7e6ff;
}

.pay-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid #e5e7eb;
}

.pay-kicker {
  color: #f56f3f;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  font-size: 12px;
  margin: 0 0 4px;
}

.pay-title {
  margin: 0;
  font-size: 24px;
  font-weight: 800;
  color: var(--gray-900);
}

.pay-badge {
  background: #e0ebff;
  color: #1f2dc5;
  padding: 8px 12px;
  border-radius: 12px;
  font-weight: 700;
  box-shadow: inset 0 0 0 1px #cdd9ff;
}
.modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.modal.open {
  display: flex;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(2px);
}

.modal-content {
  position: relative;
  background: #fff;
  border-radius: 14px;
  padding: 18px 18px 20px;
  width: min(520px, 92vw);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.12);
  z-index: 1;
}

.modal-close {
  position: absolute;
  top: 10px;
  right: 10px;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
}

.modal-form {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

.modal-form label {
  display: grid;
  gap: 6px;
  font-weight: 700;
  color: var(--gray-900);
}

.modal-form input {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 14px;
}

.modal-form select,
.modal-form input:focus,
.modal-form select:focus {
  outline: 2px solid var(--green-100);
}

.modal-form select {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 14px;
  background: #fff;
}

.modal-form .form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

@media (max-width: 1100px) {
  .details-grid {
    grid-template-columns: 1fr;
  }

  .summary-panel {
    position: static;
  }

  .media-panel {
    grid-template-columns: 80px 1fr;
  }

  .details-body {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 1100px) {
  .header-inner {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .brand {
    width: 100%;
  }

  .header-actions {
    width: 100%;
  }

  .contact-link {
    padding: 8px 10px;
  }

  .admin-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 960px) {
  .content-grid {
    grid-template-columns: 1fr;
  }

  .filters-toggle {
    display: inline-flex;
    align-items: center;
  }

  .filters-panel {
    display: none;
    position: static;
  }

  .filters-panel.open {
    display: block;
  }

  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero-card {
    justify-content: flex-start;
  }
}

@media (max-width: 720px) {
  .nav-links {
    display: none;
  }

  .header-inner {
    padding: 14px 18px;
  }

  .search-bar {
    max-width: none;
  }

  .hero-content h1 {
    font-size: 24px;
  }
}

@media (max-width: 540px) {
  .top-strip {
    padding: 10px 12px;
  }

  .cards-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }

  .hero-left h1 {
    font-size: 26px;
  }

  .media-panel {
    grid-template-columns: 1fr;
  }

  .thumbs {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    order: 2;
  }

  .thumb img {
    height: 72px;
  }
}
