/* ============================================
   SECTIONS — Header / Navigation
   ============================================ */

/* ---- Site Header ---- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-sticky);
  height: var(--header-height);
  transition: background var(--duration-normal) var(--ease-in-out),
              box-shadow var(--duration-normal) var(--ease-in-out),
              backdrop-filter var(--duration-normal) var(--ease-in-out);
}

.site-header::before {
  content: '';
  position: absolute;
  inset: 0;
  bottom: -40px;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.15) 60%, transparent 100%);
  z-index: -1;
  transition: opacity var(--duration-normal) var(--ease-in-out);
  pointer-events: none;
}

.site-header.scrolled::before {
  opacity: 0;
}

.site-header.scrolled {
  background: var(--color-surface-frosted-heavy);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 24px rgba(0, 0, 0, 0.06);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

/* ---- Logo ---- */
.logo {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: var(--weight-bold);
  color: var(--color-text-inverse);
  letter-spacing: -0.02em;
  transition: color var(--duration-normal) var(--ease-in-out);
  flex-shrink: 0;
}

.logo__icon {
  width: 36px;
  height: 36px;
}

.scrolled .logo {
  color: var(--color-text);
}

/* ---- Main Nav ---- */
.main-nav {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

.main-nav__list {
  display: flex;
  align-items: center;
  gap: var(--space-1);
}

/* ---- Nav Items ---- */
.nav-item {
  position: relative;
}

.nav-item__trigger {
  display: flex;
  align-items: center;
  gap: var(--space-1);
  padding: var(--space-2) var(--space-3);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--color-text-inverse);
  border-radius: var(--radius-sm);
  transition: color var(--duration-fast) var(--ease-in-out),
              background var(--duration-fast) var(--ease-in-out);
  cursor: pointer;
  white-space: nowrap;
  border: none;
  background: none;
}

.scrolled .nav-item__trigger {
  color: var(--color-text);
}

.nav-item__trigger:hover {
  background: rgba(255, 255, 255, 0.12);
}

.scrolled .nav-item__trigger:hover {
  background: var(--color-primary-ultra-light);
  color: var(--color-primary);
}

.nav-item__trigger .chevron {
  width: 14px;
  height: 14px;
  transition: transform var(--duration-fast) var(--ease-in-out);
  opacity: 0.7;
}

.nav-item:hover .chevron,
.nav-item.open .chevron {
  transform: rotate(180deg);
}

/* ---- Dropdown ---- */
.nav-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-4px);
  min-width: 220px;
  padding: var(--space-2);
  background: var(--color-surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-dropdown);
  border: 1px solid var(--color-border);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--duration-normal) var(--ease-out),
              transform var(--duration-normal) var(--ease-out),
              visibility var(--duration-normal);
  pointer-events: none;
}

.nav-item:hover .nav-dropdown,
.nav-item.open .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.nav-dropdown__item {
  display: block;
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-sm);
  color: var(--color-text);
  border-radius: var(--radius-sm);
  transition: background var(--duration-fast) var(--ease-in-out),
              color var(--duration-fast) var(--ease-in-out);
}

.nav-dropdown__item:hover {
  background: var(--color-primary-ultra-light);
  color: var(--color-primary);
}

/* ---- Header Actions ---- */
.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  flex-shrink: 0;
}

/* Phone Badge */
.phone-badge {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4) var(--space-2) var(--space-2);
  background: rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-full);
  color: var(--color-text-inverse);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  transition: background var(--duration-fast) var(--ease-in-out),
              color var(--duration-fast) var(--ease-in-out);
  white-space: nowrap;
}

.scrolled .phone-badge {
  background: var(--color-primary-ultra-light);
  color: var(--color-primary);
}

.phone-badge:hover {
  background: rgba(255, 255, 255, 0.25);
}

.scrolled .phone-badge:hover {
  background: var(--color-primary-light);
  color: var(--color-text-inverse);
}

.phone-badge__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--color-surface);
  border-radius: 50%;
  color: var(--color-primary);
  flex-shrink: 0;
}

.phone-badge__icon svg {
  width: 16px;
  height: 16px;
}

.phone-badge__text--short {
  display: none;
}

/* Login Menu Button */
.login-trigger {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: var(--color-text-inverse);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all var(--duration-fast) var(--ease-in-out);
}

.scrolled .login-trigger {
  background: var(--color-surface);
  color: var(--color-text);
  border-color: var(--color-border);
}

.login-trigger:hover {
  background: rgba(255, 255, 255, 0.25);
}

.scrolled .login-trigger:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
}

.login-trigger svg {
  width: 20px;
  height: 20px;
}

/* Login Dropdown */
.login-dropdown {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  min-width: 220px;
  padding: var(--space-2);
  background: var(--color-surface);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-dropdown);
  border: 1px solid var(--color-border);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-4px);
  transition: opacity var(--duration-normal) var(--ease-out),
              transform var(--duration-normal) var(--ease-out),
              visibility var(--duration-normal);
  pointer-events: none;
  z-index: var(--z-dropdown);
}

.login-wrapper:hover .login-dropdown,
.login-wrapper.open .login-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.login-dropdown__item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-sm);
  color: var(--color-text);
  border-radius: var(--radius-sm);
  transition: background var(--duration-fast) var(--ease-in-out),
              color var(--duration-fast) var(--ease-in-out);
  cursor: pointer;
}

.login-dropdown__item:hover {
  background: var(--color-primary-ultra-light);
  color: var(--color-primary);
}

.login-dropdown__item svg {
  width: 18px;
  height: 18px;
  opacity: 0.5;
}

/* ---- Hamburger ---- */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: background var(--duration-fast) var(--ease-in-out);
  gap: 5px;
  padding: 0;
}

.scrolled .hamburger {
  background: var(--color-surface);
  border-color: var(--color-border);
}

.hamburger__line {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-text-inverse);
  border-radius: 2px;
  transition: transform var(--duration-normal) var(--ease-out),
              opacity var(--duration-normal) var(--ease-out);
}

.scrolled .hamburger__line {
  background: var(--color-text);
}

.hamburger.active .hamburger__line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active .hamburger__line:nth-child(2) {
  opacity: 0;
}

.hamburger.active .hamburger__line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ---- Mobile Menu ---- */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(380px, 85vw);
  height: 100vh;
  background: var(--color-surface-frosted-heavy);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  padding: calc(var(--header-height) + var(--space-4)) var(--space-6) var(--space-6);
  overflow-y: auto;
  z-index: calc(var(--z-sticky) - 1);
  transition: right var(--duration-slow) var(--ease-out);
  box-shadow: -8px 0 40px rgba(0, 0, 0, 0.1);
}

