/* =========================================================
   GermanShepherdDogBreeders.com — /css/style.css
   Clean variables + compatibility mapping + full styles
   ========================================================= */

/* ===== Root Variables (NEW system + compatibility mapping) ===== */
:root {
  /* ===== Base / Canvas ===== */
  --bg-main: #0b0d10;          /* primary background (charcoal) */
  --bg-soft: #11151b;          /* cards / sections */
  --bg-elevated: #161b22;      /* modals, raised UI */

  /* ===== Text ===== */
  --text-main: #f2f2f2;        /* primary text */
  --text-muted: #a0a6ad;       /* secondary text */
  --text-soft: #c9cdd3;        /* subtle emphasis */

  /* ===== Brand / Accents ===== */
  --brand-primary: #ff4d01;    /* burnt orange (primary action) */
  --brand-primary-soft: rgba(255,77,1,.15);

  --brand-secondary: #3b5a40;  /* deep forest green (trust / education) */
  --brand-secondary-soft: rgba(59,90,64,.18);

  /* ===== UI / Borders ===== */
  --border-subtle: rgba(255,255,255,.08);
  --border-strong: rgba(255,255,255,.14);

  /* ===== States ===== */
  --success: #4caf50;
  --warning: #ffb300;
  --danger: #ff0000; /* per SOLD badge rule */

  /* ===== Links ===== */
  --link: var(--brand-primary);
  --link-hover: #ff6a2a;

  /* ===== Layout / Radius / Shadows ===== */
  --shadow-soft: 0 18px 40px rgba(0, 0, 0, 0.45);
  --radius-lg: 18px;
  --radius-md: 12px;
  --radius-full: 999px;
  --container: 1120px;

  /* ===== Compatibility mapping (keeps existing CSS working) ===== */
  --bg: var(--bg-main);
  --bg-card: var(--bg-soft);
  --accent: var(--brand-primary);
  --accent-soft: var(--brand-primary-soft);
  --accent-strong: var(--brand-primary);
  --text: var(--text-main);
  --badge: var(--bg-elevated);
}

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

html, body {
  margin: 0;
  padding: 0;
}

body {
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  display: flex;
  flex-direction: column;
}

/* =========================================================
   Links (default = text links)
   ========================================================= */
a {
  color: var(--link);
  text-decoration: none;
}

a:hover {
  color: var(--link-hover);
  text-decoration: underline;
}

/* Exclude button-style links from default hover behavior */
a.btn-primary:hover,
a.btn-ghost:hover,
a.btn-soft:hover,
a.nav-cta:hover,
.mobile-cta:hover {
  color: inherit;
  text-decoration: none;
}

/* Visible keyboard focus (global) */
:focus-visible {
  outline: 2px solid rgba(255,77,1,0.75);
  outline-offset: 2px;
}

/* Container */
.wrap {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* =========================================================
   Skip Link + Screen Reader Only
   Hides "Skip to content" unless focused via keyboard
   ========================================================= */
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.skip-link:focus,
.skip-link:focus-visible,
.sr-only:focus,
.sr-only:focus-visible {
  position: fixed !important;
  top: 12px !important;
  left: 12px !important;
  width: auto !important;
  height: auto !important;
  padding: 10px 12px !important;
  margin: 0 !important;
  overflow: visible !important;
  clip: auto !important;
  white-space: normal !important;

  z-index: 10000 !important;
  background: rgba(22,27,34,0.98) !important;
  color: var(--text) !important;
  border: 1px solid var(--border-strong) !important;
  border-radius: 12px !important;
  box-shadow: 0 16px 34px rgba(0,0,0,0.5) !important;
  text-decoration: none !important;
}

/* ===== Header / Nav ===== */
header.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: linear-gradient(
    to bottom,
    rgba(22,27,34,0.92),
    rgba(22,27,34,0.72)
  );
  border-bottom: 1px solid var(--border-strong);
}

.site-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 0.2rem;
  gap: 1.25rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 12px;
  background: radial-gradient(circle at 20% 20%, var(--brand-primary), var(--bg-elevated) 60%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  box-shadow: 0 10px 25px rgba(255,77,1, 0.45);
}

.brand-text { display: flex; flex-direction: column; }

