/* 🔗 Instagram Handle Styling */
.insta-link {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    margin: 30px auto 20px;
    font-family: sans-serif;
  }
  
  .insta-link a {
    color: #000;
    text-decoration: none;
  }
  
  /* 📦 Swiper container with side padding */
  .swiper-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
  }
  
  /* 🖼️ Swiper slide card style */
  .swiper-slide {
    height: 200px;
    overflow: hidden;
    border-radius: 12px;
    background: #fff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
  }
  
  .swiper-slide:hover {
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12);
  }
  
  @media (min-width: 768px) {
    .swiper-slide {
      height: 300px;
    }
  }
  
  @media (min-width: 1024px) {
    .swiper-slide {
      height: 350px;
    }
  }
  
  /* 🖼️ Image inside swiper */
  .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s ease;
  }
  
  .swiper-slide img:hover {
    transform: scale(1.05);
  }
  
  /* ❌ Removed fixed aspect ratio for dynamic height */
  .aspect-ratio-box {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }
  
  .aspect-ratio-box img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
  
  /* 📩 Status messages */
  .loading-message,
  .error-message {
    text-align: center;
    color: gray;
  }
  
  .error-message {
    color: red;
  }
  