.mobile-menu.open {
  right: 0;
}

.mobile-menu__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--duration-normal) var(--ease-in-out),
              visibility var(--duration-normal);
  z-index: calc(var(--z-sticky) - 2);
}

.mobile-menu__overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-nav__item {
  border-bottom: 1px solid var(--color-border);
}

.mobile-nav__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: var(--space-4) 0;
  font-size: var(--text-body);
  font-weight: var(--weight-medium);
  color: var(--color-text);
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-nav__trigger .chevron {
  width: 18px;
  height: 18px;
  transition: transform var(--duration-fast) var(--ease-in-out);
  opacity: 0.5;
}

.mobile-nav__item.open .mobile-nav__trigger .chevron {
  transform: rotate(180deg);
}

.mobile-nav__sub {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--duration-normal) var(--ease-in-out);
}

.mobile-nav__item.open .mobile-nav__sub {
  max-height: 300px;
}

.mobile-nav__sub a {
  display: block;
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  border-radius: var(--radius-sm);
  transition: color var(--duration-fast), background var(--duration-fast);
}

.mobile-nav__sub a:hover {
  color: var(--color-primary);
  background: var(--color-primary-ultra-light);
}

.mobile-menu__actions {
  margin-top: var(--space-8);
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.mobile-menu__actions .btn {
  width: 100%;
  justify-content: center;
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .main-nav {
    display: none;
  }

  .login-wrapper {
    display: none;
  }

  .phone-badge__text--full {
    display: none;
  }

  .phone-badge__text--short {
    display: inline;
  }

  .hamburger {
    display: flex;
  }
}

@media (max-width: 480px) {
  .phone-badge span {
    display: none;
  }

  .phone-badge {
    padding: var(--space-2);
  }
}


/* ============================================
   SECTIONS — Hero
   ============================================ */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: calc(var(--header-height) + var(--space-8)) 0 var(--space-16);
}

/* Background layers */
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg-image {
  position: absolute;
  inset: 0;
  background: url('../assets/images/Collection of Cuties.webp') center center / cover no-repeat;
  z-index: 0;
}

.hero__bg-gradient {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(124, 106, 232, 0.3) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(91, 75, 199, 0.2) 0%, transparent 50%),
    linear-gradient(135deg, rgba(10, 10, 46, 0.88) 0%, rgba(18, 18, 64, 0.82) 40%, rgba(26, 26, 78, 0.78) 70%, rgba(10, 10, 46, 0.9) 100%);
  z-index: 1;
}

/* Decorative floating shapes */
.hero__bg::before,
.hero__bg::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  z-index: 2;
  opacity: 0.06;
  background: var(--color-primary-light);
}

.hero__bg::before {
  width: 600px;
  height: 600px;
  top: -200px;
  right: -100px;
  animation: floatSlow 20s ease-in-out infinite;
}

.hero__bg::after {
  width: 400px;
  height: 400px;
  bottom: -150px;
  left: -100px;
  animation: floatSlow 25s ease-in-out infinite reverse;
}

@keyframes floatSlow {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -20px); }
}

/* Content layout */
.hero__content {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: var(--space-16);
  width: 100%;
}

/* Left column */
.hero__left {
  flex: 1;
  max-width: 600px;
}

.hero__title {
  font-family: var(--font-heading);
  font-size: var(--text-display);
  font-weight: var(--weight-bold);
  color: var(--color-text-inverse);
  line-height: 1.1;
  margin-bottom: var(--space-6);
  letter-spacing: -0.02em;
}

.hero__title span {
  background: linear-gradient(135deg, var(--color-primary-light), #c4b5fd);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Trustpilot Badge */
.hero__trustpilot {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-10);
}

.hero__rating-top {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  color: var(--color-text-inverse);
  font-size: var(--text-body);
  font-weight: var(--weight-medium);
}

.hero__rating-top strong {
  font-size: 1.125rem;
}

.hero__rating-top a {
  text-decoration: underline;
  text-underline-offset: 3px;
  opacity: 0.9;
  transition: opacity var(--duration-fast);
}

.hero__rating-top a:hover {
  opacity: 1;
}

.hero__stars {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.hero__star {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: var(--color-success);
  border-radius: 3px;
}

.hero__star svg {
  width: 14px;
  height: 14px;
  color: white;
}

.hero__trustpilot-label {
  font-size: var(--text-sm);
  color: var(--color-text-inverse);
  opacity: 0.7;
  font-weight: var(--weight-medium);
  letter-spacing: 0.05em;
}

/* Search Bar */
.hero__search {
  position: relative;
  max-width: 520px;
}

.hero__search-form {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--radius-lg);
  padding: var(--space-2) var(--space-2) var(--space-2) var(--space-6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background var(--duration-normal) var(--ease-in-out),
              border-color var(--duration-normal) var(--ease-in-out),
              box-shadow var(--duration-normal) var(--ease-in-out);
}

.hero__search-form:focus-within {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 0 0 4px rgba(124, 106, 232, 0.15);
}

.hero__search-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--color-text-inverse);
  font-size: var(--text-body);
  padding: var(--space-3) 0;
}

.hero__search-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.hero__search-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  border: none;
  border-radius: var(--radius-md);
  color: white;
  cursor: pointer;
  flex-shrink: 0;
  transition: transform var(--duration-fast) var(--ease-out),
              box-shadow var(--duration-fast) var(--ease-out);
}

.hero__search-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 16px rgba(124, 106, 232, 0.4);
}

.hero__search-btn svg {
  width: 20px;
  height: 20px;
}

/* Right column — Benefits */
.hero__right {
  flex: 0 0 420px;
}

.hero__benefits-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.hero__benefits-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
  margin-bottom: var(--space-6);
}

.hero__benefit {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  color: var(--color-text-inverse);
  font-size: var(--text-sm);
  line-height: 1.4;
}

.hero__benefit-check {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  background: rgba(16, 185, 129, 0.15);
  border-radius: 50%;
  flex-shrink: 0;
}

.hero__benefit-check svg {
  width: 16px;
  height: 16px;
  color: #6ee7b7;
}

.hero__benefit strong {
  font-weight: var(--weight-semibold);
}

.hero__benefits-divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  margin-bottom: var(--space-6);
}