.brand-text span:first-child {
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text);
}

.brand-text span:last-child {
  font-size: 0.82rem;
  color: var(--text-muted);
}

nav.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  font-size: 0.92rem;
}

nav.site-nav a {
  color: var(--text-muted);
  padding: 0.35rem 0.5rem;
  border-radius: var(--radius-full);
  transition: color 0.15s ease, background 0.15s ease, border-color 0.15s ease;
  text-decoration: none;
  border: 1px solid transparent;
}

nav.site-nav a:hover {
  color: var(--text);
  background: rgba(255,255,255,.06);
  text-decoration: none;
}

/* Active nav link (orange highlight) */
.site-nav a[aria-current="page"]{
  color: var(--text);
  background: var(--brand-primary-soft);
  border-color: rgba(255,77,1,.55);
  text-decoration: none;
}
.site-nav a[aria-current="page"]:hover{
  color: var(--text);
  background: rgba(255,77,1,.22);
  text-decoration: none;
}

.nav-cta {
  padding: 0.45rem 0.9rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,77,1,.65);
  background: radial-gradient(circle at top left, rgba(255,77,1,.22), rgba(22,27,34,.96));
  font-size: 0.9rem;
  font-weight: 700;
  color: #ffd5c2;
  text-decoration: none;
  box-shadow: 0 10px 28px rgba(255,77,1,.25);
}

.nav-cta:hover {
  border-color: rgba(255,77,1,.85);
  background: radial-gradient(circle at top left, rgba(255,77,1,.34), rgba(22,27,34,.98));
  text-decoration: none;
}

/* =========================================================
   Mobile Hamburger — MATCHES CURRENT HEADER HTML
   ========================================================= */

/* ✅ Default hidden on desktop; enabled in mobile media query + hard lock */
.nav-toggle{
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border-radius: 12px;
  border: 1px solid var(--border-strong);
  background: rgba(22,27,34,0.85);
  color: var(--text);
  cursor: pointer;

  flex-direction: column;
  align-items: center;
  justify-content: center;

  gap: 4px;
  line-height: 0;
  box-shadow: 0 8px 18px rgba(0,0,0,.35);

  -webkit-tap-highlight-color: transparent;
}

.nav-toggle:hover{
  background: rgba(255,255,255,.06);
}

/* The 3 bars */
.nav-toggle-bar{
  display: block;
  width: 18px;
  height: 2px;
  background: rgba(242,242,242,0.95);
  border-radius: 999px;
  transition: transform .18s ease, opacity .18s ease;
}

/* Animate into an X */
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1){
  transform: translateY(6px) rotate(45deg);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2){
  opacity: 0;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3){
  transform: translateY(-6px) rotate(-45deg);
}

/* Version B: a single wrapper <span class="bars"><span></span></span> */
.nav-toggle .bars{
  display: block;
  width: 18px;
  height: 14px;
  position: relative;
}

.nav-toggle .bars::before,
.nav-toggle .bars::after,
.nav-toggle .bars span{
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(242,242,242,0.9);
  border-radius: 999px;
}

.nav-toggle .bars::before{ top: 0; }
.nav-toggle .bars span{ top: 6px; }
.nav-toggle .bars::after{ top: 12px; }

/* Dropdown panel container (the div#mobile-nav in header.html) */
.mobile-nav {
  border-bottom: 1px solid var(--border-strong);
  background: rgba(22,27,34,0.92);
  backdrop-filter: blur(14px);
}

.mobile-nav-inner {
  display: grid;
  gap: 0.4rem;
  padding: 0.75rem 0;
}

.mobile-nav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 0.75rem;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.08);
  background: rgba(11,13,16,0.45);
  color: var(--text);
  text-decoration: none;
}

.mobile-nav a:hover {
  background: rgba(255,255,255,.06);
  text-decoration: none;
}

.mobile-nav a[aria-current="page"]{
  background: var(--brand-primary-soft);
  border-color: rgba(255,77,1,.55);
}

.mobile-cta {
  border-color: rgba(255,77,1,.35);
  background: radial-gradient(circle at top left, rgba(255,77,1,.18), rgba(11,13,16,0.55));
}

/* ===== Hero ===== */
.hero { padding: 2.6rem 0 2rem; }

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: center;
}

