/* Toy Poodle Evi - Ana Stil Dosyası */
:root {
  --teal: #00ADB5;
  --teal-dark: #009199;
  --teal-light: #e8f7f8;
  --orange: #F29100;
  --orange-dark: #d97f00;
  --navy: #1A3A5A;
  --navy-light: #2d5278;
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-400: #adb5bd;
  --gray-600: #6c757d;
  --white: #ffffff;
  --shadow: 0 4px 20px rgba(26, 58, 90, 0.08);
  --shadow-lg: 0 8px 30px rgba(26, 58, 90, 0.12);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-pill: 50px;
  --font: 'Poppins', sans-serif;
  --font-script: 'Pacifico', cursive;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font);
  color: var(--navy);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color 0.2s; }
ul { list-style: none; }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== HEADER ===== */
.header {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--teal-light);
  border: 2px solid var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--teal);
  font-size: 20px;
}

.logo-text {
  font-weight: 700;
  font-size: 15px;
  line-height: 1.2;
  color: var(--navy);
  letter-spacing: 0.5px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.nav a {
  font-size: 14px;
  font-weight: 500;
  color: var(--navy);
  position: relative;
  padding: 4px 0;
}

.nav a:hover,
.nav a.active {
  color: var(--teal);
}

.nav a.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--teal);
  border-radius: 2px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: var(--radius-pill);
  font-family: var(--font);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.2s;
  white-space: nowrap;
}

.btn-teal-outline {
  background: var(--white);
  border-color: var(--teal);
  color: var(--teal);
}

.btn-teal-outline:hover {
  background: var(--teal);
  color: var(--white);
}

.btn-teal {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}

.btn-teal:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
}

.btn-orange {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}

.btn-orange:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
}

.btn-lg {
  padding: 14px 28px;
  font-size: 15px;
}

.btn-icon {
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 10px;
}

.fav-btn {
  background: none;
  border: none;
  font-size: 20px;
  color: var(--gray-400);
  cursor: pointer;
  padding: 8px;
}

.fav-btn:hover { color: #e74c3c; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: var(--navy);
  cursor: pointer;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 70px 0 90px;
  background: linear-gradient(125deg, #f3e8dc 0%, #e6f3f4 38%, #d0ecef 72%, #c5e8ec 100%);
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 25%, rgba(0, 173, 181, 0.12) 0%, transparent 42%),
    radial-gradient(circle at 85% 15%, rgba(242, 145, 0, 0.1) 0%, transparent 38%),
    radial-gradient(circle at 70% 80%, rgba(0, 173, 181, 0.08) 0%, transparent 45%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2300ADB5' fill-opacity='0.04'%3E%3Cpath d='M30 22c-2 0-3.5 1.5-3.5 3.5S28 29 30 29s3.5-1.5 3.5-3.5S32 22 30 22zm-6 8c-1.5 0-2.5 1-2.5 2.5s1 2.5 2.5 2.5 2.5-1 2.5-2.5-1-2.5-2.5-2.5zm12 0c-1.5 0-2.5 1-2.5 2.5s1 2.5 2.5 2.5 2.5-1 2.5-2.5-1-2.5-2.5-2.5z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-bg-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
}

.hero-blob-1 {
  width: 320px;
  height: 320px;
  top: -80px;
  right: 8%;
  background: rgba(0, 173, 181, 0.22);
}

.hero-blob-2 {
  width: 260px;
  height: 260px;
  bottom: -60px;
  left: 5%;
  background: rgba(242, 145, 0, 0.15);
}

.hero-blob-3 {
  width: 180px;
  height: 180px;
  top: 40%;
  left: 42%;
  background: rgba(255, 255, 255, 0.55);
}

.hero > .container {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--teal-light);
  color: var(--teal);
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
}

.hero h1 {
  font-size: 38px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy);
  margin-bottom: 8px;
}

.hero h1 .script {
  display: block;
  font-family: var(--font-script);
  font-size: 48px;
  font-weight: 400;
  color: var(--teal);
  margin-top: 4px;
}

.hero-desc {
  color: var(--gray-600);
  font-size: 15px;
  margin-bottom: 28px;
  max-width: 440px;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-trust {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--gray-600);
}

.hero-trust-item i {
  color: var(--teal);
  font-size: 18px;
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  aspect-ratio: 4/5;
  box-shadow: 0 20px 50px rgba(26, 58, 90, 0.18);
  border: 4px solid rgba(255, 255, 255, 0.85);
}

.hero-badge-float {
  position: absolute;
  bottom: 30px;
  left: -20px;
  width: 130px;
  height: 130px;
  background: var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 12px;
  border: 3px solid var(--teal-light);
}

.hero-badge-float i {
  font-size: 28px;
  color: var(--teal);
  margin-bottom: 4px;
}

.hero-badge-float span {
  font-size: 9px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  letter-spacing: 0.3px;
}

.hero-slider {
  position: relative;
  z-index: 1;
}

.hero-slide {
  display: none;
  animation: heroFade 0.55s ease;
}

.hero-slide.is-active {
  display: block;
}

@keyframes heroFade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero-nav {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.9);
  border-radius: 999px;
  padding: 6px 10px;
  box-shadow: 0 8px 24px rgba(15, 39, 68, 0.12);
}

.hero-nav-btn {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(15, 39, 68, 0.08);
}

.hero-nav-btn:hover {
  background: var(--teal);
  color: #fff;
}

.hero-dots {
  display: flex;
  gap: 6px;
  align-items: center;
}

.hero-dot {
  width: 8px;
  height: 8px;
  border: 0;
  border-radius: 50%;
  background: rgba(21, 42, 64, 0.25);
  padding: 0;
  cursor: pointer;
}

.hero-dot.is-active {
  width: 22px;
  border-radius: 999px;
  background: var(--teal);
}

/* ===== SECTION COMMON ===== */
.section {
  padding: 70px 0;
}

.section-gray {
  background: var(--gray-100);
}

.section-header {
  text-align: center;
  margin-bottom: 48px;
}

.section-header.row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  text-align: left;
  flex-wrap: wrap;
  gap: 16px;
}