.hero__akc-badge {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  padding: var(--space-3) var(--space-4);
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero__akc-logo {
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: var(--weight-bold);
  font-size: var(--text-sm);
  color: var(--color-navy);
  letter-spacing: 0.05em;
  flex-shrink: 0;
}

.hero__akc-text {
  font-size: var(--text-xs);
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.5;
}

.hero__akc-text strong {
  display: block;
  font-size: var(--text-sm);
  color: var(--color-text-inverse);
  font-weight: var(--weight-semibold);
}

/* Hero Responsive */
@media (max-width: 1024px) {
  .hero {
    min-height: auto;
    padding: calc(var(--header-height) + var(--space-12)) 0 var(--space-12);
  }

  .hero__content {
    flex-direction: column;
    gap: var(--space-10);
  }

  .hero__left {
    max-width: 100%;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero__title {
    font-size: 3.25rem;
  }

  .hero__trustpilot {
    align-items: center;
  }

  .hero__search {
    max-width: 100%;
    width: 100%;
  }

  .hero__right {
    flex: none;
    width: 100%;
    max-width: 500px;
  }
}

@media (max-width: 640px) {
  .hero__title {
    font-size: 2.5rem;
  }

  .hero__benefits-card {
    padding: var(--space-6);
  }

  .hero__right {
    max-width: 100%;
  }
}


/* ============================================
   SECTIONS — Trending Breeds
   ============================================ */

.trending {
  background: var(--color-surface);
}

.trending__label {
  display: block;
  text-align: center;
  font-family: 'Kalam', cursive;
  font-size: 1.5rem;
  font-style: italic;
  color: var(--color-primary);
  margin-bottom: var(--space-2);
}

.trending__title {
  text-align: center;
  font-size: var(--text-h2);
  margin-bottom: var(--space-12);
}

.trending__title span {
  position: relative;
}

.trending__title span::after {
  content: '';
  position: absolute;
  left: -4px;
  right: -4px;
  bottom: 2px;
  height: 10px;
  background: var(--color-primary-light);
  opacity: 0.3;
  border-radius: 4px;
  z-index: -1;
}

.trending__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-8);
}

/* Breed Card */
.breed-card {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  transition: transform var(--duration-normal) var(--ease-out),
              box-shadow var(--duration-normal) var(--ease-out);
}

.breed-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.breed-card__image-wrapper {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.breed-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.breed-card:hover .breed-card__image {
  transform: scale(1.06);
}

.breed-card__body {
  padding: var(--space-5) var(--space-5) var(--space-6);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.breed-card__name {
  font-family: var(--font-heading);
  font-size: var(--text-h4);
  font-weight: var(--weight-semibold);
  color: var(--color-text);
  margin-bottom: var(--space-2);
}

.breed-card__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: var(--leading-relaxed);
  flex: 1;
}

.breed-card__link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  margin-top: var(--space-4);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--color-primary);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity var(--duration-normal) var(--ease-out),
              transform var(--duration-normal) var(--ease-out);
}

.breed-card:hover .breed-card__link {
  opacity: 1;
  transform: translateY(0);
}

.breed-card__link svg {
  width: 16px;
  height: 16px;
  transition: transform var(--duration-fast) var(--ease-out);
}

.breed-card:hover .breed-card__link svg {
  transform: translateX(3px);
}

/* Trending Responsive */
@media (max-width: 1024px) {
  .trending__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .trending__grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .trending__title {
    font-size: 1.75rem;
  }
}


/* ============================================
   SECTIONS — Testimonials / Reviews Carousel
   ============================================ */

.testimonials {
  background: var(--color-background);
  overflow: hidden;
}

.testimonials__label {
  display: block;
  text-align: center;
  font-family: 'Kalam', cursive;
  font-size: 1.5rem;
  font-style: italic;
  color: var(--color-primary);
  margin-bottom: var(--space-2);
  transform: skewX(-3deg);
}

.testimonials__title {
  text-align: center;
  font-size: var(--text-h2);
  margin-bottom: var(--space-12);
}

.testimonials__title span {
  position: relative;
}

.testimonials__title span::after {
  content: '';
  position: absolute;
  left: -4px;
  right: -4px;
  bottom: 2px;
  height: 10px;
  background: var(--color-primary-light);
  opacity: 0.3;
  border-radius: 4px;
  z-index: -1;
}

/* Carousel wrapper */
.carousel {
  position: relative;
}

.carousel__track {
  display: flex;
  gap: var(--space-5);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: var(--space-2) 0 var(--space-4);
}

.carousel__track::-webkit-scrollbar {
  display: none;
}

/* Navigation arrows */
.carousel__nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--space-4);
  margin-top: var(--space-8);
}

.carousel__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-in-out);
  flex-shrink: 0;
}

.carousel__arrow:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: white;
  box-shadow: var(--shadow-md);
}

.carousel__arrow:disabled {
  opacity: 0.3;
  cursor: not-allowed;
}

.carousel__arrow:disabled:hover {
  background: var(--color-surface);
  border-color: var(--color-border);
  color: var(--color-text);
  box-shadow: none;
}

.carousel__arrow svg {
  width: 20px;
  height: 20px;
}

/* Dots */
.carousel__dots {
  display: flex;
  align-items: center;
  gap: var(--space-2);
}

.carousel__dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: var(--color-border);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all var(--duration-normal) var(--ease-out);
}

.carousel__dot.active {
  width: 28px;
  background: var(--color-primary);
}

/* Testimonial Card (review type) */
.testimonial-card {
  position: relative;
  flex: 0 0 260px;
  height: 460px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  scroll-snap-align: start;
  cursor: pointer;
}

.testimonial-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.testimonial-card:hover .testimonial-card__image {
  transform: scale(1.05);
}

.testimonial-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(33, 26, 77, 0.95) 0%, rgba(33, 26, 77, 0.4) 50%, transparent 100%);
  z-index: 1;
}

.testimonial-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-6);
  z-index: 2;
}

.testimonial-card__quote {
  font-size: var(--text-sm);
  color: var(--color-text-inverse);
  line-height: 1.6;
  margin-bottom: var(--space-4);
  font-weight: var(--weight-normal);
  opacity: 0.95;
}

.testimonial-card__name {
  font-size: var(--text-xs);
  font-weight: var(--weight-semibold);
  color: var(--color-primary-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* Video card type */
.testimonial-card--video .testimonial-card__overlay {
  background: rgba(0, 0, 0, 0.25);
}

.testimonial-card__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: white;
  transition: all var(--duration-normal) var(--ease-out);
}

.testimonial-card:hover .testimonial-card__play {
  background: var(--color-primary);
  border-color: var(--color-primary);
  transform: translate(-50%, -50%) scale(1.1);
}

.testimonial-card__play svg {
  width: 22px;
  height: 22px;
  margin-left: 3px;
}

/* Testimonials Responsive */
@media (max-width: 640px) {
  .testimonial-card {
    flex: 0 0 220px;
    height: 380px;
  }

  .testimonials__title {
    font-size: 1.75rem;
  }
}


/* ============================================
   SECTIONS — Our Edge / Commitment
   ============================================ */

.our-edge {
  background: var(--color-surface);
}

.our-edge__label {
  display: block;
  text-align: center;
  font-family: 'Kalam', cursive;
  font-size: 1.5rem;
  font-style: italic;
  color: var(--color-primary);
  margin-bottom: var(--space-2);
}

.our-edge__title {
  text-align: center;
  font-size: var(--text-h2);
  margin-bottom: var(--space-12);
}

.our-edge__title span {
  position: relative;
}

.our-edge__title span::after {
  content: '';
  position: absolute;
  left: -4px;
  right: -4px;
  bottom: 2px;
  height: 10px;
  background: var(--color-primary-light);
  opacity: 0.3;
  border-radius: 4px;
  z-index: -1;
}

.our-edge__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-8);
}