.eyebrow {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: rgba(255,77,1,.75);
  margin-bottom: 0.7rem;
}

.hero-title {
  font-size: clamp(2.1rem, 3vw, 2.7rem);
  line-height: 1.05;
  margin: 0 0 0.9rem;
  color: var(--text);
}

.hero-title span.highlight {
  background: linear-gradient(120deg, var(--brand-primary), #ff8a57);
  -webkit-background-clip: text;
  color: transparent;
}

.hero-sub {
  margin: 0 0 1.4rem;
  color: var(--text-muted);
  font-size: 0.98rem;
  max-width: 34rem;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1.4rem;
  align-items: center;
  margin-bottom: 1.6rem;
}

.trust-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.28rem 0.7rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-strong);
  background: rgba(22,27,34,0.8);
  font-size: 0.78rem;
  color: var(--text);
}

.trust-pill span.emoji { font-size: 0.95rem; }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-bottom: 1.2rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 1.15rem;
  border-radius: var(--radius-full);
  border: none;
  background: linear-gradient(120deg, var(--brand-primary), #ff6a2a);
  color: #120a06;
  font-weight: 800;
  text-decoration: none;
  font-size: 0.95rem;
  box-shadow: 0 16px 34px rgba(255,77,1,.35);
  cursor: pointer;
}

.btn-primary span.arrow { font-size: 1.1rem; }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.65rem 1.05rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-strong);
  background: rgba(22,27,34,0.8);
  color: var(--text);
  font-size: 0.9rem;
  text-decoration: none;
  cursor: pointer;
}
.btn-ghost:hover { text-decoration: none; }

.hero-footnote {
  font-size: 0.85rem;
  color: var(--text-muted);
}
.hero-footnote strong { color: var(--text); }

/* ===== Search Panel ===== */
.search-panel {
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at top left, rgba(255,255,255,0.06), rgba(22,27,34,0.96));
  box-shadow: var(--shadow-soft);
  padding: 1.3rem 1.25rem 1.4rem;
  border: 1px solid var(--border-strong);
}

.search-panel h2 {
  font-size: 1rem;
  margin: 0 0 0.4rem;
  color: var(--text);
}

.search-panel p {
  margin: 0 0 1rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.search-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.1fr auto;
  gap: 0.65rem;
  align-items: center;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.field label { padding-left: 0.1rem; }

/* Inputs/selects stay pill-shaped */
.field input,
.field select {
  border-radius: var(--radius-full);
  border: 1px solid var(--border-strong);
  background: rgba(22,27,34,0.95);
  color: var(--text);
  padding: 0.55rem 0.75rem;
  font-size: 0.9rem;
  outline: none;
}

/* Textarea gets long-form styling */
.field textarea {
  border-radius: var(--radius-md);
  border: 1px solid var(--border-strong);
  background: rgba(22,27,34,0.95);
  color: var(--text);
  padding: 0.65rem 0.75rem;
  font-size: 0.9rem;
  outline: none;
  resize: vertical;
  min-height: 120px;
}

.field input::placeholder,
.field textarea::placeholder { color: rgba(160,166,173,.75); }

.btn-search {
  align-self: flex-end;
  padding: 0.62rem 1.1rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(59,90,64,.65);
  background: linear-gradient(120deg, rgba(59,90,64,1), rgba(59,90,64,.85));
  color: #eaffee;
  font-weight: 800;
  font-size: 0.9rem;
  cursor: pointer;
  white-space: nowrap;
}

.btn-search:hover { filter: brightness(1.05); }

.search-hint {
  margin-top: 0.65rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===== Sections ===== */
section { margin-bottom: 2.4rem; }

section h2.section-title {
  font-size: 1.3rem;
  margin-bottom: 0.9rem;
  color: var(--text);
}

.section-intro {
  margin: 0 0 1.3rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  max-width: 38rem;
}

/* ===== State Grid ===== */
.state-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 0.7rem;
}

.state-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 0.25rem;
  background: rgba(22,27,34,0.85);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-strong);
  padding: 0.8rem 0.9rem 0.75rem;
  color: var(--text);
  box-shadow: 0 10px 22px rgba(0,0,0,0.35);
  transition: transform 0.12s ease, box-shadow 0.12s ease, border-color 0.12s ease, background 0.12s ease;
  text-decoration: none;
}

