  /* --- Collection Card --- */
  .collection-card {
      position: relative;
      overflow: hidden;
      border-radius: 12px;
      background: #fff;
      transition: all 0.4s ease;
      text-align: center;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  }

  .collection-card a {
      display: block;
      text-decoration: none;
      color: inherit;
  }

  .collection-card img {
      width: 100%;
      height: auto;
      transition: transform 0.4s ease, filter 0.3s ease;
      border-radius: 12px 12px 0 0;
      object-fit: contain;
  }

  .collection-card span {
      display: block;
      font-family: "Playfair Display", serif;
      font-size: 18px;
      color: var(--primary-hover);
      padding: 12px 0 15px;
      background: #fff;
      letter-spacing: 0.5px;
      position: relative;
      z-index: 2;
      transition: color 0.3s ease;
  }

  .collection-card:hover {
      transform: translateY(-5px);
      box-shadow: 0 8px 18px rgba(214, 51, 132, 0.2);
  }

  .collection-card:hover img {
      transform: scale(1.05);
      filter: brightness(1.1);
  }

  .collection-card:hover span {
      color: var(--primary-color);
  }

  .collection-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(to bottom, rgba(214, 51, 132, 0.05), rgba(255, 255, 255, 0.8));
      opacity: 0;
      transition: opacity 0.4s ease;
      border-radius: 12px;
  }

  .collection-card:hover::before {
      opacity: 1;
  }

  /* --- Section Layout --- */
  .collection-section .row {
      row-gap: 40px;
      /* 💖 gap between rows */
  }

  @media (max-width: 576px) {
      .collection-card span {
          font-size: 16px;
          padding: 10px 0 12px;
      }

      .collection-section .row {
          row-gap: 25px;
      }
  }