:root {
  /* Premium palette: dark navy, cream, white, orange accent */
  --ink: #071428;
  /* dark navy */
  --muted: #667680;
  --line: #dbe6ea;
  --paper: #fff9f2;
  /* soft cream */
  --surface: #ffffff;
  --brand: #f07a2d;
  /* orange accent */
  --brand-dark: #c55a20;
  --mint: #d9f0e5;
  --blue: #dcecf8;
  --yellow: #fff1ba;
  --shadow: 0 16px 42px rgba(31, 41, 51, 0.11);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  padding-top: 72px;
}

body.home,
body.front-page {
  padding-top: 0;
}

body.admin-bar {
  padding-top: calc(72px + 32px);
}

body.home.admin-bar,
body.front-page.admin-bar {
  padding-top: 0;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

.topbar {
  background: #17313b;
  color: #f7fbff;
  font-size: 0.9rem;
}

.topbar-inner,
.nav-inner,
.hero-inner,
.content-wrap,
.trust-inner,
.footer-inner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.topbar span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  background: rgba(255, 250, 244, 0.94);
  border-bottom: 1px solid rgba(223, 231, 239, 0.9);
  backdrop-filter: blur(14px);
}

body.admin-bar .site-nav {
  top: 32px;
}

.nav-inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.28rem;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  display: block;
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid rgba(223, 231, 239, 0.95);
  box-shadow: 0 8px 28px rgba(7, 20, 40, 0.12);
  padding: 4px;
}

.brand-name {
  color: var(--ink);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--brand);
  color: white;
}

@media (max-width: 720px) {
  .brand-logo {
    width: 42px;
    height: 42px;
  }

  .brand-name {
    font-size: 1rem;
  }
}

.nav-links,
.nav-actions,
.tabs {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-links a {
  padding: 10px 12px;
  color: #384452;
  font-weight: 650;
  border-radius: var(--radius);
}

.nav-links a:hover {
  background: #ffffff;
}

.nav-actions .btn.primary {
  box-shadow: none;
}

.nav-actions .btn.primary:hover {
  box-shadow: none;
}

.btn {
  border: 0;
  border-radius: var(--radius);
  min-height: 42px;
  padding: 0 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  font-weight: 750;
  color: var(--ink);
  background: #fff;
  box-shadow: 0 10px 30px rgba(7, 20, 40, 0.06);
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: none;
}

.btn.primary {
  color: white;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
}

.btn.primary:hover {
  background: var(--brand-dark);
}

.btn.ghost {
  border: 1px solid var(--line);
  background: white;
}

.icon-btn {
  width: 42px;
  padding: 0;
}

.mobile-filter-btn {
  display: none;
}

/* Hero adjustments for premium dog focus */
.hero {
  min-height: 510px;
  display: flex;
  align-items: stretch;
  background:
    linear-gradient(90deg, rgba(255, 249, 242, 0.96) 0%, rgba(255, 249, 242, 0.9) 45%),
    url("../images/hero-husky-luxury.png") center right / cover no-repeat;
  border-bottom: 1px solid var(--line);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 640px) minmax(300px, 440px);
  gap: 36px;
  align-items: center;
  padding: 48px 0 36px;
}

.hero-copy {
  padding-bottom: 48px;
}

.eyebrow {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--brand-dark);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  font-size: 0.78rem;
  background: #fff4de;
  padding: 7px 10px;
  border-radius: 999px;
}

h1 {
  margin: 18px 0 14px;
  font-size: clamp(2.35rem, 5vw, 4.9rem);
  line-height: 0.97;
  letter-spacing: 0;
  max-width: 620px;
}

.hero-copy p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 620px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(90px, 1fr));
  gap: 10px;
  max-width: 520px;
}

.stat {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(223, 231, 239, 0.8);
  border-radius: var(--radius);
  padding: 14px;
}

.stat strong {
  display: block;
  font-size: 1.28rem;
}

.stat span {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.35;
}

.finder {
  align-self: end;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(219, 230, 235, 0.9);
  border-radius: calc(var(--radius) * 1.2);
  box-shadow: 0 14px 40px rgba(7, 20, 40, 0.06);
  padding: 22px;
}

.finder h2 {
  margin: 0 0 16px;
  font-size: 1.25rem;
}

.field-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

label {
  display: grid;
  gap: 7px;
  color: #41505d;
  font-size: 0.84rem;
  font-weight: 750;
}

select,
input,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  color: var(--ink);
  min-height: 42px;
  padding: 0 12px;
  outline: none;
}

textarea {
  min-height: 88px;
  padding: 11px 12px;
  resize: vertical;
}

select:focus,
input:focus,
textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(224, 91, 50, 0.14);
}

.finder .btn {
  width: 100%;
  margin-top: 14px;
}

.tabs-wrap {
  background: white;
  border-bottom: 1px solid var(--line);
}

.tabs {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  min-height: 64px;
  overflow-x: auto;
}

.tab {
  border: 1px solid var(--line);
  background: #fbfdff;
  border-radius: 999px;
  padding: 9px 15px;
  color: #41505d;
  font-weight: 800;
  white-space: nowrap;
  cursor: pointer;
}

.tab.active {
  color: white;
  border-color: var(--brand);
  background: var(--brand);
}

.content-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 24px;
  padding: 28px 0 50px;
}

.puppies-page .section-head,
.puppies-page-head {
  margin-bottom: 22px;
}

.puppies-layout {
  display: grid;
  grid-template-columns: 292px minmax(0, 1fr);
  gap: 24px;
  padding: 0 0 50px;
}

.filters {
  position: sticky;
  top: 92px;
  align-self: start;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 10px 28px rgba(31, 41, 51, 0.07);
}

.filters h2,
.results-title h2,
.lead-form h2,
.trust-copy h2 {
  margin: 0;
  font-size: 1.35rem;
}

.filters-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.filters-close,
.mobile-filter-bar {
  display: none;
}

.filter-group {
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.filter-group:first-of-type {
  border-top: 0;
}

.filter-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  font-weight: 850;
}

.choice {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 31px;
  color: #40505d;
  font-weight: 650;
}

.choice input {
  width: 17px;
  height: 17px;
  min-height: 0;
  accent-color: var(--brand);
}

.filter-search {
  min-height: 42px;
  background: #f6f9fb;
}

.range-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
  font-size: 0.86rem;
  margin-top: 7px;
}

input[type="range"] {
  padding: 0;
  accent-color: var(--brand);
  border: 0;
}

.popular-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.popular-list button {
  width: 100%;
  border: 0;
  background: #f6f9fb;
  border-radius: var(--radius);
  min-height: 36px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  color: #40505d;
  font-weight: 750;
}

.results-title h2,
.lead-form h2,
.trust-copy h2 {
  margin: 0;
  font-size: 1.35rem;
}

.results-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 220px;
  gap: 14px;
  align-items: end;
  margin-bottom: 18px;
}

.breadcrumb {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.results-title p {
  margin: 9px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.sort-box label {
  width: 100%;
}

.listing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 8px 24px rgba(31, 41, 51, 0.07);
}

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

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 240ms ease;
}

.card-media-link {
  display: block;
  height: 100%;
  color: inherit;
}

.card:hover img {
  transform: scale(1.035);
}

.badge {
  position: absolute;
  left: 10px;
  top: 10px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.93);
  border-radius: 999px;
  padding: 6px 9px;
  font-size: 0.75rem;
  font-weight: 850;
  color: #25313b;
}

.price {
  position: absolute;
  right: 10px;
  bottom: 10px;
  color: white;
  background: #17313b;
  border-radius: var(--radius);
  padding: 7px 10px;
  font-weight: 900;
}

.card-body {
  padding: 14px;
}

.card-kicker {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 750;
}

.card h3 {
  margin: 8px 0 10px;
  font-size: 1.18rem;
}

.card-title-link {
  color: inherit;
  text-decoration: none;
}

.card-title-link:hover,
.card-title-link:focus-visible {
  color: var(--brand);
}

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

.puppy-card-facts span {
  min-width: 0;
}

.puppy-card-facts small {
  display: block;
  margin-bottom: 3px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.puppy-card-facts strong {
  display: block;
  color: #25313b;
  font-size: 0.98rem;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.meta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 12px;
}

.meta {
  background: #f7fafc;
  border-radius: var(--radius);
  padding: 9px;
  min-height: 54px;
}

.meta small {
  display: block;
  color: var(--muted);
  font-weight: 800;
  font-size: 0.72rem;
}

.meta strong {
  display: block;
  margin-top: 2px;
  font-size: 0.9rem;
}

.card p {
  min-height: 45px;
  margin: 0 0 13px;
  color: #52616f;
  line-height: 1.5;
  font-size: 0.92rem;
}

.card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr 42px;
  gap: 8px;
}

.empty {
  display: none;
  padding: 36px;
  text-align: center;
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.trust {
  background: white;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 34px;
  padding: 46px 0;
  align-items: center;
}

.trust-copy p {
  color: #52616f;
  line-height: 1.7;
  margin: 14px 0 22px;
}

.trust-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.trust-item {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 14px;
  background: #f8fbfd;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-weight: 750;
}

.trust-item i {
  color: var(--brand);
  flex: 0 0 auto;
}

.lead-form {
  background: rgba(255, 255, 255, 0.96);
  color: var(--ink);
  border-radius: calc(var(--radius) + 4px);
  padding: 26px;
  box-shadow: 0 18px 44px rgba(7, 20, 40, 0.08);
  border: 1px solid rgba(219, 230, 234, 0.9);
}

.lead-form p {
  margin: 8px 0 16px;
  color: var(--muted);
  line-height: 1.55;
}

.lead-form label {
  color: var(--ink);
}

.lead-form form {
  display: grid;
  gap: 12px;
}

.lead-form .btn {
  width: 100%;
}

.lead-form .lead-form-shortcode {
  margin-top: 18px;
}

.lead-form .ff-el-input--content,
.lead-form .ff-el-group,
.lead-form .ff-el-form-control,
.lead-form .ff-btn-submit {
  border-radius: var(--radius);
}

.lead-form .ff-el-form-control {
  background: #fff;
  border: 1px solid var(--line);
  color: var(--ink);
  box-shadow: none;
}

.lead-form .ff-el-form-control:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 4px rgba(240, 122, 45, 0.14);
}

.lead-form .ff-btn-submit {
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  color: #fff;
  border: 0;
  box-shadow: 0 12px 28px rgba(240, 122, 45, 0.22);
}

.lead-form .ff-btn-submit:hover {
  transform: translateY(-1px);
}

.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 18px;
}

.booking-modal[hidden] {
  display: none;
}

.booking-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  background: rgba(12, 20, 25, 0.68);
  backdrop-filter: blur(10px);
  cursor: pointer;
}

.booking-modal__panel {
  position: relative;
  z-index: 1;
  width: min(1020px, 100%);
  max-height: min(88vh, 860px);
  overflow: auto;
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.32);
}

.booking-modal__body {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: 18px;
  align-items: stretch;
  padding: 22px;
}

.booking-preview,
.booking-form-wrap {
  border-radius: calc(var(--radius) + 8px);
  border: 1px solid var(--line);
  background: #ffffff;
  box-shadow: var(--shadow);
}

.booking-preview {
  overflow: hidden;
  display: grid;
  grid-template-rows: minmax(240px, 1fr) auto;
}

.booking-preview img {
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  display: block;
  background: #eef4f7;
}

.booking-preview__copy {
  padding: 18px;
  display: grid;
  gap: 10px;
}

.booking-preview__copy h2 {
  margin: 0;
  font-size: clamp(1.4rem, 3vw, 2.3rem);
  line-height: 1.1;
}

.booking-preview__copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.booking-preview__copy p span {
  display: block;
}

.booking-form-wrap {
  padding: 22px;
}

.booking-form {
  display: grid;
  gap: 14px;
}

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

.booking-form-grid__full {
  grid-column: 1 / -1;
}

.booking-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 4px;
}

.booking-form-actions .btn {
  min-width: 170px;
}

.booking-modal__message {
  margin: 0 0 12px;
  min-height: 1.2em;
  font-weight: 700;
  color: var(--muted);
}

.booking-modal__message.is-success {
  color: #0f7a49;
}

.booking-modal__message.is-error {
  color: #b54708;
}

.booking-form.is-hidden,
.booking-success-card[hidden] {
  display: none !important;
}

.booking-success-card {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 14px;
  margin-top: 14px;
  padding: 30px 24px 26px;
  overflow: hidden;
  text-align: center;
  border: 1px solid rgba(16, 185, 129, 0.24);
  border-radius: calc(var(--radius) + 10px);
  background:
    radial-gradient(circle at 50% 0%, rgba(16, 185, 129, 0.12), transparent 36%),
    linear-gradient(180deg, #ffffff 0%, #f7fffb 100%);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.14);
  opacity: 0;
  transform: translateY(10px) scale(0.96);
  transition: opacity 260ms ease, transform 260ms ease;
}

.booking-success-card.is-visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.booking-success-check {
  position: relative;
  z-index: 1;
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: #ecfdf5;
  box-shadow: 0 16px 34px rgba(16, 185, 129, 0.2);
}

.booking-success-check svg {
  width: 100%;
  height: 100%;
  display: block;
}

.booking-success-check circle,
.booking-success-check path {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.booking-success-check circle {
  stroke: #10b981;
  stroke-width: 3;
  stroke-dasharray: 151;
  stroke-dashoffset: 151;
  animation: bookingCheckCircle 620ms ease forwards;
}

.booking-success-check path {
  stroke: #059669;
  stroke-width: 4.5;
  stroke-dasharray: 36;
  stroke-dashoffset: 36;
  animation: bookingCheckMark 460ms ease 360ms forwards;
}

.booking-success-card h3 {
  position: relative;
  z-index: 1;
  margin: 4px 0 0;
  color: #064e3b;
  font-size: clamp(1.45rem, 4vw, 2rem);
  line-height: 1.15;
}

.booking-success-card p {
  position: relative;
  z-index: 1;
  max-width: 560px;
  margin: 0;
  color: #334155;
  font-weight: 650;
  line-height: 1.7;
}

.booking-success-card__trust {
  color: #0f766e !important;
  font-weight: 850 !important;
}

.booking-success-actions {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  width: 100%;
  margin-top: 4px;
}

.booking-success-actions .btn {
  min-width: 190px;
}

.booking-success-whatsapp {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid rgba(15, 23, 42, 0.12) !important;
  color: #0f172a !important;
  background: #ffffff !important;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08) !important;
}

.booking-success-whatsapp:hover {
  border-color: rgba(37, 211, 102, 0.42) !important;
  color: #047857 !important;
  background: #f8fffb !important;
  box-shadow: 0 16px 34px rgba(37, 211, 102, 0.16) !important;
  transform: translateY(-1px);
}

.booking-success-whatsapp svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  display: block;
  color: #25d366;
  fill: currentColor;
}

.booking-success-whatsapp svg path {
  fill: currentColor;
}

.booking-success-confetti {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.booking-success-confetti span {
  position: absolute;
  top: -18px;
  left: 50%;
  width: 8px;
  height: 14px;
  border-radius: 3px;
  opacity: 0;
  background: #10b981;
}

.booking-success-card.is-confetti-active .booking-success-confetti span {
  animation: bookingConfetti 2000ms ease-out forwards;
}

.booking-success-confetti span:nth-child(1) {
  left: 8%;
  background: #22c55e;
  animation-delay: 0ms;
}

.booking-success-confetti span:nth-child(2) {
  left: 18%;
  background: #38bdf8;
  animation-delay: 80ms;
}

.booking-success-confetti span:nth-child(3) {
  left: 28%;
  background: #f59e0b;
  animation-delay: 160ms;
}

.booking-success-confetti span:nth-child(4) {
  left: 38%;
  background: #10b981;
  animation-delay: 40ms;
}

.booking-success-confetti span:nth-child(5) {
  left: 48%;
  background: #ef4444;
  animation-delay: 130ms;
}

.booking-success-confetti span:nth-child(6) {
  left: 58%;
  background: #06b6d4;
  animation-delay: 210ms;
}

.booking-success-confetti span:nth-child(7) {
  left: 68%;
  background: #84cc16;
  animation-delay: 20ms;
}

.booking-success-confetti span:nth-child(8) {
  left: 78%;
  background: #f97316;
  animation-delay: 110ms;
}

.booking-success-confetti span:nth-child(9) {
  left: 88%;
  background: #14b8a6;
  animation-delay: 190ms;
}

.booking-success-confetti span:nth-child(10) {
  left: 13%;
  background: #0ea5e9;
  animation-delay: 260ms;
}

.booking-success-confetti span:nth-child(11) {
  left: 53%;
  background: #eab308;
  animation-delay: 300ms;
}

.booking-success-confetti span:nth-child(12) {
  left: 83%;
  background: #22c55e;
  animation-delay: 240ms;
}

@keyframes bookingCheckCircle {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes bookingCheckMark {
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes bookingConfetti {
  0% {
    opacity: 0;
    transform: translate3d(0, -12px, 0) rotate(0deg);
  }

  12% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate3d(var(--confetti-x, 0), 230px, 0) rotate(440deg);
  }
}

.booking-success-confetti span:nth-child(odd) {
  --confetti-x: -34px;
}

.booking-success-confetti span:nth-child(even) {
  --confetti-x: 34px;
}

.booking-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: white;
  color: var(--ink);
  display: grid;
  place-items: center;
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
  box-shadow: 0 10px 20px rgba(31, 41, 51, 0.08);
  z-index: 2;
}

.booking-modal__close:hover {
  background: #f7fafc;
}

body.modal-open {
  overflow: hidden;
}

.single-pet-page {
  padding: 34px 0 56px;
}

.single-pet-shell {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.single-pet-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) 0.92fr;
  gap: 22px;
  align-items: stretch;
}

.single-pet-media,
.single-pet-card,
.single-pet-panel,
.single-pet-info {
  border-radius: calc(var(--radius) + 6px);
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.single-pet-media {
  overflow: hidden;
}

.single-pet-image-wrap {
  position: relative;
  height: 100%;
  min-height: 420px;
}

.single-pet-image-wrap img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  aspect-ratio: 5 / 4;
}

.single-pet-image-wrap::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 18, 24, 0.05), rgba(7, 18, 24, 0.38));
  pointer-events: none;
}

.single-pet-ribbon {
  position: absolute;
  inset: auto 18px 18px 18px;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  align-items: center;
}

.single-pet-status-badge,
.single-pet-price {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
  font-weight: 800;
  box-shadow: 0 16px 30px rgba(9, 21, 28, 0.12);
}

.single-pet-panel,
.single-pet-info {
  padding: 22px;
}

.single-pet-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.single-pet-topline {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.single-pet-title {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
}

.single-pet-subtitle,
.single-pet-kicker {
  color: var(--muted);
  font-weight: 750;
  margin: 10px 0 0;
}

.single-pet-meta-grid,
.single-pet-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 18px 0;
}

.single-pet-meta {
  background: #f7fafc;
  border-radius: var(--radius);
  padding: 12px;
  border: 1px solid rgba(23, 49, 59, 0.06);
}

.single-pet-meta small {
  display: block;
  color: var(--muted);
  font-weight: 800;
  font-size: 0.72rem;
  margin-bottom: 3px;
}

.single-pet-meta strong {
  font-size: 0.95rem;
  color: var(--ink);
}

.single-pet-description {
  color: #52616f;
  line-height: 1.7;
  margin: 0 0 20px;
}

.single-pet-description.rich-text p:first-child {
  margin-top: 0;
}

.single-pet-description.rich-text p:last-child {
  margin-bottom: 0;
}

.single-pet-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.single-pet-section {
  margin-top: 22px;
  padding: 20px;
  border-radius: calc(var(--radius) + 6px);
  background: white;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.single-pet-section h2 {
  margin: 0 0 10px;
}

.single-pet-section p {
  margin: 0;
  color: #52616f;
  line-height: 1.7;
}

.single-pet-section-head {
  margin-bottom: 16px;
}

.single-pet-notes {
  display: grid;
  gap: 12px;
}

.single-pet-notes p {
  margin: 0;
}

@media (max-width: 1024px) {
  .single-pet-hero {
    grid-template-columns: 1fr;
  }

  .single-pet-image-wrap {
    min-height: 320px;
  }

  .single-pet-meta-grid,
  .single-pet-grid {
    grid-template-columns: 1fr 1fr;
  }

  .booking-modal__body {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {

  .single-pet-meta-grid,
  .single-pet-grid {
    grid-template-columns: 1fr;
  }

  .single-pet-panel,
  .single-pet-info,
  .single-pet-section {
    padding: 16px;
  }

  .single-pet-ribbon {
    inset: auto 12px 12px 12px;
  }

  .booking-modal {
    padding: 12px;
  }

  .booking-modal__body,
  .booking-form-wrap {
    padding: 14px;
  }

  .booking-form-grid {
    grid-template-columns: 1fr;
  }

  .booking-form-actions .btn {
    min-width: 0;
    width: 100%;
  }

  .booking-success-card {
    padding: 24px 16px 20px;
    border-radius: 20px;
  }

  .booking-success-check {
    width: 64px;
    height: 64px;
  }

  .booking-success-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .booking-success-actions .btn {
    width: 100%;
    min-width: 0;
  }

  .booking-preview img {
    min-height: 220px;
  }
}

@media (prefers-reduced-motion: reduce) {

  .booking-success-card,
  .booking-success-check circle,
  .booking-success-check path,
  .booking-success-card.is-confetti-active .booking-success-confetti span {
    animation: none !important;
    transition: none !important;
  }

  .booking-success-card.is-visible {
    opacity: 1;
    transform: none;
  }

  .booking-success-check circle,
  .booking-success-check path {
    stroke-dashoffset: 0;
  }
}

.seo {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 44px 0 50px;
  color: #52616f;
  line-height: 1.7;
}

.seo h2,
.seo h3 {
  color: var(--ink);
  margin-bottom: 8px;
}

.seo-columns {
  columns: 2 320px;
  column-gap: 36px;
}

footer {
  background: #13252d;
  color: #d9e7ee;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 28px 0;
  flex-wrap: wrap;
}

.footer-inner strong {
  color: white;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  max-width: 320px;
  display: none;
  background: #17313b;
  color: white;
  border-radius: var(--radius);
  padding: 13px 15px;
  box-shadow: var(--shadow);
  z-index: 40;
}

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

  .puppies-layout,
  .hero-inner,
  .trust-inner {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    align-items: start;
  }

  .finder {
    max-width: 620px;
  }

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

@media (max-width: 720px) {
  .topbar-inner {
    justify-content: center;
  }

  .topbar span:last-child,
  .nav-actions .ghost {
    display: none;
  }

  .hero {
    background:
      linear-gradient(180deg, rgba(255, 250, 244, 0.94) 0%, rgba(255, 250, 244, 0.78) 58%, rgba(255, 250, 244, 0.28) 100%),
      url("../images/hero-husky-luxury.png") center / cover no-repeat;
  }

  .hero-inner {
    padding-top: 38px;
  }

  .hero-copy {
    padding-bottom: 12px;
  }

  .hero-stats,
  .field-grid,
  .results-head,
  .listing-grid,
  .trust-list {
    grid-template-columns: 1fr;
  }

  .puppies-layout {
    grid-template-columns: 1fr;
  }

  .card-actions {
    grid-template-columns: 1fr 42px;
  }

  .card-actions .details-btn {
    grid-column: span 2;
  }
}

/* Premium pet care refresh */
html {
  scroll-behavior: smooth;
}

:root {
  --ink: #25313a;
  --muted: #73808b;
  --line: rgba(255, 172, 96, 0.2);
  --paper: #fffaf2;
  --surface: rgba(255, 255, 255, 0.82);
  --brand: #f28a3c;
  --brand-dark: #d96e22;
  --mint: #dff7e9;
  --blue: #dff2ff;
  --yellow: #fff3c8;
  --shadow: 0 22px 60px rgba(102, 73, 45, 0.14);
  --glow: 0 0 28px rgba(242, 138, 60, 0.28);
  --radius: 8px;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
}

body {
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 8%, rgba(223, 242, 255, 0.88), transparent 28%),
    radial-gradient(circle at 88% 10%, rgba(223, 247, 233, 0.82), transparent 26%),
    linear-gradient(135deg, #fff 0%, #fff8ed 48%, #eef9ff 100%);
  overflow-x: hidden;
  font-family: Inter, ui-sans-serif, system-ui, sans-serif;
}

h1,
h2,
h3,
.brand {
  font-family: Poppins, Inter, sans-serif;
  font-weight: 800;
  letter-spacing: 0;
}

.eyebrow,
.tab,
.btn,
.stat span,
label {
  font-family: Nunito, Inter, sans-serif;
}

box-shadow: none;

.loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #fffaf2, #eaf8ff);
  transition: opacity 500ms ease, visibility 500ms ease;
}

.loader.hide {
  opacity: 0;
  visibility: hidden;
}

.loader-card {
  display: grid;
  place-items: center;
  gap: 12px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  color: var(--brand-dark);
  font-weight: 900;
}

.loader-paw {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  color: white;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--brand), #6fcf97);
  box-shadow: var(--glow);
  animation: loaderPulse 900ms ease-in-out infinite alternate;
}

@keyframes loaderPulse {
  from {
    transform: scale(0.92) rotate(-6deg);
  }

  to {
    transform: scale(1.08) rotate(6deg);
  }
}

.topbar {
  background: linear-gradient(90deg, #f28a3c, #72c8f0);
  color: white;
}

.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 30;
  background: rgba(255, 250, 242, 0.28);
  border-bottom: 1px solid rgba(255, 255, 255, 0.48);
  backdrop-filter: blur(0);
  transition: background 250ms ease, box-shadow 250ms ease, backdrop-filter 250ms ease;
}

body.admin-bar .site-nav {
  top: 32px;
}

.site-nav.scrolled {
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 16px 44px rgba(89, 68, 48, 0.12);
  backdrop-filter: blur(18px);
}

@media (max-width: 720px) {
  body {
    padding-top: 64px;
  }

  body.admin-bar {
    padding-top: calc(64px + 46px);
  }

  body.admin-bar .site-nav {
    top: 46px;
  }
}

.brand-mark {
  background: linear-gradient(135deg, var(--brand), #73cfee);
  box-shadow: var(--glow);
}

.nav-links a {
  position: relative;
  color: #31404a;
  transition: color 180ms ease, text-shadow 180ms ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 5px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand), #72c8f0);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.nav-links a:hover {
  background: transparent;
  color: var(--brand-dark);
  text-shadow: 0 0 18px rgba(242, 138, 60, 0.34);
}

.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-links a.active {
  color: var(--brand-dark);
  background: rgba(255, 255, 255, 0.5);
  font-weight: 700;
}

.nav-links a.active::after {
  transform: scaleX(1);
  background: #2563eb;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 4px;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: var(--ink);
  transition: transform 220ms ease, opacity 220ms ease;
}

.menu-toggle.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.btn {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.56);
  box-shadow: none;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.38), transparent);
  transform: translateX(-120%);
  transition: transform 500ms ease;
}

.btn:hover::before {
  transform: translateX(120%);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: none;
}

.btn:active {
  transform: translateY(2px);
  box-shadow: none;
}

.btn.primary {
  background: linear-gradient(135deg, var(--brand), #ffb36e);
}

.btn.ghost,
.tab,
.finder,
.filters,
.card,
.trust-item,
.lead-form,
.service-card,
.testimonial-card,
.quick-card,
.newsletter {
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid rgba(255, 255, 255, 0.66);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.hero {
  position: relative;
  --scroll: 0;
  min-height: calc(100vh - 38px);
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 250, 242, 0.96) 0%, rgba(255, 250, 242, 0.72) 43%, rgba(255, 250, 242, 0.12) 82%),
    url("../images/hero-husky-luxury.png") center right / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 18% 24%, rgba(114, 200, 240, 0.24), transparent 18%),
    radial-gradient(circle at 68% 12%, rgba(111, 207, 151, 0.18), transparent 18%),
    linear-gradient(180deg, transparent 72%, #fffaf2 100%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  min-height: calc(100vh - 38px);
  align-items: center;
  padding: 4px 0 44px;
}

.hero-copy {
  padding-bottom: 0;
}

.hero-copy h1 {
  max-width: 680px;
  color: #24303a;
  text-wrap: balance;
}

.hero-copy p {
  color: #51616b;
  font-size: 1.12rem;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin: 0 0 22px;
}

.story-grid,
.trust-grid,
.promise-grid {
  display: grid;
  gap: 18px;
}

.story-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.trust-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.promise-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.story-card,
.trust-card,
.promise-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(219, 230, 234, 0.95);
  border-radius: calc(var(--radius) + 6px);
  box-shadow: 0 14px 34px rgba(7, 20, 40, 0.08);
  overflow: hidden;
}

.story-card {
  display: grid;
  grid-template-rows: 220px auto;
}

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

.story-card div,
.trust-card,
.promise-card {
  padding: 20px;
}

.story-card h3,
.trust-card h3,
.promise-card h3 {
  margin: 0 0 8px;
  font-size: 1.06rem;
  line-height: 1.25;
}

.story-card p,
.trust-card p,
.promise-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.trust-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin-bottom: 14px;
  color: white;
  background: linear-gradient(135deg, var(--brand), var(--brand-dark));
  box-shadow: 0 12px 24px rgba(240, 122, 45, 0.22);
}

.cta-banner {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px;
  border-radius: calc(var(--radius) + 8px);
  background:
    linear-gradient(135deg, rgba(7, 20, 40, 0.98), rgba(20, 38, 60, 0.98)),
    url("../images/hero-husky-luxury.png") center / cover no-repeat;
  color: white;
  box-shadow: 0 24px 58px rgba(7, 20, 40, 0.18);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cta-banner h2 {
  margin: 12px 0 8px;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
}

.cta-banner p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  max-width: 620px;
  line-height: 1.6;
}

.cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.cta-banner .btn.ghost {
  background: rgba(255, 255, 255, 0.1);
  color: white;
  border-color: rgba(255, 255, 255, 0.14);
}