.section-paw {
  color: var(--teal);
  font-size: 22px;
  margin: 0;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.5px;
  margin: 0;
  line-height: 1.2;
}

.section-header:not(.row) .section-title {
  justify-content: center;
}

.section-header.row .section-title,
.category-listings-head .section-title,
.cms-page-head .section-title,
.contact-page-head .section-title,
.reviews-page-head .section-title {
  justify-content: flex-start;
}

.section-subtitle {
  color: var(--gray-600);
  font-size: 14px;
  margin-top: 8px;
}

.link-arrow {
  color: var(--teal);
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.link-arrow:hover { color: var(--teal-dark); }

/* ===== BREEDS GRID ===== */
.breeds-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}

.breed-card {
  background: var(--gray-100);
  border-radius: var(--radius);
  overflow: hidden;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}

.breed-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.breed-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.breed-card h3 {
  font-size: 13px;
  font-weight: 600;
  padding: 12px 8px 4px;
  color: var(--navy);
}

.breed-card .link-arrow {
  font-size: 11px;
  padding: 0 8px 14px;
  display: block;
}

.category-page-section {
  padding-top: 28px;
}

.category-page-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.category-filters {
  position: sticky;
  top: 90px;
  max-height: calc(100vh - 110px);
  overflow-y: auto;
}

.category-filters .filter-panel {
  margin-bottom: 0;
}

.category-main {
  min-width: 0;
}

.filter-panel-backdrop {
  display: none;
}

.filter-panel-sheet-title {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
}

.filter-panel-sheet-title i { color: var(--teal); }

.filter-panel-head-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.filter-panel-close {
  display: none;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin: 0;
  padding: 0;
  border: 1px solid var(--gray-200, #e2e8f0);
  border-radius: 10px;
  background: var(--white);
  color: var(--navy);
  cursor: pointer;
  flex-shrink: 0;
}

.filter-panel-close:hover {
  border-color: var(--teal);
  color: var(--teal);
}

.filter-active-count {
  display: none;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--teal);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}

.filter-panel-toggle-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.category-hero-block {
  margin-bottom: 28px;
  text-align: left;
}

.category-hero-compact {
  margin-bottom: 18px;
}

.category-puppies-grid {
  grid-template-columns: repeat(4, 1fr);
}

.category-desc-below {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(21, 42, 64, 0.1);
}

.category-breadcrumb {
  margin: 0 0 10px;
  font-size: 13px;
  color: var(--text-muted, #64748b);
}

.category-breadcrumb a {
  color: var(--teal, #00ADB5);
  text-decoration: none;
}

.category-title {
  text-align: left;
  margin-bottom: 8px;
}

.category-lead {
  text-align: left;
  margin: 0 0 16px;
}

.category-desc {
  max-width: none;
  margin: 0;
  color: var(--text, #1e293b);
  line-height: 1.7;
  text-align: left;
}

.category-desc h1,
.category-desc h2 {
  font-size: 22px;
  margin: 18px 0 10px;
  color: var(--navy, #152a40);
}

.category-desc p { margin: 0 0 12px; }

.category-listings-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 16px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.category-listings-head .section-title,
.category-listings-head .section-subtitle {
  text-align: left;
}

.filter-options a.filter-check {
  display: block;
  text-decoration: none;
  color: inherit;
}

.filter-muted {
  display: block;
  font-size: 12px;
  color: #94a3b8;
  padding: 4px 0;
}

@media (max-width: 900px) {
  .category-page-layout {
    display: flex;
    flex-direction: column;
    grid-template-columns: 1fr;
  }

  .category-filters {
    position: sticky;
    top: 72px;
    z-index: 40;
    max-height: none;
    overflow: visible;
    margin-bottom: 12px;
    order: -1;
  }

  .category-filters .filter-panel {
    padding: 0;
    background: transparent;
    box-shadow: none;
    border-radius: 0;
  }

  .category-filters .filter-panel-toggle {
    display: flex;
    width: 100%;
    cursor: pointer;
    padding: 12px 14px;
    border-radius: 12px;
    background: var(--white);
    box-shadow: var(--shadow);
    border: 1px solid rgba(21, 42, 64, 0.08);
  }

  .category-filters .filter-panel-toggle-icon {
    display: inline-block;
  }

  .category-filters .filter-panel-toggle .filter-panel-toggle-label {
    flex: 1;
  }

  .category-filters .filter-active-count:not([hidden]) {
    display: inline-flex;
    margin-right: 4px;
  }

  .category-filters .filter-panel-sheet-title {
    display: flex;
  }

  .category-filters .filter-panel-close {
    display: inline-flex;
  }

  .category-filters .filter-panel:not(.is-expanded) .filter-panel-sheet {
    display: none;
  }

  .category-filters .filter-panel-backdrop {
    display: none;
  }

  .category-filters .filter-panel.is-expanded .filter-panel-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 1090;
    background: rgba(15, 23, 42, 0.45);
    border: 0;
    padding: 0;
    margin: 0;
    cursor: pointer;
  }

  .category-filters .filter-panel.is-expanded .filter-panel-sheet {
    display: flex;
    flex-direction: column;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1100;
    max-height: min(88vh, 720px);
    padding: 16px 16px calc(16px + env(safe-area-inset-bottom, 0px));
    background: var(--white);
    border-radius: 18px 18px 0 0;
    box-shadow: 0 -12px 40px rgba(15, 23, 42, 0.18);
    overflow: hidden;
  }

  .category-filters .filter-panel.is-expanded .filter-panel-head {
    margin-bottom: 12px;
    flex-shrink: 0;
  }

  .category-filters .filter-panel.is-expanded .filter-panel-body {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-right: 2px;
    min-height: 0;
  }

  .category-filters .filter-panel.is-expanded .filter-panel-toggle-icon {
    transform: none;
  }

  body.filters-sheet-open {
    overflow: hidden;
    touch-action: none;
  }
}

/* ===== LISTING FILTERS (e-commerce) ===== */
.listings-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 24px;
  align-items: start;
}

.listing-filters {
  position: sticky;
  top: 90px;
}

.filter-panel {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
}

.filter-panel-sheet {
  display: block;
}

.filter-panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.filter-panel-toggle {
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex: 1;
  min-width: 0;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  font: inherit;
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  cursor: default;
  text-align: left;
}

.filter-panel-toggle span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.filter-panel-toggle i { color: var(--teal); }

.filter-panel-toggle-icon {
  display: none;
  width: 18px;
  text-align: center;
  flex-shrink: 0;
}

@media (min-width: 901px) {
  .filter-panel-toggle,
  .filter-panel-backdrop,
  .filter-panel-close,
  .filter-active-count {
    display: none !important;
  }

  .filter-panel-sheet-title {
    display: flex;
  }
}

.filter-panel h3 {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
}

.filter-panel h3 i { color: var(--teal); }

.filter-clear {
  width: auto;
  margin-bottom: 0;
  padding: 6px 12px;
  border: 1px dashed var(--gray-300);
  background: var(--gray-50);
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-600);
  cursor: pointer;
  transition: all 0.15s;
  flex-shrink: 0;
  white-space: nowrap;
}

.filter-clear:hover {
  border-color: var(--teal);
  color: var(--teal);
  background: var(--teal-light);
}

.filter-group {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--gray-100);
}