.state-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 30px rgba(0,0,0,0.45);
  border-color: rgba(255,77,1,.55);
  background: radial-gradient(circle at top left, rgba(255,77,1,0.14), rgba(22,27,34,0.92));
  text-decoration: none;
}

.state-name {
  font-weight: 800;
  font-size: 0.96rem;
  color: var(--text);
}

.state-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.state-tag {
  align-self: flex-start;
  margin-top: 0.1rem;
  font-size: 0.78rem;
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-full);
  background: rgba(22,27,34,0.9);
  border: 1px solid var(--border-strong);
  color: var(--text-soft);
}

/* ===== Featured Breeders ===== */
.breeder-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.breeder-card {
  border-radius: var(--radius-lg);
  background: radial-gradient(circle at top left, rgba(22,27,34,0.55), rgba(11,13,16,0.92));
  border: 1px solid var(--border-strong);
  padding: 1rem 1.05rem 0.9rem;
  box-shadow: var(--shadow-soft);
}

.breeder-header {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  align-items: flex-start;
  margin-bottom: 0.55rem;
}

.breeder-name {
  font-weight: 900;
  font-size: 1rem;
  margin: 0;
  color: var(--text);
}

.breeder-location {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0.1rem 0 0.5rem;
}

.badge-featured {
  padding: 0.2rem 0.55rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  background: var(--brand-primary-soft);
  color: #ffd5c2;
  border: 1px solid rgba(255,77,1,.6);
}

.breeder-body {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 0.6rem;
}

.breeder-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.7rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.7rem;
}

.breeder-meta span {
  display: inline-flex;
  align-items: center;
  gap: 0.27rem;
}

/* ===== How it works ===== */
.how-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 0.9rem;
}

.how-card {
  border-radius: var(--radius-md);
  background: linear-gradient(to bottom right, rgba(22,27,34,0.9), rgba(22,27,34,0.6));
  border: 1px solid var(--border-subtle);
  padding: 0.85rem 0.95rem;
  font-size: 0.9rem;
}

.how-title {
  font-weight: 900;
  margin: 0 0 0.3rem;
  font-size: 0.95rem;
  color: var(--text);
}

.how-text {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.86rem;
}

/* ===== Footer ===== */
footer.site-footer {
  margin-top: auto;
  border-top: 1px solid var(--border-strong);
  background: radial-gradient(circle at top, rgba(22,27,34,0.9), rgba(11,13,16,0.95));
  padding: 1.3rem 0 1.1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem 1.4rem;
  align-items: center;
  justify-content: space-between;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
}

.footer-links a:hover { color: var(--text); }

/* ===== Responsive ===== */
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: minmax(0, 1fr); }
  .search-grid { grid-template-columns: minmax(0, 1fr); }
  .btn-search { width: 100%; }
}

/* Mobile rules (use hamburger + mobile panel; hide desktop nav/cta) */
@media (max-width: 720px) {
  .site-header-inner { padding: 0.7rem 0.1rem; }
  .hero { padding-top: 1.9rem; }

  nav.site-nav { display: none; }
  .nav-cta { display: none; }

  .nav-toggle { display: inline-flex; }

  .hero-grid { grid-template-columns: minmax(0, 1fr); }
  .search-grid { grid-template-columns: minmax(0, 1fr); }
  .btn-search { width: 100%; }
}

/* =========================================================
   CLICK FIX (global)
   Prevent decorative overlays from blocking clicks
   ========================================================= */
.hero__overlay,
.hero-overlay,
.overlay,
.backdrop,
.modal-backdrop {
  pointer-events: none !important;
}

html::before, html::after,
body::before, body::after {
  pointer-events: none !important;
}

header.site-header,
main,
footer {
  position: relative;
  z-index: 2;
}

/* =========================================================
   LONG-FORM CONTENT / EDITORIAL PAGES
   Used for About, Contact, Policies, Guides
   ========================================================= */
.page { padding: 2.5rem 0 3rem; }

.content {
  max-width: 760px;
  margin: 0 auto;
}

.content h1 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  line-height: 1.1;
  margin: 0 0 1.25rem;
  color: var(--text);
}