.floating-paws {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.floating-paws span {
  position: absolute;
  color: rgba(242, 138, 60, 0.22);
  animation: floatPaw 7s ease-in-out infinite;
}

.floating-paws span:nth-child(1) {
  left: 7%;
  top: 22%;
  animation-delay: 0s;
}

.floating-paws span:nth-child(2) {
  left: 46%;
  top: 18%;
  animation-delay: 1.2s;
  color: rgba(114, 200, 240, 0.28);
}

.floating-paws span:nth-child(3) {
  left: 28%;
  top: 72%;
  animation-delay: 2.4s;
  color: rgba(111, 207, 151, 0.26);
}

.floating-paws span:nth-child(4) {
  right: 8%;
  top: 58%;
  animation-delay: 3.1s;
}

@keyframes floatPaw {

  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(-8deg);
    opacity: 0.55;
  }

  50% {
    transform: translate3d(0, -24px, 0) rotate(10deg);
    opacity: 0.95;
  }
}

.stat,
.meta,
.popular-list button {
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 12px 26px rgba(90, 68, 47, 0.08);
  backdrop-filter: blur(12px);
}

.tabs-wrap {
  background: rgba(255, 255, 255, 0.52);
  backdrop-filter: blur(14px);
}

.tab.active {
  background: linear-gradient(135deg, var(--brand), #74c8ef);
  border-color: transparent;
  box-shadow: var(--glow);
}

.section-block {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 56px 0;
}

.section-head {
  max-width: 760px;
  margin-bottom: 24px;
}

.section-head h2 {
  margin: 10px 0;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.services-grid,
.quick-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.service-card,
.quick-card {
  position: relative;
  min-height: 210px;
  padding: 20px;
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 220ms ease, box-shadow 220ms ease;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto -30% -46% 18%;
  height: 120px;
  background: radial-gradient(circle, rgba(242, 138, 60, 0.24), transparent 65%);
  transition: transform 220ms ease;
}

.service-card:hover,
.quick-card:hover,
.card:hover,
.testimonial-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 28px 70px rgba(93, 72, 50, 0.2), var(--glow);
}

.service-icon,
.quick-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: white;
  background: linear-gradient(135deg, var(--brand), #72c8f0);
  box-shadow: var(--glow);
  margin-bottom: 14px;
}

.service-card h3,
.quick-card h3 {
  margin: 0 0 8px;
  font-size: 1.08rem;
}

.service-card p,
.quick-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
  font-size: 0.94rem;
}

.content-wrap {
  padding-top: 42px;
}

.filters,
.card,
.lead-form {
  border-radius: var(--radius);
}

.card {
  transition: transform 220ms ease, box-shadow 220ms ease;
  transform-style: preserve-3d;
  border-radius: calc(var(--radius) + 4px);
  overflow: hidden;
}

.card-media img {
  transition: transform 350ms ease, filter 350ms ease;
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.card:hover img {
  filter: saturate(1.06) contrast(1.02);
}

.badge {
  color: var(--brand-dark);
  box-shadow: 0 10px 28px rgba(72, 52, 33, 0.12);
}

.price {
  background: linear-gradient(135deg, #2d4049, var(--brand-dark));
}

.gallery-grid {
  columns: 3 250px;
  column-gap: 16px;
}

.gallery-item {
  width: 100%;
  margin: 0 0 16px;
  border: 0;
  padding: 0;
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
  background: white;
  box-shadow: var(--shadow);
  cursor: zoom-in;
}

.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 360ms ease, filter 360ms ease;
}

.gallery-item:hover img {
  transform: scale(1.08) rotate(1deg);
  filter: saturate(1.12);
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(27, 35, 41, 0.72);
  backdrop-filter: blur(12px);
}

.lightbox.open {
  display: grid;
}

.lightbox img {
  max-width: min(920px, 100%);
  max-height: 82vh;
  border-radius: var(--radius);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.35);
}

.lightbox button {
  position: absolute;
  top: 18px;
  right: 18px;
}

.testimonial-shell {
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 450ms ease;
}

.testimonial-card {
  flex: 0 0 100%;
  padding: 26px;
  border-radius: var(--radius);
}

.stars {
  color: #f8a932;
  font-weight: 900;
  letter-spacing: 0;
}

.testimonial-card p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #42515b;
}

.slider-dots {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 14px;
}

.slider-dots button {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(242, 138, 60, 0.32);
  cursor: pointer;
}

.slider-dots button.active {
  background: var(--brand);
  box-shadow: var(--glow);
}

.trust {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(2, 6, 23, 0.96), rgba(15, 23, 42, 0.94)) !important;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.trust::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 140, 50, 0.22), transparent 30%),
    radial-gradient(circle at 88% 12%, rgba(114, 200, 240, 0.16), transparent 34%);
  opacity: 0.15 !important;
}

.trust>* {
  position: relative;
  z-index: 1;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-top: 26px;
}

.map-card {
  min-height: 360px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.64), rgba(223, 242, 255, 0.7)),
    url("../images/hero-husky-luxury.png") center / cover;
  position: relative;
}

.map-card::after {
  content: "SKS Kennel Care Studio";
  position: absolute;
  left: 20px;
  bottom: 20px;
  padding: 12px 14px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(12px);
  color: var(--ink);
  font-weight: 900;
  box-shadow: var(--shadow);
}

.newsletter {
  margin-top: 24px;
  padding: 18px;
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
}

.newsletter h3 {
  margin: 0 0 4px;
}

.newsletter p {
  margin: 0;
  color: var(--muted);
}

.newsletter-form {
  display: flex;
  gap: 8px;
}

footer {
  position: relative;
  background: linear-gradient(135deg, #25313a, #314f5d);
}

footer::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), #72c8f0, #6fcf97);
}

.footer-inner {
  align-items: center;
}

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

.socials a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.socials a:hover {
  transform: translateY(-4px) rotate(6deg);
  background: var(--brand);
}

.social-link--instagram:hover {
  color: #ffffff;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  box-shadow: 0 10px 18px rgba(221, 42, 123, 0.32);
  transform: translateY(-4px) scale(1.08);
}

.social-icon {
  width: 18px;
  height: 18px;
  display: block;
}

/* Show Instagram label text on hover */
.socials a .social-label {
  display: none;
  margin-left: 8px;
  font-weight: 700;
  color: white;
}

.socials a:hover .social-label {
  display: inline-block;
}

.social-icon--instagram {
  width: 19px;
  height: 19px;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 650ms ease, transform 650ms ease;
}

.reveal.slide-left {
  transform: translateX(-34px);
}

.reveal.slide-right {
  transform: translateX(34px);
}

.reveal.scale-in {
  transform: scale(0.94);
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.page-section[hidden] {
  display: none !important;
}

/* Hide the puppy browse/listing block on the homepage only */
body.home .puppies-listing-section {
  display: none !important;
}

@media (max-width: 1040px) {
  .menu-toggle {
    display: inline-flex;
  }

  .nav-links {
    position: fixed;
    top: 74px;
    left: 16px;
    right: 16px;
    display: grid;
    gap: 6px;
    padding: 14px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: var(--shadow);
    backdrop-filter: blur(18px);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

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

  .story-grid,
  .trust-grid,
  .promise-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .cta-banner {
    grid-template-columns: 1fr;
    display: grid;
  }
}

@media (max-width: 720px) {
  .topbar-inner {
    overflow: hidden;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    min-height: auto;
    padding-top: 6px;
  }

  .hero-ctas,
  .newsletter,
  .newsletter-form {
    display: grid;
    grid-template-columns: 1fr;
  }

  .services-grid,
  .quick-grid {
    grid-template-columns: 1fr;
  }

  .story-grid,
  .trust-grid,
  .promise-grid {
    grid-template-columns: 1fr;
  }

  .cta-banner {
    padding: 22px;
  }

  .cta-actions {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
  }
}

/* Ensure there is no visual gap between the fixed nav and the hero section when scrolling */
.site-nav {
  z-index: 40;
  /* ensure nav sits above hero */
}

.site-nav+.hero,
.hero {
  margin-top: 0 !important;
}

/* Prevent browser scroll offset adding extra spacing */
html {
  scroll-padding-top: 0;
}

.puppies-page.section-block {
  padding-top: 18px;
}

.puppies-page .section-head,
.puppies-page-head {
  margin-bottom: 14px;
}

.puppies-page .section-head h1 {
  margin-top: 0;
  margin-bottom: 6px;
}

.puppies-page .content-wrap,
.puppies-page .puppies-layout {
  padding-top: 0;
}

body.admin-bar .puppies-page.section-block {
  padding-top: 16px;
}

@media (max-width: 720px) {
  .puppies-page.section-block {
    padding-top: 12px;
  }

  .puppies-page .section-head,
  .puppies-page-head {
    margin-bottom: 10px;
  }
}

@media (min-width: 721px) and (max-width: 1040px) {
  .puppies-page .puppies-layout {
    grid-template-columns: minmax(220px, 260px) minmax(0, 1fr);
    gap: 18px;
  }

  .puppies-page .filters {
    position: sticky;
    top: 84px;
    padding: 14px;
  }

  .puppies-page .listing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .site-nav {
    min-width: 0;
  }

  .nav-inner {
    width: min(100%, calc(100% - 20px));
    min-height: 64px;
    gap: 8px;
  }

  .brand {
    min-width: 0;
    gap: 8px;
  }

  .brand-name {
    max-width: 96px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .menu-toggle {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
    padding: 0;
  }

  .nav-actions {
    flex: 0 0 auto;
  }

  .nav-actions .btn.primary {
    min-height: 44px;
    padding: 8px 12px;
    font-size: 0.9rem;
    line-height: 1.1;
    gap: 6px;
  }

  .puppies-page.section-block {
    width: min(100%, calc(100% - 20px));
  }

  .mobile-filter-toggle {
    display: inline-flex;
    justify-content: center;
    min-width: 112px;
  }

  .mobile-filter-bar {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
    margin: 0 0 12px;
  }

  .mobile-breed-search {
    width: 100%;
    min-height: 46px;
  }

  .breed-search-group,
  .popular-breeds-group {
    display: none;
  }

  .puppies-page .puppies-layout {
    display: block;
    padding-bottom: 36px;
  }

  .puppies-page .results-head {
    gap: 10px;
    margin-bottom: 14px;
  }

  .puppies-page .filters {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    top: auto;
    z-index: 80;
    max-height: min(82vh, 680px);
    overflow-y: auto;
    border-radius: 18px 18px 0 0;
    padding: 16px 18px calc(18px + env(safe-area-inset-bottom));
    box-shadow: 0 -20px 60px rgba(37, 49, 58, 0.22);
    transform: translateY(105%);
    visibility: hidden;
    transition: transform 240ms ease, visibility 240ms ease;
  }

  body.filters-open .puppies-page .filters {
    transform: translateY(0);
    visibility: visible;
  }

  body.filters-open {
    overflow: hidden;
  }

  .filters-close {
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: #fff;
    color: var(--ink);
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
  }

  .filter-group {
    padding: 12px 0;
  }

  .popular-list {
    grid-template-columns: 1fr;
  }

  .puppies-page .listing-grid {
    grid-template-columns: 1fr;
  }
}

/* Dark luxury SKS Kennel theme */
:root {
  --ink: #f5f5f5;
  --muted: #b8c2cc;
  --line: rgba(255, 140, 50, 0.2);
  --paper: #07131f;
  --surface: rgba(13, 28, 43, 0.72);
  --brand: #ff8c32;
  --brand-dark: #e96f16;
  --gold: #f7c46c;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
  --glow: 0 0 32px rgba(255, 140, 50, 0.34);
}

html,
body {
  min-height: 100%;
}

html {
  background: #07131f;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(255, 140, 50, 0.16), transparent 26%),
    radial-gradient(circle at 84% 14%, rgba(247, 196, 108, 0.12), transparent 24%),
    linear-gradient(145deg, #07131f 0%, #0b1623 46%, #03070d 100%);
}

.site-wrapper {
  min-height: 100vh;
  display: flex;
  flex: 1 0 auto;
  flex-direction: column;
}

.site-wrapper>main,
.site-wrapper>.hero {
  flex: 1 0 auto;
}

footer {
  flex-shrink: 0;
  margin-top: auto;
}

body.home,
body.front-page {
  padding-top: 0;
}

body:not(.home):not(.front-page),
body.admin-bar {
  padding-top: 0;
}

.site-main,
.page-main,
.page-hero,
.services-page,
.dog-breeds-page,
.gallery-page,
.puppies-page,
.page-content-offset {
  padding-top: 110px !important;
}

body.admin-bar .site-main,
body.admin-bar .page-main,
body.admin-bar .page-hero,
body.admin-bar .services-page,
body.admin-bar .dog-breeds-page,
body.admin-bar .gallery-page,
body.admin-bar .puppies-page,
body.admin-bar .page-content-offset {
  padding-top: 140px !important;
}

body.home .page-content-offset,
body.front-page .page-content-offset {
  padding-top: 92px !important;
}

body.admin-bar.home .page-content-offset,
body.admin-bar.front-page .page-content-offset {
  padding-top: 124px !important;
}

.site-nav {
  background: rgba(7, 19, 31, 0.68);
  border-bottom: 1px solid rgba(255, 140, 50, 0.16);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(20px);
}

.site-nav.scrolled {
  background: rgba(7, 19, 31, 0.84);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.36);
}

.nav-inner {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
}

.nav-links {
  justify-content: center;
}

.brand,
.brand-name,
.nav-links a {
  color: #f5f5f5;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--brand);
  background: rgba(255, 140, 50, 0.08);
  text-shadow: 0 0 22px rgba(255, 140, 50, 0.45);
}

.nav-actions .btn.primary,
.btn.primary {
  color: #07131f;
  background: linear-gradient(135deg, var(--brand), var(--gold));
  box-shadow: 0 14px 32px rgba(255, 140, 50, 0.34), inset 0 1px 0 rgba(255, 255, 255, 0.34);
}

.btn.primary:hover {
  box-shadow: 0 18px 42px rgba(255, 140, 50, 0.44), var(--glow);
}

.btn.ghost {
  color: #f5f5f5;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(16px);
}

.hero {
  min-height: 100vh;
  color: #f5f5f5;
  border-bottom: 1px solid rgba(255, 140, 50, 0.16);
  background:
    linear-gradient(90deg, rgba(7, 19, 31, 0.96) 0%, rgba(7, 19, 31, 0.82) 38%, rgba(7, 19, 31, 0.28) 76%),
    url("../images/hero-husky-luxury.png") center right / cover no-repeat;
}

.hero::before {
  background:
    radial-gradient(circle at 24% 22%, rgba(255, 140, 50, 0.22), transparent 18%),
    radial-gradient(circle at 72% 10%, rgba(247, 196, 108, 0.15), transparent 18%),
    linear-gradient(180deg, rgba(7, 19, 31, 0.04) 56%, #07131f 100%);
  backdrop-filter: blur(1px);
}

.hero-inner {
  grid-template-columns: minmax(0, 660px) minmax(310px, 430px);
  gap: 44px;
  min-height: 100vh;
  padding: 112px 0 54px;
}

.hero-copy h1 {
  color: #f5f5f5;
  text-shadow: 0 18px 54px rgba(0, 0, 0, 0.45);
}

.hero-copy p,
.section-head p,
.card p,
.service-card p,
.quick-card p,
.testimonial-card p,
.single-pet-subtitle,
.single-pet-description,
.results-title p {
  color: var(--muted);
}

.eyebrow {
  color: var(--gold);
  background: rgba(255, 140, 50, 0.12);
  border: 1px solid rgba(255, 140, 50, 0.26);
  box-shadow: 0 0 26px rgba(255, 140, 50, 0.16);
}

.finder,
.filters,
.card,
.service-card,
.quick-card,
.testimonial-card,
.lead-form,
.newsletter,
.single-pet-media,
.single-pet-card,
.single-pet-panel,
.single-pet-info,
.single-pet-section,
.trust-item {
  color: #f5f5f5;
  background: linear-gradient(145deg, rgba(16, 34, 51, 0.78), rgba(7, 19, 31, 0.64));
  border: 1px solid rgba(255, 255, 255, 0.11);
  box-shadow: var(--shadow);
  backdrop-filter: blur(20px);
}

.finder {
  align-self: center;
  border-color: rgba(255, 140, 50, 0.26);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.46), 0 0 46px rgba(255, 140, 50, 0.15);
}

.finder h2,
.section-head h1,
.section-head h2,
.card h3,
.service-card h3,
.quick-card h3,
.single-pet-title,
.single-pet-section h2,
.lead-form h2 {
  color: #f5f5f5;
}

label,
.card-kicker,
.meta small,
.single-pet-meta small,
.breadcrumb,
.sort-box label {
  color: var(--muted);
}

select,
input,
textarea {
  color: #f5f5f5;
  background: rgba(4, 10, 17, 0.64);
  border-color: rgba(255, 255, 255, 0.14);
}

select:focus,
input:focus,
textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(255, 140, 50, 0.18), var(--glow);
}

select option {
  color: #07131f;
}

.stat,
.meta,
.single-pet-meta,
.tabs-wrap {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.12);
}

.stat strong,
.meta strong,
.single-pet-meta strong {
  color: #f5f5f5;
}

.card {
  border-radius: 18px;
  transition: transform 240ms ease, box-shadow 240ms ease, border-color 240ms ease;
}

.card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 140, 50, 0.34);
  box-shadow: 0 30px 82px rgba(0, 0, 0, 0.52), 0 0 32px rgba(255, 140, 50, 0.13);
}

.card-media {
  background: #0b1623;
}

.badge,
.single-pet-status-badge {
  color: #07131f;
  background: linear-gradient(135deg, var(--gold), var(--brand));
  box-shadow: 0 10px 30px rgba(255, 140, 50, 0.28);
}

.price,
.single-pet-price,
.single-pet-ribbon {
  color: #07131f;
  background: linear-gradient(135deg, var(--brand), var(--gold));
  box-shadow: 0 12px 34px rgba(255, 140, 50, 0.34);
}

.page-section,
.section-block,
.single-pet-page {
  color: #f5f5f5;
}

.gallery-item {
  background: rgba(16, 34, 51, 0.78);
  box-shadow: var(--shadow);
}

.filters-close {
  color: #f5f5f5;
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.18);
}

footer {
  position: relative;
  width: 100%;
  color: #d9e7ee;
  background: linear-gradient(135deg, #03070d 0%, #07131f 48%, #0b1623 100%);
}

footer::before {
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--brand), var(--gold), transparent);
  box-shadow: 0 0 22px rgba(255, 140, 50, 0.48);
}

.footer-inner {
  align-items: center;
  padding: 30px 0;
}

.footer-inner strong {
  color: #f5f5f5;
  letter-spacing: 0.08em;
}

.footer-inner a {
  color: #f5f5f5;
}

.socials {
  gap: 12px;
}

.socials a {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.28);
}

.social-link--instagram {
  color: #ffffff;
  background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
  box-shadow: 0 0 26px rgba(221, 42, 123, 0.34);
}

.social-link--instagram:hover {
  box-shadow: 0 0 34px rgba(221, 42, 123, 0.54);
}

@media (max-width: 1040px) {
  .nav-inner {
    display: flex;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    padding-top: 104px;
  }

  .finder {
    width: min(100%, 620px);
    align-self: start;
  }

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

@media (max-width: 720px) {

  .site-main,
  .page-main,
  .page-hero,
  .services-page,
  .dog-breeds-page,
  .gallery-page,
  .puppies-page,
  .page-content-offset {
    padding-top: 90px !important;
  }

  body.admin-bar .site-main,
  body.admin-bar .page-main,
  body.admin-bar .page-hero,
  body.admin-bar .services-page,
  body.admin-bar .dog-breeds-page,
  body.admin-bar .gallery-page,
  body.admin-bar .puppies-page,
  body.admin-bar .page-content-offset {
    padding-top: 122px !important;
  }

  body.home .page-content-offset,
  body.front-page .page-content-offset {
    padding-top: 82px !important;
  }

  body.admin-bar.home .page-content-offset,
  body.admin-bar.front-page .page-content-offset {
    padding-top: 114px !important;
  }

  body.admin-bar:not(.home):not(.front-page) .site-wrapper>main:first-of-type,
  body.admin-bar .single-pet-page {
    padding-top: 122px;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    min-height: auto;
    padding: 96px 0 44px;
  }

  .hero-copy h1 {
    font-size: clamp(2.35rem, 12vw, 3.65rem);
  }

  .field-grid,
  .hero-stats,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-inner {
    display: grid;
    justify-items: start;
  }

  .listing-grid,
  .puppies-page .listing-grid {
    grid-template-columns: 1fr;
  }

}

/* Final readability layer for dark luxury cards */
.card,
.service-card,
.quick-card,
.trust-item,
.testimonial-card,
.story-card,
.trust-card,
.promise-card,
.lead-form,
.newsletter,
.entry-content,
.content-wrap,
.single-pet-panel,
.single-pet-info,
.single-pet-section {
  color: #ffffff;
  background: rgba(10, 18, 28, 0.85);
  border-color: rgba(255, 255, 255, 0.14);
}

.card-body,
.service-card,
.quick-card,
.trust-item,
.testimonial-card,
.story-card,
.trust-card,
.promise-card,
.entry-content,
.single-pet-panel,
.single-pet-info,
.single-pet-section {
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.38);
}

.card h3,
.service-card h3,
.quick-card h3,
.trust-item h3,
.testimonial-card h3,
.story-card h3,
.trust-card h3,
.promise-card h3,
.entry-content h1,
.entry-content h2,
.entry-content h3,
.content-wrap h1,
.single-pet-title,
.single-pet-section h2 {
  color: #ffffff;
  font-weight: 850;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.52);
}

.card p,
.service-card p,
.quick-card p,
.trust-item p,
.testimonial-card p,
.story-card p,
.trust-card p,
.promise-card p,
.entry-content p,
.content-wrap p,
.single-pet-description,
.single-pet-section p,
.results-title p {
  color: #d6dce3;
  line-height: 1.72;
}

.card-kicker,
.meta small,
.single-pet-meta small,
.breadcrumb,
.sort-box label,
.section-head p {
  color: #d6dce3;
}

.meta,
.single-pet-meta {
  background: rgba(2, 7, 13, 0.58);
  border-color: rgba(255, 255, 255, 0.13);
}

.meta strong,
.single-pet-meta strong,
.card-kicker strong,
.puppy-card-facts strong {
  color: #ffffff;
}

.puppy-card-facts small {
  color: #d6dce3;
}

.card:hover,
.service-card:hover,
.quick-card:hover,
.trust-item:hover,
.testimonial-card:hover,
.story-card:hover,
.trust-card:hover,
.promise-card:hover {
  background: rgba(13, 24, 37, 0.92);
  border-color: rgba(255, 140, 50, 0.36);
  box-shadow: 0 30px 82px rgba(0, 0, 0, 0.52), 0 0 34px rgba(255, 140, 50, 0.15);
}

footer,
.footer-inner,
.footer-inner div {
  color: #d6dce3;
}

.footer-inner strong {
  color: #ffffff;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.48);
}

.footer-inner a {
  color: #ffffff;
  font-weight: 750;
}

/* Dynamic gallery management UI */
.gallery-page {
  padding-bottom: 72px;
}

.sks-dynamic-gallery {
  columns: 3 280px;
  column-gap: 18px;
}

.sks-dynamic-gallery .gallery-item {
  position: relative;
  break-inside: avoid;
  margin-bottom: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(10, 18, 28, 0.85);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
  transform: translateZ(0);
}

.sks-dynamic-gallery .gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 52%, rgba(3, 7, 13, 0.76));
  opacity: 0.78;
  transition: opacity 220ms ease;
}

.sks-dynamic-gallery .gallery-item img {
  width: 100%;
  height: auto;
  min-height: 220px;
  object-fit: cover;
  filter: saturate(1.03) contrast(1.02);
}

.gallery-caption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 13px;
  z-index: 1;
  color: #ffffff;
  font-weight: 850;
  line-height: 1.25;
  text-align: left;
  text-shadow: 0 2px 18px rgba(0, 0, 0, 0.72);
}

.gallery-caption strong,
.gallery-caption small,
.gallery-caption em {
  display: block;
}

.gallery-caption em {
  margin-top: 5px;
  color: var(--gold);
  font-size: 0.76rem;
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0;
}

.gallery-caption small {
  margin-top: 4px;
  color: #d6dce3;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.45;
}

.sks-dynamic-gallery .gallery-item:hover {
  border-color: rgba(255, 140, 50, 0.38);
  box-shadow: 0 30px 82px rgba(0, 0, 0, 0.52), 0 0 34px rgba(255, 140, 50, 0.15);
}

.sks-dynamic-gallery .gallery-item:hover::after {
  opacity: 0.94;
}

.gallery-empty {
  width: min(720px, 100%);
  background: rgba(10, 18, 28, 0.85);
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow: var(--shadow);
}

.lightbox {
  background: rgba(3, 7, 13, 0.84);
}

.lightbox img {
  max-width: min(1180px, 94vw);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

@media (max-width: 720px) {
  .sks-dynamic-gallery {
    columns: 1;
  }

  .gallery-caption {
    font-size: 0.95rem;
  }
}

/* Clean rebuilt Gallery page */
.gallery-page {
  min-height: 100vh;
  color: #ffffff;
  background:
    radial-gradient(circle at 12% 6%, rgba(255, 140, 50, 0.14), transparent 24%),
    linear-gradient(145deg, #07131f 0%, #0b1623 52%, #03070d 100%);
}

.gallery-page .container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.gallery-hero {
  padding: 132px 0 42px;
}

.gallery-hero h1 {
  margin: 0 0 12px;
  color: #ffffff;
  font-size: clamp(2.6rem, 7vw, 5.6rem);
  line-height: 0.95;
  text-shadow: 0 18px 54px rgba(0, 0, 0, 0.46);
}

.gallery-hero p {
  margin: 0;
  color: #d6dce3;
  font-size: 1.08rem;
  line-height: 1.7;
}

.gallery-grid-section {
  padding: 18px 0 78px;
}

.gallery-category-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.gallery-grid-section .gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  columns: auto;
}

.gallery-card {
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(10, 18, 28, 0.85);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.36);
}

.gallery-card img,
.gallery-image {
  display: block;
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 360ms ease, filter 360ms ease;
}

.gallery-card:hover {
  border-color: rgba(255, 140, 50, 0.36);
  box-shadow: 0 30px 82px rgba(0, 0, 0, 0.52), 0 0 34px rgba(255, 140, 50, 0.15);
}

.gallery-card:hover img {
  transform: scale(1.07);
  filter: saturate(1.12) contrast(1.04);
}

.no-gallery {
  grid-column: 1 / -1;
  margin: 0;
  padding: 22px;
  color: #d6dce3;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(10, 18, 28, 0.85);
  box-shadow: var(--shadow);
}

@media (max-width: 1040px) {
  .gallery-grid-section .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .gallery-hero {
    padding-top: 108px;
  }

  .gallery-grid-section .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-card img,
  .gallery-image {
    height: 260px;
  }
}

/* Mobile header top-gap fix */
@media (max-width: 768px) {

  html,
  body {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

  .site-header,
  header,
  .main-header,
  .navbar,
  .site-nav {
    margin-top: 0 !important;
    top: 0;
  }

  body.admin-bar .site-header,
  body.admin-bar header,
  body.admin-bar .main-header,
  body.admin-bar .navbar,
  body.admin-bar .site-nav {
    top: 46px;
  }

  .hero,
  .hero-section,
  main {
    margin-top: 0 !important;
  }
}

/* Remove header-to-hero visual gap */
.site-nav+.hero,
.site-header+.hero,
header+.hero,
.main-header+.hero,
.navbar+.hero,
.hero,
.hero-section,
.banner {
  margin-top: 0 !important;
  padding-top: 0 !important;
  transform: none;
}

.site-header,
header,
.main-header,
.navbar,
.site-nav {
  margin-bottom: 0 !important;
}

main,
.page-content {
  padding-top: 0 !important;
}

body.admin-bar .site-nav {
  top: 32px;
}

@media (max-width: 768px) {
  body.admin-bar .site-nav {
    top: 46px;
  }
}

/* Kennel location map */
.kennel-location {
  width: min(1180px, calc(100% - 32px));
  margin: 34px auto 0;
}

.kennel-location__head {
  margin-bottom: 16px;
}

.kennel-location__head h2 {
  margin: 10px 0 8px;
  color: #ffffff;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.05;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.52);
}

.kennel-location__head p {
  margin: 0;
  color: #d6dce3;
  line-height: 1.7;
}

.kennel-location__map {
  width: 100%;
  height: 420px;
  min-height: 420px;
  overflow: hidden;
  border: 1px solid rgba(255, 140, 50, 0.26);
  border-radius: 18px;
  background: rgba(10, 18, 28, 0.85);
  box-shadow: 0 30px 82px rgba(0, 0, 0, 0.46), 0 0 34px rgba(255, 140, 50, 0.12);
}

.kennel-location__leaflet,
.kennel-location__embed,
.kennel-location__embed iframe,
.kennel-location__placeholder,
.location-map,
#kennel-map,
.leaflet-container {
  width: 100% !important;
  height: 420px !important;
  min-height: 420px;
  display: block;
}

.kennel-location__embed iframe {
  border: 0;
}

.kennel-location__leaflet {
  min-height: 420px;
}

.kennel-location__leaflet .leaflet-container,
.kennel-location__map .leaflet-container {
  background: rgba(10, 18, 28, 0.85);
}

.kennel-location__placeholder {
  display: grid;
  place-items: center;
  padding: 24px;
  color: #d6dce3;
  text-align: center;
  font-weight: 800;
}

.kennel-location__button {
  width: fit-content;
  margin-top: 16px;
}

@media (max-width: 768px) {
  .kennel-location {
    margin-top: 26px;
  }

  .kennel-location__map {
    height: 300px;
    min-height: 300px;
    border-radius: 14px;
  }

  .kennel-location__leaflet,
  .kennel-location__embed,
  .kennel-location__embed iframe,
  .kennel-location__placeholder,
  .location-map,
  #kennel-map,
  .leaflet-container {
    height: 300px !important;
    min-height: 300px;
  }

  .kennel-location__button {
    width: 100%;
    justify-content: center;
  }
}

/* Contact/support contrast fix */
.contact-section,
.support-section,
.why-choose-section,
.trust {
  position: relative;
  background: linear-gradient(135deg, rgba(2, 6, 23, 0.96), rgba(15, 23, 42, 0.94)) !important;
}

.contact-section::before,
.support-section::before,
.trust::before {
  opacity: 0.15 !important;
}

.contact-section h2,
.support-section h2,
.contact-section h3,
.support-section h3,
.why-choose-section h2,
.why-choose-section h3,
.trust-copy h2,
.lead-form h2,
.kennel-location__head h2 {
  color: #ffffff !important;
  text-shadow: 0 2px 22px rgba(0, 0, 0, 0.58);
}

.contact-section p,
.support-section p,
.why-choose-section p,
.trust-copy p,
.lead-form p,
.kennel-location__head p {
  color: #d1d5db !important;
}

.support-card,
.feature-card,
.trust-item,
.trust-card,
.promise-card {
  background: rgba(15, 23, 42, 0.92) !important;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.35), 0 0 28px rgba(255, 140, 50, 0.08);
}