.filter-group:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.filter-group h4,
.filter-group-toggle {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray-600);
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  cursor: pointer;
  user-select: none;
  padding: 4px 0;
}

.filter-group-toggle span {
  min-width: 0;
}

.filter-group-toggle i {
  font-size: 12px;
  color: var(--teal);
  flex-shrink: 0;
  width: 18px;
  text-align: center;
}

.filter-group h4 small {
  font-weight: 500;
  text-transform: none;
  letter-spacing: 0;
  color: var(--gray-400);
}

.filter-options {
  display: none;
  flex-direction: column;
  gap: 8px;
  margin-top: 10px;
}

.filter-group.is-open .filter-options {
  display: flex;
}

.filter-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--gray-700);
  cursor: pointer;
  margin: 0;
}

.filter-check input {
  accent-color: var(--teal);
  width: 16px;
  height: 16px;
}

.listings-result-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 13px;
  color: var(--gray-600);
  margin-bottom: 14px;
  font-weight: 500;
}

.category-puppies-grid.cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

.category-puppies-grid.cols-4 {
  grid-template-columns: repeat(4, 1fr);
}

.listings-empty {
  text-align: center;
  padding: 40px 20px;
  color: var(--gray-500);
  font-size: 15px;
}

/* ===== PUPPY CARDS ===== */
.puppies-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.home-puppies-grid,
.category-puppies-grid {
  grid-template-columns: repeat(4, 1fr);
}

.puppy-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.puppy-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.puppy-card-image {
  position: relative;
}

.puppy-card-image img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.tag {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 600;
  color: var(--white);
}