/* Edge Card */
.edge-card {
  display: flex;
  flex-direction: column;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  transition: transform var(--duration-normal) var(--ease-out),
              box-shadow var(--duration-normal) var(--ease-out);
}

.edge-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.edge-card__image-wrapper {
  position: relative;
  overflow: hidden;
  height: 240px;
  flex-shrink: 0;
}

.edge-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.edge-card:hover .edge-card__image {
  transform: scale(1.05);
}

/* Icon overlay on the image */
.edge-card__icon {
  position: absolute;
  bottom: -24px;
  left: var(--space-6);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: var(--shadow-md);
  z-index: 1;
  transition: transform var(--duration-normal) var(--ease-out);
}

.edge-card:hover .edge-card__icon {
  transform: scale(1.1);
}

.edge-card__icon svg {
  width: 22px;
  height: 22px;
}

.edge-card__body {
  padding: calc(var(--space-8) + 8px) var(--space-6) var(--space-6);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.edge-card__name {
  font-family: var(--font-heading);
  font-size: var(--text-h4);
  font-weight: var(--weight-semibold);
  color: var(--color-text);
  margin-bottom: var(--space-3);
}

.edge-card__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: var(--leading-relaxed);
}

/* Our Edge Responsive */
@media (max-width: 1024px) {
  .our-edge__grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
}

@media (max-width: 640px) {
  .our-edge__title {
    font-size: 1.75rem;
  }

  .edge-card__image-wrapper {
    height: 200px;
  }
}


/* ============================================
   SECTIONS — Browse All Puppies
   ============================================ */

.puppies {
  background: var(--color-primary-ultra-light);
}

.puppies__label {
  display: block;
  font-family: 'Kalam', cursive;
  font-size: var(--text-body);
  color: var(--color-primary);
  text-align: center;
  margin-bottom: var(--space-3);
}

.puppies__title {
  font-family: var(--font-heading);
  font-size: var(--text-h2);
  font-weight: var(--weight-bold);
  color: var(--color-text);
  text-align: center;
  margin-bottom: var(--space-10);
}

.puppies__title span {
  position: relative;
  color: var(--color-primary);
}

.puppies__title span::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  right: 0;
  height: 8px;
  background: var(--color-primary-glow);
  border-radius: var(--radius-full);
  z-index: -1;
}

/* ---- Toolbar (search + filters) ---- */
.puppies__toolbar {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-10);
  flex-wrap: wrap;
}

.puppies__search {
  position: relative;
  flex: 0 0 280px;
}

.puppies__search svg {
  position: absolute;
  left: var(--space-4);
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--color-text-light);
  pointer-events: none;
}

.puppies__search-input {
  width: 100%;
  padding: var(--space-3) var(--space-4) var(--space-3) calc(var(--space-4) + 26px);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  color: var(--color-text);
  background: var(--color-surface);
  transition: border-color var(--duration-fast) var(--ease-in-out),
              box-shadow var(--duration-fast) var(--ease-in-out);
}

.puppies__search-input::placeholder {
  color: var(--color-text-light);
}

.puppies__search-input:focus {
  outline: none;
  border-color: var(--color-primary-light);
  box-shadow: 0 0 0 3px var(--color-primary-glow);
}

.puppies__filters {
  display: flex;
  gap: var(--space-2);
  flex-wrap: wrap;
  flex: 1;
}

.puppies__filter-btn {
  padding: var(--space-2) var(--space-5);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--color-text-muted);
  background: var(--color-surface);
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-in-out);
}

.puppies__filter-btn:hover {
  border-color: var(--color-primary-light);
  color: var(--color-primary);
}

.puppies__filter-btn.active {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
}

/* ---- Puppy Grid ---- */
.puppies__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-6);
}

/* ---- Puppy Card ---- */
.puppy-card {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--duration-normal) var(--ease-out),
              box-shadow var(--duration-normal) var(--ease-out);
}

.puppy-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.puppy-card.hidden {
  display: none;
}

/* Card Image */
.puppy-card__image-wrapper {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.puppy-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.puppy-card:hover .puppy-card__image {
  transform: scale(1.06);
}

/* Video icon badge */
.puppy-card__link-icon {
  position: absolute;
  top: var(--space-3);
  right: var(--space-3);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-surface-frosted-heavy);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
}

.puppy-card__link-icon svg {
  width: 16px;
  height: 16px;
  color: var(--color-primary);
}

/* Hover overlay with View Details */
.puppy-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 46, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--duration-normal) var(--ease-in-out);
  z-index: 1;
}

.puppy-card:hover .puppy-card__overlay {
  opacity: 1;
}

.btn--sm {
  padding: var(--space-2) var(--space-5);
  font-size: var(--text-sm);
  border-radius: var(--radius-full);
}

/* Card Body */
.puppy-card__body {
  padding: var(--space-5) var(--space-5) var(--space-6);
}

.puppy-card__header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: var(--space-1);
}

.puppy-card__name {
  font-family: var(--font-heading);
  font-size: var(--text-h4);
  font-weight: var(--weight-semibold);
  color: var(--color-text);
}

.puppy-card__price {
  font-family: var(--font-body);
  font-size: var(--text-body);
  font-weight: var(--weight-bold);
  color: var(--color-primary);
}

.puppy-card__breed {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-3);
}

/* Tags */
.puppy-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.puppy-tag {
  display: inline-block;
  padding: 2px var(--space-3);
  border-radius: var(--radius-full);
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  line-height: 1.7;
}

.puppy-tag--male {
  background: #EFF6FF;
  color: #3B82F6;
}

.puppy-tag--female {
  background: #FDF2F8;
  color: #EC4899;
}

.puppy-tag--age {
  background: #FFF7ED;
  color: #F97316;
}

.puppy-tag--size {
  background: #F0EEFF;
  color: var(--color-primary);
}

.puppy-tag--gen {
  background: #F0EEFF;
  color: var(--color-primary);
}