.trust-item {
  color: #ffffff;
  backdrop-filter: blur(14px);
}

.trust-item span {
  color: #f8fafc;
}

.contact-form-wrapper,
.lead-form {
  background: rgba(17, 24, 39, 0.96) !important;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.42), 0 0 34px rgba(255, 140, 50, 0.1);
  backdrop-filter: blur(14px);
}

.contact-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 20px 0;
}

.contact-detail {
  display: grid;
  gap: 5px;
  min-height: 92px;
  padding: 14px;
  color: #ffffff;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(2, 7, 13, 0.48);
}

.contact-detail svg {
  color: var(--gold);
}

.contact-detail span {
  color: #d1d5db;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.contact-detail strong {
  overflow-wrap: anywhere;
  color: #ffffff;
}

.contact-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 999998;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  min-height: 52px;
  padding: 0 18px;
  color: #ffffff;
  font-weight: 900;
  text-decoration: none;
  border-radius: 999px;
  background: #25d366;
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.36), 0 0 18px rgba(37, 211, 102, 0.28);
  text-shadow: none;
}

.floating-whatsapp svg,
.floating-whatsapp span {
  color: #ffffff;
  position: relative;
  z-index: 1;
}

.floating-whatsapp svg {
  width: 20px;
  height: 20px;
  stroke-width: 2.6;
}

.floating-whatsapp:hover {
  color: #ffffff;
  background: #1fbd5a;
  transform: translateY(-2px);
}

.single-pet-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.single-pet-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(2, 7, 13, 0.58);
  display: block;
}

.lead-form label,
.lead-form .ff-el-input--label label,
.lead-form .ff-el-input--label {
  color: #f8fafc !important;
}

.lead-form .ff-el-form-control {
  background: rgba(2, 6, 23, 0.82) !important;
  border-color: rgba(255, 255, 255, 0.18) !important;
  color: #ffffff !important;
}

.lead-form .ff-el-form-control::placeholder {
  color: #9ca3af;
}

@media (max-width: 720px) {
  .trust-inner {
    gap: 22px;
    padding: 34px 0;
  }

  .lead-form {
    padding: 22px;
  }

  .contact-detail-grid,
  .single-pet-gallery {
    grid-template-columns: 1fr;
  }

  .floating-whatsapp {
    right: 12px;
    bottom: 12px;
    min-height: 48px;
    padding: 0 14px;
    font-size: 0.92rem;
  }
}

/* Mobile navigation visibility fix */
@media (max-width: 1040px) {
  .site-nav {
    z-index: 99999;
  }

  .mobile-menu,
  .nav-menu,
  .main-menu,
  .navbar-menu,
  .site-navigation,
  .menu,
  .nav-links {
    z-index: 99999;
  }

  .nav-links,
  .mobile-menu.menu-open,
  .mobile-menu.active,
  .nav-menu.menu-open,
  .nav-menu.active,
  .main-menu.menu-open,
  .main-menu.active,
  .navbar-menu.menu-open,
  .navbar-menu.active,
  .site-navigation.menu-open,
  .site-navigation.active,
  .menu.menu-open,
  .menu.active {
    background: rgba(7, 19, 31, 0.98) !important;
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.45);
  }

  .nav-links {
    position: fixed;
    top: 74px;
    left: 16px;
    right: 16px;
    display: grid;
    gap: 8px;
    padding: 14px;
    border-radius: var(--radius);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-10px);
    backdrop-filter: blur(16px);
  }

  .nav-links.open,
  .mobile-menu.menu-open,
  .mobile-menu.active,
  .nav-menu.menu-open,
  .nav-menu.active,
  .main-menu.menu-open,
  .main-menu.active,
  .navbar-menu.menu-open,
  .navbar-menu.active,
  .site-navigation.menu-open,
  .site-navigation.active,
  .menu.menu-open,
  .menu.active {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto;
    transform: none;
  }

  .nav-links a,
  .mobile-menu a,
  .nav-menu a,
  .main-menu a,
  .navbar-menu a,
  .site-navigation a,
  .menu a {
    color: #ffffff !important;
    font-weight: 700;
  }

  .nav-links a {
    display: flex;
    align-items: center;
    min-height: 44px;
    padding: 10px 12px;
    border-radius: var(--radius);
  }

  .nav-links a:hover,
  .nav-links a.active {
    background: rgba(255, 255, 255, 0.1) !important;
  }

  .nav-actions .btn.primary {
    color: #ffffff !important;
    font-weight: 800;
    box-shadow: 0 12px 30px rgba(240, 122, 45, 0.28);
  }
}

/* Mobile header permanent positioning */
@media (max-width: 768px) {
  html {
    scroll-padding-top: 78px;
    overflow: visible !important;
  }

  body,
  body.home,
  body.front-page,
  body:not(.home):not(.front-page) {
    padding-top: 0 !important;
    overflow: visible !important;
  }

  body.admin-bar,
  body.home.admin-bar,
  body.front-page.admin-bar,
  body.admin-bar:not(.home):not(.front-page) {
    padding-top: 0 !important;
  }

  .site-wrapper,
  main,
  .site-main,
  .page-content {
    position: relative !important;
    z-index: 1 !important;
    overflow: visible !important;
    transform: none !important;
    contain: none !important;
    padding-top: 0 !important;
    margin-top: 0 !important;
  }

  .site-header {
    position: sticky !important;
    top: 0 !important;
    left: 0;
    width: 100% !important;
    z-index: 999999 !important;
    margin-top: 0 !important;
    background: #07131f !important;
    backdrop-filter: blur(12px);
    transform: none !important;
  }

  body.admin-bar .site-header {
    top: 46px !important;
  }

  .site-nav {
    position: relative !important;
    top: auto !important;
    left: auto;
    right: auto;
    width: 100% !important;
    z-index: 999999 !important;
    background: #07131f !important;
    transform: none !important;
  }

  .site-header .container,
  .navbar,
  .nav-wrapper,
  .nav-inner {
    position: relative !important;
    display: flex !important;
    align-items: center;
    justify-content: space-between !important;
    min-height: 72px;
    width: min(100%, calc(100% - 20px));
    gap: 8px;
  }

  .brand {
    order: 1;
    min-width: 0;
    margin-right: auto;
  }

  .nav-actions {
    order: 2;
    flex: 0 0 auto;
  }

  .menu-toggle {
    order: 3;
    flex: 0 0 40px;
  }

  .nav-actions .btn.primary {
    display: inline-flex;
    min-height: 40px;
    padding: 8px 10px;
    color: #ffffff !important;
    white-space: nowrap;
  }

  .nav-links {
    position: absolute !important;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    width: auto;
    max-height: calc(100vh - 96px);
    overflow-y: auto;
    z-index: 999999;
  }

  body.admin-bar .nav-links {
    top: calc(100% + 8px);
    max-height: calc(100vh - 142px);
  }

  .hero,
  .hero-section,
  .page-content,
  main {
    margin-top: 0 !important;
  }

  .site-nav+.hero,
  .site-header+.hero,
  header+.hero,
  .main-header+.hero,
  .navbar+.hero,
  .hero,
  .hero-section,
  .banner {
    padding-top: 0 !important;
  }

  section,
  .service-card,
  .puppy-card {
    transform: none !important;
  }
}

/* Header-to-hero gap removal */
html {
  scroll-padding-top: 0 !important;
}

body,
body.home,
body.front-page,
body.admin-bar,
body.home.admin-bar,
body.front-page.admin-bar,
body:not(.home):not(.front-page),
body.admin-bar:not(.home):not(.front-page) {
  padding-top: 0 !important;
}

.site-header,
header:not(.hero):not(.hero-section),
.navbar {
  margin-bottom: 0 !important;
  border-bottom: none !important;
}

.site-header {
  position: sticky !important;
  top: 0 !important;
  z-index: 999999 !important;
  width: 100% !important;
  background: #07131f !important;
}

body.admin-bar .site-header {
  top: 32px !important;
}

body.admin-bar .site-nav,
body:not(.admin-bar) .site-nav {
  top: auto !important;
}

.site-nav {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  width: 100% !important;
  margin-bottom: 0 !important;
  border-bottom: none !important;
  background: #07131f !important;
  transform: none !important;
}