.tag-new { background: var(--teal); }
.tag-popular { background: var(--orange); }
.tag-featured { background: #152a40; }

.featured-slider {
  position: relative;
  padding: 0 40px 8px;
  overflow: hidden;
}

.featured-viewport {
  overflow: hidden;
}

.featured-track {
  display: flex;
  gap: 18px;
  transition: transform 0.45s ease;
  will-change: transform;
  align-items: stretch;
}

.featured-slider .featured-slide {
  flex: 0 0 calc((100% - 54px) / 4);
  min-width: 0;
  box-sizing: border-box;
}

.featured-slider .featured-slide .tag:not(.tag-featured) {
  top: 42px;
}

.featured-nav {
  position: absolute;
  top: 38%;
  transform: translateY(-50%);
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: var(--teal, #00ADB5);
  color: #fff;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  font-size: 12px;
}

.featured-nav:hover { background: var(--navy, #152a40); }
.featured-nav:disabled { opacity: 0.35; cursor: default; }
.featured-prev { left: 0; }
.featured-next { right: 0; }

.featured-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 16px;
}

.featured-dots button {
  width: 7px;
  height: 7px;
  border: none;
  border-radius: 50%;
  background: #cbd5e1;
  padding: 0;
  cursor: pointer;
}

.featured-dots button.is-active {
  background: var(--teal, #00ADB5);
  width: 18px;
  border-radius: 999px;
}

.wishlist-btn {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  background: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  font-size: 14px;
}

.wishlist-btn:hover { color: #e74c3c; }

.puppy-card-body {
  padding: 16px;
}

.puppy-card-body h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--navy);
}

.puppy-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  margin-bottom: 10px;
}

.puppy-meta span {
  font-size: 12px;
  color: var(--gray-600);
  display: flex;
  align-items: center;
  gap: 5px;
}

.puppy-meta span i { color: var(--teal); font-size: 11px; }

.puppy-meta .full { grid-column: 1 / -1; }

.puppy-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 14px;
}

.puppy-card-actions {
  display: flex;
  gap: 8px;
}

.puppy-card-actions .btn { flex: 1; font-size: 12px; padding: 8px 12px; }

/* ===== WHY US ===== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
  align-items: center;
}

.why-content h2 {
  font-size: 30px;
  font-weight: 700;
  color: var(--teal);
  margin-bottom: 16px;
  line-height: 1.3;
}

.why-content h2 span { color: var(--navy); }

.why-content p {
  color: var(--gray-600);
  font-size: 14px;
  margin-bottom: 24px;
  line-height: 1.7;
}

.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.feature-box {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

.feature-box i {
  font-size: 28px;
  color: var(--teal);
  margin-bottom: 12px;
}

.feature-box h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--navy);
}

.feature-box p {
  font-size: 12px;
  color: var(--gray-600);
  line-height: 1.6;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.reviews-page {
  padding-top: 28px;
}

.blog-detail-wrap {
  padding: 32px 20px 20px;
}

.blog-detail-wrap .blog-layout {
  padding-top: 12px;
  padding-bottom: 40px;
}

.blog-detail-article {
  margin: 0;
}

.blog-detail-cover {
  width: 100%;
  max-height: 420px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 20px;
  display: block;
}

.blog-detail-title {
  margin: 0 0 18px;
  font-size: 28px;
  color: var(--navy, #152a40);
  line-height: 1.3;
}

.cms-page {
  padding-top: 28px;
}

.cms-page-head {
  margin-bottom: 22px;
  text-align: left;
}

.cms-page-head .section-title {
  text-align: left;
  margin-bottom: 0;
}

.cms-layout {
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

.cms-sidebar {
  position: sticky;
  top: 96px;
}

.cms-page-nav li.is-active a {
  color: var(--teal);
  font-weight: 700;
}

.cms-page-content {
  background: var(--white);
  border: 1px solid rgba(21, 42, 64, 0.08);
  border-radius: var(--radius);
  padding: 28px 32px;
  box-shadow: 0 2px 10px rgba(26, 58, 90, 0.05);
  color: #334155;
  line-height: 1.75;
  font-size: 15px;
}

.cms-page-content h2 {
  margin: 22px 0 10px;
  font-size: 20px;
  color: var(--navy, #152a40);
}

.cms-page-content p {
  margin: 0 0 14px;
}

.cms-page-content ul {
  margin: 0 0 16px 20px;
  padding: 0;
}

.wa-float {
  position: fixed;
  right: 20px;
  bottom: 22px;
  z-index: 1200;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45);
  transition: transform 0.2s, box-shadow 0.2s;
}

.wa-float:hover {
  color: #fff;
  transform: translateY(-2px) scale(1.04);
  box-shadow: 0 10px 28px rgba(37, 211, 102, 0.55);
}

body.hide-wa-float .wa-float {
  display: none;
}

.detail-sticky-cta {
  display: none;
}

@media (max-width: 900px) {
  .detail-sticky-cta {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 10px;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1150;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.96);
    border-top: 1px solid rgba(21, 42, 64, 0.1);
    box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.08);
  }

  .detail-sticky-cta .btn {
    width: 100%;
    justify-content: center;
    white-space: nowrap;
  }

  body.hide-wa-float {
    padding-bottom: 74px;
  }
}

.cms-page-lead {
  text-align: left;
  margin: 8px 0 0;
}

.faq-page {
  padding-top: 8px;
}

.faq-section {
  margin-bottom: 28px;
}

.faq-section:last-child {
  margin-bottom: 0;
}

.faq-section h2 {
  margin: 0 0 14px;
  font-size: 18px;
  color: var(--navy, #152a40);
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq-item {
  border: 1px solid rgba(21, 42, 64, 0.1);
  border-radius: 12px;
  background: #f8fafc;
  overflow: hidden;
}

.faq-item[open] {
  background: #fff;
  border-color: rgba(0, 173, 181, 0.35);
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 14px 44px 14px 16px;
  font-weight: 600;
  font-size: 14px;
  color: var(--navy, #152a40);
  position: relative;
  line-height: 1.45;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--teal, #00ADB5);
  font-size: 18px;
  font-weight: 700;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-answer {
  padding: 0 16px 16px;
  color: #475569;
  font-size: 14px;
  line-height: 1.7;
}

.faq-answer p {
  margin: 0;
}

.cms-page-content li {
  margin-bottom: 8px;
}

.cms-page-content a {
  color: var(--teal, #00ADB5);
  text-decoration: none;
  font-weight: 600;
}

.cms-page-content a:hover {
  text-decoration: underline;
}

.contact-page {
  padding-top: 28px;
}

.contact-page-head {
  margin-bottom: 28px;
  text-align: left;
}

.contact-page-head .section-title,
.contact-page-head .section-subtitle {
  text-align: left;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-bottom: 28px;
}

.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  background: var(--white);
  border: 1px solid rgba(21, 42, 64, 0.08);
  border-radius: var(--radius);
  padding: 16px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 2px 10px rgba(26, 58, 90, 0.05);
  min-height: 96px;
}

.contact-info-card i {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(0, 173, 181, 0.12);
  color: var(--teal, #00ADB5);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-card h3 {
  margin: 0 0 4px;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy, #152a40);
}

.contact-info-card p {
  margin: 0;
  font-size: 13px;
  color: #64748b;
  line-height: 1.45;
}

.contact-form-wrap {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 20px;
  align-items: stretch;
}

.contact-form-card {
  background: var(--white);
  border: 1px solid rgba(21, 42, 64, 0.08);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: 0 2px 10px rgba(26, 58, 90, 0.05);
}

.contact-visual {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  min-height: 420px;
  box-shadow: 0 2px 10px rgba(26, 58, 90, 0.08);
  background: #e8eef4;
}

.contact-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.contact-visual-caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 18px 20px;
  background: linear-gradient(transparent, rgba(21, 42, 64, 0.82));
  color: #fff;
}

.contact-visual-caption strong {
  display: block;
  font-size: 16px;
  margin-bottom: 4px;
}

.contact-visual-caption span {
  display: block;
  font-size: 13px;
  opacity: 0.92;
  line-height: 1.4;
}

.contact-form-card h2 {
  margin: 0 0 6px;
  font-size: 20px;
  color: var(--navy, #152a40);
}

.contact-form-lead {
  margin: 0 0 18px;
  font-size: 13px;
  color: #64748b;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form-grid .full {
  grid-column: 1 / -1;
}

.contact-page .form-label {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy, #152a40);
}

.contact-page .form-control {
  width: 100%;
  border: 1px solid #dbe3ee;
  border-radius: 10px;
  padding: 10px 12px;
  font: inherit;
  color: #1e293b;
  background: #fff;
}

.contact-page .form-control:focus {
  outline: none;
  border-color: var(--teal, #00ADB5);
  box-shadow: 0 0 0 3px rgba(0, 173, 181, 0.15);
}

.contact-page textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.contact-form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.contact-alert {
  display: block;
  border-radius: 10px;
  padding: 12px 14px;
  margin-bottom: 14px;
  font-size: 13px;
}

.contact-alert-ok {
  background: #ecfdf5;
  color: #047857;
}

.contact-alert-err {
  background: #fef2f2;
  color: #b91c1c;
}

.reviews-page-head {
  margin-bottom: 28px;
  text-align: left;
}

.reviews-page-head .section-title,
.reviews-page-head .section-subtitle {
  text-align: left;
}

.reviews-count {
  margin: 8px 0 0;
  font-size: 13px;
  color: var(--teal, #00ADB5);
  font-weight: 600;
}

.reviews-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.reviews-page-grid .review-card {
  display: flex;
  flex-direction: column;
  min-height: 220px;
  padding: 18px;
  background: var(--white);
  border: 1px solid rgba(21, 42, 64, 0.08);
  box-shadow: 0 2px 10px rgba(26, 58, 90, 0.06);
}

.reviews-page-grid .testimonial-header {
  margin-bottom: 10px;
}

.reviews-page-grid .testimonial-user {
  align-items: flex-start;
  gap: 10px;
  width: 100%;
  min-width: 0;
}

.reviews-page-grid .testimonial-user img {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

.reviews-page-grid .testimonial-user-meta {
  min-width: 0;
  flex: 1;
}

.reviews-page-grid .testimonial-user h4 {
  font-size: 14px;
  margin: 0 0 2px;
  color: var(--navy, #152a40);
}

.reviews-page-grid .testimonial-user span {
  display: block;
  font-size: 12px;
  margin-bottom: 4px;
}

.reviews-page-grid .stars {
  display: flex;
  flex-wrap: nowrap;
  gap: 2px;
  font-size: 11px;
  line-height: 1;
  white-space: nowrap;
}

.reviews-page-grid .testimonial-text {
  flex: 1;
  font-size: 13px;
  font-style: normal;
  line-height: 1.6;
  color: #475569;
  margin: 0;
}

.reviews-page-grid .testimonial-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 14px;
  min-height: 44px;
}

.reviews-page-grid .testimonial-puppy {
  position: static;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  object-fit: cover;
}

.testimonials-slider {
  position: relative;
  padding: 0 40px 8px;
  overflow: hidden;
}

.testimonials-viewport {
  overflow: hidden;
}

.testimonials-track {
  display: flex;
  gap: 14px;
  transition: transform 0.45s ease;
  will-change: transform;
  align-items: stretch;
}

.testimonials-slider .testimonials-slide {
  flex: 0 0 calc((100% - 42px) / 4);
  min-width: 0;
  box-sizing: border-box;
}

.testimonials-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-70%);
  width: 34px;
  height: 34px;
  border: none;
  border-radius: 50%;
  background: var(--teal, #00ADB5);
  color: #fff;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  transition: opacity 0.2s, background 0.2s;
  font-size: 12px;
}

.testimonials-nav:hover { background: var(--navy, #152a40); }
.testimonials-nav:disabled {
  opacity: 0.35;
  cursor: default;
}

.testimonials-prev { left: 0; }
.testimonials-next { right: 0; }

.testimonials-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 14px;
}

.testimonials-dots button {
  width: 7px;
  height: 7px;
  border: none;
  border-radius: 50%;
  background: #cbd5e1;
  padding: 0;
  cursor: pointer;
}

.testimonials-dots button.is-active {
  background: var(--teal, #00ADB5);
  width: 18px;
  border-radius: 999px;
}

.testimonial-card {
  background: var(--gray-100);
  border-radius: var(--radius);
  padding: 24px;
  position: relative;
}

.testimonials-slider .testimonial-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 220px;
  padding: 16px;
  background: var(--white);
  border: 1px solid rgba(21, 42, 64, 0.08);
  box-shadow: 0 2px 10px rgba(26, 58, 90, 0.06);
}

.testimonials-slider .testimonial-header {
  margin-bottom: 10px;
}

.testimonials-slider .testimonial-user {
  align-items: flex-start;
  gap: 10px;
  width: 100%;
  min-width: 0;
}

.testimonials-slider .testimonial-user img {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
}

.testimonials-slider .testimonial-user-meta {
  min-width: 0;
  flex: 1;
}

.testimonials-slider .testimonial-user h4 {
  font-size: 13px;
  font-weight: 700;
  margin: 0 0 2px;
  color: var(--navy, #152a40);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.testimonials-slider .testimonial-user span {
  display: block;
  font-size: 11px;
  color: var(--gray-600);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 4px;
}

.testimonials-slider .stars {
  display: flex;
  flex-wrap: nowrap;
  gap: 2px;
  font-size: 11px;
  line-height: 1;
  white-space: nowrap;
}

.testimonials-slider .testimonial-text {
  flex: 1;
  font-size: 12px;
  font-style: normal;
  line-height: 1.55;
  color: #475569;
  margin: 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  overflow: hidden;
}

.testimonials-slider .testimonial-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 12px;
  min-height: 40px;
}

.testimonials-slider .testimonial-puppy {
  position: static;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
}

.testimonial-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-user img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.testimonial-user h4 {
  font-size: 14px;
  font-weight: 700;
}

.testimonial-user span {
  font-size: 12px;
  color: var(--gray-600);
}

.stars {
  color: var(--orange);
  font-size: 13px;
}

.testimonial-text {
  font-size: 13px;
  color: var(--gray-600);
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 16px;
}

.testimonial-puppy {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 56px;
  height: 56px;
  border-radius: 8px;
  object-fit: cover;
}

/* ===== BLOG CARDS ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.blog-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform 0.2s;
}

.blog-card:hover { transform: translateY(-4px); }

.blog-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.blog-card-body {
  padding: 18px;
}

.blog-card-body h3 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--navy);
  line-height: 1.4;
}

.blog-card-body p {
  font-size: 12px;
  color: var(--gray-600);
  margin-bottom: 12px;
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-date {
  font-size: 11px;
  color: var(--gray-400);
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--gray-100);
  padding: 40px 0;
  border-top: 1px solid var(--gray-200);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.trust-grid-5 {
  grid-template-columns: repeat(5, 1fr);
}

.trust-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.trust-item i {
  font-size: 28px;
  color: var(--teal);
  flex-shrink: 0;
  margin-top: 2px;
}

.trust-item h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 4px;
  color: var(--navy);
}

.trust-item p {
  font-size: 12px;
  color: var(--gray-600);
  line-height: 1.5;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--white);
  padding: 60px 0 0;
  border-top: 1px solid var(--gray-200);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.1fr 1fr 1.1fr 1.1fr;
  gap: 28px;
  margin-bottom: 40px;
}

.footer-cities {
  max-height: 220px;
  overflow: auto;
}

.footer-about p {
  font-size: 13px;
  color: var(--gray-600);
  margin: 16px 0;
  line-height: 1.7;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--teal-light);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: background 0.2s;
}

.social-links a:hover {
  background: var(--teal);
  color: var(--white);
}

.footer h4 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--navy);
}

.footer-links li { margin-bottom: 10px; }

.footer-links a {
  font-size: 13px;
  color: var(--gray-600);
}

.footer-links a:hover { color: var(--teal); }

.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--gray-600);
  margin-bottom: 12px;
}

.footer-contact i {
  color: var(--teal);
  margin-top: 3px;
  width: 16px;
}

.newsletter-form {
  display: flex;
  margin-top: 12px;
}

.newsletter-form input {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-pill) 0 0 var(--radius-pill);
  font-family: var(--font);
  font-size: 13px;
  outline: none;
}

.newsletter-form input:focus { border-color: var(--teal); }

.newsletter-form button {
  background: var(--teal);
  color: var(--white);
  border: none;
  padding: 10px 16px;
  border-radius: 0 var(--radius-pill) var(--radius-pill) 0;
  cursor: pointer;
  font-size: 14px;
}

.footer-bottom {
  border-top: 1px solid var(--gray-200);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 12px;
  color: var(--gray-600);
}

.footer-legal {
  display: flex;
  gap: 16px;
}

.footer-legal a {
  font-size: 12px;
  color: var(--gray-600);
}

.footer-legal a:hover { color: var(--teal); }

/* ===== DETAIL PAGE ===== */
.breadcrumb {
  padding: 20px 0;
  font-size: 13px;
  color: var(--gray-600);
}

.breadcrumb a:hover { color: var(--teal); }
.breadcrumb span { margin: 0 8px; color: var(--gray-400); }

.detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.gallery-main {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  margin-bottom: 12px;
}

.gallery-main img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  cursor: zoom-in;
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(10, 18, 28, 0.92);
  padding: 24px;
}