/* ---- Load More ---- */
.puppies__actions {
  text-align: center;
  margin-top: var(--space-10);
}

.puppies__load-more {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}

.puppies__load-more svg {
  width: 18px;
  height: 18px;
  transition: transform var(--duration-fast) var(--ease-out);
}

.puppies__load-more:hover svg {
  transform: translateX(4px);
}

/* ---- Puppies Responsive ---- */
@media (max-width: 768px) {
  .puppies__toolbar {
    flex-direction: column;
    align-items: stretch;
  }

  .puppies__search {
    flex: 1;
  }

  .puppies__filters {
    justify-content: center;
  }
}

@media (max-width: 640px) {
  .puppies__title {
    font-size: 1.75rem;
  }

  /* Alternating pattern: 1 full-width, then 2 side-by-side */
  .puppies__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-3);
  }

  /* Every 3rd card starting from 1st spans full width */
  .puppy-card:nth-child(3n + 1) {
    grid-column: 1 / -1;
  }

  .puppy-card__body {
    padding: var(--space-3) var(--space-3) var(--space-4);
  }

  .puppy-card__name {
    font-size: var(--text-body);
  }

  .puppy-card__price {
    font-size: var(--text-sm);
  }

  .puppy-tag {
    font-size: 0.65rem;
    padding: 1px var(--space-2);
  }
}


/* ============================================
   SECTIONS — Footer
   ============================================ */

.site-footer {
  background: var(--color-navy);
  color: var(--color-text-inverse);
  padding: var(--space-16) 0 var(--space-8);
  position: relative;
  overflow: hidden;
}

/* Subtle purple glow decoration */
.site-footer::before {
  content: '';
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 240px;
  background: radial-gradient(ellipse, rgba(124, 106, 232, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

/* ---- Top: Logo ---- */
.footer__top {
  margin-bottom: var(--space-10);
}

.footer__logo {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  font-family: var(--font-heading);
  font-size: var(--text-h3);
  font-weight: var(--weight-bold);
  color: var(--color-text-inverse);
  text-decoration: none;
}

.footer__logo-icon {
  width: 36px;
  height: 36px;
  color: var(--color-primary-light);
}

/* ---- Middle: 2-column layout ---- */
.footer__middle {
  display: flex;
  gap: var(--space-10);
  margin-bottom: var(--space-10);
}

.footer__contact-col {
  flex: 0 0 30%;
  max-width: 30%;
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

.footer__nav {
  flex: 0 0 60%;
  max-width: 60%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--space-8);
}

/* ---- Contact Info ---- */
.footer__contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
}

.footer__contact-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-3);
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: var(--text-body);
  font-weight: 300;
  transition: color var(--duration-fast) var(--ease-in-out);
}

.footer__contact-link:hover {
  color: white;
}

.footer__contact-link svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  opacity: 0.6;
}

/* ---- Subscribe ---- */
.footer__subscribe-title {
  font-size: var(--text-h4);
  font-weight: 300;
  margin-bottom: var(--space-4);
}

.footer__subscribe-form {
  display: flex;
  max-width: 400px;
}

.footer__subscribe-input {
  flex: 1;
  padding: var(--space-3) var(--space-4);
  border: none;
  border-radius: var(--radius-full) 0 0 var(--radius-full);
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  outline: none;
  transition: background var(--duration-fast) var(--ease-in-out);
}

.footer__subscribe-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.footer__subscribe-input:focus {
  background: rgba(255, 255, 255, 0.15);
}

.footer__subscribe-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 var(--space-6);
  border: none;
  border-radius: 0 var(--radius-full) var(--radius-full) 0;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  cursor: pointer;
  transition: background var(--duration-fast) var(--ease-in-out);
}

.footer__subscribe-btn:hover {
  background: rgba(255, 255, 255, 0.2);
}

.footer__subscribe-btn svg {
  width: 16px;
  height: 16px;
}

/* ---- Payment ---- */
.footer__payment-icons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-3);
}

.footer__pay-badge {
  display: inline-block;
  padding: 4px var(--space-3);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.6);
  font-size: var(--text-xs);
  font-weight: var(--weight-medium);
  transition: background var(--duration-fast) var(--ease-in-out),
              color var(--duration-fast) var(--ease-in-out);
}

.footer__pay-badge:hover {
  background: rgba(255, 255, 255, 0.15);
  color: white;
}

.footer__secure {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: rgba(255, 255, 255, 0.5);
  line-height: var(--leading-normal);
}

.footer__secure svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 3px;
  opacity: 0.6;
}

.footer__secure strong {
  color: rgba(255, 255, 255, 0.7);
  font-weight: var(--weight-medium);
}

/* ---- Nav Columns ---- */
.footer__nav-title {
  font-family: var(--font-body);
  font-size: var(--text-h4);
  font-weight: var(--weight-normal);
  color: white;
  margin-bottom: var(--space-4);
}

.footer__nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.footer__nav-list a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  font-size: var(--text-body);
  font-weight: 300;
  line-height: 1.75;
  transition: color var(--duration-fast) var(--ease-in-out);
}

.footer__nav-list a:hover {
  color: white;
}

/* ---- Divider ---- */
.footer__divider {
  height: 1px;
  background: rgba(255, 255, 255, 0.1);
  margin-bottom: var(--space-6);
}

/* ---- Bottom Bar ---- */
.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-4);
}

.footer__copyright {
  font-size: var(--text-body);
  color: rgba(255, 255, 255, 0.45);
}

.footer__legal {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

.footer__legal a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  font-size: var(--text-body);
  transition: color var(--duration-fast) var(--ease-in-out);
}

.footer__legal a:hover {
  color: white;
}

.footer__dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
}

.footer__social {
  display: flex;
  gap: var(--space-4);
}

.footer__social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--duration-fast) var(--ease-in-out);
}

.footer__social-link:hover {
  color: white;
}

.footer__social-link svg {
  width: 100%;
  height: 100%;
}

/* ---- Footer Responsive ---- */
@media (max-width: 1024px) {
  .footer__middle {
    flex-direction: column;
    gap: var(--space-10);
  }

  .footer__contact-col,
  .footer__nav {
    flex: 1;
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .site-footer {
    padding: var(--space-10) 0 var(--space-6);
  }

  .footer__nav {
    flex-direction: column;
    gap: var(--space-6);
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
    gap: var(--space-3);
  }
}


/* ============================================
   BREED PAGE — Hero Banner
   ============================================ */

.breed-hero {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: flex-end;
  padding: var(--space-16) 0 var(--space-12);
  margin-top: var(--header-height);
  overflow: hidden;
}

.breed-hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.breed-hero__bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.breed-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(10, 10, 46, 0.35) 0%,
    rgba(10, 10, 46, 0.7) 100%
  );
}