.hero,
.hero-section,
.banner {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

main,
.site-main,
.page-content {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.site-header::before,
.site-header::after,
.site-nav::before,
.site-nav::after {
  content: none !important;
  display: none !important;
}

@media (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px !important;
  }
}

/* Top-of-page navbar gap removal */
html,
body {
  margin: 0 !important;
  padding: 0 !important;
}

html {
  overflow-x: hidden;
}

#page,
.site,
.wp-site-blocks,
.site-wrapper {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.site-header,
.main-header,
header:not(.hero):not(.hero-section),
.navbar {
  margin-top: 0 !important;
  padding-top: 0 !important;
  top: 0 !important;
}

body:not(.admin-bar) .site-header,
body:not(.admin-bar) .main-header,
body:not(.admin-bar) header:not(.hero):not(.hero-section),
body:not(.admin-bar) .navbar {
  top: 0 !important;
}

body.admin-bar .site-header,
body.admin-bar .main-header,
body.admin-bar header:not(.hero):not(.hero-section),
body.admin-bar .navbar {
  top: 32px !important;
}

.site-header {
  display: block !important;
  position: sticky !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 999999 !important;
}

.site-nav {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

@media (max-width: 782px) {

  body.admin-bar .site-header,
  body.admin-bar .main-header,
  body.admin-bar header:not(.hero):not(.hero-section),
  body.admin-bar .navbar {
    top: 46px !important;
  }
}

/* Navbar-to-hero blank space removal */
body {
  padding-top: 0 !important;
}

.site-header,
.main-header,
.navbar {
  margin-bottom: 0 !important;
}

.site-header {
  position: sticky !important;
  top: 0;
  z-index: 9999;
}

body.admin-bar .site-header {
  top: 32px;
}

main,
.site-main,
.page-content,
.site-wrapper,
.site-header+.site-wrapper {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

.hero,
.hero-section,
.home-hero,
.banner,
.site-header+.site-wrapper>.hero,
.site-header+.site-wrapper>.hero:first-child {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

@media (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px;
  }
}

/* Mobile performance reductions */
@media (max-width: 768px) {
  * {
    scroll-behavior: auto;
  }

  .heavy-blur,
  .glass-card,
  .finder,
  .filters,
  .card,
  .service-card,
  .quick-card,
  .testimonial-card,
  .story-card,
  .trust-card,
  .promise-card,
  .lead-form,
  .newsletter,
  .trust-item,
  .site-nav,
  .nav-links {
    backdrop-filter: none !important;
  }

  .animated,
  .floating,
  .parallax,
  .floating-paws,
  .floating-paws *,
  .reveal,
  .slide-left,
  .slide-right,
  .scale-in {
    animation: none !important;
    transform: none !important;
    transition-delay: 0ms !important;
  }

  .card,
  .service-card,
  .quick-card,
  .testimonial-card,
  .story-card,
  .trust-card,
  .promise-card,
  .lead-form,
  .newsletter,
  .trust-item,
  .kennel-location__map {
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.28) !important;
  }
}

/* Puppy card actions */
.puppies-page .card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.puppies-page .card-actions .btn {
  flex: 1 1 calc(50% - 10px);
  min-width: 130px;
  min-height: 46px;
  padding: 0 14px;
  line-height: 1;
  white-space: nowrap;
  text-align: center;
  color: #ffffff;
  opacity: 1;
  border: 1px solid rgba(255, 255, 255, 0.36);
  text-shadow: none;
  backdrop-filter: none;
}

.puppies-page .card-actions .btn::before {
  pointer-events: none;
  opacity: 0.28;
}

.puppies-page .card-actions .details-btn {
  color: #ffffff;
  background: rgba(5, 13, 23, 0.52);
  border-color: rgba(255, 255, 255, 0.54);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.puppies-page .card-actions .btn[href*="wa.me"],
.puppies-page .card-actions .btn:last-child {
  flex-basis: 100%;
  width: 100%;
}

.puppies-page .card-actions .details-btn:hover {
  background: rgba(5, 13, 23, 0.72);
  color: #ffffff;
}

.puppies-page .card-actions .btn.primary {
  color: #07131f;
  background: linear-gradient(135deg, var(--brand), var(--gold));
  border-color: rgba(255, 180, 80, 0.78);
}

@media (max-width: 420px) {
  .puppies-page .card-actions {
    flex-direction: column;
    gap: 8px;
  }

  .puppies-page .card-actions .btn {
    width: 100%;
    flex: 1 1 100%;
    min-width: 0;
    min-height: 44px;
    padding: 0 10px;
    font-size: 0.9rem;
  }
}

/* Sticky footer layout */
html,
body {
  min-height: 100%;
  margin: 0 !important;
  padding: 0 !important;
  overflow-x: hidden;
}

body {
  min-height: 100vh !important;
  display: flex !important;
  flex-direction: column !important;
}

#page,
.site,
.site-wrapper {
  display: flex !important;
  flex-direction: column !important;
}

.site-wrapper {
  min-height: 0 !important;
  flex: 1 0 auto !important;
}

main,
.site-main,
.page-wrapper,
.page-content,
#primary {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

main,
.site-main,
#primary {
  flex: 1 0 auto !important;
}

.site-wrapper>.hero,
.site-wrapper>.page-section,
.site-wrapper>section {
  flex: 0 0 auto !important;
}

.site-footer,
footer {
  flex-shrink: 0 !important;
  margin-top: auto !important;
  margin-bottom: 0 !important;
  padding-bottom: 20px !important;
}

body::after,
.site-wrapper::after,
.site-footer::after,
footer::after {
  display: none !important;
  content: none !important;
}

body.page-template-page-puppies .puppies-page-head,
body.page-template-page-puppies-php .puppies-page-head {
  margin-bottom: 18px !important;
}

body.page-template-page-puppies .puppies-layout,
body.page-template-page-puppies-php .puppies-layout {
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
  padding-top: 0 !important;
  width: 100%;
}

body.page-template-page-puppies .results,
body.page-template-page-puppies-php .results {
  min-width: 0;
  width: 100%;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: rgba(8, 15, 26, 0.94);
  box-shadow: 0 20px 54px rgba(0, 0, 0, 0.34);
}

body.page-template-page-puppies .results-head,
body.page-template-page-puppies-php .results-head {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 24px !important;
}

body.page-template-page-puppies .listing-grid,
body.page-template-page-puppies-php .listing-grid {
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}

body.page-template-page-puppies .sort-box,
body.page-template-page-puppies-php .sort-box {
  width: min(220px, 100%);
}

body.page-template-page-puppies .sort-box select,
body.page-template-page-puppies-php .sort-box select {
  width: 100%;
  max-width: 100%;
}

@media (max-width: 768px) {

  body.page-template-page-puppies .results-head,
  body.page-template-page-puppies-php .results-head {
    justify-content: stretch;
    margin-bottom: 16px !important;
  }

  body.page-template-page-puppies .sort-box,
  body.page-template-page-puppies-php .sort-box {
    width: 100%;
  }

  body.page-template-page-puppies .puppies-layout,
  body.page-template-page-puppies-php .puppies-layout {
    display: block;
  }

  body.page-template-page-puppies .results,
  body.page-template-page-puppies-php .results {
    padding: 16px;
    border-radius: 14px;
  }

  body.page-template-page-puppies .listing-grid,
  body.page-template-page-puppies-php .listing-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
}

body.page-contact .contact-page .trust-inner {
  padding-top: 0 !important;
}

body.page-contact .contact-page .trust-copy .eyebrow {
  margin-bottom: 16px;
}

body.page-contact .contact-page .trust-copy h1 {
  margin-top: 0;
}

@media (max-width: 768px) {
  body.page-contact .contact-page .trust-copy .eyebrow {
    margin-bottom: 12px;
  }
}

/* Original SKSKENNEL playful premium redesign */
:root {
  --ink: #081827;
  --navy: #07131f;
  --navy-2: #0c2234;
  --teal: #26c6b5;
  --teal-dark: #079382;
  --sun: #ffd45a;
  --sun-dark: #e5a81f;
  --coral: #ff8066;
  --paper: #f6fbf7;
  --surface: #ffffff;
  --line: #d8e7e5;
  --muted: #60717c;
  --brand: var(--teal);
  --brand-dark: var(--teal-dark);
  --gold: var(--sun);
  --shadow: 0 18px 46px rgba(7, 19, 31, 0.12);
  --radius: 18px;
}

body {
  background:
    radial-gradient(circle at 8% 12%, rgba(255, 212, 90, 0.18), transparent 26%),
    radial-gradient(circle at 92% 34%, rgba(38, 198, 181, 0.18), transparent 28%),
    var(--paper);
}

.site-header,
.site-nav {
  background: rgba(7, 19, 31, 0.96) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}

.brand-name,
.nav-links a {
  color: #f8ffff !important;
}

.brand-logo {
  border-color: rgba(38, 198, 181, 0.55);
  box-shadow: 0 10px 28px rgba(38, 198, 181, 0.18);
}

.btn {
  border-radius: 999px;
}

.btn.primary,
.lead-form .ff-btn-submit,
.puppies-page .card-actions .btn.primary {
  color: #07131f !important;
  background: linear-gradient(135deg, var(--sun), var(--teal)) !important;
  border-color: rgba(255, 212, 90, 0.8) !important;
  box-shadow: 0 14px 34px rgba(38, 198, 181, 0.22);
}

.btn.ghost {
  color: var(--ink);
  border-color: rgba(38, 198, 181, 0.28);
  background: rgba(255, 255, 255, 0.94);
}

.sks-play-hero,
.hero.sks-play-hero {
  position: relative;
  overflow: hidden;
  min-height: 680px;
  color: #ffffff;
  background:
    radial-gradient(circle at 16% 16%, rgba(38, 198, 181, 0.33), transparent 26%),
    radial-gradient(circle at 82% 18%, rgba(255, 212, 90, 0.28), transparent 24%),
    linear-gradient(140deg, #07131f 0%, #0c2234 58%, #103140 100%) !important;
  border-bottom: 0;
}

.sks-play-hero::before,
.sks-play-hero::after {
  content: "";
  position: absolute;
  pointer-events: none;
  filter: drop-shadow(0 24px 38px rgba(0, 0, 0, 0.18));
}

.sks-play-hero::before {
  right: -90px;
  top: 120px;
  width: 360px;
  height: 310px;
  border-radius: 42% 58% 38% 62%;
  background: rgba(38, 198, 181, 0.26);
}

.sks-play-hero::after {
  left: -70px;
  bottom: 42px;
  width: 260px;
  height: 210px;
  border-radius: 58% 42% 54% 46%;
  background: rgba(255, 212, 90, 0.22);
}

.sks-play-hero .hero-inner {
  position: relative;
  z-index: 1;
  grid-template-columns: var(--sks-home-hero-columns, minmax(0, 1.05fr) minmax(320px, 0.82fr));
  gap: 46px;
  padding: 92px 0 78px;
}

.sks-play-hero h1 {
  color: #ffffff;
  max-width: 720px;
  font-family: Poppins, Nunito, Inter, sans-serif;
  font-size: clamp(2.7rem, 6vw, 5.7rem);
  line-height: 0.98;
}

.sks-play-hero .hero-copy p {
  color: #d8e8ed;
  font-size: 1.14rem;
}

.eyebrow {
  color: #08202a;
  background: linear-gradient(135deg, var(--sun), #fff1a6);
  border: 1px solid rgba(255, 255, 255, 0.46);
}

.sks-play-hero .stat {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
}

.sks-play-hero .stat span {
  color: #c8dde4;
}

.floating-paws span {
  color: var(--sun);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.hero-puppy-finder {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(244, 255, 252, 0.94)),
    #ffffff;
}

.finder-mascot {
  display: block;
  height: 190px;
  margin: -8px -8px 18px;
  overflow: hidden;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(38, 198, 181, 0.24), rgba(255, 212, 90, 0.32));
}

.finder-mascot img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  display: block;
}

.section-block {
  position: relative;
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
  padding: 74px 0;
}

.section-head h2 {
  color: var(--ink);
  font-family: Poppins, Nunito, Inter, sans-serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.04;
}

.section-head p {
  color: var(--muted);
}

.services-grid,
.trust-grid,
.promise-grid {
  gap: 18px;
}

.service-card,
.trust-card,
.promise-card,
.card,
.lead-form,
.kennel-location,
.gallery-item {
  border-radius: 22px !important;
  border: 1px solid rgba(38, 198, 181, 0.16) !important;
  background: rgba(255, 255, 255, 0.96) !important;
  box-shadow: var(--shadow) !important;
}

.service-card,
.trust-card {
  position: relative;
  overflow: hidden;
}

.service-card::after,
.trust-card::after {
  content: "";
  position: absolute;
  right: -26px;
  bottom: -34px;
  width: 112px;
  height: 96px;
  border-radius: 46% 54% 58% 42%;
  background: rgba(255, 212, 90, 0.22);
}

.service-icon,
.trust-card-icon {
  color: #07131f;
  background: linear-gradient(135deg, var(--teal), var(--sun));
  border-radius: 18px;
}

.available-puppies {
  width: 100%;
  max-width: none;
  padding-inline: max(16px, calc((100vw - 1180px) / 2));
  background:
    radial-gradient(circle at 20% 0%, rgba(255, 212, 90, 0.2), transparent 28%),
    linear-gradient(180deg, #ffffff, #effbf8);
}

.available-puppies .section-head,
.available-puppies .puppy-preview-grid,
.available-puppies .section-actions {
  width: min(1180px, 100%);
  margin-inline: auto;
}

.puppy-preview-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  overflow: hidden;
}

.card-media {
  background: linear-gradient(135deg, rgba(38, 198, 181, 0.18), rgba(255, 212, 90, 0.24));
}

.badge {
  color: #07131f;
  background: rgba(255, 255, 255, 0.92);
}

.price {
  color: #07131f;
  background: var(--sun);
}

.section-actions {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.trust {
  background:
    radial-gradient(circle at 10% 18%, rgba(38, 198, 181, 0.22), transparent 30%),
    linear-gradient(135deg, #07131f, #0c2234) !important;
  border: 0;
}

.trust-copy h2,
.lead-form h2,
.kennel-location__head h2 {
  color: #ffffff !important;
}

.lead-form {
  background: rgba(255, 255, 255, 0.1) !important;
  border-color: rgba(255, 255, 255, 0.16) !important;
}

.contact-detail {
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.1);
}

.kennel-location {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 70px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.08) !important;
}

footer {
  color: #dbeafe;
  background: #07131f !important;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.floating-whatsapp {
  background: #20c76a;
}

@media (max-width: 1040px) {

  .sks-play-hero .hero-inner,
  .trust-inner {
    grid-template-columns: 1fr;
  }

  .puppy-preview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {

  .sks-play-hero,
  .hero.sks-play-hero {
    min-height: auto;
  }

  .sks-play-hero .hero-inner {
    padding: 46px 0 52px;
  }

  .hero-stats,
  .field-grid,
  .puppy-preview-grid,
  .trust-list {
    grid-template-columns: 1fr;
  }

  .finder-mascot {
    height: 150px;
  }

  .section-block {
    padding: 50px 0;
  }
}

/* Dog breeds directory */
.dog-breeds-section {
  color: #f8ffff;
  background:
    radial-gradient(circle at 14% 12%, rgba(38, 198, 181, 0.24), transparent 28%),
    radial-gradient(circle at 88% 8%, rgba(255, 212, 90, 0.2), transparent 26%),
    linear-gradient(135deg, #07131f, #0c2234);
  width: 100%;
  max-width: none;
  padding-inline: max(16px, calc((100vw - 1180px) / 2));
}

.dog-breeds-section .section-head,
.dog-breeds-directory {
  width: min(1180px, 100%);
  margin-inline: auto;
}

.dog-breeds-section .section-head h1,
.dog-breeds-section .section-head h2 {
  color: #ffffff;
}

.dog-breeds-section .section-head p {
  color: #cfe1e6;
}

.breed-search-wrap {
  margin: 0 0 24px;
}

.breed-search-label {
  position: relative;
  display: block;
  max-width: 560px;
}

.breed-search-label svg {
  position: absolute;
  left: 16px;
  top: 50%;
  width: 20px;
  height: 20px;
  color: var(--teal);
  transform: translateY(-50%);
  pointer-events: none;
}

.breed-search-input {
  min-height: 54px;
  padding-left: 48px;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.breed-search-input::placeholder {
  color: #b7cbd2;
}

.breed-search-input:focus {
  border-color: rgba(38, 198, 181, 0.78);
  box-shadow: 0 0 0 4px rgba(38, 198, 181, 0.16);
}

.dog-breed-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.dog-breed-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.1);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.dog-breed-card__media {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(38, 198, 181, 0.22), rgba(255, 212, 90, 0.2));
}

.dog-breed-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.dog-breed-card:hover .dog-breed-card__media img,
.dog-breed-card:focus-within .dog-breed-card__media img {
  transform: scale(1.06);
}

.dog-breed-card__body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}

.dog-breed-card h3 {
  margin: 0;
  color: #ffffff;
  font-size: 1.08rem;
  line-height: 1.25;
}

.dog-breed-card h3 a {
  color: inherit;
  display: block;
  overflow-wrap: break-word;
  word-break: break-word;
  white-space: normal;
}

.dog-breed-card__link,
.view-details-btn {
  align-self: center;
  margin-top: 0;
}

.dog-breed-card__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.82rem;
  color: #ffffff;
  text-decoration: none;
  background: linear-gradient(135deg, #ff8c32, #f7c46c);
}

.dog-breed-card__link:hover,
.dog-breed-card__link:focus-visible {
  color: #ffffff;
}

.dog-breed-card__meta,
.dog-breed-card__quality,
.breed-meta,
.quality,
.extra-info {
  display: none;
}

.dog-breed-empty {
  margin: 24px 0 0;
  padding: 24px;
  color: #ffffff;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.single-breed-page {
  padding: 72px 0;
  background:
    radial-gradient(circle at 12% 8%, rgba(38, 198, 181, 0.16), transparent 28%),
    radial-gradient(circle at 88% 20%, rgba(255, 212, 90, 0.14), transparent 28%),
    var(--paper);
}

.single-breed-hero .single-pet-panel {
  background: linear-gradient(135deg, #07131f, #0c2234);
}

.single-breed-hero .single-pet-title,
.single-breed-hero .single-pet-description {
  color: #ffffff;
}

.single-breed-hero .single-pet-description p {
  color: #d8e8ed;
}

.single-breed-details .single-pet-meta-grid {
  margin-bottom: 0;
}

.single-breed-detail-page .single-pet-panel,
.single-breed-detail-page .single-pet-section,
.single-breed-detail-page .single-pet-description,
.breed-description-card,
.breed-description,
.breed-description-content {
  min-width: 0;
}

.breed-description,
.breed-description-content,
.breed-description-card {
  width: 100%;
  max-width: 100%;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
  white-space: normal;
  box-sizing: border-box;
}

.breed-description ul,
.breed-description ol {
  padding-left: 24px;
}

.breed-description p,
.breed-description li {
  line-height: 1.8;
}

.breed-description :is(a, code, pre, img, table) {
  max-width: 100%;
}

.breed-description pre,
.breed-description code {
  white-space: pre-wrap;
}

.single-breed-detail-page .single-pet-section,
.single-breed-detail-page .single-pet-description {
  width: 100%;
  max-width: 100%;
}

.related-puppies-section .puppy-preview-grid {
  width: 100%;
}

.managed-services-grid {
  align-items: stretch;
}

.managed-service-card {
  padding: 0;
}

.managed-service-card__media {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 18px 18px 0 0;
  background: rgba(5, 11, 18, 0.64);
}

.managed-service-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.managed-service-card:hover .managed-service-card__media img,
.managed-service-card:focus-within .managed-service-card__media img {
  transform: scale(1.06);
}

.managed-service-card .service-icon,
.managed-service-card h3,
.managed-service-card p {
  margin-left: 18px;
  margin-right: 18px;
}

.managed-service-card .service-icon {
  margin-top: -24px;
  position: relative;
  z-index: 1;
}

.managed-service-card h3 a {
  color: inherit;
}

.breed-health-record {
  margin-top: 20px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.breed-health-record h3 {
  margin: 0 0 10px;
  color: #ffffff;
}

@media (max-width: 1040px) {
  .dog-breed-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .dog-breed-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .dog-breed-grid {
    grid-template-columns: 1fr;
  }

  .single-breed-page {
    padding: 48px 0;
  }
}

/* Restore SKSKENNEL dark premium kennel theme */
:root {
  --ink: #ffffff;
  --navy: #07131f;
  --navy-2: #050b12;
  --paper: #050b12;
  --surface: #0b1623;
  --line: rgba(255, 255, 255, 0.1);
  --muted: #cbd5e1;
  --brand: #ff8c32;
  --brand-dark: #c95f16;
  --gold: #f7c46c;
  --teal: #ff8c32;
  --teal-dark: #c95f16;
  --sun: #f7c46c;
  --shadow: 0 22px 54px rgba(0, 0, 0, 0.42);
  --radius: 18px;
}

html,
body {
  background: #050b12 !important;
  color: #ffffff;
}

body {
  background:
    radial-gradient(circle at 14% 0%, rgba(255, 140, 50, 0.11), transparent 30%),
    linear-gradient(180deg, #050b12 0%, #07131f 42%, #050b12 100%) !important;
}

.site-header,
.site-nav {
  background: rgba(7, 19, 31, 0.98) !important;
  border-bottom: 1px solid rgba(255, 140, 50, 0.22) !important;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.36);
}

.brand-name,
.nav-links a {
  color: #ffffff !important;
}

.nav-links a:hover,
.nav-links a.active {
  color: #ffffff !important;
  background: rgba(255, 140, 50, 0.14) !important;
}

.brand-logo {
  background: #ffffff;
  border-color: rgba(255, 140, 50, 0.7);
  box-shadow: 0 10px 30px rgba(255, 140, 50, 0.22);
}

.btn,
.btn.primary,
.lead-form .ff-btn-submit,
.puppies-page .card-actions .btn.primary {
  border-radius: 999px;
}

.btn.primary,
.lead-form .ff-btn-submit,
.puppies-page .card-actions .btn.primary {
  color: #050b12 !important;
  background: linear-gradient(135deg, #ff8c32, #f7c46c) !important;
  border: 1px solid rgba(255, 140, 50, 0.82) !important;
  box-shadow: 0 0 0 1px rgba(255, 196, 108, 0.16), 0 16px 36px rgba(255, 140, 50, 0.28) !important;
}

.btn.primary:hover,
.lead-form .ff-btn-submit:hover {
  background: linear-gradient(135deg, #f7c46c, #ff8c32) !important;
  box-shadow: 0 0 0 1px rgba(255, 196, 108, 0.26), 0 20px 44px rgba(255, 140, 50, 0.36) !important;
}

.btn.ghost,
.details-btn {
  color: #ffffff !important;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  background: rgba(11, 22, 35, 0.9) !important;
}

.eyebrow {
  color: #050b12 !important;
  background: linear-gradient(135deg, #ff8c32, #f7c46c) !important;
  border: 1px solid rgba(255, 196, 108, 0.72) !important;
  box-shadow: 0 10px 28px rgba(255, 140, 50, 0.18);
}

.sks-play-hero,
.hero.sks-play-hero,
.hero {
  position: relative;
  min-height: 650px;
  color: #ffffff;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(5, 11, 18, 0.96) 0%, rgba(7, 19, 31, 0.9) 45%, rgba(7, 19, 31, 0.42) 100%),
    url("../images/hero-husky-luxury.png") center right / contain no-repeat,
    linear-gradient(135deg, #050b12, #07131f) !important;
  border-bottom: 1px solid rgba(255, 140, 50, 0.18);
}

.sks-play-hero::before,
.sks-play-hero::after {
  content: none !important;
  display: none !important;
}

.floating-paws {
  display: none !important;
}

.sks-play-hero .hero-inner,
.hero-inner {
  grid-template-columns: minmax(0, 640px) minmax(320px, 430px);
  gap: 40px;
  padding: 86px 0 76px;
}

.sks-play-hero h1,
.hero h1,
h1 {
  color: #ffffff;
  letter-spacing: 0;
}

.sks-play-hero .hero-copy p,
.hero-copy p,
.section-head p,
.trust-copy p,
.lead-form p,
.kennel-location__head p {
  color: #cbd5e1 !important;
}

.hero-stats .stat,
.stat {
  color: #ffffff;
  background: rgba(11, 22, 35, 0.78) !important;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(14px);
}

.stat span {
  color: #cbd5e1 !important;
}

.finder,
.hero-puppy-finder,
.filters,
.results,
.lead-form,
.single-pet-card,
.single-pet-panel,
.single-pet-info,
.single-pet-media,
.single-pet-section,
.kennel-location,
.booking-preview,
.booking-form-wrap {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  background: rgba(11, 22, 35, 0.82) !important;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.38) !important;
  backdrop-filter: blur(16px);
}

.finder h2,
.lead-form h2,
.single-pet-section h2,
.results-title h2,
.filters h2 {
  color: #ffffff !important;
}

.finder-mascot {
  background: radial-gradient(circle at 50% 100%, rgba(255, 140, 50, 0.22), rgba(11, 22, 35, 0.2)) !important;
}

select,
input,
textarea,
.lead-form .ff-el-form-control,
.breed-search-input {
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.15) !important;
  background: rgba(5, 11, 18, 0.78) !important;
}

select:focus,
input:focus,
textarea:focus,
.breed-search-input:focus,
.lead-form .ff-el-form-control:focus {
  border-color: #ff8c32 !important;
  box-shadow: 0 0 0 4px rgba(255, 140, 50, 0.17) !important;
}

label,
.filter-title,
.choice,
.card-kicker {
  color: #cbd5e1 !important;
}

.section-block,
.available-puppies,
.dog-breeds-section,
.trust,
.single-breed-page,
.puppies-page,
.content-wrap {
  background:
    radial-gradient(circle at 90% 0%, rgba(255, 140, 50, 0.1), transparent 30%),
    linear-gradient(180deg, #07131f, #050b12) !important;
}

.section-head h1,
.section-head h2,
.trust-copy h2,
.kennel-location__head h2 {
  color: #ffffff !important;
}

.service-card,
.trust-card,
.promise-card,
.card,
.gallery-item,
.dog-breed-card,
.contact-detail,
.trust-item,
.meta,
.single-pet-meta,
.empty {
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.1) !important;
  background: rgba(11, 22, 35, 0.92) !important;
  box-shadow: 0 20px 48px rgba(0, 0, 0, 0.34), 0 0 30px rgba(255, 140, 50, 0.06) !important;
}

.service-card::after,
.trust-card::after {
  background: rgba(255, 140, 50, 0.12) !important;
}

.service-icon,
.trust-card-icon,
.breed-search-label svg {
  color: #050b12 !important;
  background: linear-gradient(135deg, #ff8c32, #f7c46c) !important;
}

.card-media,
.dog-breed-card__media {
  background: linear-gradient(135deg, rgba(255, 140, 50, 0.15), rgba(5, 11, 18, 0.72)) !important;
}

.card h3,
.card h3 a,
.card-title-link,
.dog-breed-card h3,
.dog-breed-card h3 a,
.single-pet-title,
.single-pet-meta strong,
.meta strong,
.puppy-card-facts strong {
  color: #ffffff !important;
}

.card p,
.single-pet-description,
.single-pet-description p,
.single-pet-section p,
.meta small,
.single-pet-meta small,
.puppy-card-facts small,
.contact-detail span {
  color: #cbd5e1 !important;
}

.badge {
  color: #050b12 !important;
  background: rgba(247, 196, 108, 0.95) !important;
}

.price,
.single-pet-price {
  color: #050b12 !important;
  background: #ff8c32 !important;
}

.tab.active,
input[type="range"],
.choice input {
  accent-color: #ff8c32;
}

.dog-breeds-section .section-head,
.dog-breeds-directory,
.available-puppies .section-head,
.available-puppies .puppy-preview-grid,
.available-puppies .section-actions {
  width: min(1180px, 100%);
  margin-inline: auto;
}

.breed-search-input::placeholder,
input::placeholder,
textarea::placeholder {
  color: #94a3b8 !important;
}

.dog-breed-empty {
  color: #ffffff;
  border-color: rgba(255, 140, 50, 0.22);
  background: rgba(11, 22, 35, 0.92);
}

.single-breed-hero .single-pet-panel {
  background: rgba(11, 22, 35, 0.92) !important;
}

.floating-whatsapp {
  background: #25d366 !important;
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.38), 0 0 22px rgba(37, 211, 102, 0.24) !important;
}

footer {
  color: #cbd5e1 !important;
  background: linear-gradient(180deg, #07131f, #050b12) !important;
  border-top: 2px solid #ff8c32 !important;
  box-shadow: inset 0 1px 0 rgba(247, 196, 108, 0.2);
}

.footer-inner,
.footer-inner div,
.footer-inner a {
  color: #cbd5e1 !important;
}

.footer-inner strong {
  color: #ffffff !important;
}

@media (max-width: 1040px) {

  .sks-play-hero .hero-inner,
  .hero-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {

  .sks-play-hero,
  .hero.sks-play-hero,
  .hero {
    min-height: auto;
    background:
      linear-gradient(180deg, rgba(5, 11, 18, 0.96), rgba(7, 19, 31, 0.92)),
      url("../images/hero-husky-luxury.png") center bottom / contain no-repeat,
      #050b12 !important;
  }

  .sks-play-hero .hero-inner,
  .hero-inner {
    padding: 44px 0 48px;
  }
}

/* Light eCommerce theme refresh */
:root {
  --ink: #111827;
  --navy: #232f3e;
  --navy-2: #111827;
  --paper: #f8f9fa;
  --surface: #ffffff;
  --line: #e5e7eb;
  --muted: #4b5563;
  --brand: #ff9900;
  --brand-dark: #e68600;
  --gold: #ff9900;
  --teal: #ff9900;
  --teal-dark: #e68600;
  --sun: #ff9900;
  --shadow: 0 8px 24px rgba(17, 24, 39, 0.08);
  --radius: 8px;
}

html,
body {
  color: #111827 !important;
  background: #f8f9fa !important;
}

body {
  background: #f8f9fa !important;
}

body.home,
body.front-page {
  padding-top: 72px;
}

body.home.admin-bar,
body.front-page.admin-bar {
  padding-top: calc(72px + 32px);
}

.site-header,
.site-nav {
  background: #ffffff !important;
  border-bottom: 1px solid #e5e7eb !important;
  box-shadow: 0 2px 12px rgba(17, 24, 39, 0.06) !important;
  backdrop-filter: none;
}

.nav-inner {
  min-height: 72px;
  gap: 14px;
}

.brand-name,
.nav-links a {
  color: #111827 !important;
}

.brand-name {
  font-size: 1.4rem;
}

.nav-links a {
  font-size: calc(1rem + 2px);
  border-radius: 6px;
  padding: 10px 11px;
}

.nav-links a:hover,
.nav-links a.active {
  color: #111827 !important;
  background: #f3f4f6 !important;
}

.brand-logo {
  border-radius: 8px;
  border-color: #e5e7eb;
  box-shadow: none;
}

.menu-toggle span {
  background: #111827;
}

.btn {
  min-height: 40px;
  border-radius: 6px !important;
  box-shadow: none !important;
  transform: none !important;
}

.btn.primary,
.lead-form .ff-btn-submit,
.puppies-page .card-actions .btn.primary {
  color: #111827 !important;
  background: #ff9900 !important;
  border: 1px solid #ff9900 !important;
}

.btn.primary:hover,
.lead-form .ff-btn-submit:hover {
  background: #e68600 !important;
}

.btn.ghost,
.details-btn {
  color: #232f3e !important;
  border: 1px solid #d1d5db !important;
  background: #ffffff !important;
}

.nav-actions .btn.primary {
  white-space: nowrap;
}

.eyebrow {
  color: #232f3e !important;
  border: 1px solid #fed7aa !important;
  background: #fff7ed !important;
  box-shadow: none !important;
}

.hero,
.sks-play-hero,
.hero.sks-play-hero {
  min-height: 560px;
  color: #111827;
  background:
    linear-gradient(90deg, rgba(248, 249, 250, 0.98) 0%, rgba(248, 249, 250, 0.9) 52%, rgba(248, 249, 250, 0.6) 100%),
    url("../images/hero-husky-luxury.png") center right / contain no-repeat,
    #f8f9fa !important;
  border-bottom: 1px solid #e5e7eb !important;
}

.sks-play-hero .hero-inner,
.hero-inner {
  padding: 56px 0;
}

.sks-play-hero h1,
.hero h1,
h1 {
  color: #111827 !important;
}

.sks-play-hero .hero-copy p,
.hero-copy p,
.section-head p,
.trust-copy p,
.lead-form p,
.kennel-location__head p {
  color: #4b5563 !important;
}

.stat,
.hero-stats .stat,
.finder,
.hero-puppy-finder,
.filters,
.results,
.lead-form,
.single-pet-card,
.single-pet-panel,
.single-pet-info,
.single-pet-media,
.single-pet-section,
.kennel-location,
.booking-preview,
.booking-form-wrap,
.service-card,
.trust-card,
.promise-card,
.card,
.gallery-item,
.dog-breed-card,
.contact-detail,
.trust-item,
.meta,
.single-pet-meta,
.empty,
.testimonial-card {
  color: #111827 !important;
  border: 1px solid #e5e7eb !important;
  border-radius: 8px !important;
  background: #ffffff !important;
  box-shadow: 0 6px 18px rgba(17, 24, 39, 0.06) !important;
  backdrop-filter: none !important;
}

.finder h2,
.lead-form h2,
.single-pet-section h2,
.results-title h2,
.filters h2,
.service-card h3,
.trust-card h3,
.card h3,
.card h3 a,
.card-title-link,
.single-pet-title,
.single-pet-meta strong,
.meta strong,
.puppy-card-facts strong,
.testimonial-card h3 {
  color: #111827 !important;
}

.stat span,
.card p,
.single-pet-description,
.single-pet-description p,
.single-pet-section p,
.meta small,
.single-pet-meta small,
.puppy-card-facts small,
.contact-detail span,
.testimonial-card p,
label,
.filter-title,
.choice,
.card-kicker {
  color: #4b5563 !important;
}

select,
input,
textarea,
.lead-form .ff-el-form-control,
.breed-search-input {
  color: #111827 !important;
  border: 1px solid #d1d5db !important;
  background: #ffffff !important;
}

select:focus,
input:focus,
textarea:focus,
.breed-search-input:focus,
.lead-form .ff-el-form-control:focus {
  border-color: #ff9900 !important;
  box-shadow: 0 0 0 3px rgba(255, 153, 0, 0.18) !important;
}

input::placeholder,
textarea::placeholder,
.breed-search-input::placeholder {
  color: #6b7280 !important;
}

.section-block,
.available-puppies,
.dog-breeds-section,
.trust,
.single-breed-page,
.puppies-page,
.content-wrap {
  background: #f8f9fa !important;
}

.section-block {
  padding: 56px 0;
}

.section-head h1,
.section-head h2,
.trust-copy h2,
.kennel-location__head h2 {
  color: #111827 !important;
}

.services-grid,
.trust-grid,
.reviews-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-card,
.trust-card,
.testimonial-card {
  padding: 18px;
}

.service-card::after,
.trust-card::after,
.sks-play-hero::before,
.sks-play-hero::after {
  content: none !important;
}

.service-icon,
.trust-card-icon,
.breed-search-label svg {
  color: #111827 !important;
  background: #ff9900 !important;
  border-radius: 8px !important;
}

.available-puppies {
  width: min(1180px, calc(100% - 32px));
  max-width: 1180px;
  padding-inline: 0;
}

.home-featured-puppies .puppy-preview-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.puppies-page {
  width: min(1280px, calc(100% - 32px));
  max-width: 1280px;
}

.puppies-page-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0 24px;
}

.puppies-page-head h1 {
  margin: 12px 0 8px;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
}

.puppies-page-head p {
  margin: 0;
  color: #4b5563;
}

.puppies-layout {
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 20px;
}

.filters {
  top: 92px;
  padding: 16px;
}

.filter-group {
  border-top-color: #e5e7eb;
}

.results {
  padding: 0;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.results-head {
  grid-template-columns: minmax(0, 1fr) 220px;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  background: #ffffff;
}

.results-title h2 {
  margin: 0;
  font-size: 1.05rem;
}

.listing-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.card {
  overflow: hidden;
}

.card-media {
  aspect-ratio: 1 / 1;
  background: #f3f4f6 !important;
}

.card:hover img {
  transform: scale(1.02);
}

.badge {
  color: #111827 !important;
  background: rgba(255, 255, 255, 0.94) !important;
  border: 1px solid #e5e7eb;
}

.price,
.single-pet-price {
  color: #111827 !important;
  background: #ff9900 !important;
}

.card-body {
  padding: 13px;
}

.puppy-card-facts {
  grid-template-columns: 1fr;
  gap: 7px;
  margin-bottom: 12px;
}

.puppy-card-facts span {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 7px 0;
  border-bottom: 1px solid #f3f4f6;
}

.puppy-card-facts small {
  margin: 0;
}

.puppy-card-facts strong {
  text-align: right;
}

.card-actions {
  grid-template-columns: 1fr;
  gap: 8px;
}

.card-actions .btn {
  width: 100%;
}

.puppy-gender-actions,
.meta-grid,
.card p {
  display: none !important;
}

.single-pet-page {
  background: #f8f9fa;
}

.single-pet-image-wrap::after {
  background: linear-gradient(180deg, transparent, rgba(17, 24, 39, 0.18));
}

.single-pet-status-badge {
  color: #111827;
  background: #ffffff;
}

.home-cta {
  width: 100%;
  padding: 54px 16px;
  background: #232f3e;
}

.home-cta-inner {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.home-cta h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.6rem, 3vw, 2.5rem);
}

.home-cta .eyebrow {
  flex: 0 0 auto;
}

footer {
  color: #4b5563 !important;
  background: #ffffff !important;
  border-top: 1px solid #e5e7eb !important;
  box-shadow: none !important;
}

.footer-inner,
.footer-inner div,
.footer-inner a {
  color: #4b5563 !important;
}

.footer-inner strong {
  color: #111827 !important;
}

.loader-card {
  color: #111827;
  border: 1px solid #e5e7eb;
  background: #ffffff;
}

@media (max-width: 1040px) {

  .home-featured-puppies .puppy-preview-grid,
  .listing-grid,
  .services-grid,
  .trust-grid,
  .reviews-preview-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .puppies-layout {
    grid-template-columns: 1fr;
  }

  .filters {
    position: static;
  }
}

@media (max-width: 720px) {

  .hero,
  .sks-play-hero,
  .hero.sks-play-hero {
    background:
      linear-gradient(180deg, rgba(248, 249, 250, 0.98), rgba(248, 249, 250, 0.86)),
      url("../images/hero-husky-luxury.png") center bottom / contain no-repeat,
      #f8f9fa !important;
  }

  .nav-links {
    background: #ffffff !important;
    border-color: #e5e7eb !important;
  }

  .home-featured-puppies .puppy-preview-grid,
  .listing-grid,
  .services-grid,
  .trust-grid,
  .reviews-preview-grid,
  .results-head,
  .home-cta-inner {
    grid-template-columns: 1fr;
  }

  .home-cta-inner {
    display: grid;
    align-items: start;
  }

  .puppies-page-head {
    display: block;
  }

  .mobile-filter-bar {
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 10px;
  }
}

/* Clean light blue-gray premium theme */
:root {
  --ink: #0f172a;
  --navy: #0f172a;
  --navy-2: #334155;
  --paper: #f1f5f9;
  --surface: #ffffff;
  --line: #cbd5e1;
  --muted: #64748b;
  --brand: #2563eb;
  --brand-dark: #1d4ed8;
  --gold: #38bdf8;
  --teal: #38bdf8;
  --teal-dark: #2563eb;
  --sun: #38bdf8;
  --shadow: 0 14px 34px rgba(15, 23, 42, 0.1);
  --radius: 16px;
}

html,
body {
  color: #0f172a !important;
  background: #f1f5f9 !important;
}

body,
.site-wrapper,
.single-pet-page,
.gallery-page,
.contact-page,
.puppies-page {
  background: #f1f5f9 !important;
}

.site-header,
.site-nav {
  position: fixed;
  top: 0;
  color: #0f172a !important;
  background: #ffffff !important;
  border-bottom: 1px solid rgba(203, 213, 225, 0.9) !important;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08) !important;
  backdrop-filter: none !important;
}

body.admin-bar .site-nav {
  top: 32px;
}

.brand-name,
.nav-links a {
  color: #0f172a !important;
}

.nav-links a {
  font-size: calc(1rem + 2px);
  font-weight: 700;
}

.nav-links a:hover,
.nav-links a.active {
  color: #0f172a !important;
  background: #e2e8f0 !important;
}

.brand-logo {
  border-color: #cbd5e1 !important;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.08) !important;
}

.finder,
.hero-puppy-finder {
  background: #ffffff !important;
  border-color: #cbd5e1 !important;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.12) !important;
}

.menu-toggle span {
  background: #0f172a !important;
}

.hero,
.sks-play-hero,
.hero.sks-play-hero {
  color: #0f172a !important;
  background:
    linear-gradient(90deg, rgba(241, 245, 249, 0.94) 0%, rgba(226, 232, 240, 0.84) 52%, rgba(226, 232, 240, 0.44) 100%),
    url("../images/hero-husky-luxury.png") center right / cover no-repeat,
    #e2e8f0 !important;
  border-bottom: 1px solid #cbd5e1 !important;
}

.hero::before,
.sks-play-hero::before,
.sks-play-hero::after,
.single-pet-image-wrap::after {
  content: none !important;
  display: none !important;
  background: none !important;
  backdrop-filter: none !important;
}

.hero h1,
.sks-play-hero h1,
.hero-copy h1,
h1,
.section-head h1,
.section-head h2,
.finder h2,
.lead-form h2,
.trust-copy h2,
.kennel-location__head h2,
.results-title h2,
.filters h2,
.card h3,
.card h3 a,
.card-title-link,
.service-card h3,
.trust-card h3,
.testimonial-card h3,
.single-pet-title,
.single-pet-section h2,
.dog-breed-card h3,
.dog-breed-card h3 a {
  color: #0f172a !important;
  opacity: 1 !important;
  text-shadow: none !important;
}

.hero-copy p,
.sks-play-hero .hero-copy p,
.section-head p,
.card p,
.service-card p,
.trust-card p,
.testimonial-card p,
.lead-form p,
.trust-copy p,
.single-pet-description,
.single-pet-description p,
.single-pet-section p,
.kennel-location__head p,
.results-title p,
.gallery-caption small {
  color: #475569 !important;
  opacity: 1 !important;
  text-shadow: none !important;
}

.muted,
.meta small,
.single-pet-meta small,
.puppy-card-facts small,
.contact-detail span,
.range-line,
.breadcrumb,
label,
.choice,
.filter-title {
  color: #64748b !important;
  opacity: 1 !important;
}

.section-block,
.available-puppies,
.dog-breeds-section,
.trust,
.single-breed-page,
.content-wrap,
.gallery-grid-section,
.home-reviews {
  background: #f1f5f9 !important;
}

.home-cta,
.trust.page-section,
.contact-page .trust,
.dog-breeds-section {
  background: linear-gradient(135deg, #e2e8f0, #f1f5f9) !important;
}

.service-card,
.trust-card,
.promise-card,
.card,
.gallery-item,
.gallery-card,
.dog-breed-card,
.testimonial-card,
.filters,
.results-head,
.lead-form,
.kennel-location,
.contact-detail,
.trust-item,
.single-pet-media,
.single-pet-panel,
.single-pet-info,
.single-pet-section,
.single-pet-meta,
.meta,
.booking-preview,
.booking-form-wrap,
.empty,
.loader-card {
  color: #0f172a !important;
  background: #ffffff !important;
  border: 1px solid #cbd5e1 !important;
  border-radius: 16px !important;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08) !important;
  opacity: 1 !important;
  backdrop-filter: none !important;
}

.card,
.service-card,
.trust-card,
.testimonial-card,
.gallery-card,
.dog-breed-card {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.card:hover,
.service-card:hover,
.trust-card:hover,
.testimonial-card:hover,
.gallery-card:hover,
.dog-breed-card:hover {
  transform: translateY(-4px);
  border-color: #94a3b8 !important;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.13) !important;
}

.card-media,
.dog-breed-card__media,
.managed-service-card__media {
  background: #e2e8f0 !important;
}

.btn {
  border-radius: 12px !important;
  font-weight: 800;
}

.btn.primary,
.nav-actions .btn.primary,
.lead-form .ff-btn-submit,
.puppies-page .card-actions .btn.primary,
.booking-form-actions .btn.primary,
.kennel-location__button {
  color: #ffffff !important;
  background: linear-gradient(135deg, #2563eb, #38bdf8) !important;
  border: 1px solid #2563eb !important;
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.22) !important;
}

.btn.primary:hover,
.nav-actions .btn.primary:hover,
.lead-form .ff-btn-submit:hover,
.puppies-page .card-actions .btn.primary:hover,
.booking-form-actions .btn.primary:hover,
.kennel-location__button:hover {
  background: linear-gradient(135deg, #1d4ed8, #2563eb) !important;
  border-color: #1d4ed8 !important;
}

.btn.ghost,
.details-btn,
.filters .btn.ghost,
.card-actions .btn.ghost {
  color: #334155 !important;
  background: #ffffff !important;
  border: 1px solid #cbd5e1 !important;
  box-shadow: none !important;
}

.btn.ghost:hover,
.details-btn:hover,
.filters .btn.ghost:hover,
.card-actions .btn.ghost:hover {
  color: #0f172a !important;
  background: #e2e8f0 !important;
  border-color: #94a3b8 !important;
}

.eyebrow,
.badge,
.single-pet-status-badge {
  color: #0f172a !important;
  background: #e0f2fe !important;
  border: 1px solid rgba(56, 189, 248, 0.45) !important;
  box-shadow: none !important;
}

.price,
.single-pet-price {
  color: #ffffff !important;
  background: #334155 !important;
}

.service-icon,
.trust-card-icon,
.brand-mark {
  color: #ffffff !important;
  background: linear-gradient(135deg, #2563eb, #38bdf8) !important;
  border-radius: 14px !important;
}

select,
input,
textarea,
.lead-form .ff-el-form-control,
.breed-search-input,
.filter-search {
  color: #0f172a !important;
  background: #ffffff !important;
  border: 1px solid #cbd5e1 !important;
  box-shadow: none !important;
  opacity: 1 !important;
}

select:focus,
input:focus,
textarea:focus,
.lead-form .ff-el-form-control:focus,
.breed-search-input:focus,
.filter-search:focus {
  border-color: #38bdf8 !important;
  box-shadow: 0 0 0 4px rgba(56, 189, 248, 0.18) !important;
}

input::placeholder,
textarea::placeholder,
.breed-search-input::placeholder {
  color: #64748b !important;
  opacity: 1 !important;
}

.choice input,
input[type="range"] {
  accent-color: #2563eb;
}

.filter-group,
.puppy-card-facts span {
  border-color: #cbd5e1 !important;
}

.floating-whatsapp {
  background: linear-gradient(135deg, #2563eb, #38bdf8) !important;
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.28) !important;
}

footer {
  color: #ffffff !important;
  background: linear-gradient(135deg, #0f172a, #334155) !important;
  border-top: 0 !important;
  box-shadow: none !important;
  margin-bottom: 0 !important;
}

.footer-inner {
  padding-bottom: 0;
}

.footer-inner,
.footer-inner div,
.footer-inner a,
.footer-inner strong,
.social-label {
  color: #ffffff !important;
}

.social-link {
  color: #ffffff !important;
  border-color: rgba(255, 255, 255, 0.22) !important;
  background: rgba(255, 255, 255, 0.08) !important;
}

.lightbox,
.booking-modal__backdrop {
  backdrop-filter: none !important;
}

@media (max-width: 720px) {

  .hero,
  .sks-play-hero,
  .hero.sks-play-hero {
    background:
      linear-gradient(180deg, rgba(241, 245, 249, 0.96), rgba(226, 232, 240, 0.88)),
      url("../images/hero-husky-luxury.png") center bottom / cover no-repeat,
      #e2e8f0 !important;
  }

  .nav-links,
  .mobile-filter-bar {
    background: #ffffff !important;
    border-color: #cbd5e1 !important;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08) !important;
  }
}

/* Homepage hero background */
body.home .hero.sks-play-hero,
body.front-page .hero.sks-play-hero {
  background:
    linear-gradient(90deg,
      rgba(255, 255, 255, 0.35) 0%,
      rgba(255, 255, 255, 0.35) 45%,
      rgba(255, 255, 255, 0.35) 100%),
    var(--sks-home-hero-bg, url("../images/cane-corso-hero.png")) center right / cover no-repeat,
    #f1f5f9 !important;
}

body.home .hero.sks-play-hero h1,
body.front-page .hero.sks-play-hero h1 {
  color: #0f172a !important;
  font-weight: 900 !important;
  text-shadow: 0 2px 8px rgba(255, 255, 255, .15) !important;
}

body.home .hero.sks-play-hero .hero-copy p,
body.front-page .hero.sks-play-hero .hero-copy p {
  color: #334155 !important;
  font-size: 1.2rem !important;
  font-weight: 500 !important;
}

body.home .hero.sks-play-hero .hero-stats .stat,
body.front-page .hero.sks-play-hero .hero-stats .stat {
  background: #ffffff !important;
  border: 1px solid #cbd5e1 !important;
  box-shadow: 0 10px 25px rgba(0, 0, 0, .08) !important;
}

body.home .hero.sks-play-hero .hero-stats .stat strong,
body.front-page .hero.sks-play-hero .hero-stats .stat strong {
  color: #0f172a !important;
  font-size: 20px !important;
  font-weight: 700 !important;
}

body.home .hero.sks-play-hero .hero-stats .stat span,
body.front-page .hero.sks-play-hero .hero-stats .stat span {
  color: #475569 !important;
  font-size: 15px !important;
  font-weight: 500 !important;
}

@media (max-width: 720px) {

  body.home .hero.sks-play-hero,
  body.front-page .hero.sks-play-hero {
    background:
      linear-gradient(180deg,
        rgba(255, 255, 255, 0.35) 0%,
        rgba(255, 255, 255, 0.35) 55%,
        rgba(255, 255, 255, 0.35) 100%),
      var(--sks-home-hero-bg, url("../images/cane-corso-hero.png")) center center / cover no-repeat,
      #f1f5f9 !important;
  }
}

/* Homepage compact CTA */
body.home .home-cta,
body.front-page .home-cta {
  padding-top: 60px !important;
  padding-bottom: 60px !important;
  background: #f1f5f9 !important;
}

body.home .home-cta-inner,
body.front-page .home-cta-inner {
  display: grid !important;
  grid-template-columns: 55fr 45fr !important;
  align-items: center !important;
  gap: 32px !important;
  width: min(1180px, calc(100% - 32px)) !important;
  margin: 0 auto !important;
  padding: 32px !important;
  background: #ffffff !important;
  border: 1px solid #dbe4ee !important;
  border-radius: 24px !important;
  box-shadow: 0 15px 35px rgba(15, 23, 42, .08) !important;
}

body.home .home-cta-copy,
body.front-page .home-cta-copy {
  min-width: 0;
}

body.home .home-cta h2,
body.front-page .home-cta h2 {
  color: #0f172a !important;
  font-weight: 900 !important;
  line-height: 1.1 !important;
}

body.home .home-cta p,
body.front-page .home-cta p {
  color: #475569 !important;
  font-size: 18px !important;
}

body.home .home-cta-media,
body.front-page .home-cta-media {
  margin: 0 !important;
  width: 100% !important;
  align-self: center !important;
}

body.home .home-cta-media img,
body.front-page .home-cta-media img {
  display: block !important;
  width: 100% !important;
  height: 380px !important;
  object-fit: cover !important;
  border-radius: 24px !important;
}

body.home .home-cta-actions,
body.front-page .home-cta-actions {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 12px !important;
  margin-top: 24px !important;
}

body.home .home-cta-actions .btn.primary,
body.front-page .home-cta-actions .btn.primary {
  color: #ffffff !important;
  background: linear-gradient(135deg, #2563eb, #38bdf8) !important;
  border: 1px solid #2563eb !important;
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.22) !important;
}

body.home .home-cta-actions .btn.primary:hover,
body.front-page .home-cta-actions .btn.primary:hover {
  transform: translateY(-2px);
  background: linear-gradient(135deg, #1d4ed8, #2563eb) !important;
  border-color: #1d4ed8 !important;
  box-shadow: 0 16px 32px rgba(37, 99, 235, 0.28) !important;
}

body.home .home-cta-actions .btn.ghost,
body.front-page .home-cta-actions .btn.ghost {
  color: #2563eb !important;
  background: #ffffff !important;
  border: 1px solid #2563eb !important;
  box-shadow: none !important;
}

body.home .home-cta-actions .btn.ghost:hover,
body.front-page .home-cta-actions .btn.ghost:hover {
  color: #1d4ed8 !important;
  background: #eff6ff !important;
  border-color: #1d4ed8 !important;
  transform: translateY(-2px);
}

@media (max-width: 720px) {

  body.home .home-cta-inner,
  body.front-page .home-cta-inner {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
    padding: 24px !important;
  }

  body.home .home-cta-media img,
  body.front-page .home-cta-media img {
    height: auto !important;
  }
}

footer .footer-inner {
  align-items: center !important;
}

footer .footer-inner>div {
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 24px;
}

.contact-modal[hidden] {
  display: none !important;
}

.contact-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(15, 23, 42, 0.58);
  cursor: pointer;
}

.contact-modal__panel {
  position: relative;
  width: min(620px, 100%);
  max-height: min(90vh, 760px);
  overflow: auto;
  color: #0f172a;
  background: #ffffff;
  border: 1px solid #dbe4ee;
  border-radius: 24px;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.28);
  padding: 30px;
  transform: translateY(12px) scale(0.98);
  opacity: 0;
  transition: transform 180ms ease, opacity 180ms ease;
}

.contact-modal.open .contact-modal__panel {
  transform: translateY(0) scale(1);
  opacity: 1;
}

.contact-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 40px;
  height: 40px;
  border: 1px solid #cbd5e1;
  border-radius: 999px;
  color: #0f172a;
  background: #ffffff;
  font-size: 26px;
  line-height: 1;
  cursor: pointer;
}

.contact-modal__close:hover {
  background: #eff6ff;
  border-color: #2563eb;
}

.contact-modal__header {
  padding-right: 42px;
  margin-bottom: 20px;
}

.contact-modal__header h2 {
  margin: 14px 0 8px;
  color: #0f172a !important;
  font-size: clamp(1.7rem, 4vw, 2.35rem);
  font-weight: 900;
  line-height: 1.1;
}

.contact-modal__header p {
  margin: 0;
  color: #475569 !important;
  font-size: 1rem;
}

.contact-modal__form {
  color: #0f172a;
}

.contact-modal__form input,
.contact-modal__form textarea,
.contact-modal__form select {
  width: 100%;
  color: #0f172a !important;
  background: #ffffff !important;
  border: 1px solid #cbd5e1 !important;
  border-radius: 12px !important;
}

.contact-modal__form button,
.contact-modal__form input[type="submit"] {
  color: #ffffff !important;
  background: linear-gradient(135deg, #2563eb, #38bdf8) !important;
  border: 1px solid #2563eb !important;
  border-radius: 12px !important;
}

@media (max-width: 720px) {
  .contact-modal {
    padding: 14px;
    align-items: end;
  }

  .contact-modal__panel {
    max-height: 92vh;
    padding: 24px 18px;
    border-radius: 20px;
  }
}

/* Navbar clean three-zone layout */
.site-header,
.site-nav {
  min-height: 76px;
}

.nav-inner {
  min-height: 76px;
  display: grid;
  grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr);
  align-items: center;
  column-gap: 24px;
  padding: 0;
}

.brand {
  grid-column: 1;
  min-width: 0;
  justify-self: start;
}

.brand-name {
  white-space: nowrap;
}

.nav-links {
  grid-column: 2;
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: center;
  gap: 22px;
  justify-self: center;
}

.nav-links a {
  white-space: nowrap;
}

.nav-actions {
  grid-column: 3;
  justify-self: end;
}

.nav-actions .btn.primary {
  flex-shrink: 0;
  white-space: nowrap;
}

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

@media (max-width: 1120px) and (min-width: 1041px) {
  .nav-inner {
    grid-template-columns: minmax(160px, 1fr) auto minmax(150px, 1fr);
    column-gap: 16px;
  }

  .brand {
    gap: 8px;
  }

  .brand-logo {
    width: 48px;
    height: 48px;
  }

  .brand-name {
    font-size: 1.1rem;
  }

  .nav-links {
    gap: 14px;
  }

  .nav-links a {
    padding: 8px 6px;
    font-size: 0.92rem;
  }

  .nav-actions .btn.primary {
    min-height: 40px;
    padding: 0 12px;
    font-size: 0.92rem;
    gap: 6px;
  }
}

@media (max-width: 1040px) {

  .site-header,
  .site-nav {
    min-height: 72px;
  }

  .nav-inner {
    min-height: 72px;
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    padding: 0;
  }

  .brand {
    order: 1;
    margin-right: auto;
  }

  .nav-links {
    order: 5;
    display: grid;
  }

  .nav-actions {
    display: none;
  }

  .mobile-nav-cta {
    display: inline-flex;
    justify-content: center;
    width: 100%;
    min-height: 44px;
    margin-top: 4px;
  }
}

@media (max-width: 720px) {

  .site-header,
  .site-nav {
    min-height: 64px;
  }

  .nav-inner {
    min-height: 64px;
  }
}

.nav-links a.active {
  background: rgba(255, 255, 255, 0.72) !important;
  font-weight: 700;
}

.nav-links a.active::after {
  background: #2563eb;
  transform: scaleX(1);
}

.puppies-page .puppies-toolbar,
body.page-template-page-puppies .puppies-toolbar,
body.page-template-page-puppies-php .puppies-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 24px;
  margin-bottom: 24px !important;
  border: 1px solid #dbe4ee;
  border-radius: 18px;
  background: #ffffff !important;
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
}

.puppies-page .puppies-count {
  margin: 0;
  color: #0f172a;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
}

.puppies-page .puppies-sort,
body.page-template-page-puppies .puppies-sort,
body.page-template-page-puppies-php .puppies-sort {
  display: flex;
  align-items: center;
  gap: 12px;
  width: auto;
  min-width: 0;
}

.puppies-page .puppies-sort label {
  flex: 0 0 auto;
  width: auto;
  color: #475569;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}

.puppies-page .puppies-sort select,
body.page-template-page-puppies .puppies-sort select,
body.page-template-page-puppies-php .puppies-sort select {
  width: auto;
  min-width: 220px;
  max-width: 100%;
}

@media (max-width: 720px) {

  .puppies-page .puppies-toolbar,
  body.page-template-page-puppies .puppies-toolbar,
  body.page-template-page-puppies-php .puppies-toolbar {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 16px;
  }

  .puppies-page .puppies-sort,
  body.page-template-page-puppies .puppies-sort,
  body.page-template-page-puppies-php .puppies-sort {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
    width: 100%;
  }

  .puppies-page .puppies-sort select,
  body.page-template-page-puppies .puppies-sort select,
  body.page-template-page-puppies-php .puppies-sort select {
    width: 100%;
    min-width: 0;
  }
}

.puppy-social-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  flex: 1 1 100%;
}

.puppy-social-actions--single {
  width: auto;
  flex: 1 1 280px;
}

.puppy-social-button {
  min-height: 46px;
  flex: 1 1 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  color: #ffffff !important;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.16);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.puppy-social-button svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
  display: block;
}

.puppy-social-button--whatsapp {
  background: #16a34a;
}

.puppy-social-button--instagram {
  background: linear-gradient(135deg, #833ab4 0%, #fd1d1d 48%, #fcb045 100%);
}

.puppy-social-button:hover {
  color: #ffffff !important;
  transform: translateY(-1px);
  filter: brightness(1.04);
  box-shadow: 0 16px 30px rgba(15, 23, 42, 0.22);
}

@media (max-width: 420px) {
  .puppy-social-actions {
    gap: 8px;
  }

  .puppy-social-button {
    min-height: 44px;
    padding: 0 10px;
    font-size: 0.88rem;
  }
}

.puppies-page .card-actions {
  display: block !important;
}

.puppy-card-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.puppies-page .card-actions .puppy-card-actions .btn {
  width: auto;
  min-width: 0;
  flex: initial;
}

.puppy-card-social {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 12px;
  width: 100%;
}

.puppy-card-social--single {
  max-width: 420px;
}

.puppy-card-actions--single {
  grid-template-columns: 1fr;
  max-width: 420px;
}

.puppy-social-button {
  min-width: 0;
  min-height: 46px;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  color: #ffffff !important;
  font-size: 0.94rem;
  font-weight: 800;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.16);
}

.puppy-social-button svg {
  width: 20px;
  height: 20px;
  flex: 0 0 20px;
}

.puppy-social-button--whatsapp {
  background: #25D366;
}

.puppy-social-button--instagram {
  background: linear-gradient(135deg, #833AB4, #FD1D1D, #FCAF45);
}

.single-pet-actions {
  display: grid;
  gap: 12px;
}

@media (max-width: 420px) {

  .puppy-card-actions,
  .puppy-card-social {
    gap: 10px;
  }

  .puppy-social-button {
    min-height: 44px;
    padding: 0 10px;
    font-size: 0.84rem;
  }
}

.puppies-page .card-media,
.puppies-page .puppy-card-image,
.puppies-page .puppy-thumbnail,
.puppies-page .puppy-card-media {
  position: relative;
  height: auto !important;
  min-height: unset !important;
  aspect-ratio: 4 / 3 !important;
  overflow: hidden;
  background: transparent !important;
}

.puppies-page .card-media-link {
  display: block;
  height: auto !important;
  min-height: unset !important;
  line-height: 0;
}

.puppies-page .card-media img,
.puppies-page .puppy-card-image img,
.puppies-page .puppy-thumbnail img,
.puppies-page .puppy-card-media img {
  width: 100%;
  height: auto !important;
  min-height: unset !important;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  display: block;
}

.puppies-page .card-media .price {
  top: 10px;
  right: 10px;
  bottom: auto;
  z-index: 2;
}

.puppies-page .card-body {
  padding-top: 13px;
}

.puppy-card-actions {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 10px !important;
  width: 100%;
}

.puppy-card-actions--single {
  grid-template-columns: 1fr !important;
  max-width: 420px;
}

.puppy-card-social {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 10px !important;
  width: 100%;
  margin-top: 10px;
}

.puppy-card-actions a,
.puppy-card-actions button,
.puppy-card-social a {
  width: 100% !important;
  min-width: 0 !important;
  min-height: 44px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.puppy-card-actions .details-btn {
  grid-column: auto !important;
}

.puppy-gender-actions {
  grid-column: 1 / -1;
  display: grid;
  gap: 8px;
  width: 100%;
}

.puppy-gender-actions+.btn.primary,
.puppy-gender-actions+.puppy-book-link {
  grid-column: 1 / -1;
}

.puppy-gender-actions__label {
  display: block;
  color: #526171;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.puppy-gender-actions__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.puppy-gender-pill {
  min-width: 86px;
  min-height: 36px !important;
  width: auto !important;
  padding: 0 14px !important;
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: 999px;
  background: linear-gradient(180deg, #ffffff 0%, #eff6ff 100%);
  color: #1d4ed8 !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  font-size: 0.88rem;
  font-weight: 900;
  line-height: 1;
  text-decoration: none !important;
  box-shadow: 0 10px 22px rgba(37, 99, 235, 0.11);
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

.puppy-gender-pill:hover,
.puppy-gender-pill:focus-visible {
  background: linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%);
  color: #ffffff !important;
  transform: translateY(-2px);
  box-shadow: 0 16px 28px rgba(37, 99, 235, 0.25);
}

.puppy-gender-pill.is-active {
  background: linear-gradient(135deg, #2563eb 0%, #0ea5e9 100%);
  color: #ffffff !important;
  box-shadow: 0 16px 28px rgba(37, 99, 235, 0.25);
}

.puppy-gender-pill.is-disabled,
.puppy-gender-pill[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.55;
}

.puppy-gender-switch {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 14px 0 18px;
}

.puppies-page .card-body[data-card-link] {
  cursor: pointer;
}

/* Premium SKSKENNEL navbar */
:root {
  --sks-nav-height: 92px;
  --sks-nav-height-scrolled: 78px;
}

body,
body.home,
body.front-page {
  padding-top: var(--sks-nav-height) !important;
}

body.admin-bar,
body.home.admin-bar,
body.front-page.admin-bar {
  padding-top: calc(var(--sks-nav-height) + 32px) !important;
}

.site-header {
  position: fixed !important;
  top: 0 !important;
  left: 0;
  right: 0;
  z-index: 9999 !important;
  min-height: var(--sks-nav-height) !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}

body.admin-bar .site-header {
  top: 32px !important;
}

.site-nav {
  position: relative !important;
  top: auto !important;
  min-height: var(--sks-nav-height) !important;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.78) !important;
  border-bottom: 1px solid rgba(219, 228, 238, 0.8) !important;
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.12) !important;
  backdrop-filter: blur(22px) saturate(1.25);
  -webkit-backdrop-filter: blur(22px) saturate(1.25);
  transition: min-height 220ms ease, background 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.site-nav.scrolled {
  min-height: var(--sks-nav-height-scrolled) !important;
  background: rgba(255, 255, 255, 0.9) !important;
  border-bottom-color: rgba(37, 99, 235, 0.18) !important;
  box-shadow: 0 22px 56px rgba(15, 23, 42, 0.2) !important;
}

.nav-inner {
  min-height: inherit !important;
  width: min(1240px, calc(100% - 32px)) !important;
  display: grid !important;
  grid-template-columns: minmax(230px, 1fr) auto minmax(330px, 1fr) !important;
  align-items: center !important;
  gap: 22px !important;
  padding: 0 !important;
}

.brand {
  display: inline-flex !important;
  align-items: center !important;
  gap: 12px !important;
  min-width: 0;
  color: #071428 !important;
}

.brand-logo {
  width: 64px !important;
  height: 64px !important;
  flex: 0 0 64px;
  border-radius: 18px !important;
  object-fit: cover;
  background: #ffffff !important;
  border: 1px solid rgba(37, 99, 235, 0.18) !important;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.15) !important;
  transition: width 220ms ease, height 220ms ease, border-radius 220ms ease;
}

.site-nav.scrolled .brand-logo {
  width: 56px !important;
  height: 56px !important;
  flex-basis: 56px;
  border-radius: 16px !important;
}

.brand-text {
  display: grid;
  gap: 2px;
  min-width: 0;
}

.brand-name {
  color: #071428 !important;
  font-size: 1.28rem !important;
  font-weight: 900 !important;
  line-height: 1.05;
  letter-spacing: 0 !important;
  white-space: nowrap;
}

.brand-tagline {
  color: #2563eb;
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.15;
  white-space: nowrap;
}

.nav-links {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  min-width: 0;
}

.nav-links a:not(.btn) {
  position: relative;
  min-height: 42px;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  padding: 0 14px !important;
  border-radius: 999px;
  color: #0f172a !important;
  font-size: 0.95rem !important;
  font-weight: 800 !important;
  text-shadow: none !important;
  background: transparent !important;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.nav-links a:not(.btn)::after {
  left: 18px !important;
  right: 18px !important;
  bottom: 7px !important;
  height: 2px !important;
  background: linear-gradient(90deg, #2563eb, #38bdf8) !important;
}

.nav-links a:not(.btn):hover {
  color: #1d4ed8 !important;
  background: rgba(37, 99, 235, 0.08) !important;
  transform: translateY(-1px);
}

.nav-links a:not(.btn).active {
  color: #ffffff !important;
  background: linear-gradient(135deg, #0f2a44, #2563eb) !important;
  box-shadow: 0 12px 26px rgba(37, 99, 235, 0.24);
}

.nav-links a:not(.btn).active::after {
  transform: scaleX(0) !important;
}

.nav-actions {
  display: flex !important;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  min-width: 0;
}

.nav-cta {
  min-height: 44px !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 16px !important;
  border-radius: 999px !important;
  font-weight: 900 !important;
  white-space: nowrap;
  border: 1px solid transparent !important;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.nav-cta svg,
.nav-cta i {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
}

.nav-cta:hover {
  transform: translateY(-1px);
  filter: brightness(1.03);
}

.nav-cta--whatsapp {
  color: #ffffff !important;
  background: linear-gradient(135deg, #128c7e, #25d366) !important;
  box-shadow: 0 14px 30px rgba(18, 140, 126, 0.22) !important;
}

.nav-cta--instagram {
  width: 44px;
  padding: 0 !important;
  color: #ffffff !important;
  background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcaf45) !important;
  box-shadow: 0 14px 30px rgba(131, 58, 180, 0.22) !important;
}

.nav-cta--puppies {
  color: #ffffff !important;
  background: linear-gradient(135deg, #0f2a44, #2563eb) !important;
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.25) !important;
}

.menu-toggle {
  border-color: rgba(37, 99, 235, 0.18) !important;
  background: rgba(255, 255, 255, 0.72) !important;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.1);
}

.menu-toggle span {
  background: #0f2a44 !important;
}

.mobile-nav-ctas {
  display: none;
}

.site-header+.site-wrapper,
.site-wrapper {
  padding-top: 0 !important;
}

.hero,
.hero-section,
.sks-play-hero,
.hero.sks-play-hero {
  scroll-margin-top: var(--sks-nav-height);
}

@media (max-width: 1180px) {
  .nav-inner {
    grid-template-columns: minmax(210px, 1fr) auto auto !important;
    gap: 14px !important;
  }

  .nav-links a:not(.btn) {
    padding: 0 10px !important;
    font-size: 0.9rem !important;
  }

  .nav-cta {
    padding: 0 12px !important;
  }
}

@media (max-width: 1040px) {
  :root {
    --sks-nav-height: 78px;
    --sks-nav-height-scrolled: 68px;
  }

  body,
  body.home,
  body.front-page {
    padding-top: var(--sks-nav-height) !important;
  }

  body.admin-bar,
  body.home.admin-bar,
  body.front-page.admin-bar {
    padding-top: calc(var(--sks-nav-height) + 46px) !important;
  }

  body.admin-bar .site-header {
    top: 46px !important;
  }

  .nav-inner {
    grid-template-columns: minmax(0, 1fr) auto !important;
    width: min(100% - 24px, 1120px) !important;
  }

  .brand-logo {
    width: 56px !important;
    height: 56px !important;
    flex-basis: 56px;
    border-radius: 16px !important;
  }

  .brand-name {
    font-size: 1.08rem !important;
  }

  .brand-tagline {
    font-size: 0.68rem;
  }

  .menu-toggle {
    display: inline-flex !important;
    grid-column: 2;
  }

  .nav-actions {
    display: none !important;
  }

  .nav-links {
    position: fixed !important;
    left: 12px !important;
    right: 12px !important;
    top: calc(var(--sks-nav-height) + 10px) !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 8px !important;
    max-height: calc(100vh - var(--sks-nav-height) - 28px);
    overflow-y: auto;
    padding: 14px !important;
    border-radius: 24px !important;
    border: 1px solid rgba(219, 228, 238, 0.9) !important;
    background: rgba(255, 255, 255, 0.94) !important;
    box-shadow: 0 24px 60px rgba(15, 23, 42, 0.22) !important;
    backdrop-filter: blur(22px) saturate(1.2);
    -webkit-backdrop-filter: blur(22px) saturate(1.2);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  body.admin-bar .nav-links {
    top: calc(var(--sks-nav-height) + 56px) !important;
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a:not(.btn) {
    width: 100%;
    min-height: 46px;
    justify-content: flex-start;
    padding: 0 14px !important;
  }

  .mobile-nav-ctas {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    padding-top: 8px;
    border-top: 1px solid rgba(219, 228, 238, 0.9);
  }

  .mobile-nav-cta {
    display: inline-flex !important;
    width: 100% !important;
    min-height: 46px !important;
  }

  .mobile-nav-ctas .nav-cta--instagram {
    width: 100%;
    padding: 0 16px !important;
  }
}

@media (max-width: 782px) {
  body.admin-bar .site-header {
    top: 46px !important;
  }
}

@media (max-width: 420px) {
  .brand {
    gap: 9px !important;
  }

  .brand-logo {
    width: 50px !important;
    height: 50px !important;
    flex-basis: 50px;
  }

  .brand-name {
    font-size: 1rem !important;
  }

  .brand-tagline {
    font-size: 0.62rem;
  }
}

/* Compact navbar correction */
:root {
  --sks-nav-height: 76px;
  --sks-nav-height-scrolled: 68px;
}

body,
body.home,
body.front-page {
  padding-top: var(--sks-nav-height) !important;
  overflow-x: hidden;
}

body.admin-bar,
body.home.admin-bar,
body.front-page.admin-bar {
  padding-top: calc(var(--sks-nav-height) + 32px) !important;
}

.site-header,
.site-nav {
  min-height: var(--sks-nav-height) !important;
}

.site-nav {
  background: rgba(255, 255, 255, 0.84) !important;
  border-bottom: 1px solid rgba(219, 228, 238, 0.82) !important;
  box-shadow: 0 12px 34px rgba(15, 23, 42, 0.12) !important;
}

.site-nav.scrolled {
  min-height: var(--sks-nav-height-scrolled) !important;
  box-shadow: 0 16px 42px rgba(15, 23, 42, 0.18) !important;
}

.nav-inner {
  width: min(1280px, calc(100% - 32px)) !important;
  min-height: inherit !important;
  grid-template-columns: minmax(178px, 230px) minmax(0, 1fr) auto !important;
  gap: 12px !important;
  overflow: visible;
}

.brand {
  gap: 9px !important;
  max-width: 230px;
}

.brand-logo,
.site-nav.scrolled .brand-logo {
  width: 52px !important;
  height: 52px !important;
  flex: 0 0 52px !important;
  border-radius: 14px !important;
}

.brand-name {
  max-width: 160px;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #071428 !important;
  font-size: 1.04rem !important;
  line-height: 1 !important;
}

.brand-tagline {
  max-width: 160px;
  overflow: hidden;
  text-overflow: ellipsis;
  color: #2563eb !important;
  font-size: 0.62rem !important;
  line-height: 1.05 !important;
  font-weight: 750 !important;
}

.nav-links {
  gap: 3px !important;
  justify-content: center !important;
  overflow: visible;
}

.nav-links a:not(.btn) {
  min-height: 36px !important;
  padding: 0 9px !important;
  font-size: 0.94rem !important;
  font-weight: 760 !important;
  border-radius: 999px !important;
}

.nav-links a:not(.btn)::after {
  left: 13px !important;
  right: 13px !important;
  bottom: 5px !important;
}

.nav-links a:not(.btn).active {
  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.18) !important;
}

.nav-actions {
  flex-shrink: 0;
  gap: 8px !important;
}

.nav-cta {
  min-height: 38px !important;
  gap: 6px !important;
  padding: 0 12px !important;
  font-size: 0.86rem !important;
  line-height: 1 !important;
}

.nav-cta svg,
.nav-cta i {
  width: 16px !important;
  height: 16px !important;
  flex-basis: 16px !important;
}

.nav-cta--instagram {
  width: 38px !important;
  padding: 0 !important;
}

.menu-toggle {
  width: 42px !important;
  height: 42px !important;
  min-height: 42px !important;
  padding: 0 !important;
}

.hero,
.hero-section,
.sks-play-hero,
.hero.sks-play-hero {
  scroll-margin-top: calc(var(--sks-nav-height) + 12px) !important;
}

@media (max-width: 1280px) and (min-width: 1101px) {
  .nav-actions .nav-cta--instagram {
    display: none !important;
  }

  .nav-inner {
    grid-template-columns: minmax(168px, 218px) minmax(0, 1fr) auto !important;
    gap: 10px !important;
  }

  .nav-links a:not(.btn) {
    padding: 0 8px !important;
    font-size: 0.9rem !important;
  }

  .nav-cta {
    padding: 0 10px !important;
    font-size: 0.82rem !important;
  }
}

@media (max-width: 1160px) and (min-width: 1101px) {
  .nav-actions .nav-cta--whatsapp span {
    display: none;
  }

  .nav-actions .nav-cta--whatsapp {
    width: 38px;
    padding: 0 !important;
  }
}

@media (max-width: 1100px) {
  :root {
    --sks-nav-height: 72px;
    --sks-nav-height-scrolled: 66px;
  }

  body,
  body.home,
  body.front-page {
    padding-top: var(--sks-nav-height) !important;
  }

  body.admin-bar,
  body.home.admin-bar,
  body.front-page.admin-bar {
    padding-top: calc(var(--sks-nav-height) + 46px) !important;
  }

  body.admin-bar .site-header {
    top: 46px !important;
  }

  .site-header,
  .site-nav {
    min-height: var(--sks-nav-height) !important;
  }

  .nav-inner {
    width: min(100% - 24px, 1280px) !important;
    grid-template-columns: minmax(0, 1fr) auto !important;
    gap: 12px !important;
  }

  .brand {
    max-width: min(250px, calc(100vw - 92px));
  }

  .brand-logo,
  .site-nav.scrolled .brand-logo {
    width: 50px !important;
    height: 50px !important;
    flex-basis: 50px !important;
  }

  .nav-actions {
    display: none !important;
  }

  .menu-toggle {
    display: inline-flex !important;
  }

  .nav-links {
    position: fixed !important;
    left: 12px !important;
    right: 12px !important;
    top: calc(var(--sks-nav-height) + 10px) !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 8px !important;
    padding: 12px !important;
    border-radius: 18px !important;
    border: 1px solid rgba(219, 228, 238, 0.9) !important;
    background: rgba(255, 255, 255, 0.96) !important;
    box-shadow: 0 20px 50px rgba(15, 23, 42, 0.2) !important;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
  }

  body.admin-bar .nav-links {
    top: calc(var(--sks-nav-height) + 56px) !important;
  }

  .nav-links.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-links a:not(.btn) {
    min-height: 42px !important;
    justify-content: flex-start !important;
    padding: 0 12px !important;
    font-size: 0.94rem !important;
  }

  .mobile-nav-ctas {
    display: grid !important;
    gap: 8px !important;
  }
}

@media (max-width: 420px) {
  .brand-name {
    max-width: 136px;
    font-size: 0.98rem !important;
  }

  .brand-tagline {
    max-width: 136px;
  }
}

/* Premium navbar spacing refinement */
@media (min-width: 1101px) {
  .nav-inner {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: clamp(32px, 4.2vw, 64px) !important;
    width: min(1280px, calc(100% - 32px)) !important;
  }

  .brand {
    flex: 0 0 230px;
    max-width: 230px;
  }

  .nav-links {
    flex: 1 1 auto;
    justify-content: center !important;
    gap: 6px !important;
    margin-left: clamp(8px, 2vw, 28px);
    margin-right: clamp(48px, 5vw, 64px);
  }

  .nav-actions {
    flex: 0 0 auto;
    display: flex !important;
    align-items: center;
    justify-content: flex-end;
    gap: 10px !important;
  }
}

@media (max-width: 1280px) and (min-width: 1101px) {
  .nav-inner {
    gap: clamp(22px, 3vw, 44px) !important;
  }

  .brand {
    flex-basis: 210px;
    max-width: 210px;
  }

  .nav-links {
    margin-left: 8px;
    margin-right: clamp(36px, 4vw, 52px);
    gap: 4px !important;
  }
}

/* Premium Gallery page refresh */
.gallery-page {
  min-height: auto !important;
  padding-top: 90px !important;
  padding-bottom: 0 !important;
  margin-top: 0 !important;
  color: #0f172a !important;
  background:
    radial-gradient(circle at 12% 0%, rgba(37, 99, 235, 0.12), transparent 28%),
    linear-gradient(180deg, #f8fbff 0%, #eef5ff 44%, #ffffff 100%) !important;
}

.gallery-page.page-content-offset {
  padding-top: 90px !important;
  margin-top: 0 !important;
}

.gallery-page .container {
  width: 100% !important;
  max-width: 1240px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
}

.gallery-hero {
  padding: 24px 0 60px !important;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(219, 234, 254, 0.72)),
    radial-gradient(circle at 84% 20%, rgba(15, 42, 68, 0.12), transparent 34%);
  border-bottom: 1px solid #dbe4ee;
}

.gallery-hero__badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-bottom: 16px;
  padding: 0 14px;
  color: #1d4ed8;
  background: rgba(37, 99, 235, 0.1);
  border: 1px solid rgba(37, 99, 235, 0.18);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 850;
}

.gallery-hero h1 {
  max-width: 760px;
  margin: 0 0 14px !important;
  color: #071428 !important;
  font-size: clamp(3.5rem, 5vw, 4rem) !important;
  line-height: 1.02 !important;
  letter-spacing: 0 !important;
  text-shadow: none !important;
}

.gallery-hero p {
  max-width: 760px;
  margin: 0 !important;
  color: #334155 !important;
  font-size: 1.08rem !important;
  font-weight: 600;
  line-height: 1.7 !important;
}

.gallery-grid-section {
  padding: 45px 0 76px !important;
}

.gallery-category-tabs {
  display: flex !important;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px !important;
  margin: 0 0 28px !important;
}

.gallery-filter-pill {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  color: #0f172a;
  background: #ffffff;
  border: 1px solid #dbe4ee;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
  font-size: 0.94rem;
  font-weight: 800;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.gallery-filter-pill:hover {
  color: #1d4ed8;
  border-color: #93c5fd;
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(37, 99, 235, 0.12);
}

.gallery-filter-pill.active {
  color: #ffffff;
  background: linear-gradient(135deg, #0f2a44, #2563eb);
  border-color: transparent;
  box-shadow: 0 16px 34px rgba(37, 99, 235, 0.22);
}

.gallery-page .gallery-grid.sks-dynamic-gallery {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: 24px !important;
  columns: auto !important;
  column-gap: 24px !important;
  row-gap: 24px !important;
  margin: 0 !important;
  padding: 0 !important;
  box-sizing: border-box;
  align-items: start;
}

.gallery-page .gallery-grid.sks-dynamic-gallery>.gallery-item {
  position: relative;
  width: 100%;
  min-height: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  margin: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  padding: 0 !important;
  border: 1px solid rgba(15, 42, 68, 0.08) !important;
  border-radius: 22px !important;
  background: #0f2a44 !important;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.14) !important;
  cursor: pointer;
  transform: translateZ(0);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.gallery-page .gallery-grid.sks-dynamic-gallery>.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 42%, rgba(7, 20, 40, 0.86) 100%) !important;
  opacity: 1 !important;
}

.gallery-page .gallery-grid.sks-dynamic-gallery>.gallery-item img {
  width: 100% !important;
  height: 100% !important;
  min-height: unset !important;
  display: block;
  object-fit: cover !important;
  filter: saturate(1.04) contrast(1.02);
  transition: transform 420ms ease, filter 420ms ease;
}

.gallery-page .gallery-grid.sks-dynamic-gallery>.gallery-item:hover {
  transform: translateZ(0);
  border-color: rgba(37, 99, 235, 0.28) !important;
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.22) !important;
}

.gallery-page .gallery-grid.sks-dynamic-gallery>.gallery-item:hover img {
  transform: scale(1.06);
  filter: saturate(1.12) contrast(1.05);
}

.gallery-caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 16px;
  z-index: 2;
  color: #ffffff !important;
  text-align: left;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.5);
}

.gallery-caption strong {
  display: block;
  color: #ffffff;
  font-size: 1.02rem;
  font-weight: 900;
  line-height: 1.2;
}

.gallery-caption em {
  display: inline-flex;
  width: fit-content;
  margin-top: 8px;
  padding: 5px 9px;
  color: #dbeafe !important;
  background: rgba(37, 99, 235, 0.32);
  border: 1px solid rgba(219, 234, 254, 0.28);
  border-radius: 999px;
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 850;
  text-transform: uppercase;
}

.gallery-caption small {
  display: block;
  margin-top: 7px;
  color: #e2e8f0 !important;
  font-size: 0.84rem;
  font-weight: 650;
  line-height: 1.4;
}

.gallery-empty {
  width: min(680px, 100%) !important;
  margin: 16px auto 0 !important;
  padding: 34px !important;
  color: #334155 !important;
  text-align: center;
  background: #ffffff !important;
  border: 1px solid #dbe4ee !important;
  border-radius: 22px !important;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.1) !important;
}

.gallery-empty h3 {
  margin: 0 0 8px;
  color: #071428;
  font-size: 1.35rem;
}

.gallery-empty p {
  margin: 0;
  color: #475569;
}

.gallery-page+footer,
.gallery-page~footer,
footer {
  position: relative;
  z-index: 1;
}

@media (max-width: 1040px) {

  .gallery-page .gallery-grid.sks-dynamic-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 22px !important;
    column-gap: 22px !important;
    row-gap: 22px !important;
  }

  .gallery-hero h1 {
    font-size: clamp(3rem, 6vw, 3.7rem) !important;
  }
}

@media (max-width: 720px) {

  .gallery-page,
  .gallery-page.page-content-offset {
    padding-top: 90px !important;
  }

  .gallery-hero {
    padding: 20px 0 40px !important;
  }

  .gallery-hero h1 {
    font-size: clamp(2.375rem, 11vw, 2.75rem) !important;
  }

  .gallery-hero p {
    font-size: 1rem !important;
  }

  .gallery-grid-section {
    padding-top: 32px !important;
  }

  .gallery-page .container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .gallery-category-tabs {
    gap: 8px !important;
  }

  .gallery-filter-pill {
    min-height: 38px;
    padding: 0 13px;
    font-size: 0.86rem;
  }

  .gallery-page .gallery-grid.sks-dynamic-gallery {
    grid-template-columns: 1fr !important;
    gap: 18px !important;
    column-gap: 18px !important;
    row-gap: 18px !important;
    padding: 0 !important;
  }

  .gallery-page .gallery-grid.sks-dynamic-gallery>.gallery-item {
    border-radius: 18px !important;
  }
}

/* Compact premium puppy cards with per-puppy icon social buttons */
.puppies-page .listing-grid {
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)) !important;
  gap: 18px !important;
  align-items: start;
}

.puppies-page .card {
  overflow: hidden;
  border-radius: 18px !important;
  border: 1px solid rgba(219, 228, 238, 0.95) !important;
  background: #ffffff !important;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.11) !important;
}

.puppies-page .card-media {
  height: 230px !important;
  min-height: unset !important;
  aspect-ratio: auto !important;
  background: #e2e8f0 !important;
}

.puppies-page .card-media-link {
  height: 100% !important;
}

.puppies-page .card-media img {
  width: 100% !important;
  height: 100% !important;
  min-height: unset !important;
  aspect-ratio: auto !important;
  object-fit: cover !important;
  display: block;
}

.puppies-page .card-media .badge {
  top: 10px;
  left: 10px;
  z-index: 2;
}

.puppies-page .card-media .price {
  top: 10px !important;
  right: 10px !important;
  bottom: auto !important;
  z-index: 2;
  max-width: 135px;
  padding: 7px 10px;
  font-size: 13px;
  line-height: 1.15;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.puppies-page .card-body {
  padding: 14px !important;
}

.puppies-page .card-body h3 {
  margin-bottom: 10px !important;
  font-size: 1.08rem !important;
  line-height: 1.22 !important;
}

.puppies-page .puppy-card-facts {
  gap: 8px !important;
  margin-bottom: 12px !important;
}

.puppies-page .puppy-card-facts span {
  padding: 9px 10px !important;
  border-radius: 12px !important;
}

.puppies-page .card-actions {
  margin-top: 12px !important;
}

.puppy-card-actions {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 10px !important;
  width: 100%;
  align-items: start;
}

.puppy-card-actions a,
.puppy-card-actions button {
  width: 100% !important;
  min-width: 0 !important;
  min-height: 42px !important;
  padding: 0 10px !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

.puppy-card-social {
  display: flex !important;
  grid-template-columns: none !important;
  align-items: center;
  justify-content: center;
  gap: 12px !important;
  width: 100%;
  margin-top: 12px !important;
}

.puppy-card-social--single {
  justify-content: flex-start;
  max-width: 420px;
}

.social-icon-btn,
.puppy-card-social .puppy-social-button {
  width: 46px !important;
  min-width: 46px !important;
  max-width: 46px !important;
  height: 46px !important;
  min-height: 46px !important;
  max-height: 46px !important;
  flex: 0 0 46px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 50% !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  color: #ffffff !important;
  opacity: 1 !important;
  visibility: visible !important;
  line-height: 1;
  text-decoration: none !important;
  box-shadow: 0 13px 24px rgba(15, 23, 42, 0.18);
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
}

.puppy-card-social .puppy-social-button--whatsapp {
  background: #25D366 !important;
}

.puppy-card-social .puppy-social-button--instagram {
  background: linear-gradient(135deg, #833AB4, #FD1D1D, #FCAF45) !important;
}

.puppy-card-social .puppy-social-button svg {
  width: 21px !important;
  height: 21px !important;
  flex: 0 0 21px !important;
  display: block;
  color: #ffffff !important;
  opacity: 1 !important;
  visibility: visible !important;
}

.social-icon-btn:hover,
.puppy-card-social .puppy-social-button:hover {
  color: #ffffff !important;
  transform: translateY(-3px);
  filter: brightness(1.04);
  box-shadow: 0 18px 30px rgba(15, 23, 42, 0.24);
}

@media (max-width: 720px) {
  .puppies-page .listing-grid {
    grid-template-columns: 1fr !important;
    gap: 16px !important;
  }

  .puppies-page .card-media {
    height: 220px !important;
  }

  .puppies-page .card-body {
    padding: 13px !important;
  }

  .puppy-card-actions {
    gap: 8px !important;
  }

  .puppy-card-actions a,
  .puppy-card-actions button {
    min-height: 42px !important;
    font-size: 0.86rem !important;
  }
}

.puppy-card-actions .puppy-gender-actions {
  grid-column: 1 / -1 !important;
  display: grid !important;
  gap: 8px !important;
  width: 100%;
  justify-items: center;
  text-align: center;
}

.puppy-card-actions .puppy-gender-actions+.btn.primary {
  grid-column: 1 / -1 !important;
}

.puppy-card-actions .puppy-gender-actions__buttons {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(82px, 1fr));
  gap: 10px !important;
  width: 100%;
}

.puppy-card-actions .puppy-gender-pill {
  width: 100% !important;
  min-width: 0 !important;
  min-height: 36px !important;
  padding: 0 12px !important;
  border-radius: 999px !important;
  white-space: nowrap;
  text-align: center;
}

.puppy-card-actions .puppy-gender-actions__label {
  text-align: center;
  justify-self: center;
}

@media (max-width: 420px) {
  .puppy-card-actions .puppy-gender-actions__buttons {
    grid-template-columns: repeat(auto-fit, minmax(76px, 1fr));
  }

  .puppy-card-actions .puppy-gender-pill {
    width: 100% !important;
    min-width: 0 !important;
    font-size: 0.82rem !important;
  }
}

/* Compact professional Puppies page */
.puppies-page {
  width: min(1440px, calc(100% - 24px)) !important;
  max-width: 1440px !important;
}

.puppies-page .puppies-page-head {
  padding: 10px 0 16px !important;
}

.puppies-page .puppies-page-head h1 {
  margin: 8px 0 6px !important;
  font-size: clamp(1.9rem, 3vw, 2.6rem) !important;
}

.puppies-page .puppies-layout {
  grid-template-columns: 220px minmax(0, 1fr) !important;
  gap: 20px !important;
  align-items: start !important;
  padding-top: 0 !important;
}

.puppies-page .filters {
  top: 88px !important;
  padding: 12px !important;
  border-radius: 18px !important;
}

.puppies-page .filters-head h2 {
  font-size: 1rem !important;
}

.puppies-page .filter-group {
  padding: 12px 0 !important;
}

.puppies-page .filter-title,
.puppies-page .choice {
  font-size: 0.82rem !important;
}

.puppies-page .filter-search,
.puppies-page .sort-box select {
  min-height: 38px !important;
  font-size: 0.86rem !important;
}

.puppies-page .results-head {
  grid-template-columns: minmax(0, 1fr) 190px !important;
  gap: 12px !important;
  padding: 10px 12px !important;
  border-radius: 18px !important;
}

.puppies-page .listing-grid {
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(260px, 300px)) !important;
  justify-content: start !important;
  gap: 20px !important;
  align-items: start !important;
}

.puppies-page .puppy-card {
  width: 100% !important;
  max-width: 300px !important;
  border-radius: 20px !important;
  overflow: hidden !important;
}

.puppies-page .puppy-card-media,
.puppies-page .card-media {
  height: 190px !important;
  min-height: 190px !important;
  aspect-ratio: auto !important;
}

.puppies-page .puppy-card-image,
.puppies-page .card-media img {
  width: 100% !important;
  height: 190px !important;
  min-height: 190px !important;
  object-fit: cover !important;
}

.puppies-page .card-media .badge {
  top: 9px !important;
  left: 9px !important;
  max-width: 132px !important;
  min-height: 28px !important;
  padding: 5px 8px !important;
  font-size: 0.72rem !important;
  line-height: 1 !important;
}

.puppies-page .card-media .badge svg {
  width: 14px !important;
  height: 14px !important;
}

.puppies-page .card-media .price {
  top: 9px !important;
  right: 9px !important;
  max-width: 112px !important;
  min-height: 28px !important;
  padding: 5px 8px !important;
  font-size: 0.76rem !important;
  line-height: 1.1 !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
}

.puppies-page .puppy-card-body,
.puppies-page .card-body {
  padding: 12px !important;
}

.puppies-page .card-body h3 {
  margin: 0 0 8px !important;
  font-size: 1.18rem !important;
  line-height: 1.15 !important;
}

.puppies-page .puppy-card-facts {
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 8px !important;
  margin: 0 0 10px !important;
}

.puppies-page .puppy-card-facts span {
  display: grid !important;
  gap: 3px !important;
  padding: 7px 8px !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: 12px !important;
  background: #f8fafc !important;
}

.puppies-page .puppy-card-facts small,
.puppies-page .puppy-gender-actions__label {
  font-size: 0.72rem !important;
  line-height: 1.1 !important;
}

.puppies-page .puppy-card-facts strong {
  font-size: 0.9rem !important;
  line-height: 1.2 !important;
}

.puppies-page .card-actions {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 8px !important;
  margin-top: 0 !important;
}

.puppies-page .puppy-card-actions {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 8px !important;
}

.puppies-page .puppy-gender-actions {
  display: grid !important;
  gap: 6px !important;
  justify-items: center !important;
  text-align: center !important;
}

.puppies-page .puppy-gender-actions__buttons {
  display: flex !important;
  justify-content: center !important;
  gap: 8px !important;
  width: 100% !important;
}

.puppies-page .puppy-gender-pill {
  flex: 1 1 0 !important;
  min-width: 0 !important;
  min-height: 34px !important;
  padding: 0 8px !important;
  font-size: 0.85rem !important;
  line-height: 1 !important;
}

.puppies-page .puppy-card-actions .btn,
.puppies-page .puppy-card-actions button {
  min-height: 38px !important;
  padding: 0 12px !important;
  font-size: 0.88rem !important;
}

.puppies-page .puppy-card-social {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 10px !important;
  margin-top: 8px !important;
}

.puppies-page .puppy-card-social .puppy-social-button {
  width: 40px !important;
  min-width: 40px !important;
  max-width: 40px !important;
  height: 40px !important;
  min-height: 40px !important;
  max-height: 40px !important;
  flex-basis: 40px !important;
}

.puppies-page .puppy-card-social .puppy-social-button svg {
  width: 19px !important;
  height: 19px !important;
}

.puppies-page .mobile-filter-bar {
  display: none !important;
}

@media (min-width: 1180px) {
  .puppies-page .listing-grid {
    grid-template-columns: repeat(3, 300px) !important;
  }
}

@media (min-width: 1380px) {
  .puppies-page .listing-grid {
    grid-template-columns: repeat(4, 280px) !important;
  }
}

@media (max-width: 1040px) {
  .puppies-page .puppies-layout {
    grid-template-columns: 1fr !important;
  }

  .puppies-page .filters {
    position: static !important;
  }

  .puppies-page .listing-grid {
    grid-template-columns: repeat(2, minmax(260px, 300px)) !important;
  }
}

@media (max-width: 768px) {
  .puppies-page {
    width: min(100% - 24px, 520px) !important;
  }

  .puppies-page .results-head {
    grid-template-columns: 1fr !important;
  }

  .puppies-page .listing-grid {
    grid-template-columns: minmax(0, 1fr) !important;
    justify-items: center !important;
  }

  .puppies-page .puppy-card {
    max-width: 100% !important;
  }

  .puppies-page .puppy-card-media,
  .puppies-page .card-media {
    height: 180px !important;
    min-height: 180px !important;
  }

  .puppies-page .puppy-card-image,
  .puppies-page .card-media img {
    height: 180px !important;
    min-height: 180px !important;
  }
}

@media (max-width: 768px) {

  body .puppies-page,
  body .puppies-page.section-block,
  body .puppies-page.page-content-offset {
    min-height: auto !important;
    height: auto !important;
    padding-top: 20px !important;
    padding-bottom: 24px !important;
    margin-top: 0 !important;
  }

  body.admin-bar .puppies-page,
  body.admin-bar .puppies-page.section-block,
  body.admin-bar .puppies-page.page-content-offset {
    padding-top: 20px !important;
  }

  .puppies-hero,
  .puppies-header,
  .puppies-intro,
  .puppies-page .hero,
  .puppies-page .section-header,
  .puppies-page .section-head,
  .puppies-page .puppies-page-head {
    min-height: auto !important;
    height: auto !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin-top: 0 !important;
    margin-bottom: 20px !important;
  }

  .puppies-page .puppies-page-head h1 {
    margin-bottom: 6px !important;
  }

  .puppies-page .puppies-page-head p {
    margin-bottom: 0 !important;
  }

  .puppies-page .mobile-filter-bar {
    display: none !important;
  }

  .puppies-page .content-wrap,
  .puppies-layout,
  .puppies-page .puppies-layout,
  .puppies-page .filters,
  .puppies-page .results,
  .puppies-page .results-head,
  .puppies-page .listing-grid {
    min-height: auto !important;
    height: auto !important;
    padding-top: 0 !important;
    margin-top: 0 !important;
  }

  .puppies-page .puppies-layout {
    gap: 20px !important;
    padding-bottom: 24px !important;
  }

  .puppies-page .filters {
    position: static !important;
    display: block !important;
    visibility: visible !important;
    transform: none !important;
    max-height: none !important;
    overflow: visible !important;
    padding: 12px !important;
    margin-bottom: 20px !important;
    border-radius: 18px !important;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08) !important;
  }

  .puppies-page .filters-close {
    display: none !important;
  }

  .puppies-page .breed-search-group {
    display: block !important;
  }

  .puppies-page .popular-breeds-group,
  .puppies-page input[name="quality"],
  .puppies-page input[type="range"],
  .puppies-page .range-line,
  .puppies-page .filters .btn.ghost {
    display: none !important;
  }

  .puppies-page .results {
    padding: 0 !important;
  }

  .puppies-page .results-head {
    margin-bottom: 20px !important;
  }

  .empty,
  .spacer,
  .hero-spacer,
  .puppies-page .empty:empty {
    display: none !important;
  }
}

/* Premium single puppy product gallery */
.single-pet-page.puppy-detail-page {
  padding: calc(var(--sks-nav-height, 76px) + 34px) 0 64px !important;
  background: linear-gradient(180deg, #f8fbff 0%, #eef4fb 100%) !important;
}

.single-pet-page .single-pet-shell {
  width: min(1240px, calc(100% - 32px)) !important;
}

.single-pet-product {
  display: grid !important;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.92fr) !important;
  gap: 26px !important;
  align-items: start !important;
}

.single-pet-gallery-viewer,
.single-pet-page .single-pet-panel,
.single-pet-page .single-pet-section {
  border: 1px solid rgba(203, 213, 225, 0.78) !important;
  border-radius: 22px !important;
  background: rgba(255, 255, 255, 0.94) !important;
  box-shadow: 0 22px 54px rgba(15, 23, 42, 0.12) !important;
}

.single-pet-gallery-viewer {
  overflow: hidden !important;
  padding: 12px !important;
}

.single-pet-main-image {
  position: relative;
  width: 100%;
  min-height: 520px;
  padding: 0;
  display: block;
  overflow: hidden;
  border: 0;
  border-radius: 18px;
  background: #e2e8f0;
  cursor: zoom-in;
}

.single-pet-main-image img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  display: block;
  object-fit: cover;
}

.single-pet-main-image .single-pet-ribbon {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
  pointer-events: none;
}

.single-pet-page .single-pet-status-badge,
.single-pet-page .single-pet-price {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px !important;
  border-radius: 999px !important;
  font-weight: 900 !important;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.16) !important;
}

.single-pet-page .single-pet-status-badge {
  color: #0f172a !important;
  background: rgba(255, 255, 255, 0.94) !important;
  border: 1px solid rgba(219, 234, 254, 0.9) !important;
}

.single-pet-page .single-pet-price {
  color: #ffffff !important;
  background: linear-gradient(135deg, #0f2a44, #2563eb) !important;
}

.single-pet-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  padding-bottom: 4px;
  overflow-x: auto;
  scrollbar-width: thin;
}

.single-pet-thumb {
  width: 86px;
  height: 72px;
  flex: 0 0 86px;
  padding: 0;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 12px;
  background: #e2e8f0;
  cursor: pointer;
  opacity: 0.74;
  transition: opacity 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.single-pet-thumb:hover,
.single-pet-thumb.is-active {
  opacity: 1;
  border-color: #2563eb;
  transform: translateY(-1px);
}

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

.single-pet-page .single-pet-panel {
  padding: 24px !important;
  display: flex !important;
  flex-direction: column;
  justify-content: flex-start !important;
}

.single-pet-page .single-pet-title-area {
  margin-bottom: 12px !important;
}

.single-pet-page .single-pet-title {
  margin: 0 !important;
  color: #071428 !important;
  font-size: clamp(2.2rem, 4vw, 3.4rem) !important;
  line-height: 1.02 !important;
}

.single-pet-page .single-pet-subtitle {
  margin: 6px 0 8px !important;
  color: #475569 !important;
  font-weight: 750 !important;
}

.single-pet-page .gender-switcher {
  display: inline-flex !important;
  justify-content: center;
  align-items: center;
  gap: 6px !important;
  width: fit-content;
  max-width: 100%;
  padding: 6px !important;
  border-radius: 999px;
  background: #f8fafc;
  border: 1px solid #dbeafe;
  flex-wrap: wrap;
}

.single-pet-page .gender-switcher .puppy-gender-pill {
  flex: 1 1 100px;
  min-width: 100px;
  min-height: 38px !important;
  padding: 0 16px !important;
  text-align: center;
}

.single-pet-page .single-pet-meta-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 8px !important;
  margin: 0 0 18px !important;
  align-items: start;
  grid-auto-rows: auto;
}

.single-pet-page .single-pet-meta {
  height: auto !important;
  min-height: 0 !important;
  padding: 10px 14px !important;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  box-sizing: border-box;
  align-self: start;
}

.single-pet-page .single-pet-meta small {
  margin-bottom: 3px !important;
  font-size: 12px !important;
  line-height: 1.1 !important;
}

.single-pet-page .single-pet-meta strong {
  margin: 0 !important;
  line-height: 1.15 !important;
}

.single-pet-page .single-pet-meta--breed strong {
  margin-top: 2px;
}

.single-pet-page .single-pet-meta--breed,
.single-pet-page .single-pet-meta--gender {
  height: auto !important;
  min-height: unset !important;
  padding: 10px 14px !important;
}

.single-pet-page .single-pet-meta--breed {
  justify-content: flex-start;
}

.single-pet-page .single-pet-meta--breed small,
.single-pet-page .single-pet-meta--gender small {
  margin-bottom: 3px !important;
}

.single-pet-page .single-pet-meta--gender {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
  align-items: flex-start;
}

.single-pet-page .single-pet-meta--gender .gender-switcher {
  width: fit-content;
  max-width: 100%;
  justify-content: center;
  align-self: flex-start;
  margin-top: 3px !important;
  margin-bottom: 0 !important;
  padding: 3px !important;
  gap: 3px !important;
  flex-wrap: wrap;
}

.single-pet-page .single-pet-meta--gender .puppy-gender-pill {
  flex: 1 1 96px;
  min-width: 96px;
  min-height: 30px !important;
  padding: 0 10px !important;
  font-size: 13px;
}

.single-pet-page .single-pet-meta--gender .puppy-gender-pill.is-disabled,
.single-pet-page .single-pet-meta--gender .puppy-gender-pill:disabled {
  cursor: not-allowed;
  opacity: 0.58;
  border-color: #e2e8f0;
  background: #f8fafc;
  color: #94a3b8;
}

@media (max-width: 720px) {
  .single-pet-page .single-pet-meta--gender .gender-switcher {
    width: 100%;
    justify-content: center;
  }

  .single-pet-page .single-pet-meta--gender .puppy-gender-pill {
    flex: 1 1 88px;
    min-width: 88px;
  }
}

.single-pet-page .single-pet-meta {
  border: 1px solid #dbe4ee !important;
  border-radius: 14px !important;
  background: #f8fafc !important;
  box-shadow: none !important;
}

.single-pet-page .single-pet-meta small {
  color: #64748b !important;
  font-size: 0.72rem !important;
  font-weight: 850 !important;
  text-transform: uppercase;
}

.single-pet-page .single-pet-meta strong {
  color: #0f172a !important;
  font-size: 0.98rem !important;
}

.single-pet-summary {
  max-height: 150px;
  overflow: auto;
  padding: 14px;
  border: 1px solid #dbe4ee;
  border-radius: 16px;
  background: #ffffff;
}

.single-pet-page .single-pet-actions {
  display: grid !important;
  gap: 12px !important;
  margin-top: 0 !important;
}

.single-pet-page .puppy-parents-section {
  display: grid;
  gap: 10px;
  padding-top: 12px !important;
  padding-bottom: 12px !important;
}

.single-pet-page .puppy-parents-section .single-pet-section-head {
  margin-bottom: 0;
}

.single-pet-page .puppy-parents-grid {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 20px;
}

.single-pet-page .parent-card-link {
  display: block;
  width: 380px;
  max-width: 380px;
  color: inherit;
  text-decoration: none;
}

.single-pet-page .parent-dog-card {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  width: 380px;
  max-width: 380px;
  color: #0f172a;
  text-decoration: none;
  border: 1px solid #dbe4ee;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.1);
  cursor: pointer;
  transition: all 0.25s ease;
}

.single-pet-page .parent-card-link:hover .parent-card,
.single-pet-page .parent-card-link:focus-visible .parent-card,
.single-pet-page .parent-card:hover {
  transform: translateY(-4px);
  border-color: #93c5fd;
  box-shadow: 0 18px 35px rgba(15, 23, 42, 0.15);
}

.single-pet-page .parent-dog-card__media {
  height: 180px;
  min-height: unset;
  aspect-ratio: auto;
  background: #e2e8f0;
}

.single-pet-page .parent-dog-card__media img {
  width: 100%;
  height: 180px;
  display: block;
  object-fit: cover;
}

.single-pet-page .parent-dog-card__body {
  display: grid;
  gap: 10px;
  padding: 10px;
}

.single-pet-page .parent-dog-card__role {
  display: inline-flex;
  width: fit-content;
  min-height: 30px;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  color: #1d4ed8;
  background: #eff6ff;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.single-pet-page .parent-dog-card__title {
  margin: 0;
  color: #071428;
  font-size: 1.18rem;
  line-height: 1.15;
}

.single-pet-page .parent-dog-card__facts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.single-pet-page .parent-dog-card__facts span {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 8px 10px;
  border: 1px solid #dbe4ee;
  border-radius: 12px;
  background: #ffffff;
}

.single-pet-page .parent-dog-card__facts small {
  color: #64748b;
  font-size: 0.7rem;
  font-weight: 850;
  text-transform: uppercase;
}

.single-pet-page .parent-dog-card__facts strong {
  color: #0f172a;
  font-size: 0.95rem;
  line-height: 1.2;
}

.single-pet-page .parent-dog-card__button {
  justify-content: center;
  width: 100%;
  min-height: 42px;
  padding: 0 12px;
}

.single-pet-page .parent-card .view-details-btn {
  pointer-events: none;
}

.manual-parent-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: grid;
  place-items: center;
  padding: 18px;
}

.manual-parent-modal[hidden] {
  display: none;
}

.manual-parent-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(7, 20, 40, 0.68);
  cursor: pointer;
}

.manual-parent-modal__panel {
  position: relative;
  z-index: 1;
  width: min(900px, 100%);
  max-height: min(88vh, 860px);
  overflow: auto;
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(0, 1.1fr);
  gap: 0;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 28px 90px rgba(2, 6, 23, 0.36);
}

.manual-parent-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border: 1px solid #dbe4ee;
  border-radius: 999px;
  background: #ffffff;
  color: #0f172a;
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1;
}

.manual-parent-modal__media {
  min-height: 420px;
  background: #e2e8f0;
}

.manual-parent-modal__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.manual-parent-modal__content {
  display: grid;
  align-content: start;
  gap: 14px;
  padding: 24px;
}

.manual-parent-modal__content h3 {
  margin: 0;
  color: #071428;
  font-size: clamp(1.45rem, 3vw, 2.1rem);
  line-height: 1.1;
}

.manual-parent-modal__content dl {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
}

.manual-parent-modal__content dl div {
  display: grid;
  gap: 4px;
  padding: 10px 12px;
  border: 1px solid #dbe4ee;
  border-radius: 12px;
  background: #f8fafc;
}

.manual-parent-modal__content dt {
  color: #64748b;
  font-size: 0.7rem;
  font-weight: 850;
  text-transform: uppercase;
}

.manual-parent-modal__content dd {
  margin: 0;
  color: #0f172a;
  font-size: 0.96rem;
  font-weight: 750;
  line-height: 1.25;
}

.manual-parent-modal__description {
  color: #475569;
  line-height: 1.65;
}

.manual-parent-modal__description p {
  margin: 0 0 10px;
}

.manual-parent-modal__description p:last-child {
  margin-bottom: 0;
}

body.manual-parent-modal-open {
  overflow: hidden;
}

.single-pet-page .puppy-card-social--single {
  justify-content: flex-start !important;
  margin-top: 0 !important;
}

.single-pet-page .single-pet-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.single-pet-page .single-pet-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  height: auto;
  object-fit: cover;
  border-radius: 16px;
}

.puppy-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(2, 6, 23, 0.82);
}