.gallery-lightbox.is-open {
  display: flex;
}

body.lightbox-open {
  overflow: hidden;
}

.gallery-lightbox-stage {
  position: relative;
  max-width: min(960px, 100%);
  max-height: 90vh;
}

.gallery-lightbox-stage img {
  display: block;
  max-width: 100%;
  max-height: 85vh;
  width: auto;
  height: auto;
  margin: 0 auto;
  border-radius: 12px;
  object-fit: contain;
  cursor: default;
}

.gallery-lightbox-counter {
  position: absolute;
  left: 50%;
  bottom: -36px;
  transform: translateX(-50%);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.gallery-lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  z-index: 2;
}

.gallery-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.22);
}

.gallery-lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-size: 18px;
  cursor: pointer;
  z-index: 2;
}

.gallery-lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.28);
}

.gallery-lightbox-nav.prev { left: 16px; }
.gallery-lightbox-nav.next { right: 16px; }

@media (max-width: 700px) {
  .gallery-lightbox-nav.prev { left: 8px; }
  .gallery-lightbox-nav.next { right: 8px; }
  .gallery-lightbox-close { top: 10px; right: 10px; }
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.9);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 14px;
  color: var(--navy);
  box-shadow: var(--shadow);
}

.gallery-nav.prev { left: 12px; }
.gallery-nav.next { right: 12px; }