.breed-hero__content {
  position: relative;
  z-index: 1;
}

.breed-hero__title {
  font-family: var(--font-heading);
  font-size: var(--text-h1);
  font-weight: var(--weight-bold);
  color: white;
  margin-bottom: var(--space-4);
}

.breed-hero__meta {
  margin-bottom: var(--space-5);
}

.breed-hero__rating {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}

.breed-hero__stars {
  display: flex;
  gap: 2px;
}

.breed-hero__stars svg {
  width: 18px;
  height: 18px;
  color: var(--color-gold);
}

.breed-hero__rating-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
}

.breed-hero__tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
}

.breed-hero__tag {
  display: inline-block;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: white;
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

@media (max-width: 640px) {
  .breed-hero {
    min-height: 300px;
    padding: var(--space-12) 0 var(--space-8);
  }

  .breed-hero__title {
    font-size: var(--text-h2);
  }
}


/* ============================================
   BREED PAGE — Puppies Header / Grid Variant
   ============================================ */

.breed-puppies {
  background: var(--color-surface);
  position: relative;
  z-index: 1;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  margin-top: -24px;
  padding-top: var(--space-10);
}

.breed-puppies__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}

.breed-puppies__title {
  font-family: var(--font-heading);
  font-size: var(--text-h2);
  font-weight: var(--weight-bold);
  color: var(--color-text);
}

.breed-puppies__toolbar {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}

/* 3-column grid variant for breed page */
.puppies__grid--3col {
  grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 1024px) {
  .puppies__grid--3col {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .breed-puppies__header {
    flex-direction: column;
    align-items: stretch;
  }

  .breed-puppies__title {
    font-size: 1.5rem;
  }

  .puppies__grid--3col {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-3);
  }

  .puppies__grid--3col .puppy-card:nth-child(3n + 1) {
    grid-column: 1 / -1;
  }
}


/* ============================================
   BREED PAGE — Meet the Breed Info
   ============================================ */

.breed-info {
  background: var(--color-primary-ultra-light);
}

.breed-info__layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-12);
  align-items: center;
}

.breed-info__image-wrapper {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.breed-info__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.breed-info__label {
  display: block;
  font-family: 'Kalam', cursive;
  font-size: var(--text-body);
  color: var(--color-primary);
  margin-bottom: var(--space-2);
}

.breed-info__title {
  font-family: var(--font-heading);
  font-size: var(--text-h2);
  font-weight: var(--weight-bold);
  color: var(--color-text);
  margin-bottom: var(--space-6);
}

.breed-info__title span {
  color: var(--color-primary);
}

.breed-info__text {
  font-size: var(--text-body);
  color: var(--color-text-muted);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-4);
}

.breed-info__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-4);
  margin: var(--space-8) 0;
  padding: var(--space-5) 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

.breed-info__stat {
  text-align: center;
}

.breed-info__stat-value {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--text-h4);
  font-weight: var(--weight-bold);
  color: var(--color-primary);
  margin-bottom: var(--space-1);
}

.breed-info__stat-label {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .breed-info__layout {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .breed-info__stats {
    grid-template-columns: repeat(2, 1fr);
  }
}


/* ============================================
   BREED PAGE — Related Breeds
   ============================================ */

.related-breeds {
  background: var(--color-surface);
}

.related-breeds__label {
  display: block;
  font-family: 'Kalam', cursive;
  font-size: var(--text-body);
  color: var(--color-primary);
  text-align: center;
  margin-bottom: var(--space-3);
}

.related-breeds__title {
  font-family: var(--font-heading);
  font-size: var(--text-h2);
  font-weight: var(--weight-bold);
  color: var(--color-text);
  text-align: center;
  margin-bottom: var(--space-10);
}

.related-breeds__title span {
  color: var(--color-primary);
}


/* ============================================
   BREED PAGE — CTA Section
   ============================================ */

.breed-cta {
  background: var(--color-primary-ultra-light);
}

.breed-cta__card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-10);
  align-items: center;
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-12);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.breed-cta__title {
  font-family: var(--font-heading);
  font-size: var(--text-h2);
  font-weight: var(--weight-bold);
  color: var(--color-text);
  margin-bottom: var(--space-4);
}

.breed-cta__desc {
  font-size: var(--text-body);
  color: var(--color-text-muted);
  line-height: var(--leading-relaxed);
  margin-bottom: var(--space-8);
}

.breed-cta__actions {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}

.breed-cta__image-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.breed-cta__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .breed-cta__card {
    grid-template-columns: 1fr;
    padding: var(--space-8);
  }

  .breed-cta__image-wrapper {
    order: -1;
  }
}


/* ============================================
   BREED PAGE — Trust Section
   ============================================ */

.breed-trust {
  background: var(--color-surface);
}

.breed-trust__layout {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.breed-trust__badge {
  display: flex;
  align-items: flex-start;
  gap: var(--space-5);
  text-align: left;
  margin-bottom: var(--space-10);
}

.breed-trust__icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), var(--color-primary-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}

.breed-trust__icon svg {
  width: 26px;
  height: 26px;
}

.breed-trust__title {
  font-family: var(--font-heading);
  font-size: var(--text-h3);
  font-weight: var(--weight-bold);
  color: var(--color-text);
  margin-bottom: var(--space-3);
}

.breed-trust__desc {
  font-size: var(--text-body);
  color: var(--color-text-muted);
  line-height: var(--leading-relaxed);
}

.breed-trust__numbers {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-6);
  padding-top: var(--space-8);
  border-top: 1px solid var(--color-border);
}

.breed-trust__stat {
  text-align: center;
}

.breed-trust__stat-value {
  display: block;
  font-family: var(--font-heading);
  font-size: var(--text-h2);
  font-weight: var(--weight-bold);
  color: var(--color-primary);
  margin-bottom: var(--space-2);
}