.puppy-lightbox.is-open {
  display: grid;
}

.puppy-lightbox img {
  max-width: min(1040px, 100%);
  max-height: 86vh;
  display: block;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
}

.puppy-lightbox__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 999px;
  color: #0f172a;
  background: #ffffff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 1100px) {
  .single-pet-product {
    grid-template-columns: 1fr !important;
  }

  .single-pet-main-image,
  .single-pet-main-image img {
    min-height: 430px;
  }
}

@media (max-width: 720px) {
  .manual-parent-modal {
    padding: 12px;
  }

  .manual-parent-modal__panel {
    grid-template-columns: 1fr;
    max-height: 90vh;
  }

  .manual-parent-modal__media {
    min-height: 240px;
    max-height: 320px;
  }

  .manual-parent-modal__content {
    padding: 18px;
  }

  .manual-parent-modal__content dl {
    grid-template-columns: 1fr;
  }

  .single-pet-page.puppy-detail-page {
    padding: calc(var(--sks-nav-height, 72px) + 22px) 0 42px !important;
  }

  .single-pet-page .single-pet-shell {
    width: min(100% - 24px, 1240px) !important;
  }

  .single-pet-gallery-viewer,
  .single-pet-page .single-pet-panel,
  .single-pet-page .single-pet-section {
    border-radius: 18px !important;
  }

  .single-pet-main-image,
  .single-pet-main-image img {
    min-height: 320px;
  }

  .single-pet-page .single-pet-panel {
    padding: 16px !important;
  }

  .single-pet-page .single-pet-title {
    font-size: clamp(2rem, 10vw, 2.75rem) !important;
  }

  .single-pet-page .single-pet-meta-grid,
  .single-pet-page .single-pet-gallery {
    grid-template-columns: 1fr !important;
  }

  .single-pet-page .puppy-parents-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .single-pet-page .parent-card-link,
  .single-pet-page .parent-dog-card {
    width: 100%;
    max-width: 380px;
  }

  .single-pet-thumb {
    width: 78px;
    height: 64px;
    flex-basis: 78px;
  }
}

