/* ── CREATIONS ── */

.creations {
  background: var(--cream);
}

.creations-subtitle {
  color: var(--soft);
  font-size: 1rem;
  margin-bottom: 44px;
  line-height: 1.7;
}
.creations-subtitle2 {
  color: var(--text);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 44px;
  line-height: 1.7;
}

/* Animal carousel wrapper */
.animal-track-wrapper {
  position: relative;
  overflow: hidden;
}

.animal-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Each animal card */
.animal-card {
  flex: 0 0 calc((100% - 48px) / 3);
  background: var(--card-bg);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 6px 32px rgba(137, 174, 212, 0.13);
  transition: transform 0.3s, box-shadow 0.3s;
}

.animal-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(137, 174, 212, 0.22);
}

/* Image area */
.animal-img-area {
  position: relative;
  aspect-ratio: 7 / 8;
  overflow: hidden;
  background: var(--warm);
}

.animal-img-area img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.45s ease;
}

.animal-img-area img.active {
  opacity: 1;
}

/* Dot indicators */
.animal-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 7px;
  z-index: 3;
}

.animal-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  border: 1.5px solid rgba(255, 255, 255, 0.8);
}

.animal-dot.active {
  background: #fff;
  transform: scale(1.25);
}

/* Animal label */
.animal-name {
  padding: 16px 20px 4px;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  text-align: center;
  color: var(--text);
}

.animal-desc {
  padding: 10px 20px 18px;
  font-family: 'Playfair Display', serif;
  font-size: 0.9rem;
  text-align: center;
  color: var(--text);
}

/* Carousel nav arrows */
.carousel-nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 36px;
}

.carousel-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--blue);
  background: transparent;
  color: var(--blue);
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, color 0.2s;
}

.carousel-btn:hover {
  background: var(--blue);
  color: #fff;
}

.carousel-btn:disabled {
  opacity: 0.3;
  cursor: default;
}

.more-creations {
  margin-top: 48px;
  text-align: center;
}

.more-content {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.creation-pill {
  background: white;
  padding: 10px 18px;
  border-radius: 999px;
  color: var(--soft);
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .animal-card {
    flex: 0 0 calc((100% - 24px) / 2);
  }
}

@media (max-width: 520px) {
  .animal-card {
    flex: 0 0 100%;
  }
}


