body {
  margin: 0;
  font-family: 'Inter', Arial, sans-serif;
  background: #f8f6f1;
  color: #111;
}

.litters-page {
  padding: 35px 20px;
}

.litters-container {
  width: 96vw;
  max-width: 1700px;
  margin: 0 auto;
  padding: 45px;
  background: #fff2df;
  border-radius: 25px;
  box-shadow: 0 25px 45px rgba(0, 0, 0, 0.08);
  box-sizing: border-box;
}

.litter-section {
  margin-bottom: 38px;
}

.litter-section:last-child {
  margin-bottom: 0;
}

.litter-row {
  background: #fffaf2;
  border-radius: 22px;
  padding: 30px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  overflow: visible;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.07);
}

.litter-name {
  width: 170px;
  min-width: 170px;
  min-height: 90px;
  font-size: 26px;
  font-weight: 900;
  color: #222;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 18px;
  background: #fff2df;
  border-radius: 18px;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
  letter-spacing: 0.5px;
  text-align: center;
}

.puppy-card {
  width: 185px;
  min-width: 185px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  cursor: pointer;
}

.puppy-card img {
  width: 170px;
  height: 170px;
  object-fit: contain;
  object-position: center;
  background: #fffaf2;
  border-radius: 16px;
  display: block;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.14);
  transition: 0.25s ease;
}

.puppy-card img:hover {
  transform: scale(1.05);
}

.puppy-card p {
  margin: 10px 0 0;
  font-weight: 800;
  font-size: 15px;
  white-space: nowrap;
}

.puppy-carousel {
  display: none;
  margin-top: 24px;
  padding: 24px;
  background: #fffaf2;
  border-radius: 22px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.07);
  gap: 18px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.puppy-carousel.active {
  display: flex;
}

.puppy-carousel img {
  width: 155px;
  height: 155px;
  object-fit: contain;
  object-position: center;
  background: white;
  border-radius: 16px;
  display: block;
  cursor: pointer;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.14);
  transition: 0.25s ease;
}

.puppy-carousel img:hover {
  transform: scale(1.08);
}

.image-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 25px;
  box-sizing: border-box;
}

.image-lightbox.active {
  display: flex;
}

.image-lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  background: white;
  border-radius: 20px;
  padding: 10px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.35);
}

.lightbox-close {
  position: fixed;
  top: 22px;
  right: 32px;
  color: white;
  font-size: 42px;
  font-weight: 800;
  cursor: pointer;
  z-index: 10000;
}

@media (max-width: 850px) {
  .litters-page {
    padding: 25px 15px;
  }

  .litters-container {
    width: auto;
    padding: 35px 22px;
  }

  .litter-row {
    padding: 22px 18px;
    gap: 18px;
  }

  .litter-name {
    width: 100%;
    min-width: 100%;
    min-height: auto;
    font-size: 22px;
    padding: 14px 16px;
  }

  .puppy-card {
    width: 150px;
    min-width: 150px;
  }

  .puppy-card img {
    width: 140px;
    height: 140px;
  }

  .puppy-card p {
    font-size: 14px;
  }

  .puppy-carousel {
    padding: 20px 14px;
    gap: 14px;
  }

  .puppy-carousel img {
    width: 125px;
    height: 125px;
  }

  .lightbox-close {
    top: 14px;
    right: 22px;
    font-size: 36px;
  }
}
.litters-intro {
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 30px;
  color: #444;
  letter-spacing: 0.3px;
}

.carousel-puppy-name {
  width: 170px;
  min-width: 170px;
  min-height: 90px;
  font-size: 26px;
  font-weight: 900;
  color: #222;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px 18px;
  background: #fff2df;
  border-radius: 18px;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.08);
  letter-spacing: 0.5px;
  text-align: center;
}