/* Navbar social actions: matching circular WhatsApp and Instagram buttons */
.nav-actions {
  align-items: center !important;
  gap: 10px !important;
}

.nav-actions .nav-cta--icon,
.mobile-nav-socials .nav-cta--icon {
  width: 48px !important;
  min-width: 48px !important;
  max-width: 48px !important;
  height: 48px !important;
  min-height: 48px !important;
  max-height: 48px !important;
  flex: 0 0 48px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 50% !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #ffffff !important;
  text-decoration: none !important;
  box-shadow: 0 14px 28px rgba(15, 23, 42, 0.18) !important;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease !important;
}

.nav-actions .nav-cta--icon svg,
.mobile-nav-socials .nav-cta--icon svg {
  width: 22px !important;
  height: 22px !important;
  flex: 0 0 22px !important;
  color: #ffffff !important;
  display: block !important;
}

.nav-actions .nav-cta--whatsapp,
.mobile-nav-socials .nav-cta--whatsapp {
  background: #25D366 !important;
}

.nav-actions .nav-cta--instagram,
.mobile-nav-socials .nav-cta--instagram {
  background: linear-gradient(135deg, #833AB4, #FD1D1D, #FCAF45) !important;
}

.nav-actions .nav-cta--icon:hover,
.mobile-nav-socials .nav-cta--icon:hover {
  color: #ffffff !important;
  transform: translateY(-3px) !important;
  filter: brightness(1.04) !important;
  box-shadow: 0 18px 34px rgba(15, 23, 42, 0.24) !important;
}

.nav-actions .nav-cta--puppies {
  min-height: 44px !important;
  margin-left: 2px;
  padding: 0 16px !important;
}

.mobile-nav-socials {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

@media (max-width: 1280px) and (min-width: 1101px) {
  .nav-actions .nav-cta--instagram {
    display: inline-flex !important;
  }

  .nav-actions .nav-cta--icon {
    width: 44px !important;
    min-width: 44px !important;
    max-width: 44px !important;
    height: 44px !important;
    min-height: 44px !important;
    max-height: 44px !important;
    flex-basis: 44px !important;
  }
}

@media (max-width: 1100px) {
  .mobile-nav-ctas {
    display: grid !important;
    gap: 10px !important;
  }

  .mobile-nav-ctas .mobile-nav-cta--icon {
    width: 48px !important;
    min-width: 48px !important;
    max-width: 48px !important;
    height: 48px !important;
    min-height: 48px !important;
    max-height: 48px !important;
  }
}

/* Premium single puppy action section */
.single-pet-page .puppy-actions {
  width: min(100%, 440px);
  margin: 24px auto !important;
  padding: 16px;
  display: grid !important;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 16px !important;
  border: 1px solid #dbe4ee;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.1);
}

.single-pet-page .puppy-actions__book,
.single-pet-page .puppy-actions__book .book-btn {
  width: 100% !important;
  max-width: none !important;
}

.single-pet-page .puppy-actions__book {
  display: block !important;
}

.single-pet-page .puppy-actions .book-btn {
  min-height: 56px !important;
  height: 56px !important;
  padding: 0 22px !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  border: 0 !important;
  border-radius: 14px !important;
  color: #ffffff !important;
  background: linear-gradient(135deg, #0f2a44, #2563eb) !important;
  box-shadow: 0 16px 32px rgba(37, 99, 235, 0.24) !important;
  font-size: 1rem !important;
  font-weight: 900 !important;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease !important;
}

.single-pet-page .puppy-actions .book-btn:hover {
  transform: translateY(-3px);
  filter: brightness(1.04);
  box-shadow: 0 22px 40px rgba(37, 99, 235, 0.3) !important;
}

.single-pet-page .puppy-actions .social-actions {
  display: flex;
  align-items: center;
  justify-content: center;
}

.single-pet-page .puppy-actions .puppy-card-social--single {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
  width: auto !important;
  max-width: none !important;
  margin: 0 !important;
}

.single-pet-page .puppy-actions .social-icon-btn,
.single-pet-page .puppy-actions .puppy-social-button {
  width: 52px !important;
  min-width: 52px !important;
  max-width: 52px !important;
  height: 52px !important;
  min-height: 52px !important;
  max-height: 52px !important;
  flex: 0 0 52px !important;
  border-radius: 50% !important;
  box-shadow: 0 15px 30px rgba(15, 23, 42, 0.18) !important;
}

.single-pet-page .puppy-actions .puppy-social-button svg {
  width: 23px !important;
  height: 23px !important;
  flex-basis: 23px !important;
}

.single-pet-page .puppy-actions .social-icon-btn:hover,
.single-pet-page .puppy-actions .puppy-social-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 36px rgba(15, 23, 42, 0.24) !important;
}

.dog-breed-sale-card {
  width: min(100%, 440px);
  margin: 22px auto 0;
  padding: 18px 20px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 8px 16px;
  border: 1px solid rgba(219, 228, 238, 0.92);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.1);
}

.dog-breed-sale-card span {
  color: #64748b;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.dog-breed-sale-card strong {
  color: #0f172a;
  font-size: clamp(1.35rem, 2.5vw, 1.8rem);
  font-weight: 950;
}

.dog-breed-sale-card em {
  grid-row: 1 / span 2;
  grid-column: 2;
  padding: 8px 12px;
  border: 1px solid rgba(147, 197, 253, 0.8);
  border-radius: 999px;
  color: #1d4ed8;
  background: #eff6ff;
  font-size: 0.82rem;
  font-style: normal;
  font-weight: 900;
  white-space: nowrap;
}

.single-pet-page .dog-breed-sale-actions {
  margin-top: 14px !important;
}

@media (max-width: 720px) {
  .single-pet-page .puppy-actions {
    width: 100%;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 16px !important;
    padding: 14px;
  }

  .single-pet-page .puppy-actions__book,
  .single-pet-page .puppy-actions .book-btn {
    width: 100% !important;
  }

  .dog-breed-sale-card {
    width: 100%;
    grid-template-columns: 1fr;
  }

  .dog-breed-sale-card em {
    grid-row: auto;
    grid-column: auto;
    justify-self: start;
  }
}

/* Single puppy image badges: remove connecting ribbon bar */
.single-pet-main-image .single-pet-ribbon,
.single-pet-page .single-pet-main-image .single-pet-ribbon {
  position: absolute !important;
  left: 18px !important;
  right: 18px !important;
  bottom: 18px !important;
  z-index: 3 !important;
  width: auto !important;
  min-height: 0 !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 12px !important;
  color: inherit !important;
  background: transparent !important;
  background-image: none !important;
  border: 0 !important;
  box-shadow: none !important;
  pointer-events: none !important;
}

.single-pet-page .single-pet-main-image .single-pet-status-badge,
.single-pet-page .single-pet-main-image .single-pet-price {
  min-height: 42px !important;
  padding: 9px 16px !important;
  border-radius: 999px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  border: 1px solid transparent !important;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.22) !important;
}