.breed-trust__stat-label {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

@media (max-width: 640px) {
  .breed-trust__badge {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .breed-trust__numbers {
    grid-template-columns: repeat(2, 1fr);
  }

  .breed-trust__stat-value {
    font-size: var(--text-h3);
  }
}


/* ============================================
   RESPONSIVE FIXES — Gap patches
   ============================================ */

/* Hero decorative orbs — scale down on tablet, hide on mobile */
@media (max-width: 1024px) {
  .hero__bg::before {
    width: 400px;
    height: 400px;
  }
  .hero__bg::after {
    width: 250px;
    height: 250px;
  }
}

@media (max-width: 640px) {
  .hero__bg::before,
  .hero__bg::after {
    display: none;
  }
}

/* Testimonials — tablet card sizing */
@media (max-width: 1024px) and (min-width: 641px) {
  .testimonial-card {
    min-width: 260px;
    height: 360px;
  }
}

/* Related Breeds — mobile title */
@media (max-width: 640px) {
  .related-breeds__title {
    font-size: 1.75rem;
  }
}

/* Breed Info — mobile polish */
@media (max-width: 640px) {
  .breed-info__title {
    font-size: 1.75rem;
  }

  .breed-info__stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Breed CTA — mobile polish */
@media (max-width: 640px) {
  .breed-cta__card {
    padding: var(--space-6);
  }

  .breed-cta__title {
    font-size: 1.75rem;
  }

  .breed-cta__actions {
    flex-direction: column;
  }

  .breed-cta__actions .btn {
    width: 100%;
    text-align: center;
    justify-content: center;
  }
}

/* Footer glow — scale on mobile */
@media (max-width: 640px) {
  .site-footer::before {
    width: 300px;
    height: 120px;
  }
}


/* ============================================
   PUPPY DETAIL PAGE (.pd-)
   ============================================ */

/* ---- Layout ---- */
.pd-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: var(--space-10);
  align-items: start;
}

.pd-main {
  min-width: 0;
}

/* ---- Breadcrumb ---- */
.pd-breadcrumb {
  padding: var(--space-6) 0 0;
}

.pd-breadcrumb__list {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  list-style: none;
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.pd-breadcrumb__list li + li::before {
  content: '/';
  margin-right: var(--space-2);
  color: var(--color-text-light);
}

.pd-breadcrumb__list a {
  color: var(--color-text-muted);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-out);
}

.pd-breadcrumb__list a:hover {
  color: var(--color-primary);
}

.pd-breadcrumb__list [aria-current="page"] {
  color: var(--color-text);
  font-weight: var(--weight-medium);
}

/* ---- Gallery ---- */
.pd-gallery {
  position: relative;
  margin-bottom: var(--space-8);
}

.pd-gallery__track {
  display: flex;
  gap: var(--space-4);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding: var(--space-2) 0;
}

.pd-gallery__track::-webkit-scrollbar {
  display: none;
}

.pd-gallery__item {
  flex: 0 0 auto;
  width: 320px;
  height: 320px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  scroll-snap-align: start;
  cursor: pointer;
  position: relative;
}

.pd-gallery__item img,
.pd-gallery__item video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.pd-gallery__item:hover img,
.pd-gallery__item:hover video {
  transform: scale(1.04);
}

.pd-gallery__play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  transition: background var(--duration-fast) var(--ease-out), transform var(--duration-fast) var(--ease-out);
  z-index: 2;
}

.pd-gallery__play-btn:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: translate(-50%, -50%) scale(1.1);
}

.pd-gallery__play-btn svg {
  width: 24px;
  height: 24px;
  margin-left: 2px;
}

.pd-gallery__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 3;
  transition: all var(--duration-fast) var(--ease-out);
  color: var(--color-text);
}

.pd-gallery__arrow:hover {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
  box-shadow: var(--shadow-lg);
}

.pd-gallery__arrow--prev { left: var(--space-3); }
.pd-gallery__arrow--next { right: var(--space-3); }

.pd-gallery__arrow svg {
  width: 20px;
  height: 20px;
}

.pd-gallery__show-all {
  position: absolute;
  bottom: var(--space-5);
  right: var(--space-5);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-md);
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  box-shadow: var(--shadow-sm);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--color-text);
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-out);
  z-index: 3;
}

.pd-gallery__show-all:hover {
  background: var(--color-primary);
  color: white;
  border-color: var(--color-primary);
}

.pd-gallery__show-all svg {
  width: 16px;
  height: 16px;
}

/* ---- Social Proof ---- */
.pd-social-proof {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  margin-bottom: var(--space-4);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.pd-social-proof__views,
.pd-social-proof__reviews {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}

.pd-social-proof__views svg {
  width: 16px;
  height: 16px;
  color: #ef4444;
}

.pd-social-proof__reviews svg {
  width: 14px;
  height: 14px;
  color: var(--color-gold);
  fill: var(--color-gold);
}

/* ---- Pet Name ---- */
.pd-name {
  font-family: var(--font-heading);
  font-size: var(--text-h2);
  font-weight: var(--weight-bold);
  line-height: var(--leading-tight);
  color: var(--color-text);
  margin-bottom: var(--space-4);
}

/* ---- Delivery Badge ---- */
.pd-delivery-badge {
  margin-bottom: var(--space-6);
}

.pd-delivery-badge .badge {
  font-size: var(--text-sm);
  padding: var(--space-2) var(--space-4);
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
}

.pd-delivery-badge .badge svg {
  width: 16px;
  height: 16px;
}

/* ---- Description ---- */
.pd-description {
  margin-bottom: var(--space-8);
}

.pd-description__text {
  font-size: var(--text-body);
  line-height: var(--leading-relaxed);
  color: var(--color-text);
  max-height: 5.4em;
  overflow: hidden;
  transition: max-height var(--duration-slow) var(--ease-out);
}

.pd-description__text.expanded {
  max-height: 500px;
}

.pd-description__toggle {
  background: none;
  border: none;
  padding: 0;
  margin-top: var(--space-3);
  font-size: var(--text-sm);
  font-weight: var(--weight-medium);
  color: var(--color-primary);
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.pd-description__toggle:hover {
  color: var(--color-primary-dark);
}

/* ---- Section Divider ---- */
.pd-divider {
  border: none;
  height: 1px;
  background: var(--color-border);
  margin: var(--space-8) 0;
}

/* ---- Section Title ---- */
.pd-section-title {
  font-family: var(--font-heading);
  font-size: var(--text-h3);
  font-weight: var(--weight-semibold);
  color: var(--color-text);
  margin-bottom: var(--space-6);
}

/* ---- Feature List (What's Included + Getting Home options) ---- */
.pd-feature-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
  list-style: none;
}

.pd-feature-list__item {
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}

.pd-feature-list__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-primary-ultra-light);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pd-feature-list__icon svg {
  width: 22px;
  height: 22px;
}

.pd-feature-list__content strong {
  display: block;
  font-size: var(--text-body);
  font-weight: var(--weight-semibold);
  color: var(--color-text);
  margin-bottom: var(--space-1);
}

.pd-feature-list__content p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  line-height: var(--leading-normal);
}

/* ---- Why We Love ---- */
.pd-why-love p {
  font-size: var(--text-body);
  line-height: var(--leading-relaxed);
  color: var(--color-text);
}

/* ---- Meet the Parents ---- */
.pd-parents__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-6);
  margin-bottom: var(--space-6);
}

