.pets-collection { padding:80px 20px; text-align:center; }
.pets-collection h2 { font-size:34px; margin-bottom:20px; color:#2b8f7b; }
.pets-collection p { margin-bottom:40px; font-size:18px; }

.pets-collection .pets-grid { display:flex; justify-content:center; flex-wrap:wrap; gap:30px; }
.pets-collection .pet-card { background:#fff; border-radius:20px; overflow:hidden; width:240px; transition:0.4s; box-shadow:0 8px 20px rgba(0,0,0,0.15); cursor:pointer; transform:translateY(50px) scale(0.9); opacity:0; animation:slideUp 0.8s forwards; }
.pets-collection .pet-card img { width:100%; height:220px; object-fit:cover; transition:0.4s; }
.pets-collection .pet-card:hover img { transform:scale(1.12) rotate(2deg); }
.pets-collection .pet-card h3 { padding:15px; font-size:20px; text-align:center; color:#4cafab; transition:0.3s; }
.pets-collection .pet-card:hover h3 { color:#1a5f53; transform:scale(1.05); }