.gallery-counter {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(0,0,0,0.6);
  color: var(--white);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 12px;
}

.gallery-thumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}

.gallery-thumbs img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  border: 2px solid transparent;
  opacity: 0.7;
}

.gallery-thumbs img.active,
.gallery-thumbs img:hover {
  border-color: var(--teal);
  opacity: 1;
}

.detail-info h1 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.detail-stats {
  display: flex;
  gap: 24px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.detail-stats span {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--gray-600);
}

.detail-stats i { color: var(--teal); }

.detail-price {
  font-size: 32px;
  font-weight: 700;
  color: var(--orange);
  margin-bottom: 20px;
}

.guarantee-box {
  background: var(--teal-light);
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
}

.guarantee-box i {
  font-size: 24px;
  color: var(--teal);
}

.guarantee-box strong {
  font-size: 14px;
  display: block;
}

.detail-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}

.detail-actions .btn { width: 100%; }

.detail-actions-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.detail-trust-icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.detail-trust-item {
  text-align: center;
  padding: 12px 8px;
  background: var(--gray-100);
  border-radius: var(--radius);
}

.detail-trust-item i {
  font-size: 20px;
  color: var(--teal);
  margin-bottom: 6px;
  display: block;
}

.detail-trust-item span {
  font-size: 10px;
  color: var(--gray-600);
  line-height: 1.3;
  display: block;
}

.detail-content-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.detail-section h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--navy);
  letter-spacing: 0.5px;
}

.detail-section p {
  font-size: 14px;
  color: var(--gray-600);
  line-height: 1.8;
  margin-bottom: 24px;
}

.specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.spec-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--gray-200);
  font-size: 13px;
}

.spec-item span:first-child { color: var(--gray-600); }
.spec-item span:last-child { font-weight: 600; }

.health-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--gray-600);
  margin-bottom: 10px;
}

.health-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.detail-description,
.page-content {
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray-600);
}

.detail-description p,
.page-content p {
  margin-bottom: 0.75em;
}

.health-list i { color: #27ae60; }

.health-record {
  background: var(--teal-light);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
  margin-top: 20px;
}

.health-record i {
  font-size: 40px;
  color: var(--teal);
  margin-bottom: 12px;
}

.service-boxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 60px;
}

.service-box {
  background: var(--gray-100);
  border-radius: var(--radius);
  padding: 30px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  align-items: center;
}

.service-box h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 10px;
}

.service-box p {
  font-size: 13px;
  color: var(--gray-600);
  margin-bottom: 16px;
  line-height: 1.6;
}

