.pet-carousel {
    width: 100%;
    padding: 20px 0;
  }
  .pet-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    overflow: hidden;
    text-align: center;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%; /* NEW */
  }
  .swiper-wrapper {
    display: flex;
    align-items: stretch;
  }
  .swiper-slide {
    display: flex;
  }
  .pet-img img {
    border-radius: 12px;
    width: 100%;
    height: auto;
  }
  .pet-info h3 {
    font-size: 20px;
    margin-top: 10px;
  }
  .pet-call {
    display: inline-block;
    margin-top: 12px;
    padding: 10px 16px;
    background: #14a09d;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
  }
  @media (max-width: 768px) {
    .pet-card { padding: 15px; }
  }
  .pet-count {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: bold;
    color: #14a09d;
    text-align: center;
  }
  
  .pet-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  
 
  