.wishlist-section {
  background-color: #f8f9fa;
  padding: 4rem 0;
  overflow: hidden;
}

.wishlist-section-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  max-width: 1300px;
  margin: auto;
  padding: 0 1.5rem;
  align-items: center;
  justify-items: center;
}

.wishlist-section-image {
    position: relative;
    width: 260px;
    height: 520px;
}

.wishlist-section-image .main-image {
    width: 100%;
    max-width: 260px;
    height: auto;
    border-radius: 16px;
    animation: floatAnimation 3s ease-in-out infinite;
    animation-delay: 0s !important;
}

.wishlist-section-image .surrounding-image {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    animation: floatAnimation 3s ease-in-out infinite;
    z-index: 1;
}

.surrounding-image-1 {
    top: 30px;
    left: -50px;
    animation-delay: 0.5s !important;
}

.surrounding-image-2 {
    top: 50px;
    right: -50px;
    animation-delay: 1s !important;
}

.surrounding-image-3 {
    top: 200px;
    left: -80px;
    animation-delay: 1.5s !important;
}

.surrounding-image-4 {
    bottom: 50px;
    right: -80px;
    animation-delay: 2s !important;
}

.surrounding-image-5 {
    bottom: -30px;
    left: -15px;
    animation-delay: 2.5s !important;
}

.wishlist-section-text h2 {
  width: 80%;
  font-size: 2rem;
  font-weight: 700;
  color: #2c95a0;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.wishlist-section-text p {
  font-size: 0.8rem;
  color: #666;
  margin-bottom: 1.2rem;
}

.wishlist-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 0;
  column-gap: 1rem;
}

.wishlist-grid-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.wishlist-grid-item .number {
  font-family: "Quicksand", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #2c95a0;
  line-height: 1;
}

.wishlist-grid-item h3 {
  font-family: "Quicksand", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 0.5rem;
}

.wishlist-grid-item p {
  font-size: 0.8rem;
  color: #666;
}
@media (max-width: 900px) {
  .wishlist-section-text {
    width: 80%;
    max-width: 1000px;
  }
  .wishlist-section-content {
    grid-template-columns: 1fr;
  }
  .wishlist-section-image {
    text-align: center;
  }
  .wishlist-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 600px) {
    .wishlist-section-text {
        width: 100%;
    }
    .wishlist-section-text h2 {
        font-size: 1.5rem;
    }
}