.content h2 {
  font-size: 1.45rem;
  margin: 2.4rem 0 0.85rem;
  color: var(--text);
}

.content h3 {
  font-size: 1.15rem;
  margin: 2rem 0 0.6rem;
  color: var(--text);
}

.content p {
  font-size: 0.98rem;
  line-height: 1.75;
  margin: 0 0 1.15rem;
  color: var(--text-muted);
}

.content ul {
  margin: 0.5rem 0 1.4rem 1.25rem;
  padding: 0;
}

.content li {
  margin-bottom: 0.55rem;
  line-height: 1.65;
  color: var(--text-muted);
}

.content strong {
  color: var(--text);
  font-weight: 700;
}

.content a {
  color: var(--link);
  text-decoration: underline;
}

.content a:hover { color: var(--link-hover); }

.content hr {
  border: none;
  border-top: 1px solid var(--border-strong);
  margin: 2.5rem 0;
}

/* =========================================================
   HARD LOCK: Hamburger + mobile dropdown should NOT appear on desktop
   Paste at VERY BOTTOM of style.css
   ========================================================= */

/* Desktop defaults */
.nav-toggle { display: none !important; }
#mobile-nav { display: none !important; }

/* Mobile only */
@media (max-width: 720px) {
  .nav-toggle { display: inline-flex !important; }
  #mobile-nav { display: block !important; } /* still controlled by [hidden] */
  #mobile-nav[hidden] { display: none !important; }
}

/* =========================================================
   BADGES + BUTTONS (GLOBAL)
   ========================================================= */

/* Breeder badge + helper link (global) */
.badge-ultimate{
  display:inline-flex;
  align-items:center;
  gap:.35rem;
  font-size:.78rem;
  font-weight:800;
  letter-spacing:.02em;
  padding:.22rem .55rem;
  border-radius:999px;
  border:1px solid rgba(255,77,1,.55);
  background:rgba(255,77,1,.12);
  color:#ff4d01;
  white-space:nowrap;
}
.badge-row{
  display:flex;
  gap:.55rem;
  flex-wrap:wrap;
  align-items:center;
  margin-top:.35rem;
}
.badge-help{
  font-size:.85rem;
  line-height:1;
  color: var(--text-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  opacity: .95;
  white-space: nowrap;
}
.badge-help:hover{
  opacity: 1;
  text-decoration: underline;
}

/* Small CTA button for cards (optional) */
.btn-primary.btn-sm{
  padding: .55rem .95rem;
  font-size: .88rem;
  box-shadow: 0 14px 30px rgba(255,77,1,.32);
}
.btn-primary.btn-sm:hover{
  box-shadow: 0 18px 38px rgba(255,77,1,.45);
  text-decoration: none;
}

/* Breeder actions default link style (non-button) */
.breeder-actions a{
  font-size: 0.86rem;
  color: rgba(220, 240, 255, 0.9);
  text-decoration: none;
}
.breeder-actions a:hover{
  text-decoration: underline;
}

/* Subtle “Browse states”-style CTA for breeder cards */
.breeder-actions .btn-soft{
  display:inline-flex;
  align-items:center;
  gap:.4rem;
  padding:.45rem .75rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(255,77,1,.35);
  background: radial-gradient(circle at top left, rgba(255,77,1,.14), rgba(22,27,34,.85));
  color: rgba(255,255,255,.92);
  font-weight: 800;
  font-size: .86rem;
  text-decoration: none !important;
  box-shadow: 0 10px 22px rgba(255,77,1,.16);
  transition: transform .12s ease, box-shadow .12s ease, border-color .12s ease, background .12s ease;
}
.breeder-actions .btn-soft:hover{
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(255,77,1,.22);
  border-color: rgba(255,77,1,.5);
  background: radial-gradient(circle at top left, rgba(255,77,1,.18), rgba(22,27,34,.9));
  text-decoration: none !important;
}
.breeder-actions .btn-soft .arrow{
  font-size: 1.02rem;
}

/* ✅ Final safeguard: prevent button-style links from inheriting default hover */
.btn-primary:hover,
.btn-ghost:hover,
.btn-soft:hover {
  color: inherit;
  text-decoration: none;
}
