  /* --- Seasonal Cards --- */
  .season-card {
      border: none;
      border-radius: 15px;
      overflow: hidden;
      transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
      height: 100%;
  }

  .season-card:hover {
      transform: translateY(-10px);
      box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  }

  .season-img-wrapper {
      height: 220px;
      overflow: hidden;
      position: relative;
  }

  .season-img-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s ease;
  }

  .season-card:hover .season-img-wrapper img {
      transform: scale(1.1);
  }

  .season-badge {
      position: absolute;
      top: 15px;
      right: 15px;
      background: rgba(255, 255, 255, 0.9);
      padding: 5px 12px;
      border-radius: 20px;
      font-size: 0.75rem;
      font-weight: 700;
      color: var(--primary-color);
      z-index: 2;
  }