.service-box img {
  border-radius: var(--radius);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.service-checklist li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--gray-600);
  margin-bottom: 8px;
}

.service-checklist i { color: var(--teal); }

/* ===== BLOG PAGE ===== */
.blog-hero {
  background: linear-gradient(135deg, #f5ebe0 0%, #e8f4f5 100%);
  padding: 60px 0;
}

.blog-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.blog-hero h1 {
  font-size: 48px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.blog-hero .script {
  font-family: var(--font-script);
  font-size: 22px;
  color: var(--orange);
  margin-bottom: 16px;
  display: block;
}

.blog-hero p {
  font-size: 14px;
  color: var(--gray-600);
  margin-bottom: 24px;
  line-height: 1.7;
}

.search-bar {
  display: flex;
  background: var(--white);
  border-radius: var(--radius-pill);
  overflow: hidden;
  box-shadow: var(--shadow);
  max-width: 400px;
}

.search-bar input {
  flex: 1;
  border: none;
  padding: 14px 20px;
  font-family: var(--font);
  font-size: 14px;
  outline: none;
}

.search-bar button {
  background: none;
  border: none;
  padding: 0 20px;
  color: var(--gray-400);
  cursor: pointer;
  font-size: 16px;
}

.featured-post {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.featured-post > img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.featured-card {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: var(--white);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow-lg);
}

.featured-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--teal);
  margin-bottom: 6px;
}

.featured-card h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
}

.featured-card p {
  font-size: 12px;
  color: var(--gray-600);
  margin-bottom: 12px;
  line-height: 1.5;
}

.blog-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  padding: 60px 0;
}

.blog-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
}

.blog-controls h2 {
  font-size: 22px;
  font-weight: 700;
}

.blog-controls-right {
  display: flex;
  align-items: center;
  gap: 12px;
}

.blog-controls select {
  padding: 8px 14px;
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  font-family: var(--font);
  font-size: 13px;
  outline: none;
}

.view-toggle {
  display: flex;
  gap: 4px;
}

.view-toggle button {
  width: 36px;
  height: 36px;
  border: 1px solid var(--gray-200);
  background: var(--white);
  border-radius: 8px;
  cursor: pointer;
  color: var(--gray-600);
}

.view-toggle button.active {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}

.blog-posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.blog-posts-grid.is-list {
  grid-template-columns: 1fr;
}

.blog-posts-grid.is-list .blog-post-card {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  align-items: stretch;
}

.blog-posts-grid.is-list .blog-post-image img {
  aspect-ratio: 4/3;
  height: 100%;
  min-height: 160px;
}

.blog-posts-grid.is-list .blog-post-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-post-card {
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  transition: transform 0.2s;
}

.blog-post-card:hover { transform: translateY(-4px); }

.blog-post-image {
  position: relative;
}

.blog-post-image img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.category-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 600;
  color: var(--white);
}