.single-pet-page .single-pet-main-image .single-pet-status-badge {
  color: #1d4ed8 !important;
  background: rgba(255, 255, 255, 0.94) !important;
  border-color: rgba(147, 197, 253, 0.9) !important;
}

.single-pet-page .single-pet-main-image .single-pet-price {
  color: #ffffff !important;
  background: linear-gradient(135deg, #0f2a44, #2563eb) !important;
  border-color: rgba(219, 234, 254, 0.2) !important;
}

@media (max-width: 720px) {

  .single-pet-main-image .single-pet-ribbon,
  .single-pet-page .single-pet-main-image .single-pet-ribbon {
    left: 14px !important;
    right: 14px !important;
    bottom: 14px !important;
  }
}

/* Single puppy image carousel */
.single-pet-page .single-pet-gallery-viewer {
  padding: 12px !important;
}

.single-pet-page .single-pet-main-image {
  position: relative !important;
  height: 520px !important;
  min-height: 520px !important;
  cursor: zoom-in;
  isolation: isolate;
}

.single-pet-page .single-pet-main-image .single-pet-slide {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  min-height: 0 !important;
  display: block !important;
  object-fit: cover !important;
  opacity: 0;
  transform: scale(1.015);
  transition: opacity 520ms ease, transform 720ms ease;
  z-index: 0;
}

.single-pet-page .single-pet-main-image .single-pet-slide.is-active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}

.single-pet-thumbs {
  display: none !important;
}

.single-pet-slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 46px;
  height: 46px;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.52);
  border-radius: 50%;
  color: #ffffff;
  background: rgba(15, 23, 42, 0.34);
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.26);
  backdrop-filter: blur(12px);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.single-pet-slider-arrow--prev {
  left: 18px;
}

.single-pet-slider-arrow--next {
  right: 18px;
}

.single-pet-slider-arrow:hover {
  background: rgba(37, 99, 235, 0.74);
  box-shadow: 0 18px 38px rgba(15, 23, 42, 0.32);
  transform: translateY(-50%) scale(1.06);
}

@media (max-width: 1100px) {
  .single-pet-page .single-pet-main-image {
    height: 430px !important;
    min-height: 430px !important;
  }
}

@media (max-width: 720px) {
  .single-pet-page .single-pet-main-image {
    height: 320px !important;
    min-height: 320px !important;
  }

  .single-pet-slider-arrow {
    width: 40px;
    height: 40px;
    font-size: 1.65rem;
  }

  .single-pet-slider-arrow--prev {
    left: 12px;
  }

  .single-pet-slider-arrow--next {
    right: 12px;
  }
}

.single-pet-page .single-pet-shell,
.single-pet-page .single-pet-product {
  margin-top: 0 !important;
}

.single-pet-page .single-pet-product {
  align-items: start !important;
}

/* Single puppy related reels */
.single-pet-page .puppy-reels-section {
  height: auto !important;
  min-height: 0 !important;
  padding: 18px !important;
}

.single-pet-page .puppy-reels-section .single-pet-section-head {
  margin-bottom: 14px !important;
}

.single-pet-page .puppy-reels-section h2 {
  margin: 0 !important;
  font-size: clamp(1.35rem, 2vw, 1.75rem) !important;
}

.puppy-reels-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(220px, 260px));
  justify-content: start;
  align-items: start;
  gap: 14px;
  width: 100%;
  height: auto !important;
  min-height: 0 !important;
}

.puppy-reel-card {
  width: 100%;
  max-width: 260px;
  height: auto !important;
  min-height: 0 !important;
  overflow: hidden;
  padding: 10px;
  border: 1px solid #dbe4ee;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
}

.puppy-reel-thumb {
  position: relative;
  min-height: 0 !important;
  height: 112px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(15, 42, 68, 0.82), rgba(37, 99, 235, 0.72)),
    linear-gradient(45deg, #833AB4, #FD1D1D, #FCAF45);
  text-decoration: none;
}

.puppy-reel-thumb::after {
  content: "REEL";
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 4px 8px;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  font-size: 0.66rem;
  font-weight: 900;
  letter-spacing: 0;
}

.puppy-reel-play {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 14px 24px rgba(15, 23, 42, 0.2);
}

.puppy-reel-play::before {
  content: "";
  width: 0;
  height: 0;
  margin-left: 3px;
  border-top: 9px solid transparent;
  border-bottom: 9px solid transparent;
  border-left: 14px solid #2563eb;
}

.puppy-reel-card h3 {
  margin: 9px 0;
  color: #0f172a;
  font-size: 0.94rem;
  line-height: 1.25;
}

.puppy-reel-button {
  width: 100%;
  min-height: 36px !important;
  padding: 0 12px !important;
  border-radius: 10px !important;
  font-size: 0.84rem !important;
}

@media (max-width: 1040px) {
  .puppy-reels-grid {
    grid-template-columns: repeat(2, minmax(220px, 260px));
  }
}

@media (max-width: 720px) {
  .single-pet-page .puppy-reels-section {
    padding: 14px !important;
  }

  .puppy-reels-grid {
    grid-template-columns: minmax(220px, 260px);
    justify-content: center;
  }
}

/* Footer social icons */
footer .footer-socials {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 12px !important;
}

footer .footer-social-link {
  width: 44px !important;
  min-width: 44px !important;
  height: 44px !important;
  min-height: 44px !important;
  padding: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border: 0 !important;
  border-radius: 50% !important;
  color: #ffffff !important;
  text-decoration: none !important;
  box-shadow: 0 12px 24px rgba(2, 6, 23, 0.22) !important;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease !important;
}

footer .footer-social-link--whatsapp {
  background: #25D366 !important;
}

footer .footer-social-link--instagram {
  background: linear-gradient(135deg, #833AB4, #FD1D1D, #FCAF45) !important;
}

footer .footer-social-link svg {
  width: 21px !important;
  height: 21px !important;
  display: block !important;
  color: #ffffff !important;
}

footer .footer-social-link:hover {
  color: #ffffff !important;
  filter: brightness(1.04) !important;
  transform: translateY(-3px) !important;
  box-shadow: 0 16px 30px rgba(2, 6, 23, 0.28) !important;
}

footer .footer-social-link .social-label {
  display: none !important;
}

/* Dog breed cards and detail page upgrades */
.dog-breeds-section .dog-breed-card__body {
  padding: 14px 16px 16px;
}

.dog-breeds-section .dog-breed-card h3 {
  padding: 0;
  margin: 0 0 10px;
}

.dog-breeds-section .dog-breed-card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 10px;
}

.dog-breeds-section .dog-breed-card__meta span {
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.12);
}

.dog-breeds-section .dog-breed-card__quality {
  margin: 0 0 12px;
  font-size: 0.88rem;
  color: #dce9ef;
}

.dog-breeds-section .dog-breed-card__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.82rem;
  color: #ffffff;
  text-decoration: none;
  background: linear-gradient(135deg, #ff8c32, #f7c46c);
}