.pd-parents__card {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  border: 1px solid var(--color-border);
  overflow: hidden;
  transition: transform var(--duration-slow) var(--ease-out), box-shadow var(--duration-slow) var(--ease-out);
}

.pd-parents__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.pd-parents__image-wrapper {
  height: 200px;
  overflow: hidden;
}

.pd-parents__image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.pd-parents__card:hover .pd-parents__image-wrapper img {
  transform: scale(1.05);
}

.pd-parents__body {
  padding: var(--space-4) var(--space-5);
}

.pd-parents__name {
  font-size: var(--text-h4);
  font-weight: var(--weight-semibold);
  color: var(--color-text);
  margin-bottom: var(--space-1);
}

.pd-parents__breed {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-bottom: var(--space-3);
}

.pd-parents__tags {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-2);
  margin-bottom: var(--space-3);
}

.pd-parents__desc {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  margin-top: var(--space-4);
  padding-top: var(--space-4);
  border-top: 1px solid var(--color-border);
}

.pd-parents__desc strong {
  color: var(--color-primary);
  font-weight: var(--weight-semibold);
  display: block;
  margin-bottom: var(--space-1);
}

/* ---- Getting Home Video ---- */
.pd-video-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: var(--space-8);
  aspect-ratio: 16 / 9;
  background: var(--color-navy);
}

.pd-video-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pd-video-wrapper__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-out);
}

.pd-video-wrapper__play:hover {
  background: var(--color-primary);
  transform: translate(-50%, -50%) scale(1.1);
}

.pd-video-wrapper__play svg {
  width: 28px;
  height: 28px;
  margin-left: 3px;
}

/* ---- Delivery Videos Carousel ---- */
.pd-delivery-videos__thumb {
  flex: 0 0 180px;
  height: 280px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.pd-delivery-videos__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.pd-delivery-videos__thumb:hover img {
  transform: scale(1.05);
}

.pd-delivery-videos__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  cursor: pointer;
  transition: background var(--duration-fast) var(--ease-out);
}

.pd-delivery-videos__thumb:hover .pd-delivery-videos__play {
  background: var(--color-primary);
}

.pd-delivery-videos__play svg {
  width: 20px;
  height: 20px;
  margin-left: 2px;
}

/* ---- Sidebar ---- */
.pd-sidebar__sticky {
  position: sticky;
  top: calc(var(--header-height) + var(--space-6));
  display: flex;
  flex-direction: column;
  gap: var(--space-6);
}

.pd-sidebar__card {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-8);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--color-border);
  text-align: center;
}

.pd-sidebar__price {
  font-family: var(--font-heading);
  font-size: var(--text-h1);
  font-weight: var(--weight-bold);
  color: var(--color-text);
  margin-bottom: var(--space-6);
}

.pd-sidebar__cta {
  width: 100%;
  margin-bottom: var(--space-3);
}

.pd-sidebar__inquire {
  width: 100%;
}

/* Quick Stats */
.pd-sidebar__stats {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
}

.pd-sidebar__stats-title {
  font-family: var(--font-heading);
  font-size: var(--text-h4);
  font-weight: var(--weight-semibold);
  margin-bottom: var(--space-4);
  color: var(--color-text);
}

.pd-sidebar__stats-list {
  display: flex;
  flex-direction: column;
}

.pd-sidebar__stat {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--space-3) 0;
  border-bottom: 1px solid var(--color-border);
}

.pd-sidebar__stat:last-child {
  border-bottom: none;
}

.pd-sidebar__stat dt {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.pd-sidebar__stat dd {
  font-size: var(--text-sm);
  font-weight: var(--weight-semibold);
  color: var(--color-text);
}

/* Breeder Card */
.pd-sidebar__breeder {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: var(--space-6);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--color-border);
}

.pd-sidebar__breeder-header {
  display: flex;
  align-items: center;
  gap: var(--space-4);
  margin-bottom: var(--space-4);
}

.pd-sidebar__breeder-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-primary-ultra-light);
}

.pd-sidebar__breeder-name {
  font-size: var(--text-body);
  font-weight: var(--weight-semibold);
  color: var(--color-text);
  margin-bottom: var(--space-1);
}

.pd-sidebar__breeder-location {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

.pd-sidebar__breeder-location svg {
  width: 16px;
  height: 16px;
}

/* ---- Lightbox ---- */
.pd-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(10, 10, 46, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity var(--duration-normal) var(--ease-out);
}

.pd-lightbox.active {
  opacity: 1;
}

.pd-lightbox__image {
  max-width: 85vw;
  max-height: 85vh;
  border-radius: var(--radius-xl);
  object-fit: contain;
}

.pd-lightbox__close {
  position: absolute;
  top: var(--space-6);
  right: var(--space-6);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-out);
}

.pd-lightbox__close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.pd-lightbox__close svg {
  width: 24px;
  height: 24px;
}

.pd-lightbox__arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--duration-fast) var(--ease-out);
}

.pd-lightbox__arrow:hover {
  background: rgba(255, 255, 255, 0.25);
}

.pd-lightbox__arrow svg {
  width: 24px;
  height: 24px;
}

.pd-lightbox__arrow--prev { left: var(--space-6); }
.pd-lightbox__arrow--next { right: var(--space-6); }

.pd-lightbox__counter {
  position: absolute;
  bottom: var(--space-6);
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.7);
  font-size: var(--text-sm);
}

/* ---- Puppy Detail Responsive ---- */
@media (max-width: 1024px) {
  .pd-layout {
    grid-template-columns: 1fr;
  }
  .pd-sidebar {
    order: -1;
  }
  .pd-sidebar__sticky {
    position: static;
    flex-direction: row;
    flex-wrap: wrap;
  }
  .pd-sidebar__card {
    flex: 1 1 100%;
  }
  .pd-sidebar__stats,
  .pd-sidebar__breeder {
    flex: 1 1 calc(50% - var(--space-3));
  }
}

@media (max-width: 768px) {
  .pd-parents__grid {
    grid-template-columns: 1fr;
  }
  .pd-gallery__item {
    width: 280px;
    height: 280px;
  }
  .pd-sidebar__stats,
  .pd-sidebar__breeder {
    flex: 1 1 100%;
  }
}

@media (max-width: 640px) {
  .pd-name {
    font-size: var(--text-h3);
  }
  .pd-gallery__item {
    width: 260px;
    height: 260px;
  }
  .pd-social-proof {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--space-2);
  }
  .pd-sidebar__price {
    font-size: var(--text-h2);
  }
  .pd-sidebar__card {
    padding: var(--space-6);
  }
  .pd-delivery-videos__thumb {
    flex: 0 0 150px;
    height: 230px;
  }
}