.cat-breed { background: var(--teal); }
.cat-health { background: #3498db; }
.cat-care { background: #2ecc71; }
.cat-training { background: #9b59b6; }

.blog-post-body { padding: 18px; }

.blog-post-meta {
  font-size: 11px;
  color: var(--gray-400);
  margin-bottom: 10px;
  display: flex;
  gap: 12px;
}

.blog-post-body h3 {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.4;
  color: var(--navy);
}

.blog-post-body p {
  font-size: 12px;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 12px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ===== SIDEBAR ===== */
.sidebar-widget {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  margin-bottom: 24px;
  box-shadow: var(--shadow);
}

.sidebar-widget h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 18px;
  color: var(--navy);
}

.category-list li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-200);
  font-size: 13px;
}

.category-list a { color: var(--gray-600); }
.category-list a:hover { color: var(--teal); }
.category-list span { color: var(--gray-400); font-size: 12px; }

.expert-box {
  background: var(--teal-light);
  text-align: center;
}

.expert-box i {
  font-size: 36px;
  color: var(--teal);
  margin-bottom: 12px;
}

.expert-box p {
  font-size: 13px;
  color: var(--gray-600);
  margin-bottom: 16px;
  line-height: 1.6;
}

.popular-post {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.popular-post img {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.popular-post-info h4 {
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 2px;
}

.popular-post-info span {
  font-size: 11px;
  color: var(--gray-400);
}

.popular-num {
  width: 24px;
  height: 24px;
  background: var(--teal);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .puppies-grid,
  .home-puppies-grid,
  .category-puppies-grid.cols-4 { grid-template-columns: repeat(3, 1fr); }
  .category-puppies-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
  .featured-slider .featured-slide { flex: 0 0 calc((100% - 36px) / 3); }
  .breeds-grid { grid-template-columns: repeat(3, 1fr); }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-info-grid { grid-template-columns: repeat(3, 1fr); }
  .trust-grid-5 { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 900px) {
  .puppies-grid,
  .home-puppies-grid,
  .category-puppies-grid.cols-3,
  .category-puppies-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
  .featured-slider .featured-slide { flex: 0 0 calc((100% - 18px) / 2); }
  .reviews-page-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-info-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-form-wrap { grid-template-columns: 1fr; }
  .contact-visual { min-height: 280px; max-height: 340px; }
  .contact-form-grid { grid-template-columns: 1fr; }
  .header-inner { position: relative; }
  .nav { display: none; }
  .nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px;
    box-shadow: var(--shadow);
    gap: 16px;
    z-index: 1001;
  }
  .menu-toggle { display: block; }
  .hero-grid,
  .why-grid,
  .detail-grid,
  .detail-content-grid,
  .blog-hero-grid,
  .blog-layout,
  .cms-layout,
  .listings-layout,
  .service-boxes { grid-template-columns: 1fr; }
  .cms-layout .cms-main { order: 1; }
  .cms-layout .cms-sidebar {
    order: 2;
    position: static;
  }
  .listing-filters { position: static; }
  .category-filters.listing-filters {
    position: sticky;
    top: 72px;
    z-index: 40;
  }
  .testimonials-grid { grid-template-columns: 1fr; }
  .testimonials-slider .testimonials-slide {
    flex: 0 0 calc((100% - 14px) / 2);
  }
  .trust-grid,
  .trust-grid-5 { grid-template-columns: repeat(2, 1fr); }
  .blog-posts-grid { grid-template-columns: repeat(2, 1fr); }
  .features-grid { grid-template-columns: 1fr; }
  .service-box { grid-template-columns: 1fr; }
  .blog-controls {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .blog-controls-right {
    width: 100%;
    flex-wrap: wrap;
  }
  .listings-result-bar #listingViewToggle { display: none; }
  .detail-info h1 { font-size: 22px; }
  .detail-actions-row { grid-template-columns: 1fr; }
  .specs-grid { grid-template-columns: 1fr; }
  .breadcrumb {
    font-size: 12px;
    flex-wrap: wrap;
  }
}

@media (max-width: 700px) {
  .testimonials-slider {
    padding: 0 36px 24px;
  }
  .testimonials-slider .testimonials-slide {
    flex: 0 0 100%;
  }
  .featured-slider {
    padding: 0 36px 8px;
  }
  .featured-slider .featured-slide {
    flex: 0 0 100%;
  }
  .blog-posts-grid.is-list .blog-post-card {
    grid-template-columns: 1fr;
  }
  .container { padding: 0 16px; }
  .hero { padding: 40px 0 56px; }
  .section { padding: 48px 0; }
  .logo-text { font-size: 13px; }
}

/* ===== CITY SEO PAGES ===== */
.city-page-wrap { padding-bottom: 20px; }
.city-lead {
  font-size: 15px;
  color: var(--gray-600);
  line-height: 1.7;
  margin: 0 0 18px;
}
.city-intro { margin-bottom: 20px; }
.city-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
}
.city-listings { margin-top: 28px; }
.city-puppies-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.city-empty {
  background: var(--gray-50, #f8fafb);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  padding: 24px;
}
.city-side-list { max-height: 320px; overflow: auto; }
.city-index-section { padding-top: 40px; }
.city-index-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}
.city-index-card {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 16px;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  background: var(--white);
  color: inherit;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.city-index-card:hover {
  border-color: var(--teal);
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}
.city-index-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--teal-light);
  color: var(--teal);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.city-index-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
  min-width: 0;
}
.city-index-body strong {
  font-size: 15px;
  color: var(--navy);
}
.city-index-body span {
  font-size: 12px;
  color: var(--gray-600);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.city-index-arrow {
  color: var(--teal);
  margin-top: 10px;
  flex-shrink: 0;
}

@media (max-width: 992px) {
  .city-puppies-grid { grid-template-columns: repeat(2, 1fr); }
  .city-index-grid { grid-template-columns: 1fr; }
}

/* ===== Listing comments (ilan detay) ===== */
.listing-comments {
  margin: 48px 0 20px;
  padding-top: 8px;
}

.listing-comments-head {
  margin-bottom: 22px;
}

.listing-comments-head h2 {
  margin: 0 0 6px;
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.4px;
}

.listing-comments-head p {
  margin: 0;
  font-size: 14px;
  color: var(--gray-600);
}

.listing-comments-empty {
  padding: 16px 18px;
  margin-bottom: 20px;
  border-radius: var(--radius);
  background: var(--gray-100);
  color: var(--gray-600);
  font-size: 14px;
}

.listing-comments-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 28px;
}

.listing-comment-card {
  padding: 18px 20px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.listing-comment-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 14px;
  margin-bottom: 10px;
}

.listing-comment-meta strong {
  color: var(--navy);
  font-size: 15px;
}

.listing-comment-meta .stars {
  color: var(--orange);
  font-size: 13px;
  letter-spacing: 1px;
}

.listing-comment-meta time {
  margin-left: auto;
  font-size: 12px;
  color: var(--gray-600);
}

.listing-comment-card p {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--gray-600);
  white-space: pre-wrap;
}

.listing-comment-form-card {
  padding: 22px 24px;
  border-radius: var(--radius-lg);
  background: var(--teal-light);
  border: 1px solid rgba(0, 173, 181, 0.22);
}

.listing-comment-form-card h3 {
  margin: 0 0 4px;
  font-size: 17px;
  color: var(--navy);
}

.listing-comment-form-lead {
  margin: 0 0 16px;
  font-size: 13px;
  color: var(--gray-600);
}

.listing-comment-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 160px;
  gap: 14px;
}

.listing-comment-form-grid .full {
  grid-column: 1 / -1;
}

.listing-comments .form-label {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}

.listing-comments .form-control {
  width: 100%;
  border: 1px solid #dbe3ee;
  border-radius: 10px;
  padding: 10px 12px;
  font: inherit;
  color: #1e293b;
  background: #fff;
}

.listing-comments .form-control:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0, 173, 181, 0.15);
}

.listing-comments textarea.form-control {
  resize: vertical;
  min-height: 110px;
}

.listing-comment-form-actions {
  margin-top: 16px;
}

.listing-comment-hp {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

@media (max-width: 900px) {
  .listing-comment-form-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .listing-comment-form-grid {
    grid-template-columns: 1fr;
  }
  .listing-comment-meta time {
    margin-left: 0;
    width: 100%;
  }
  .puppies-grid,
  .home-puppies-grid,
  .category-puppies-grid.cols-3,
  .category-puppies-grid.cols-4,
  .category-puppies-grid,
  .city-puppies-grid,
  .reviews-page-grid,
  .contact-info-grid,
  .breeds-grid,
  .blog-grid,
  .blog-posts-grid,
  .trust-grid,
  .trust-grid-5,
  .footer-grid { grid-template-columns: 1fr; }
  .hero h1 { font-size: 28px; }
  .hero h1 .script { font-size: 36px; }
  .section-title { font-size: 22px; }
  .hero-badge-float { display: none; }
  .detail-trust-icons { grid-template-columns: repeat(2, 1fr); }
  .gallery-thumbs img { width: 60px; height: 60px; }
  .puppy-card-actions { flex-wrap: wrap; }
  .puppy-card-actions .btn:not(.btn-icon) { flex: 1 1 100%; }
}