.single-breed-detail-page .single-pet-panel {
  background: linear-gradient(135deg, #07131f, #0c2234);
}

.single-breed-detail-page .single-pet-title,
.single-breed-detail-page .single-pet-subtitle {
  color: #ffffff;
}

.single-breed-detail-page .single-breed-meta-grid {
  margin-bottom: 12px;
}

.single-breed-detail-page .single-pet-meta small,
.single-breed-detail-page .single-pet-meta strong {
  color: #ffffff;
}

.single-breed-detail-page .single-pet-description p {
  color: #cfdee6;
}

.single-breed-detail-page .breed-reels-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.single-breed-detail-page .breed-reel-card {
  max-width: none;
}

@media (max-width: 1040px) {
  .single-breed-detail-page .breed-reels-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .single-breed-detail-page .breed-reels-grid {
    grid-template-columns: 1fr;
  }
}

/* Whole-site mobile responsiveness safety pass */
html,
body {
  width: 100%;
  overflow-x: hidden !important;
}

* {
  box-sizing: border-box;
}

@media (max-width: 768px) {

  html,
  body {
    max-width: 100%;
    overflow-x: hidden !important;
  }

  body {
    padding-top: 0 !important;
  }

  body.home,
  body.front-page {
    padding-top: 0 !important;
  }

  .site-wrapper,
  .content-wrapper,
  .container,
  .page-container,
  .page-content,
  .site-main,
  .content-wrap,
  .section-block,
  .page-section,
  .services-page,
  .dog-breeds-section,
  .gallery-page,
  .puppies-page,
  .single-pet-shell,
  .single-breed-page {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    overflow-x: hidden !important;
  }

  .site-wrapper,
  .content-wrapper,
  .container,
  .page-container,
  .page-content,
  .site-main {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  .section-block,
  .page-section,
  .services-page,
  .dog-breeds-section,
  .gallery-page,
  .puppies-page,
  .single-pet-page,
  .single-breed-page,
  .page-content-offset {
    min-height: auto !important;
    height: auto !important;
    margin-top: 0 !important;
    padding-top: 90px !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  body.admin-bar .section-block,
  body.admin-bar .page-section,
  body.admin-bar .services-page,
  body.admin-bar .dog-breeds-section,
  body.admin-bar .gallery-page,
  body.admin-bar .puppies-page,
  body.admin-bar .single-pet-page,
  body.admin-bar .single-breed-page,
  body.admin-bar .page-content-offset {
    padding-top: 90px !important;
  }

  .page-hero,
  .gallery-hero,
  .puppies-hero,
  .puppies-header,
  .puppies-intro,
  .puppies-page .hero,
  .puppies-page .section-header,
  .section-head,
  .puppies-page-head,
  .dog-breeds-section .section-head,
  .services-page .section-head {
    min-height: auto !important;
    height: auto !important;
    margin-top: 0 !important;
    margin-bottom: 20px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
  }

  img,
  video,
  iframe,
  canvas,
  svg {
    max-width: 100% !important;
  }

  img,
  video {
    height: auto;
  }

  h1,
  h2,
  h3,
  p,
  a,
  span,
  strong,
  small,
  dd,
  dt {
    overflow-wrap: break-word;
    word-wrap: break-word;
  }

  h1 {
    font-size: clamp(2rem, 9vw, 2.8rem) !important;
    line-height: 1.05 !important;
  }

  h2 {
    font-size: clamp(1.45rem, 7vw, 2rem) !important;
  }

  .section-head p,
  .gallery-hero p,
  .puppies-page-head p,
  .dog-breeds-section .section-head p {
    max-width: 100% !important;
  }

  .services-grid,
  .dog-breeds-grid,
  .dog-breeds-directory,
  .managed-services-grid,
  .gallery-grid,
  .gallery-page .gallery-grid.sks-dynamic-gallery,
  .listing-grid,
  .puppies-page .listing-grid,
  .single-pet-product,
  .single-pet-hero,
  .single-pet-meta-grid,
  .single-pet-grid,
  .single-breed-detail-page .breed-reels-grid,
  .puppy-parents-grid,
  .single-pet-page .puppy-parents-grid {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    gap: 18px !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .card,
  .service-card,
  .managed-service-card,
  .dog-breed-card,
  .gallery-item,
  .gallery-card,
  .puppy-card,
  .single-pet-media,
  .single-pet-panel,
  .single-pet-info,
  .single-pet-section,
  .single-pet-gallery-viewer,
  .parent-card-link,
  .parent-dog-card {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .dog-breeds-section .breed-search,
  .dog-breeds-section .breed-search-form,
  .breed-search,
  .breed-search-form,
  .filter-search,
  .mobile-breed-search,
  input,
  select,
  textarea {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
  }

  .gallery-category-tabs,
  .tabs,
  .nav-links,
  .puppy-gender-actions__buttons {
    flex-wrap: wrap !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
  }

  .gallery-filter-pill,
  .tab,
  .puppy-gender-pill {
    min-width: 0 !important;
    white-space: normal !important;
  }

  .gallery-page .container {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .gallery-page .gallery-grid.sks-dynamic-gallery>.gallery-item,
  .gallery-page .gallery-grid.sks-dynamic-gallery>.gallery-item img,
  .gallery-item img,
  .gallery-card img {
    width: 100% !important;
    max-width: 100% !important;
    min-height: 0 !important;
  }

  .puppies-page {
    padding-top: 90px !important;
  }

  .puppies-page .puppies-page-head {
    margin-bottom: 20px !important;
  }

  .puppies-page .puppies-layout,
  .puppies-page .results-head,
  .puppies-page .listing-grid {
    margin-top: 0 !important;
  }

  .puppies-page .filters {
    position: static !important;
    display: block !important;
    visibility: visible !important;
    transform: none !important;
    max-height: none !important;
    overflow: visible !important;
    margin-bottom: 20px !important;
  }

  .puppies-page .mobile-filter-bar,
  .puppies-page .filters-close,
  .puppies-page .popular-breeds-group,
  .puppies-page input[name="quality"],
  .puppies-page input[type="range"],
  .puppies-page .range-line,
  .puppies-page .filters .btn.ghost {
    display: none !important;
  }

  .puppies-page .breed-search-group {
    display: block !important;
  }

  .puppies-page .puppy-card {
    max-width: 360px !important;
  }

  .puppies-page .card-media,
  .puppies-page .puppy-card-media,
  .puppies-page .card-media img,
  .puppies-page .puppy-card-image {
    height: 180px !important;
    min-height: 180px !important;
    object-fit: cover !important;
  }

  .single-pet-page,
  .single-breed-page,
  .single-breed-detail-page {
    padding-top: 90px !important;
  }

  .single-pet-shell,
  .single-pet-product {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .single-pet-main-image,
  .single-pet-main-image img,
  .single-pet-image-wrap,
  .single-pet-image-wrap img {
    min-height: 260px !important;
    height: auto !important;
    max-height: none !important;
  }

  .single-pet-page .single-pet-panel,
  .single-pet-page .single-pet-section,
  .single-pet-gallery-viewer {
    padding: 14px !important;
  }

  .single-pet-page .parent-card-link,
  .single-pet-page .parent-dog-card {
    width: 100% !important;
    max-width: 320px !important;
  }

  .single-pet-page .parent-dog-card__media,
  .single-pet-page .parent-dog-card__media img {
    height: 170px !important;
  }

  .empty,
  .spacer,
  .hero-spacer {
    display: none !important;
  }

  [style*="width: 1200px"],
  [style*="min-width"],
  [style*="margin-top: -"] {
    max-width: 100% !important;
    min-width: 0 !important;
    margin-top: 0 !important;
  }

  .page-badge,
  .section-badge,
  .hero-badge,
  .service-badge,
  .breed-badge,
  .gallery-badge,
  .puppy-badge,
  .section-label,
  .eyebrow,
  .gallery-hero__badge {
    position: relative !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    transform: none !important;
    margin-top: 20px !important;
    margin-bottom: 12px !important;
    z-index: 1 !important;
  }

  .page-hero,
  .hero-section,
  .services-page,
  .dog-breeds-page,
  .dog-breeds-section,
  .gallery-page,
  .puppies-page {
    min-height: auto !important;
    margin-top: 0 !important;
  }
}

/* Puppies page: reduce empty space below navbar */
.puppies-hero,
.puppies-page,
.puppies-page .page-hero,
.puppies-page .hero-section,
.puppies-intro {
  padding-top: 40px !important;
  min-height: auto !important;
}

.puppies-page .puppies-page-head {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

@media (max-width: 768px) {

  .puppies-hero,
  .puppies-page,
  .puppies-page .page-hero,
  .puppies-page .hero-section,
  .puppies-intro {
    padding-top: 22px !important;
    min-height: auto !important;
  }

  .puppies-page .eyebrow {
    margin-top: 0 !important;
  }
}

/* Puppies page: remove the actual top-offset source */
body.page-template-page-puppies .puppies-hero,
body.page-template-page-puppies .page-hero,
body.page-template-page-puppies .puppies-intro,
body.page-template-page-puppies .hero-section,
body.page-template-page-puppies-php .puppies-hero,
body.page-template-page-puppies-php .page-hero,
body.page-template-page-puppies-php .puppies-intro,
body.page-template-page-puppies-php .hero-section {
  padding-top: 0 !important;
  margin-top: 0 !important;
  min-height: 0 !important;
  height: auto !important;
  transform: none !important;
}

body.page-template-page-puppies .site-main,
body.page-template-page-puppies .page-content,
body.page-template-page-puppies .puppies-page,
body.page-template-page-puppies .puppies-page.page-content-offset,
body.page-template-page-puppies-php .site-main,
body.page-template-page-puppies-php .page-content,
body.page-template-page-puppies-php .puppies-page,
body.page-template-page-puppies-php .puppies-page.page-content-offset {
  padding-top: 20px !important;
  margin-top: 0 !important;
  min-height: 0 !important;
  height: auto !important;
  transform: none !important;
}

body.page-template-page-puppies .puppies-page-head,
body.page-template-page-puppies .puppies-page-head>div,
body.page-template-page-puppies-php .puppies-page-head,
body.page-template-page-puppies-php .puppies-page-head>div {
  padding-top: 0 !important;
  margin-top: 0 !important;
  min-height: 0 !important;
  height: auto !important;
  transform: none !important;
}

body.page-template-page-puppies .puppies-page .eyebrow,
body.page-template-page-puppies-php .puppies-page .eyebrow {
  margin-top: 0 !important;
}

@media (max-width: 768px) {

  .puppies-page .filter-group .choice,
  .puppies-page .filter-option,
  .puppies-page .gender-option,
  .puppies-page .filter-radio-row {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 10px !important;
    width: 100% !important;
    min-height: 32px !important;
    margin: 0 !important;
    padding: 4px 0 !important;
    text-align: left !important;
  }

  .puppies-page .filter-group .choice input[type="radio"],
  .puppies-page .filter-option input[type="radio"],
  .puppies-page .gender-option input[type="radio"],
  .puppies-page .filter-radio-row input[type="radio"] {
    width: 16px !important;
    min-width: 16px !important;
    max-width: 16px !important;
    height: 16px !important;
    min-height: 16px !important;
    max-height: 16px !important;
    flex: 0 0 16px !important;
    margin: 0 !important;
  }

  .puppies-page .filter-option label,
  .puppies-page .gender-option label,
  .puppies-page .filter-radio-row label {
    margin: 0 !important;
    text-align: left !important;
    flex: 0 0 auto !important;
  }
}

@media (max-width: 768px) {

  .page-hero,
  .hero-section,
  .services-hero,
  .gallery-hero,
  .dog-breeds-hero,
  .puppies-hero,
  .services-page>.section-head,
  .dog-breeds-section>.section-head,
  .gallery-page .gallery-hero,
  .puppies-page .puppies-page-head,
  .single-pet-page .single-pet-title-area,
  .single-pet-page .single-pet-section-head {
    padding-top: 32px !important;
    margin-top: 0 !important;
    min-height: auto !important;
    overflow: visible !important;
  }

  .page-badge,
  .hero-badge,
  .section-badge,
  .service-badge,
  .gallery-badge,
  .breed-badge,
  .puppy-badge,
  .section-label,
  .eyebrow,
  .gallery-hero__badge {
    display: inline-flex !important;
    position: relative !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    transform: none !important;
    margin-top: 0 !important;
    margin-bottom: 12px !important;
    z-index: 1 !important;
  }
}

/* Dog Breeds archive: premium left-aligned directory */
.dog-breeds-archive,
.dog-breeds-section,
.dog-breeds-section .section-head,
.dog-breeds-directory,
.dog-breeds-hero,
.breeds-hero,
.dog-breeds-page .hero-content {
  text-align: left !important;
  align-items: flex-start !important;
}

.dog-breeds-section .section-head {
  width: min(1180px, 100%) !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.dog-breeds-section .section-head h1,
.dog-breeds-section .section-head h2,
.dog-breeds-section .section-head p,
.dog-breeds-hero h1,
.dog-breeds-hero p {
  text-align: left !important;
  margin-left: 0 !important;
  margin-right: auto !important;
}

.dog-breeds-directory {
  width: min(1180px, 100%) !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.breed-search-wrap,
.dog-breeds-search {
  width: min(600px, 100%) !important;
  max-width: 600px !important;
  margin-left: 0 !important;
  margin-right: auto !important;
}

.dog-breed-grid,
.breeds-grid {
  justify-content: flex-start !important;
  justify-items: stretch !important;
  align-items: flex-start !important;
}

@media (max-width: 768px) {

  .dog-breeds-archive,
  .dog-breeds-section,
  .dog-breeds-section .section-head,
  .dog-breeds-directory,
  .dog-breeds-hero,
  .breeds-hero {
    text-align: left !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
  }

  .dog-breeds-directory {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .breed-search-wrap,
  .dog-breeds-search {
    width: 100% !important;
    max-width: 100% !important;
  }

  .dog-breed-grid,
  .breeds-grid {
    grid-template-columns: minmax(0, 1fr) !important;
    justify-items: stretch !important;
  }
}

/* Force Dog Breeds archive left alignment */
body.post-type-archive-dog_breed .archive-hero,
body.post-type-archive-dog_breed .dog-breeds-hero,
body.post-type-archive-dog_breed .hero-content,
body.post-type-archive-dog_breed .archive-content,
body.post-type-archive-dog_breed .container,
body.post-type-archive-dog_breed .dog-breeds-section,
body.post-type-archive-dog_breed .dog-breeds-section .section-head,
body.post-type-archive-dog_breed .dog-breeds-directory {
  text-align: left !important;
  align-items: flex-start !important;
  justify-content: flex-start !important;
  justify-items: flex-start !important;
}

body.post-type-archive-dog_breed .dog-breeds-section {
  display: block !important;
  width: min(1200px, calc(100% - 32px)) !important;
  max-width: 1200px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
}

body.post-type-archive-dog_breed .archive-hero,
body.post-type-archive-dog_breed .dog-breeds-section .section-head,
body.post-type-archive-dog_breed .dog-breeds-directory {
  width: 100% !important;
  max-width: 1200px !important;
  margin-left: 0 !important;
  margin-right: auto !important;
  padding-left: 80px !important;
  padding-right: 0 !important;
}

body.post-type-archive-dog_breed .dog-breeds-section .section-head h1,
body.post-type-archive-dog_breed .dog-breeds-section .section-head h2,
body.post-type-archive-dog_breed .dog-breeds-section .section-head p,
body.post-type-archive-dog_breed .dog-breeds-section .eyebrow {
  text-align: left !important;
  margin-left: 0 !important;
  margin-right: auto !important;
}

body.post-type-archive-dog_breed .breed-search,
body.post-type-archive-dog_breed .breed-search-wrap,
body.post-type-archive-dog_breed .search-box {
  margin-left: 0 !important;
  margin-right: auto !important;
}

body.post-type-archive-dog_breed .breeds-grid,
body.post-type-archive-dog_breed .dog-breeds-grid,
body.post-type-archive-dog_breed .dog-breed-grid {
  justify-content: flex-start !important;
  justify-items: stretch !important;
  margin-left: 0 !important;
  margin-right: auto !important;
}

@media (max-width: 768px) {
  body.post-type-archive-dog_breed .dog-breeds-section {
    width: 100% !important;
    padding-left: 16px !important;
    padding-right: 16px !important;
  }

  body.post-type-archive-dog_breed .archive-hero,
  body.post-type-archive-dog_breed .dog-breeds-section .section-head,
  body.post-type-archive-dog_breed .dog-breeds-directory,
  body.post-type-archive-dog_breed .breeds-grid,
  body.post-type-archive-dog_breed .dog-breeds-grid,
  body.post-type-archive-dog_breed .dog-breed-grid {
    padding-left: 0 !important;
    padding-right: 0 !important;
    margin-left: 0 !important;
  }
}

/* Dog Breeds archive: full-width uniform background */
body.post-type-archive-dog_breed,
body.post-type-archive-dog_breed .site-wrapper,
body.post-type-archive-dog_breed .site-main,
body.post-type-archive-dog_breed .page-wrap,
body.post-type-archive-dog_breed .page-content,
body.post-type-archive-dog_breed .page-content-offset,
body.post-type-archive-dog_breed .dog-breeds-section {
  background: #eef4fa !important;
}

body.post-type-archive-dog_breed .dog-breeds-section {
  width: 100% !important;
  max-width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

body.post-type-archive-dog_breed .dog-breeds-page,
body.post-type-archive-dog_breed .archive-hero,
body.post-type-archive-dog_breed .archive-content,
body.post-type-archive-dog_breed .container,
body.post-type-archive-dog_breed .dog-breeds-section .section-head,
body.post-type-archive-dog_breed .dog-breeds-directory {
  background: transparent !important;
}

body.post-type-archive-dog_breed .dog-breeds-section .section-head,
body.post-type-archive-dog_breed .dog-breeds-directory {
  width: min(1200px, calc(100% - 32px)) !important;
  max-width: 1200px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 80px !important;
}

@media (max-width: 768px) {

  body.post-type-archive-dog_breed .dog-breeds-section .section-head,
  body.post-type-archive-dog_breed .dog-breeds-directory {
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

/* Gallery page: full-width uniform background */
body.page-template-page-gallery,
body.page-template-page-gallery .site-wrapper,
body.page-template-page-gallery .site-main,
body.page-template-page-gallery .page-wrap,
body.page-template-page-gallery .page-content,
body.page-template-page-gallery .gallery-page,
body.page-template-page-gallery .gallery-grid-section {
  background: #eef4fa !important;
}

body.page-template-page-gallery .gallery-hero,
body.page-template-page-gallery .page-hero,
body.page-template-page-gallery .hero-content,
body.page-template-page-gallery .gallery-content,
body.page-template-page-gallery .gallery-page>.container,
body.page-template-page-gallery .gallery-hero .container,
body.page-template-page-gallery .gallery-grid-section .container {
  background: transparent !important;
}

/* Gallery page: remove hero-to-filter divider */
body.page-template-page-gallery .gallery-hero,
body.page-template-page-gallery .gallery-grid-section,
body.page-template-page-gallery .gallery-filters,
body.page-template-page-gallery .gallery-category-tabs,
body.page-template-page-gallery .gallery-content,
body.page-template-page-gallery .gallery-page,
body.page-template-page-gallery .gallery-page>.container,
body.page-template-page-gallery .gallery-hero .container,
body.page-template-page-gallery .gallery-grid-section .container {
  border-top: none !important;
  border-bottom: none !important;
  box-shadow: none !important;
  outline: none !important;
}

body.page-template-page-gallery .gallery-hero::before,
body.page-template-page-gallery .gallery-hero::after,
body.page-template-page-gallery .gallery-grid-section::before,
body.page-template-page-gallery .gallery-grid-section::after,
body.page-template-page-gallery .gallery-filters::before,
body.page-template-page-gallery .gallery-filters::after,
body.page-template-page-gallery .gallery-category-tabs::before,
body.page-template-page-gallery .gallery-category-tabs::after {
  display: none !important;
  content: none !important;
}

/* Gallery page: tighter hero/filter/grid spacing */
body.page-template-page-gallery .gallery-hero {
  padding-bottom: 40px !important;
}

body.page-template-page-gallery .gallery-filters,
body.page-template-page-gallery .gallery-category-tabs {
  margin-top: 20px !important;
  margin-bottom: 20px !important;
}

body.page-template-page-gallery .gallery-grid,
body.page-template-page-gallery .gallery-page .gallery-grid.sks-dynamic-gallery,
body.page-template-page-gallery .gallery-content {
  margin-top: 10px !important;
  padding-top: 0 !important;
}

body.page-template-page-gallery .gallery-page .container,
body.page-template-page-gallery .gallery-grid-section .container {
  gap: 20px !important;
}

@media (max-width: 768px) {
  body.page-template-page-gallery .gallery-hero {
    padding-bottom: 25px !important;
  }

  body.page-template-page-gallery .gallery-filters,
  body.page-template-page-gallery .gallery-category-tabs {
    margin-top: 15px !important;
    margin-bottom: 15px !important;
  }

  body.page-template-page-gallery .gallery-grid,
  body.page-template-page-gallery .gallery-page .gallery-grid.sks-dynamic-gallery {
    margin-top: 5px !important;
  }
}

/* Gallery page: remove remaining hero-to-grid vertical gap */
body.page-template-page-gallery .gallery-hero,
body.page-template-page-gallery .gallery-header,
body.page-template-page-gallery .page-hero,
body.page-template-page-gallery .hero-section,
body.page-template-page-gallery .gallery-banner,
body.page-template-page-gallery .gallery-intro {
  min-height: auto !important;
  height: auto !important;
  padding-bottom: 20px !important;
  margin-bottom: 0 !important;
}

body.page-template-page-gallery .gallery-grid-section {
  min-height: auto !important;
  height: auto !important;
  padding-top: 0 !important;
  margin-top: 0 !important;
}

body.page-template-page-gallery .gallery-grid-section .container {
  padding-top: 0 !important;
  margin-top: 0 !important;
  gap: 15px !important;
}

body.page-template-page-gallery .gallery-hero .container {
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

body.page-template-page-gallery .gallery-filters,
body.page-template-page-gallery .gallery-category-tabs {
  margin-top: 0 !important;
  margin-bottom: 15px !important;
}

body.page-template-page-gallery .gallery-grid,
body.page-template-page-gallery .gallery-page .gallery-grid.sks-dynamic-gallery,
body.page-template-page-gallery .gallery-content {
  margin-top: 10px !important;
  padding-top: 0 !important;
}

@media (max-width: 768px) {

  body.page-template-page-gallery .gallery-hero,
  body.page-template-page-gallery .gallery-header,
  body.page-template-page-gallery .page-hero,
  body.page-template-page-gallery .hero-section,
  body.page-template-page-gallery .gallery-banner,
  body.page-template-page-gallery .gallery-intro {
    padding-bottom: 15px !important;
    margin-bottom: 0 !important;
  }

  body.page-template-page-gallery .gallery-filters,
  body.page-template-page-gallery .gallery-category-tabs {
    margin-top: 0 !important;
    margin-bottom: 15px !important;
  }

  body.page-template-page-gallery .gallery-grid,
  body.page-template-page-gallery .gallery-page .gallery-grid.sks-dynamic-gallery {
    margin-top: 5px !important;
  }
}

/* Homepage mobile hero badge: keep it below the navbar */
@media (max-width: 768px) {

  body.home .hero-section,
  body.front-page .hero-section,
  body.home .home-hero,
  body.front-page .home-hero {
    padding-top: 28px !important;
  }

  body.home .hero-badge,
  body.front-page .hero-badge {
    margin-top: 12px !important;
    position: relative !important;
    top: auto !important;
    transform: none !important;
    z-index: 1 !important;
  }
}

/* Final footer full-width fix */
html,
body {
  margin: 0 !important;
  padding: 0 !important;
  overflow-x: hidden !important;
}

.site-footer,
footer,
.footer-wrapper {
  width: 100vw !important;
  max-width: 100vw !important;
  margin-left: calc(50% - 50vw) !important;
  margin-right: calc(50% - 50vw) !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  background: #102033 !important;
  border: none !important;
  box-shadow: none !important;
}

.site-footer .container,
.site-footer .footer-container,
.site-footer .footer-inner,
footer .container,
footer .footer-container,
footer .footer-inner {
  width: 100% !important;
  max-width: 1200px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  padding-left: 20px !important;
  padding-right: 20px !important;
  background: transparent !important;
}

.home .site-main,
.home main,
.home .content-wrapper,
.home .last-section,
.home .content-section:last-child {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

@media (max-width: 768px) {

  .site-footer,
  footer,
  .footer-wrapper {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
  }

  .site-footer .container,
  .site-footer .footer-container,
  .site-footer .footer-inner,
  footer .container,
  footer .footer-container,
  footer .footer-inner {
    max-width: 100% !important;
    padding-left: 18px !important;
    padding-right: 18px !important;
  }
}

/* Homepage mobile hero badge: final navbar overlap guard */
@media (max-width: 768px) {

  body.home .hero-badge,
  body.front-page .hero-badge,
  body.home .sks-hero-badge,
  body.front-page .sks-hero-badge,
  body.home .hero-section .badge,
  body.front-page .hero-section .badge,
  body.home .hero.sks-play-hero .eyebrow,
  body.front-page .hero.sks-play-hero .eyebrow {
    position: relative !important;
    top: auto !important;
    transform: none !important;
    margin-top: 16px !important;
    z-index: 1 !important;
  }

  body.home .hero-section,
  body.front-page .hero-section,
  body.home .home-hero,
  body.front-page .home-hero,
  body.home .sks-play-hero,
  body.front-page .sks-play-hero {
    padding-top: 20px !important;
  }

  body.home .site-header,
  body.front-page .site-header {
    z-index: 9999 !important;
  }
}

/* Final header top-gap reset */
html,
body {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

#page,
.site,
.site-wrapper,
.site-header,
header {
  margin-top: 0 !important;
}

.site-header {
  top: 0 !important;
}

body.admin-bar .site-header {
  top: 0 !important;
}

@media (max-width: 768px) {

  html,
  body,
  #page,
  .site,
  .site-wrapper {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

  .site-header,
  header {
    margin-top: 0 !important;
    top: 0 !important;
  }
}

/* Final admin-bar reserved-space removal for frontend header */
html {
  margin-top: 0 !important;
}

html[style] {
  margin-top: 0 !important;
}

body {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

#wpadminbar {
  display: none !important;
}

body.admin-bar {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

body.admin-bar .site-header,
body.admin-bar .site-nav,
body.admin-bar header,
.site-header,
.site-nav,
header {
  margin-top: 0 !important;
  top: 0 !important;
}

@media (max-width: 1024px) {

  html,
  html[style],
  body,
  body.admin-bar {
    margin-top: 0 !important;
    padding-top: 0 !important;
  }

  #wpadminbar {
    display: none !important;
  }

  body.admin-bar .site-header,
  body.admin-bar .site-nav,
  body.admin-bar header,
  .site-header,
  .site-nav,
  header {
    margin-top: 0 !important;
    top: 0 !important;
  }
}

/* Puppies mobile badge: keep Puppy Store below navbar without a large gap */
@media (max-width: 768px) {

  body.page-template-page-puppies .puppies-hero,
  body.page-template-page-puppies .page-hero,
  body.page-template-page-puppies .puppies-intro,
  body.page-template-page-puppies .puppies-page,
  body.page-template-page-puppies .puppies-page-head,
  body.page-template-page-puppies-php .puppies-hero,
  body.page-template-page-puppies-php .page-hero,
  body.page-template-page-puppies-php .puppies-intro,
  body.page-template-page-puppies-php .puppies-page,
  body.page-template-page-puppies-php .puppies-page-head {
    padding-top: 70px !important;
    margin-top: 0 !important;
    overflow: visible !important;
  }

  body.page-template-page-puppies .puppy-badge,
  body.page-template-page-puppies .page-badge,
  body.page-template-page-puppies .hero-badge,
  body.page-template-page-puppies .section-badge,
  body.page-template-page-puppies .puppies-page-head .eyebrow,
  body.page-template-page-puppies-php .puppy-badge,
  body.page-template-page-puppies-php .page-badge,
  body.page-template-page-puppies-php .hero-badge,
  body.page-template-page-puppies-php .section-badge,
  body.page-template-page-puppies-php .puppies-page-head .eyebrow {
    position: relative !important;
    top: auto !important;
    transform: none !important;
    margin-top: 0 !important;
    margin-bottom: 14px !important;
    z-index: 1 !important;
  }
}

/* Fix: Home mobile SKSKENNEL hero badge overlapping navbar */
@media (max-width: 768px) {

  body.home .hero-section,
  body.home .home-hero,
  body.home .sks-play-hero,
  body.front-page .hero-section,
  body.front-page .home-hero,
  body.front-page .sks-play-hero {
    padding-top: 28px !important;
    margin-top: 0 !important;
    overflow: visible !important;
  }

  body.home .hero-badge,
  body.home .sks-hero-badge,
  body.home .section-badge,
  body.home .hero-section .badge,
  body.home .hero.sks-play-hero .eyebrow,
  body.front-page .hero-badge,
  body.front-page .sks-hero-badge,
  body.front-page .section-badge,
  body.front-page .hero-section .badge,
  body.front-page .hero.sks-play-hero .eyebrow {
    position: relative !important;
    top: auto !important;
    transform: none !important;
    margin-top: 18px !important;
    margin-bottom: 18px !important;
    z-index: 2 !important;
  }

  body.home .site-header,
  body.front-page .site-header {
    z-index: 9999 !important;
  }
}

/* Final home CTA-to-footer gap and floating WhatsApp overlap fix */
body.home .home-cta,
body.front-page .home-cta,
.home .cta-section,
.home .final-cta,
.home .ready-to-choose {
  min-height: 0 !important;
  height: auto !important;
  margin-bottom: 0 !important;
  padding-bottom: 20px !important;
}

body.home .home-cta-inner,
body.front-page .home-cta-inner {
  margin-bottom: 0 !important;
}

body.home .site-wrapper,
body.home .site-main,
body.home main,
body.home .site-content,
body.home .content-wrapper,
body.home .last-section,
body.home .content-section:last-child,
body.front-page .site-wrapper,
body.front-page .site-main,
body.front-page main,
body.front-page .site-content,
body.front-page .content-wrapper,
body.front-page .last-section,
body.front-page .content-section:last-child {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.site-footer,
.footer,
footer {
  margin-top: 0 !important;
}

.chat-on-whatsapp,
.floating-whatsapp,
.whatsapp-float {
  bottom: 32px !important;
  z-index: 900 !important;
}

body.footer-in-view .chat-on-whatsapp,
body.footer-in-view .floating-whatsapp,
body.footer-in-view .whatsapp-float {
  bottom: 150px !important;
}

@media (max-width: 1024px) {

  .chat-on-whatsapp,
  .floating-whatsapp,
  .whatsapp-float {
    bottom: 90px !important;
  }

  body.footer-in-view .chat-on-whatsapp,
  body.footer-in-view .floating-whatsapp,
  body.footer-in-view .whatsapp-float {
    bottom: 150px !important;
  }
}

@media (max-width: 768px) {

  body.home .home-cta,
  body.front-page .home-cta,
  .home .cta-section,
  .home .final-cta,
  .home .ready-to-choose {
    padding-bottom: 20px !important;
  }

  .chat-on-whatsapp,
  .floating-whatsapp,
  .whatsapp-float {
    bottom: 110px !important;
  }

  body.footer-in-view .chat-on-whatsapp,
  body.footer-in-view .floating-whatsapp,
  body.footer-in-view .whatsapp-float {
    bottom: 170px !important;
  }
}

/* Puppies badge: desktop-site mobile/tablet navbar overlap guard */
@media (max-width: 1200px) {

  body.page-template-page-puppies .puppies-hero,
  body.page-template-page-puppies .page-hero,
  body.page-template-page-puppies .puppies-intro,
  body.page-template-page-puppies .puppies-page-head,
  body.page-template-page-puppies-php .puppies-hero,
  body.page-template-page-puppies-php .page-hero,
  body.page-template-page-puppies-php .puppies-intro,
  body.page-template-page-puppies-php .puppies-page-head {
    padding-top: 28px !important;
    margin-top: 0 !important;
    overflow: visible !important;
  }

  body.page-template-page-puppies .puppy-badge,
  body.page-template-page-puppies .page-badge,
  body.page-template-page-puppies .hero-badge,
  body.page-template-page-puppies .section-badge,
  body.page-template-page-puppies .puppies-page-head .eyebrow,
  body.page-template-page-puppies-php .puppy-badge,
  body.page-template-page-puppies-php .page-badge,
  body.page-template-page-puppies-php .hero-badge,
  body.page-template-page-puppies-php .section-badge,
  body.page-template-page-puppies-php .puppies-page-head .eyebrow {
    position: relative !important;
    top: auto !important;
    transform: none !important;
    margin-top: 18px !important;
    margin-bottom: 10px !important;
    z-index: 2 !important;
  }
}

/* Final sticky footer layout for short pages */
html,
body {
  min-height: 100% !important;
}

body {
  min-height: 100vh !important;
  display: flex !important;
  flex-direction: column !important;
}

.site,
#page,
.site-wrapper {
  min-height: 100vh !important;
  display: flex !important;
  flex-direction: column !important;
}

.site-main,
main,
#content,
.site-content,
.site-wrapper>main,
.site-wrapper>.page-section,
.site-wrapper>.section-block,
.site-wrapper>.hero {
  flex: 1 0 auto !important;
}

.site-footer,
footer {
  flex-shrink: 0 !important;
  margin-top: auto !important;
}

/* Final Home/Puppies top spacing match to Services on mobile and mobile desktop-site */
@media (max-width: 1200px) {

  body.home .sks-play-hero,
  body.home .home-hero,
  body.home .hero-section,
  body.front-page .sks-play-hero,
  body.front-page .home-hero,
  body.front-page .hero-section,
  body.page-template-page-puppies .puppies-hero,
  body.page-template-page-puppies .page-hero,
  body.page-template-page-puppies .puppies-intro,
  body.page-template-page-puppies .puppies-page-head,
  body.page-template-page-puppies-php .puppies-hero,
  body.page-template-page-puppies-php .page-hero,
  body.page-template-page-puppies-php .puppies-intro,
  body.page-template-page-puppies-php .puppies-page-head {
    padding-top: 42px !important;
    margin-top: 0 !important;
    overflow: visible !important;
  }

  body.home .hero-badge,
  body.home .sks-hero-badge,
  body.home .section-badge,
  body.home .hero-section .badge,
  body.home .hero.sks-play-hero .eyebrow,
  body.front-page .hero-badge,
  body.front-page .sks-hero-badge,
  body.front-page .section-badge,
  body.front-page .hero-section .badge,
  body.front-page .hero.sks-play-hero .eyebrow,
  body.page-template-page-puppies .puppy-badge,
  body.page-template-page-puppies .page-badge,
  body.page-template-page-puppies .hero-badge,
  body.page-template-page-puppies .section-badge,
  body.page-template-page-puppies .puppies-page-head .eyebrow,
  body.page-template-page-puppies-php .puppy-badge,
  body.page-template-page-puppies-php .page-badge,
  body.page-template-page-puppies-php .hero-badge,
  body.page-template-page-puppies-php .section-badge,
  body.page-template-page-puppies-php .puppies-page-head .eyebrow {
    position: relative !important;
    top: auto !important;
    transform: none !important;
    margin-top: 0 !important;
    margin-bottom: 14px !important;
    z-index: 2 !important;
  }
}

/* Final force fix: Home + Puppies badge overlapping navbar on real phone */
@media (max-width: 1200px) {

  body.home .site-header,
  body.front-page .site-header,
  body.page-template-page-puppies .site-header,
  body.page-template-page-puppies-php .site-header {
    position: relative !important;
    z-index: 9999 !important;
  }

  body.home .sks-play-hero,
  body.home .home-hero,
  body.home .hero-section,
  body.front-page .sks-play-hero,
  body.front-page .home-hero,
  body.front-page .hero-section,
  body.page-template-page-puppies .puppies-hero,
  body.page-template-page-puppies .page-hero,
  body.page-template-page-puppies .puppies-intro,
  body.page-template-page-puppies .puppies-page-head,
  body.page-template-page-puppies-php .puppies-hero,
  body.page-template-page-puppies-php .page-hero,
  body.page-template-page-puppies-php .puppies-intro,
  body.page-template-page-puppies-php .puppies-page-head {
    clear: both !important;
    padding-top: 70px !important;
    margin-top: 0 !important;
    position: relative !important;
    overflow: visible !important;
  }

  body.home .hero-badge,
  body.home .sks-hero-badge,
  body.home .section-badge,
  body.home .hero-section .badge,
  body.home .hero.sks-play-hero .eyebrow,
  body.front-page .hero-badge,
  body.front-page .sks-hero-badge,
  body.front-page .section-badge,
  body.front-page .hero-section .badge,
  body.front-page .hero.sks-play-hero .eyebrow,
  body.page-template-page-puppies .puppy-badge,
  body.page-template-page-puppies .page-badge,
  body.page-template-page-puppies .hero-badge,
  body.page-template-page-puppies .section-badge,
  body.page-template-page-puppies .puppies-page-head .eyebrow,
  body.page-template-page-puppies-php .puppy-badge,
  body.page-template-page-puppies-php .page-badge,
  body.page-template-page-puppies-php .hero-badge,
  body.page-template-page-puppies-php .section-badge,
  body.page-template-page-puppies-php .puppies-page-head .eyebrow {
    position: static !important;
    display: inline-flex !important;
    transform: none !important;
    margin-top: 0 !important;
    margin-bottom: 14px !important;
    z-index: 1 !important;
  }
}

/* Dog Breed archive sale cards */
.dog-breed-card__media {
  position: relative;
}

.dog-breed-card__sale-badges {
  position: absolute;
  inset: 12px;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  pointer-events: none;
}

.dog-breed-card__status-badge,
.dog-breed-card__price-badge {
  min-height: 34px;
  max-width: min(48%, 150px);
  padding: 8px 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid transparent;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.2);
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}

.dog-breed-card__status-badge {
  color: #1d4ed8;
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(147, 197, 253, 0.88);
}

.dog-breed-card__price-badge {
  color: #ffffff;
  background: linear-gradient(135deg, #0f2a44, #2563eb);
  border-color: rgba(219, 234, 254, 0.22);
}

.dog-breed-card--sale .dog-breed-card__body {
  gap: 14px;
}

.dog-breed-card__actions {
  width: 100%;
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px !important;
  margin-top: 2px;
}

.dog-breed-card__actions .btn,
.dog-breed-card__actions .dog-breed-card__link {
  width: 100% !important;
  min-height: 42px !important;
  margin: 0 !important;
  padding: 0 12px !important;
  border: 0 !important;
  border-radius: 12px !important;
  font-size: 0.78rem !important;
  font-weight: 900 !important;
  white-space: nowrap;
}

.dog-breed-card__actions .book-btn {
  color: #ffffff !important;
  background: linear-gradient(135deg, #0f2a44, #2563eb) !important;
  box-shadow: 0 14px 28px rgba(37, 99, 235, 0.24) !important;
}

.dog-breed-card__actions .dog-breed-card__link {
  color: #07131f !important;
  background: linear-gradient(135deg, #ff8c32, #f7c46c) !important;
}

.dog-breed-card .sale-socials,
.dog-breed-card .social-icons,
.breed-card .sale-socials,
.breed-card .social-icons,
.dog-breed-card__actions .puppy-card-social--card {
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  gap: 14px !important;
  width: 100% !important;
  margin: 18px auto 0 !important;
  text-align: center !important;
}

.dog-breed-card .sale-socials a,
.dog-breed-card .social-icons a,
.breed-card .sale-socials a,
.breed-card .social-icons a,
.dog-breed-card__actions .puppy-card-social--card a {
  margin: 0 !important;
}

.dog-breed-card__actions .puppy-card-social--card {
  grid-column: 1 / -1;
  justify-content: center !important;
  min-width: 0;
}

.dog-breed-card__actions .puppy-card-social--card {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 8px !important;
  min-width: max-content;
}

.dog-breed-card__actions .social-icon-btn,
.dog-breed-card__actions .puppy-social-button {
  width: 42px !important;
  min-width: 42px !important;
  height: 42px !important;
  min-height: 42px !important;
  flex: 0 0 42px !important;
  border-radius: 50% !important;
  box-shadow: 0 12px 22px rgba(15, 23, 42, 0.2) !important;
}

.dog-breed-card__actions .puppy-social-button svg {
  width: 19px !important;
  height: 19px !important;
}

@media (max-width: 980px) {
  .dog-breed-card__actions {
    grid-template-columns: 1fr 1fr;
  }

  .dog-breed-card__actions .puppy-card-social--card {
    grid-column: 1 / -1;
    justify-content: center !important;
  }
}

@media (max-width: 480px) {
  .dog-breed-card__sale-badges {
    inset: 10px;
  }

  .dog-breed-card__status-badge,
  .dog-breed-card__price-badge {
    max-width: 50%;
    min-height: 32px;
    padding: 7px 9px;
    font-size: 0.7rem;
  }

  .dog-breed-card__actions {
    grid-template-columns: 1fr;
  }

  .dog-breed-card__actions .puppy-card-social--card {
    grid-column: auto;
  }
}

/* Single gallery item */
.single-gallery-page {
  color: var(--ink);
  background:
    linear-gradient(180deg, rgba(246, 251, 247, 0.96), rgba(255, 255, 255, 0.98) 46%, rgba(246, 251, 247, 0.96));
}

.single-gallery-hero {
  padding: clamp(54px, 7vw, 92px) 0 32px;
}

.single-gallery-hero .container,
.single-gallery-content .container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.single-gallery-back-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 42px;
  margin-bottom: 24px;
  padding: 0 16px;
  color: #07131f;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(38, 198, 181, 0.28);
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(7, 19, 31, 0.08);
  font-size: 0.9rem;
  font-weight: 900;
  text-decoration: none;
}

.single-gallery-heading {
  width: min(860px, 100%);
}

.single-gallery-heading h1 {
  margin: 14px 0 0;
  color: #07131f;
  font-size: clamp(2.15rem, 5vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: 0;
}

.single-gallery-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.single-gallery-badge {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 13px;
  color: #0f2a44;
  background: #ffffff;
  border: 1px solid #d8e7e5;
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(7, 19, 31, 0.07);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.single-gallery-badge--gender {
  color: #07131f;
  background: linear-gradient(135deg, var(--sun), var(--teal));
  border-color: rgba(255, 212, 90, 0.8);
}

.single-gallery-content {
  padding: 0 0 clamp(64px, 8vw, 110px);
}

.single-gallery-layout {
  display: grid;
  gap: 28px;
}

.single-gallery-image-card {
  width: 100%;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(7, 19, 31, 0.08);
  border-radius: 24px;
  box-shadow: 0 28px 70px rgba(7, 19, 31, 0.14);
}

.single-gallery-image-card img {
  display: block;
  width: 100%;
  max-height: min(76vh, 820px);
  object-fit: contain;
  background: #f8fafc;
}

.single-gallery-placeholder {
  display: grid;
  place-items: center;
  min-height: clamp(260px, 48vw, 520px);
  padding: 32px;
  color: #334155;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(38, 198, 181, 0.12), rgba(255, 212, 90, 0.16)),
    #ffffff;
}

.single-gallery-placeholder strong,
.single-gallery-placeholder span {
  display: block;
}

.single-gallery-placeholder strong {
  color: #07131f;
  font-size: clamp(1.25rem, 3vw, 2rem);
  line-height: 1.2;
}

.single-gallery-placeholder span {
  margin-top: 8px;
  font-weight: 700;
}

.single-gallery-details {
  display: grid;
  gap: 20px;
  width: min(860px, 100%);
  margin: 0 auto;
  padding: clamp(24px, 4vw, 38px);
  background: #ffffff;
  border: 1px solid rgba(7, 19, 31, 0.08);
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(7, 19, 31, 0.1);
}

.single-gallery-detail-head h2 {
  margin: 10px 0 0;
  color: #07131f;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 1.15;
  letter-spacing: 0;
}

.single-gallery-description {
  color: #334155;
  font-size: 1.04rem;
  line-height: 1.75;
}

.single-gallery-description > *:first-child {
  margin-top: 0;
}

.single-gallery-description > *:last-child {
  margin-bottom: 0;
}

.single-gallery-back-button {
  width: fit-content;
}

@media (max-width: 768px) {
  .single-gallery-hero {
    padding-top: 42px;
  }

  .single-gallery-heading h1 {
    font-size: clamp(2rem, 12vw, 3.15rem);
  }

  .single-gallery-image-card {
    border-radius: 18px;
  }

  .single-gallery-image-card img {
    max-height: none;
  }

  .single-gallery-details {
    padding: 22px;
    border-radius: 16px;
  }

  .single-gallery-back-button {
    width: 100%;
  }
}
.puppy-card.is-sold-out .puppy-card-image {
  filter: grayscale(0.45);
}

.puppy-card-facts span.is-sold-out strong {
  color: #b42318;
}

.puppy-card-description {
  min-height: 2.7em;
  margin: 10px 0 0;
  color: #5b6472;
  font-size: 0.92rem;
  line-height: 1.45;
}

.puppy-gender-pill[aria-pressed="true"],
.puppy-gender-pill.is-active {
  border-color: #111827;
  background: #111827;
  color: #fff;
}

.puppy-card-actions button[disabled],
.single-pet-actions button[disabled],
.puppy-book-link.is-disabled,
.puppy-book-link[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.55;
}


@media (max-width: 560px) {
  .puppy-card-description {
    min-height: 0;
  }
}
